/* ==========================================================================
   Arivterai — "Clearpath"  |  Clean product / SaaS system  (blue trust palette)
   ========================================================================== */

:root {
  /* Brand / trust palette */
  --blue:      #2C5CF6;
  --blue-dark: #1E44C7;
  --blue-050:  #EEF3FF;
  --blue-100:  #DCE6FF;
  --teal:      #12B5A5;
  --emerald:   #10B981;
  --rose:      #F43F5E;

  /* Neutrals / surfaces */
  --navy:      #0A1330;
  --navy-800:  #101B44;
  --ink:       #0B1524;
  --slate:     #536079;
  --slate-300: #8A96AC;
  --bg:        #FFFFFF;
  --bg-tint:   #F5F8FE;
  --line:      #E6ECF6;
  --line-2:    #EEF2F9;
  --on-navy:   #E7ECFB;
  --on-navy-60:rgba(231,236,251,.62);
  --on-navy-line: rgba(231,236,251,.14);

  /* Type */
  --display: "Schibsted Grotesk", system-ui, sans-serif;
  --body: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  /* Layout */
  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 26px;
  --shadow-card: 0 1px 2px rgba(11,21,36,.04), 0 12px 30px -14px rgba(11,21,36,.16);
  --shadow-float: 0 30px 70px -30px rgba(16,27,68,.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0; font-family: var(--body); color: var(--ink); background: var(--bg);
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; overflow-x: hidden;
}
body { transition:opacity .18s ease; }
body.page-leaving { opacity:.35; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--display); font-weight: 800; line-height: 1.06; letter-spacing: -0.02em; margin: 0; color: var(--ink); }

.wrap { width: min(100% - var(--gutter)*2, var(--wrap)); margin-inline: auto; }
.tnum { font-variant-numeric: tabular-nums; }
/* Schibsted's tabular comma is full figure-width — too gappy at display sizes */
.mock__balance.tnum, .phone__amount.tnum, .fhero__bal.tnum,
.hchart__bal.tnum, .hphone__balcard b.tnum, .hcur__t span.tnum, .cardphone__balrow b.tnum { font-variant-numeric: lining-nums; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .82em 1.5em; border-radius: 12px; font-weight: 600; font-size: .97rem;
  border: 1px solid transparent; transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease), border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px -8px rgba(44,92,246,.6); }
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 14px 26px -10px rgba(44,92,246,.6); }
.btn--soft { background: var(--blue-050); color: var(--blue-dark); }
.btn--soft:hover { background: var(--blue-100); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--slate-300); }
.btn--onnavy { background: rgba(255,255,255,.08); color: #fff; border-color: var(--on-navy-line); }
.btn--onnavy:hover { background: rgba(255,255,255,.16); }
.btn--white { background:#fff; color: var(--blue-dark); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(0,0,0,.35); }
.btn--lg { padding: .95em 1.7em; font-size: 1.02rem; }

.eyebrow { font-family: var(--body); font-weight: 700; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); display: inline-flex; align-items: center; gap: .5em; }
.eyebrow--navy { color: var(--teal); }
.pill { display:inline-flex; align-items:center; gap:.5em; padding:.4em .8em; border-radius:999px; background: var(--blue-050); color: var(--blue-dark); font-size:.8rem; font-weight:600; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 16px 0; transition: all .3s var(--ease); }
.site-header.scrolled { background: rgba(255,255,255,.85); backdrop-filter: blur(14px) saturate(1.4); box-shadow: 0 1px 0 var(--line); padding: 10px 0; }
.nav { display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; font-family: var(--display); font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; }
.brand__mark { width: 32px; height: 32px; flex: 0 0 auto; }
.brand__logo { height: 30px; width: auto; display: block; flex: 0 0 auto; }
.nav__links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__links a { font-size: .95rem; font-weight: 500; color: var(--slate); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
.nav-login { display: none; } /* mobile-drawer-only login link (desktop uses the corner button) */
.nav__cta { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.nav__cta .signin { font-weight: 600; font-size: .95rem; }
.nav__toggle { display: none; background: none; border: 0; width: 42px; height: 42px; color: var(--ink); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; padding: clamp(120px, 15vh, 175px) 0 clamp(60px, 8vh, 90px); background: radial-gradient(120% 80% at 90% -10%, var(--blue-050), transparent 60%); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.02fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4rem); letter-spacing: -.03em; }
.hero h1 .accent { color: var(--blue); }
.hero__lead { margin: 22px 0 30px; max-width: 34ch; font-size: clamp(1.05rem, 1.5vw, 1.18rem); color: var(--slate); }

/* Dotted globe backdrop */
.herobg { position: absolute; z-index: 0; top: 50%; right: -6%; width: min(56vw, 780px); aspect-ratio: 1; transform: translateY(-48%); pointer-events: none; }
.herobg svg { width: 100%; height: 100%; display: block; }
@media (max-width: 940px) { .herobg { width: 120vw; right: -30vw; top: 30%; opacity: .8; } }

.pill--brand { padding: 6px 16px 6px 6px; gap: 9px; }
.hero__intro .pill--brand { margin-top: -2.4vh; }
@media (min-width: 941px) {
  .hero__grid { align-items: start; }                             /* top-anchor columns (PC only) */
  .hero__intro { margin-top: 0; }
  .hero__intro .pill--brand { margin-top: 0; margin-bottom: 24px; } /* pill up in its box, gap to heading */
  .hstage { margin-top: 32px; }                                  /* graphic card top aligns with heading */
}
.pill__ic { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 7px; background: var(--blue); color: #fff; flex: none; }

.capture { display: flex; gap: 10px; max-width: 440px; margin-bottom: 16px; }
.capture input { flex: 1; min-width: 0; padding: .85em 1.1em; border-radius: 12px; border: 1px solid var(--line); font-size: .98rem; font-family: inherit; background: #fff; transition: border-color .2s, box-shadow .2s; }
.capture input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(44,92,246,.14); }
.hero__micro { font-size: .85rem; color: var(--slate-300); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero__micro .ok { color: var(--emerald); font-weight: 700; }

.trustlogos { margin-top: 40px; }
.trustlogos small { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-300); font-weight: 700; }
.trustlogos__row { display: flex; align-items: center; gap: clamp(18px,3vw,34px); flex-wrap: wrap; margin-top: 14px; opacity: .72; }
.trustlogos__row span { font-family: var(--display); font-weight: 800; font-size: 1.05rem; color: var(--slate); letter-spacing: -.02em; }

/* Trust flags row (hero) */
.trustflags { margin-top: 38px; }
.trustflags small { font-size: .78rem; color: var(--slate-300); font-weight: 600; }
.trustflags__row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.trustflags__row img { width: 32px; height: 23px; object-fit: cover; border-radius: 5px; box-shadow: 0 0 0 1px rgba(10,19,48,.08); }

/* Dashboard mockup (hero right) */
.mock__wrap { position: relative; }
.mock { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-float); overflow: hidden; }
.mock__body { padding: 24px 24px 22px; }
.mock__toprow { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 4px; }
.mock__label { font-size: .8rem; color: var(--slate); }
.mock__balance { font-family: var(--display); font-size: 2.15rem; font-weight: 800; letter-spacing: -.02em; margin-top: 2px; }
.mock__cursel { margin-top: 8px; display: inline-flex; align-items: center; gap: 5px; font-size: .8rem; font-weight: 600; color: var(--slate); }
.mock__cursel svg { color: var(--slate-300); }
.mock__delta { text-align: right; font-size: .84rem; font-weight: 700; color: var(--emerald); display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.mock__delta span { font-weight: 500; color: var(--slate-300); font-size: .7rem; }

.chart { margin: 16px 0 4px; position: relative; }
.chart svg { width: 100%; height: auto; display: block; }
.chart__end { position: absolute; }

.curtiles { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; margin-top: 18px; }
.curtile { border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 10px 8px; display: flex; flex-direction: column; gap: 7px; }
.curtile img { width: 24px; height: 17px; object-fit: cover; border-radius: 4px; box-shadow: 0 0 0 1px rgba(10,19,48,.08); }
.curtile b { display: block; font-size: .68rem; color: var(--slate-300); font-weight: 700; letter-spacing: .03em; }
.curtile span { display: block; font-family: var(--mono); font-size: .82rem; font-weight: 500; color: var(--ink); margin-top: 1px; }
.up { color: var(--emerald); } .down { color: var(--rose); }

.mock__recent { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.mock__recenthead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mock__recenthead b { font-size: .82rem; }
.mock__recenthead a { font-size: .78rem; color: var(--blue); font-weight: 600; }
.recentrow { display: flex; align-items: center; gap: 11px; }
.recentrow__av { width: 34px; height: 34px; border-radius: 10px; background: var(--blue); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .78rem; flex: none; }
.recentrow__who { flex: 1; min-width: 0; }
.recentrow__who b { display: block; font-size: .86rem; font-weight: 600; }
.recentrow__who span { display: block; font-size: .72rem; color: var(--slate-300); margin-top: 1px; }
.recentrow__amt { font-family: var(--mono); font-size: .88rem; font-weight: 600; color: var(--emerald); }

/* floating mini card */
.floatchip { position: absolute; z-index: 6; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 11px 14px; box-shadow: var(--shadow-card); display: flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600; animation: floaty 5.5s var(--ease) infinite; }
.floatchip .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex: 0 0 auto; }
.floatchip small { display: block; font-weight: 500; color: var(--slate-300); font-size: .72rem; }
.fc-tl { top: -30px; left: -18px; animation-delay: -1s; }
.fc-br { bottom: -22px; right: -14px; animation-delay: -3s; }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-9px) } }

/* ==========================================================================
   Hero graphic — balance chart card + currency tiles + wallet phone
   ========================================================================== */
.hstage { position: relative; min-height: 512px; }
.hstage .herobg { top: 46%; right: -10%; width: min(52vw, 620px); }

.hchart { position: relative; z-index: 2; width: 84%; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-float); padding: 22px 26px 18px; }
.hchart__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.hchart__lbl { font-size: .82rem; color: var(--slate); }
.hchart__bal { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -.02em; margin-top: 3px; }
.hchart__cur { margin-top: 7px; display: inline-flex; align-items: center; gap: 5px; font-size: .82rem; font-weight: 700; color: var(--slate); }
.hchart__cur svg { color: var(--slate-300); }
.hchart__delta { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.hchart__delta .up { font-weight: 700; font-size: .86rem; color: var(--emerald); }
.hchart__delta small { color: var(--slate-300); font-size: .72rem; }
.hchart .chart { margin: 14px 0 0; }

.hcur { position: relative; z-index: 3; width: 84%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 16px; }
.hcur__t { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-card); padding: 13px 12px; display: flex; flex-direction: column; gap: 8px; }
.hcur__t img { width: 26px; height: 18px; object-fit: cover; border-radius: 4px; box-shadow: 0 0 0 1px rgba(10,19,48,.08); }
.hcur__t b { font-size: .68rem; letter-spacing: .05em; color: var(--slate-300); font-weight: 700; }
.hcur__t span { font-family: var(--display); font-weight: 800; font-size: .96rem; letter-spacing: -.01em; color: var(--ink); }

/* Wallet phone */
.hphone { position: absolute; z-index: 5; top: 58px; right: -6px; width: 214px; background: #0B1524; border-radius: 30px; padding: 8px; box-shadow: var(--shadow-float); transform: translateY(10%); }
.hphone__scr { position: relative; background: #fff; border-radius: 24px; overflow: hidden; padding: 12px 13px 0; }
.hphone__scr::before { content: ""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 74px; height: 18px; background: #0B1524; border-radius: 0 0 12px 12px; z-index: 3; }
.hphone__bar { display: flex; align-items: center; justify-content: space-between; font-size: .62rem; font-weight: 700; color: var(--ink); padding: 2px 4px 8px; }
.hphone__sig { color: var(--ink); }
.hphone__head { display: flex; align-items: center; justify-content: space-between; padding: 2px 2px 10px; }
.hphone__head b { font-family: var(--display); font-size: .92rem; }
.hphone__dots { color: var(--slate-300); letter-spacing: 1px; }
.hphone__balcard { background: linear-gradient(135deg, #3a63f0, #1E44C7 70%); color: #fff; border-radius: 14px; padding: 12px 14px; }
.hphone__balcard span { font-size: .58rem; opacity: .85; }
.hphone__balcard b { display: block; font-family: var(--display); font-size: 1.16rem; margin-top: 2px; }
.hphone__balcard small { font-size: .58rem; opacity: .8; }
.hphone__sec { font-size: .6rem; font-weight: 700; color: var(--slate-300); letter-spacing: .04em; margin: 12px 2px 6px; }
.acctrow { display: flex; align-items: center; gap: 8px; padding: 6px 2px; }
.acctrow img { width: 22px; height: 15px; object-fit: cover; border-radius: 3px; box-shadow: 0 0 0 1px rgba(10,19,48,.08); flex: none; }
.acctrow span { flex: 1; min-width: 0; line-height: 1.1; }
.acctrow span b { font-size: .68rem; font-weight: 700; }
.acctrow span small { display: block; font-size: .54rem; color: var(--slate-300); }
.acctrow i { font-family: var(--mono); font-size: .64rem; font-weight: 500; font-style: normal; }
.hphone__nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin: 8px -13px 0; padding: 9px 6px; border-top: 1px solid var(--line-2); }
.hphone__nav span { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: .5rem; font-weight: 600; color: var(--slate-300); }
.hphone__nav span svg { width: 16px; height: 16px; }
.hphone__nav .is-on { color: var(--blue); }

@media (max-width: 940px) {
  .hstage { min-height: 0; max-width: 480px; margin-inline: auto; }
  .hstage .herobg { width: 120vw; right: -30vw; top: 30%; opacity: .7; }
  .hchart, .hcur { width: 100%; }
  .hphone { position: relative; right: auto; top: auto; margin: 18px auto 0; transform: none; }
}
@media (max-width: 520px) {
  .hcur { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Stats band
   ========================================================================== */
.statsband { border-block: 1px solid var(--line); background: var(--bg-tint); }
.statsband__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.bstat { text-align: center; padding: clamp(30px,5vw,52px) 16px; border-left: 1px solid var(--line); }
.bstat:first-child { border-left: 0; }
.bstat b { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem,4vw,2.9rem); color: var(--blue); letter-spacing: -.03em; display: block; }
.bstat span { font-size: .88rem; color: var(--slate); margin-top: 6px; display: block; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: clamp(66px, 10vh, 120px) 0; }
.section--tint { background: var(--bg-tint); }
.section__head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section__head.left { margin-inline: 0; text-align: left; }
.section__head h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); margin: 16px 0 14px; }
.section__head p { color: var(--slate); font-size: 1.06rem; margin: 0; }

/* Feature rows */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,6vw,80px); align-items: center; }
.frow + .frow { margin-top: clamp(60px,9vh,110px); }
.frow--rev .frow__media { order: -1; }
.frow__copy h3 { font-size: clamp(1.6rem,3vw,2.2rem); margin: 16px 0 14px; }
.frow__copy p { color: var(--slate); margin: 0 0 24px; max-width: 46ch; }
.flist { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 13px; }
.flist li { display: flex; gap: 11px; align-items: flex-start; font-size: .98rem; }
.flist .ck { width: 22px; height: 22px; border-radius: 999px; background: var(--blue-050); color: var(--blue); display: grid; place-items: center; flex: 0 0 auto; margin-top: 2px; font-weight: 800; font-size: .76rem; }
.link-arrow { color: var(--blue); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.link-arrow:hover { gap: 10px; }

/* Phone mockup */
.phone { width: 300px; max-width: 100%; margin-inline: auto; background: #0B1524; border-radius: 34px; padding: 12px; box-shadow: var(--shadow-float); }
.phone__screen { background: #fff; border-radius: 24px; overflow: hidden; }
.phone__top { background: var(--blue); color: #fff; padding: 22px 20px 26px; }
.phone__top .lbl { font-size: .74rem; opacity: .8; }
.phone__amount { font-family: var(--display); font-size: 2rem; font-weight: 800; margin-top: 2px; }
.phone__conv { font-size: .76rem; opacity: .85; margin-top: 4px; font-family: var(--mono); }
.phone__body { padding: 18px 18px 22px; }
.prow { display: flex; align-items: center; gap: 11px; padding: 11px 0; border-bottom: 1px solid var(--line-2); }
.prow:last-child { border-bottom: 0; }
.prow .av { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-weight: 800; font-size: .8rem; color: #fff; flex: 0 0 auto; }
.prow .nm { font-weight: 600; font-size: .88rem; } .prow .sub { font-size: .74rem; color: var(--slate-300); }
.prow .amt { margin-left: auto; font-family: var(--mono); font-size: .85rem; font-weight: 500; }
.phone__cta { margin-top: 16px; background: var(--blue); color: #fff; text-align: center; padding: 13px; border-radius: 12px; font-weight: 700; font-size: .92rem; }
.phone__prog { margin-top: 12px; display:flex; align-items:center; gap:8px; font-size:.74rem; color:var(--emerald); font-weight:600; }
.phone__prog .track { flex:1; height:5px; border-radius:999px; background: var(--line); overflow:hidden; }
.phone__prog .track i { display:block; height:100%; width:78%; background: var(--emerald); border-radius:999px; }

/* Allocation card (feature media, dashboard style) */
.alloc { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-card); }
.alloc__head { display:flex; justify-content:space-between; align-items:center; margin-bottom: 20px; }
.alloc__head b { font-family: var(--display); font-size: 1.15rem; }
.alloc__head .pill { font-size:.72rem; }
.bars { display: grid; gap: 15px; }
.bar__top { display:flex; justify-content:space-between; font-size:.85rem; margin-bottom:7px; }
.bar__name { color: var(--slate); display:flex; align-items:center; gap:8px; }
.bar__name .fc { width:20px; height:20px; border-radius:50%; color:#fff; font-size:.6rem; font-weight:800; display:grid; place-items:center; }
.bar__val { font-family: var(--mono); font-weight:500; color: var(--ink); }
.bar__track { height: 10px; border-radius:999px; background: var(--bg-tint); overflow:hidden; }
.bar__fill { height:100%; border-radius:999px; width:0; transition: width .7s var(--ease); }

/* ==========================================================================
   Dark cross-border section
   ========================================================================== */
.cross { background: radial-gradient(100% 120% at 100% 0%, #16276b 0%, transparent 55%), var(--navy); color: var(--on-navy); border-radius: var(--r-lg); padding: clamp(40px,6vw,72px); overflow: hidden; }
.cross__grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); align-items:center; }
.cross h2 { color:#fff; font-size: clamp(1.9rem,3.6vw,2.8rem); margin: 14px 0 16px; }
.cross p { color: var(--on-navy-60); margin: 0 0 28px; max-width: 44ch; }
.cross .flist li { color: var(--on-navy); }
.cross .flist .ck { background: rgba(255,255,255,.1); color: var(--teal); }
.fxgrid { display:grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.fxcard { background: rgba(255,255,255,.05); border:1px solid var(--on-navy-line); border-radius: var(--r); padding: 16px; }
.fxcard__top { display:flex; align-items:center; justify-content:space-between; margin-bottom: 10px; }
.fxcard .pair { display:flex; align-items:center; gap:8px; font-weight:700; font-size:.9rem; }
.fxcard .fc { width:26px; height:26px; border-radius:50%; color:#fff; font-size:.66rem; font-weight:800; display:grid; place-items:center; }
.fxcard .rate { font-family: var(--mono); font-size:1.05rem; color:#fff; }
.fxcard .move { font-size:.74rem; font-weight:600; }

/* ==========================================================================
   Card section
   ========================================================================== */
.debit { width: 360px; max-width: 100%; aspect-ratio: 1.6; border-radius: 20px; padding: 22px 24px; color:#fff; position: relative; overflow: hidden; box-shadow: var(--shadow-float); background: linear-gradient(135deg, #2C5CF6, #1E44C7 60%, #101B44); display: flex; flex-direction: column; }
.debit::after { content:""; position:absolute; width:280px; height:280px; border-radius:50%; background: radial-gradient(circle, rgba(18,181,165,.4), transparent 70%); top:-120px; right:-80px; }
.debit__top { display:flex; justify-content:space-between; align-items:center; }
.debit__brand { font-family: var(--display); font-weight:800; letter-spacing:-.02em; }
.debit__chip { width:38px; height:28px; border-radius:6px; background: linear-gradient(135deg,#f4d06a,#c99a2e); margin-top: 20px; }
.debit__num { font-family: var(--mono); font-size:1.15rem; letter-spacing:.14em; margin-top: auto; }
.debit__logo { font-family: var(--display); font-weight:800; font-style:italic; font-size:1.3rem; }
.debit__logo--end { align-self:flex-end; margin-top:14px; }

/* ==========================================================================
   Security cards
   ========================================================================== */
.secure { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.scard { background:#fff; border:1px solid var(--line); border-radius: var(--r); padding: 28px 24px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.scard:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.scard__icon { width:46px; height:46px; border-radius:12px; background: var(--blue-050); color: var(--blue); display:grid; place-items:center; margin-bottom:16px; }
.scard h3 { font-size:1.18rem; margin-bottom:8px; }
.scard p { font-size:.93rem; color: var(--slate); margin:0; }

/* Steps */
.steps { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.step { background:#fff; border:1px solid var(--line); border-radius: var(--r); padding: 26px; }
.step__no { width:38px; height:38px; border-radius:10px; background: var(--blue); color:#fff; font-family: var(--display); font-weight:800; display:grid; place-items:center; margin-bottom:16px; }
.step h3 { font-size:1.2rem; margin-bottom:8px; }
.step p { color: var(--slate); font-size:.95rem; margin:0; }

/* CTA band */
.ctaband { background: radial-gradient(90% 140% at 0% 0%, #2C5CF6 0%, transparent 55%), var(--navy); color:#fff; border-radius: var(--r-lg); padding: clamp(42px,6vw,72px); text-align:center; }
.ctaband h2 { color:#fff; font-size: clamp(2rem,4vw,3rem); margin-bottom: 14px; }
.ctaband p { color: var(--on-navy-60); max-width: 44ch; margin: 0 auto 28px; }
.ctaband .capture { margin-inline: auto; }
.ctaband .capture input { background: rgba(255,255,255,.08); border-color: var(--on-navy-line); color:#fff; }
.ctaband .capture input::placeholder { color: var(--on-navy-60); }

/* Footer */
.footer { background: var(--navy); color: var(--on-navy-60); padding: 68px 0 38px; font-size: .9rem; }
.footer__grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--on-navy-line); }
.footer .brand { color:#fff; margin-bottom: 14px; }
.footer__about { max-width: 34ch; line-height: 1.7; }
.footer h4 { color:#fff; font-family: var(--body); font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; margin:0 0 15px; font-weight:700; }
.footer ul { list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.footer a:hover { color:#fff; }
.footer__contact li { line-height:1.5; }
.footer__contact b { color: var(--on-navy); font-weight:600; }
.footer__bottom { padding-top: 24px; display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; font-size:.8rem; }
.footer__legal { max-width: 66ch; line-height:1.6; }

/* Reveal — gentle fade + rise as sections scroll into view (site-wide) */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity:1; transform:none; }
.reveal[data-d="1"]{transition-delay:.07s}.reveal[data-d="2"]{transition-delay:.14s}
.reveal[data-d="3"]{transition-delay:.21s}.reveal[data-d="4"]{transition-delay:.28s}
.reveal[data-d="5"]{transition-delay:.35s}

/* Responsive */
@media (max-width: 940px) {
  .hero__grid, .frow, .cross__grid { grid-template-columns: minmax(0,1fr); }
  .frow--rev .frow__media { order: 0; }
  .frow__media { width: 100%; max-width: 460px; margin-inline: auto; min-width: 0; justify-self: stretch; box-sizing: border-box; }
  .frow__copy { min-width: 0; }
  .statsband__grid { grid-template-columns: 1fr 1fr; }
  .bstat:nth-child(-n+2){ border-bottom: 1px solid var(--line); }
  .bstat:nth-child(odd){ border-left: 0; }
  .secure, .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta .signin { display: none; }
  .nav-login { display: block; } /* surface Log in inside the mobile drawer */
  .nav__toggle { display: grid; place-items: center; }
  .capture input { border-color: #cfd5e0; background: #f2f4f8; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  /* The business header uses a much longer action label. Its hero repeats the
     same action immediately below, so the compact header keeps logo + menu. */
  .site-header--business .nav__cta .btn { display:none; }
  .footer__grid { grid-template-columns: 1fr; }
  .fxgrid { grid-template-columns: 1fr; }
  .capture { flex-direction: column; }
  .curtiles { grid-template-columns: repeat(2,1fr); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity:1; transform:none; transition:none; }
}
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 8px; }
