  :root{
    --navy-dark:#0B1220;
    --navy-panel:#101B30;
    --navy-med:#1E3355;
    --light-bg:#F7F9FC;
    --white:#FFFFFF;
    --accent:#00D9A3;
    --accent-deep:#00875F;
    --ice:#8FD9FF;
    --text-navy:#0B1220;
    --text-muted:#5B6B85;
    --card-border:#E3E9F2;
    --warn:#B23A2F;
    --stage-vh:100vh;
    --pad: clamp(1.25rem, 5vw, 5rem);
    --radius: 18px;
    --shadow: 0 20px 45px -20px rgba(11,18,32,.25);
  }
  @media (max-width:760px){ :root{ --stage-vh:82vh; } }

  *,*::before,*::after{ box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    margin:0;
    font-family:'Inter', system-ui, sans-serif;
    color:var(--text-navy);
    background:var(--light-bg);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,h4{ font-family:'Space Grotesk', 'Inter', sans-serif; margin:0; line-height:1.12; letter-spacing:-0.01em; }
  p{ margin:0; }
  a{ color:inherit; text-decoration:none; }
  button{ font-family:inherit; cursor:pointer; }
  ul{ list-style:none; margin:0; padding:0; }
  img,svg{ display:block; }
  .icon{ fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
  .icon-filled{ fill:currentColor; stroke:none; }

  .ev{ font-weight:800; color:var(--accent); }
  .brand{ display:inline-flex; align-items:center; gap:.55rem; font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:1.2rem; }
  .brand-mark{ width:34px; height:34px; border-radius:9px; background:var(--navy-dark); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .brand-mark svg{ width:18px; height:18px; }
  .brand-mark .icon-filled{ fill:var(--accent); }

  .container{ max-width:1240px; margin:0 auto; padding:0 var(--pad); }
  .eyebrow{ display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.16em; color:var(--accent-deep); text-transform:uppercase; margin-bottom:.9rem; }
  .eyebrow.on-dark{ color:var(--accent); }
  .lead{ color:var(--text-muted); font-size:1.05rem; max-width:640px; margin-top:.85rem; line-height:1.55; }
  .lead.on-dark{ color:var(--ice); }

  .section{ padding: clamp(4rem,9vw,7.5rem) 0; }
  .section-head{ max-width:760px; margin-bottom: clamp(2.5rem,5vw,3.75rem); }
  .section-head h2{ font-size: clamp(1.9rem,3.4vw,2.7rem); font-weight:700; }
  .dark{ background:var(--navy-dark); color:var(--white); }
  .dark .text-navy{ color:var(--white); }

  /* ---------- reveal utility ---------- */
  .reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); transition-delay:var(--d,0s); }
  .reveal.in-view{ opacity:1; transform:none; }

  /* ---------- nav ---------- */
  .nav{ position:fixed; top:0; left:0; right:0; z-index:200; display:flex; align-items:center; justify-content:space-between; padding:1rem var(--pad); backdrop-filter:blur(14px); background:rgba(11,18,32,.62); border-bottom:1px solid rgba(255,255,255,.06); transition:background .3s ease; }
  .nav .brand{ color:var(--white); }
  .nav-links{ display:flex; align-items:center; gap:2.1rem; }
  .nav-links a{ font-size:.92rem; font-weight:500; color:var(--ice); opacity:.85; transition:opacity .2s ease; }
  .nav-links a:hover{ opacity:1; color:var(--white); }
  .nav-right{ display:flex; align-items:center; gap:.9rem; }
  .btn{ display:inline-flex; align-items:center; justify-content:center; gap:.5rem; padding:.75rem 1.5rem; border-radius:999px; font-weight:600; font-size:.92rem; border:1px solid transparent; transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; white-space:nowrap; }
  .btn:active{ transform:scale(.97); }
  .btn-primary{ background:var(--accent); color:var(--navy-dark); }
  .btn-primary:hover{ box-shadow:0 12px 30px -10px rgba(0,217,163,.55); transform:translateY(-2px); }
  .btn-ghost{ background:transparent; border-color:rgba(255,255,255,.28); color:var(--white); }
  .btn-ghost:hover{ border-color:var(--accent); color:var(--accent); }
  .btn-dark{ background:var(--navy-dark); color:var(--white); }
  .btn-dark:hover{ transform:translateY(-2px); box-shadow:var(--shadow); }
  .btn-sm{ padding:.55rem 1.05rem; font-size:.82rem; }
  .lang-toggle{ background:transparent; border:1px solid rgba(255,255,255,.28); color:var(--white); border-radius:999px; padding:.45rem .95rem; font-size:.78rem; font-weight:700; letter-spacing:.04em; }
  .lang-toggle:hover{ border-color:var(--accent); color:var(--accent); }
  .nav-burger{ display:none; width:40px; height:40px; border-radius:10px; border:1px solid rgba(255,255,255,.25); background:transparent; align-items:center; justify-content:center; }
  .nav-burger span, .nav-burger span::before, .nav-burger span::after{ content:''; display:block; width:18px; height:2px; background:var(--white); position:relative; transition:all .25s ease; }
  .nav-burger span::before{ position:absolute; top:-6px; }
  .nav-burger span::after{ position:absolute; top:6px; }

  .mobile-menu{ position:fixed; inset:0; background:var(--navy-dark); z-index:190; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1.8rem; opacity:0; pointer-events:none; transition:opacity .3s ease; }
  .mobile-menu.open{ opacity:1; pointer-events:auto; }
  .mobile-menu a{ font-size:1.3rem; font-weight:600; color:var(--white); font-family:'Space Grotesk',sans-serif; }

  /* ---------- hero ---------- */
  .hero{ position:relative; min-height:100svh; display:flex; align-items:center; background:var(--navy-dark); color:var(--white); overflow:hidden; padding-top:6rem; }
  .hero-blob{ position:absolute; border-radius:50%; filter:blur(4px); pointer-events:none; }
  .blob-1{ width:520px; height:520px; background:radial-gradient(circle at 30% 30%, rgba(30,51,85,.9), rgba(30,51,85,0) 70%); top:-160px; right:-120px; }
  .blob-2{ width:380px; height:380px; background:radial-gradient(circle at 40% 40%, rgba(0,217,163,.16), rgba(0,217,163,0) 70%); bottom:-140px; right:8%; }
  .blob-3{ width:340px; height:340px; background:radial-gradient(circle at 50% 50%, rgba(30,51,85,.85), rgba(30,51,85,0) 70%); bottom:-120px; left:-140px; }
  .hero-grid{ position:relative; z-index:2; display:grid; grid-template-columns:1.15fr .85fr; align-items:center; gap:3rem; width:100%; }
  .hero h1{ font-size: clamp(2.5rem,5.4vw,4.1rem); font-weight:700; }
  .hero .lead{ max-width:520px; font-size:1.12rem; }
  .hero-ctas{ display:flex; gap:1rem; margin-top:2.2rem; flex-wrap:wrap; }
  .hero-scroll-cue{ margin-top:3.4rem; display:flex; align-items:center; gap:.65rem; color:var(--ice); font-size:.82rem; opacity:.8; }
  .scroll-arrow{ width:20px; height:20px; animation:bob 1.8s ease-in-out infinite; }
  @keyframes bob{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(6px);} }

  .hero-visual{ position:relative; height:460px; }
  .fan-card{ position:absolute; width:190px; height:270px; border-radius:20px; top:50%; left:50%; box-shadow:0 25px 45px -15px rgba(0,0,0,.5); border:1px solid rgba(255,255,255,.06); }
  .fan-1{ background:#233a5e; transform:translate(-70%,-56%) rotate(-16deg); opacity:.55; }
  .fan-2{ background:#1c2f4d; transform:translate(-55%,-50%) rotate(-6deg); opacity:.75; }
  .fan-3{ background:#1a5a71; transform:translate(-40%,-46%) rotate(6deg); opacity:.4; }
  .fan-4{ background:var(--accent); transform:translate(-30%,-44%) rotate(15deg); display:flex; align-items:center; justify-content:center; animation:floaty 5s ease-in-out infinite; }
  .fan-4 svg{ width:56px; height:56px; color:var(--navy-dark); }
  @keyframes floaty{ 0%,100%{ transform:translate(-30%,-44%) rotate(15deg);} 50%{ transform:translate(-30%,-48%) rotate(13deg);} }

  /* ---------- problem ---------- */
  .problem-grid{ display:grid; grid-template-columns:1.3fr 1fr; gap:3rem; align-items:start; }
  .problem-rows{ display:flex; flex-direction:column; gap:2.1rem; }
  .prow{ display:flex; gap:1.1rem; align-items:flex-start; }
  .icircle{ width:52px; height:52px; border-radius:50%; background:var(--navy-dark); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .icircle svg{ width:24px; height:24px; color:var(--white); }
  .icircle.accent{ background:var(--accent); }
  .icircle.accent svg{ color:var(--navy-dark); }
  .prow h3{ font-size:1.08rem; font-weight:700; margin-bottom:.35rem; }
  .prow p{ color:var(--text-muted); font-size:.96rem; line-height:1.55; }

  .stat-stack{ display:flex; flex-direction:column; gap:1.4rem; }
  .stat-card{ background:var(--white); border:1px solid var(--card-border); border-radius:var(--radius); padding:1.8rem; box-shadow:var(--shadow); }
  .stat-card .big{ font-family:'Space Grotesk',sans-serif; font-size:2.6rem; font-weight:700; color:var(--accent-deep); }
  .stat-card .lbl{ margin-top:.5rem; font-size:.92rem; }
  .stat-card .src{ margin-top:.6rem; font-size:.74rem; color:var(--text-muted); font-style:italic; }

  /* ---------- journey ---------- */
  .journey-head{ max-width:720px; margin:0 auto clamp(2rem,5vw,3rem); text-align:center; }
  .journey-scroll{ position:relative; height:calc(var(--stage-vh) * 5); background:var(--navy-dark); }
  .journey-sticky{ position:sticky; top:0; height:100vh; box-sizing:border-box; display:grid; grid-template-columns:1.1fr .9fr; align-items:center; gap:2.5rem; padding:6.5rem var(--pad) 2.5rem; }
  .journey-scene{ position:relative; height:380px; background:linear-gradient(180deg,#0E1830,#0B1220); border-radius:28px; overflow:hidden; border:1px solid rgba(255,255,255,.06); box-shadow:0 0 0 1px rgba(0,217,163,.08), 0 30px 60px -30px rgba(0,217,163,.15); }
  .journey-scene::after{ content:''; position:absolute; left:0; right:0; bottom:64px; height:1px; background:rgba(255,255,255,.08); }

  .journey-progress{ position:absolute; top:0; left:0; right:0; height:4px; background:rgba(255,255,255,.08); z-index:5; }
  .journey-progress-fill{ height:100%; width:0%; background:linear-gradient(90deg,var(--warn),var(--accent)); transition:width .1s linear; box-shadow:0 0 12px rgba(0,217,163,.6); }

  .scene-charger{ position:absolute; right:19%; bottom:64px; width:26px; }
  .charger-pole{ width:14px; height:120px; background:#22314f; border-radius:6px; margin:0 auto; }
  .charger-head{ width:44px; height:56px; background:#2b3c5c; border-radius:10px; margin:-150px auto 0; display:flex; align-items:flex-start; justify-content:center; padding-top:9px; box-shadow:0 10px 20px -8px rgba(0,0,0,.5); }
  .charger-led{ width:8px; height:8px; border-radius:50%; background:var(--accent); box-shadow:0 0 10px 2px rgba(0,217,163,.7); animation:blink 1.6s ease-in-out infinite; }
  @keyframes blink{ 0%,100%{ opacity:1;} 50%{ opacity:.25;} }

  .scene-car{ position:absolute; left:12%; bottom:64px; width:150px; will-change:transform; }
  .scene-car-bob{ animation:carBob 4s ease-in-out infinite; }
  @keyframes carBob{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-4px);} }
  .car-body{ width:150px; height:44px; background:var(--ice); border-radius:16px 16px 8px 8px; position:relative; }
  .car-cabin{ position:absolute; top:-24px; left:28px; width:76px; height:30px; background:var(--ice); border-radius:14px 14px 0 0; }
  .car-wheel{ position:absolute; bottom:-10px; width:22px; height:22px; border-radius:50%; background:#0d1526; border:4px solid #3a4b6c; }
  .car-wheel-l{ left:18px; }
  .car-wheel-r{ right:18px; }
  .car-battery{ position:absolute; top:-46px; left:50%; transform:translateX(-50%); width:64px; height:14px; border:2px solid rgba(255,255,255,.5); border-radius:4px; overflow:hidden; }
  .car-battery-fill{ height:100%; width:10%; background:var(--warn); transition:width 1s ease, background 1s ease; }

  .scene-confusion{ position:absolute; left:6%; bottom:150px; width:220px; height:150px; opacity:0; transform:translateY(14px); transition:opacity .5s ease, transform .5s ease; }
  .confusion-card{ position:absolute; width:64px; height:40px; border-radius:8px; background:var(--navy-med); color:var(--white); font-size:.62rem; font-weight:700; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 16px -6px rgba(0,0,0,.5); }
  .cc-1{ top:0; left:10px; transform:rotate(-10deg); }
  .cc-2{ top:8px; left:70px; transform:rotate(6deg); background:#254063; }
  .cc-3{ top:34px; left:34px; transform:rotate(-3deg); background:#1b2c48; }
  .confusion-mark{ position:absolute; top:-14px; right:24px; width:30px; height:30px; border-radius:50%; background:var(--warn); color:var(--white); font-weight:800; font-size:1rem; display:flex; align-items:center; justify-content:center; animation:pulseScale 1.6s ease-in-out infinite; }
  .confusion-bubble{ position:absolute; bottom:-8px; left:0; width:200px; background:var(--white); color:var(--text-navy); font-size:.72rem; font-weight:600; padding:.55rem .75rem; border-radius:10px; box-shadow:var(--shadow); }
  @keyframes pulseScale{ 0%,100%{ transform:scale(1);} 50%{ transform:scale(1.12);} }

  .scene-ce-card{ position:absolute; left:50%; bottom:150px; transform:translate(-50%,10px) scale(.6); width:70px; height:96px; border-radius:12px; background:var(--accent); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .45s ease, transform .5s cubic-bezier(.34,1.56,.64,1); box-shadow:0 16px 30px -10px rgba(0,217,163,.6); z-index:3; }
  .ce-card-mark{ font-family:'Space Grotesk',sans-serif; font-weight:800; color:var(--navy-dark); font-size:1rem; }

  .ce-halo{ position:absolute; left:50%; bottom:198px; transform:translate(-50%,50%); width:130px; height:130px; border-radius:50%; background:radial-gradient(circle, rgba(0,217,163,.35), rgba(0,217,163,0) 70%); opacity:0; transition:opacity .5s ease; animation:haloPulse 2.4s ease-in-out infinite; pointer-events:none; }
  @keyframes haloPulse{ 0%,100%{ transform:translate(-50%,50%) scale(.9);} 50%{ transform:translate(-50%,50%) scale(1.12);} }

  .tap-spark{ position:absolute; top:50%; left:50%; width:5px; height:5px; border-radius:50%; background:var(--accent); opacity:0; }
  .ts-1{ animation:sparkBurst 1.4s ease-out infinite; }
  .ts-2{ animation:sparkBurst 1.4s ease-out infinite; animation-delay:.15s; }
  .ts-3{ animation:sparkBurst 1.4s ease-out infinite; animation-delay:.3s; }
  .ts-4{ animation:sparkBurst 1.4s ease-out infinite; animation-delay:.45s; }
  .ts-1{ --tx:-38px; --ty:-30px; } .ts-2{ --tx:36px; --ty:-32px; } .ts-3{ --tx:-34px; --ty:32px; } .ts-4{ --tx:34px; --ty:30px; }
  @keyframes sparkBurst{ 0%{ transform:translate(-50%,-50%) translate(0,0); opacity:0;} 15%{ opacity:1;} 100%{ transform:translate(-50%,-50%) translate(var(--tx),var(--ty)); opacity:0;} }

  .scene-signal{ position:absolute; right:19%; bottom:230px; opacity:0; transition:opacity .5s ease; }
  .scene-cloud{ position:absolute; top:-34px; left:50%; transform:translateX(-50%); width:34px; height:34px; border-radius:50%; background:var(--navy-med); display:flex; align-items:center; justify-content:center; }
  .scene-cloud svg{ width:18px; height:18px; color:var(--ice); }
  .signal-ring{ position:absolute; top:0; left:0; width:10px; height:10px; margin:-5px; border-radius:50%; border:2px solid var(--accent); opacity:0; }
  .r1{ animation:ping 1.8s ease-out infinite; }
  .r2{ animation:ping 1.8s ease-out infinite; animation-delay:.5s; }
  .r3{ animation:ping 1.8s ease-out infinite; animation-delay:1s; }
  @keyframes ping{ 0%{ transform:scale(.6); opacity:.8;} 100%{ transform:scale(3.4); opacity:0;} }

  .scene-price{ position:absolute; left:50%; bottom:246px; transform:translate(-50%,10px); opacity:0; transition:opacity .5s ease, transform .5s ease; background:var(--white); color:var(--text-navy); font-size:.74rem; font-weight:700; padding:.5rem .8rem; border-radius:10px; align-items:center; gap:.4rem; box-shadow:var(--shadow); white-space:nowrap; }
  .scene-price svg{ width:14px; height:14px; color:var(--accent-deep); flex-shrink:0; }

  .scene-loyalty-badge{ position:absolute; top:18px; left:50%; transform:translateX(-50%); opacity:0; transition:opacity .5s ease; align-items:center; gap:.35rem; background:var(--white); color:var(--text-navy); font-size:.66rem; font-weight:700; padding:.4rem .65rem; border-radius:999px; box-shadow:var(--shadow); white-space:nowrap; }
  .scene-loyalty-badge svg{ width:12px; height:12px; color:var(--accent-deep); flex-shrink:0; }
  .scene-roaming-chips{ position:absolute; top:18px; left:50%; transform:translateX(-50%); opacity:0; transition:opacity .5s ease; align-items:center; gap:.3rem; }
  .scene-roaming-chips .chip{ background:var(--navy-med); color:var(--white); padding:.32rem .55rem; border-radius:999px; font-size:.62rem; font-weight:700; white-space:nowrap; }
  .scene-roaming-chips .chip.best{ background:var(--accent); color:var(--navy-dark); box-shadow:0 0 0 3px rgba(0,217,163,.25); }

  [data-case-when]{ display:none; }
  .journey-sticky[data-case="a"] [data-case-when="a"]{ display:flex; }
  .journey-sticky[data-case="b"] [data-case-when="b"]{ display:flex; }
  .case-copy-block[data-case-when]{ flex-direction:column; }

  .journey-sticky[data-active-stage="2"] .scene-confusion{ opacity:1; transform:translateY(0); }
  .journey-sticky[data-active-stage="3"] .scene-ce-card,
  .journey-sticky[data-active-stage="4"] .scene-ce-card,
  .journey-sticky[data-active-stage="5"] .scene-ce-card{ opacity:1; transform:translate(-50%,0) scale(1); }
  .journey-sticky[data-active-stage="3"] .ce-halo,
  .journey-sticky[data-active-stage="4"] .ce-halo,
  .journey-sticky[data-active-stage="5"] .ce-halo,
  .journey-sticky[data-active-stage="3"] .tap-spark,
  .journey-sticky[data-active-stage="4"] .tap-spark,
  .journey-sticky[data-active-stage="5"] .tap-spark{ opacity:1; }
  .journey-sticky[data-active-stage="4"] .scene-signal,
  .journey-sticky[data-active-stage="5"] .scene-signal{ opacity:1; }
  .journey-sticky[data-active-stage="4"] .scene-loyalty-badge,
  .journey-sticky[data-active-stage="5"] .scene-loyalty-badge,
  .journey-sticky[data-active-stage="4"] .scene-roaming-chips,
  .journey-sticky[data-active-stage="5"] .scene-roaming-chips{ opacity:1; }
  .journey-sticky[data-active-stage="5"] .scene-price{ opacity:1; transform:translate(-50%,0); }
  .journey-sticky[data-active-stage="5"] .car-battery-fill{ width:82%; background:var(--accent); }

  .journey-copy{ position:relative; }
  .journey-copy-stack{ position:relative; min-height:250px; }
  .stage-copy{ position:absolute; inset:0; opacity:0; transform:translateY(14px); transition:opacity .5s ease, transform .5s ease; pointer-events:none; }
  .journey-sticky[data-active-stage="1"] .stage-copy[data-stage="1"],
  .journey-sticky[data-active-stage="2"] .stage-copy[data-stage="2"],
  .journey-sticky[data-active-stage="3"] .stage-copy[data-stage="3"],
  .journey-sticky[data-active-stage="4"] .stage-copy[data-stage="4"],
  .journey-sticky[data-active-stage="5"] .stage-copy[data-stage="5"]{ opacity:1; transform:none; pointer-events:auto; }
  .stage-num{ display:block; font-size:.76rem; font-weight:700; color:var(--accent); letter-spacing:.1em; margin-bottom:.85rem; }
  .stage-copy h3{ font-size:1.5rem; font-weight:700; color:var(--white); margin-bottom:.6rem; }
  .stage-copy p{ color:var(--ice); font-size:.94rem; line-height:1.55; max-width:420px; }

  .case-toggle{ margin-top:1.6rem; }
  .case-toggle-label{ display:block; font-size:.72rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--accent); margin-bottom:.6rem; }
  .case-toggle-btns{ display:flex; gap:.6rem; flex-wrap:wrap; }
  .case-btn{ background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.22); color:var(--ice); border-radius:999px; padding:.55rem 1rem; font-size:.8rem; font-weight:600; transition:all .2s ease; }
  .case-btn:hover{ border-color:var(--accent); color:var(--white); }
  .case-btn.active{ background:var(--accent); border-color:var(--accent); color:var(--navy-dark); }

  .journey-dots{ display:flex; gap:.55rem; margin-top:1.6rem; }
  .dot{ width:34px; height:5px; border-radius:3px; background:rgba(255,255,255,.18); border:none; cursor:pointer; transition:background .3s ease; padding:0; }
  .journey-sticky[data-active-stage="1"] .dot[data-stage="1"],
  .journey-sticky[data-active-stage="2"] .dot[data-stage="2"],
  .journey-sticky[data-active-stage="3"] .dot[data-stage="3"],
  .journey-sticky[data-active-stage="4"] .dot[data-stage="4"],
  .journey-sticky[data-active-stage="5"] .dot[data-stage="5"]{ background:var(--accent); }

  /* ---------- how it works ---------- */
  .how-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem; }
  .how-card{ background:var(--white); border:1px solid var(--card-border); border-radius:var(--radius); padding:1.9rem 1.5rem; box-shadow:var(--shadow); position:relative; }
  .how-num{ position:absolute; top:-14px; left:1.5rem; width:30px; height:30px; border-radius:50%; background:var(--accent); color:var(--navy-dark); font-weight:800; font-size:.85rem; display:flex; align-items:center; justify-content:center; border:3px solid var(--light-bg); }
  .how-card .icircle{ margin-bottom:1.1rem; }
  .how-card h3{ font-size:1.02rem; font-weight:700; margin-bottom:.5rem; }
  .how-card p{ font-size:.9rem; color:var(--text-muted); line-height:1.55; }
  .how-arch{ margin-top:2.2rem; display:grid; grid-template-columns:1fr 1fr 1fr; gap:1.2rem; }
  .arch-box{ border-radius:14px; padding:1.4rem 1.3rem; background:var(--white); border:1px solid var(--card-border); }
  .arch-box.dark{ background:var(--navy-dark); color:var(--white); border-color:transparent; }
  .arch-box h4{ font-size:.95rem; font-weight:700; margin-bottom:.4rem; }
  .arch-box p{ font-size:.8rem; color:var(--text-muted); line-height:1.5; }
  .arch-box.dark p{ color:var(--ice); }

  /* ---------- beyond ---------- */
  .beyond-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.6rem; }
  .beyond-card{ background:var(--white); border:1px solid var(--card-border); border-radius:var(--radius); padding:2rem; box-shadow:var(--shadow); transition:transform .3s ease, box-shadow .3s ease; }
  .beyond-card:hover{ transform:translateY(-4px); box-shadow:0 26px 50px -20px rgba(11,18,32,.3); }
  .beyond-card h3{ font-size:1.12rem; font-weight:700; margin:.2rem 0 .5rem; }
  .beyond-card p{ font-size:.92rem; color:var(--text-muted); line-height:1.55; }

  .dash-mock{ margin-top:1.4rem; background:var(--light-bg); border:1px solid var(--card-border); border-radius:14px; padding:1.1rem 1.2rem; }
  .dash-mock-top{ display:flex; justify-content:space-between; align-items:baseline; font-size:.78rem; color:var(--text-muted); font-weight:600; margin-bottom:.9rem; }
  .dash-total{ font-family:'Space Grotesk',sans-serif; font-size:1.15rem; color:var(--text-navy); font-weight:700; }
  .dash-row{ display:grid; grid-template-columns:52px 1fr 62px; align-items:center; gap:.65rem; margin-bottom:.55rem; font-size:.72rem; color:var(--text-muted); font-weight:600; }
  .bar-track{ height:7px; border-radius:4px; background:#E4E9F2; overflow:hidden; }
  .bar-fill{ height:100%; width:0; border-radius:4px; transition:width 1.1s cubic-bezier(.2,.7,.2,1); }
  .dash-foot{ margin-top:.7rem; font-size:.74rem; color:var(--accent-deep); font-weight:700; }

  .bank-mock{ margin-top:1.4rem; background:var(--light-bg); border:1px solid var(--card-border); border-radius:14px; padding:1.1rem 1.2rem; }
  .bank-mock-card{ display:flex; align-items:center; gap:.6rem; font-family:'Space Grotesk',sans-serif; font-weight:600; font-size:.88rem; color:var(--text-navy); background:var(--white); border:1px solid var(--card-border); border-radius:10px; padding:.7rem .85rem; }
  .bank-mock-card svg{ width:20px; height:20px; color:var(--navy-med); flex-shrink:0; }
  .bank-mock-status{ display:flex; align-items:center; gap:.4rem; margin-top:.7rem; font-size:.76rem; font-weight:700; color:var(--accent-deep); }
  .bank-mock-status svg{ width:14px; height:14px; }

  .plug-anim{ position:relative; height:34px; width:60px; margin-bottom:1rem; }
  .plug-body{ position:absolute; left:0; bottom:0; width:34px; height:22px; background:var(--navy-dark); border-radius:6px; }
  .plug-pin{ position:absolute; top:-8px; width:4px; height:10px; background:var(--navy-dark); border-radius:2px; }
  .plug-pin.p1{ left:9px; }
  .plug-pin.p2{ left:20px; }
  .plug-socket{ position:absolute; right:0; bottom:2px; width:16px; height:16px; border-radius:4px; border:2px dashed var(--accent-deep); animation:pulseScale 2s ease-in-out infinite; }

  /* ---------- stats strip ---------- */
  .stats-strip{ background:var(--navy-dark); color:var(--white); }
  .stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem; }
  .stat-box{ background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius); padding:2.1rem 1.4rem; text-align:center; }
  .stat-box .big{ font-family:'Space Grotesk',sans-serif; font-size:2.5rem; font-weight:700; color:var(--accent); }
  .stat-box .lbl{ margin-top:.6rem; font-size:.86rem; color:var(--ice); line-height:1.45; }

  /* ---------- roadmap ---------- */
  .roadmap-grid{ display:grid; grid-template-columns:1fr auto 1.3fr; align-items:center; gap:1.5rem; }
  .roadmap-card{ background:var(--white); border:1px solid var(--card-border); border-radius:var(--radius); padding:2rem; box-shadow:var(--shadow); position:relative; height:100%; }
  .roadmap-card-next{ border:1.5px solid var(--accent); box-shadow:0 20px 45px -18px rgba(0,217,163,.35); }
  .roadmap-tag{ display:inline-block; font-size:.68rem; font-weight:700; letter-spacing:.08em; padding:.3rem .65rem; border-radius:999px; margin-bottom:1rem; }
  .roadmap-tag.live{ background:var(--navy-dark); color:var(--white); }
  .roadmap-tag.next{ background:rgba(0,217,163,.14); color:var(--accent-deep); border:1px dashed var(--accent); }
  .roadmap-card h3{ font-size:1.15rem; font-weight:700; margin:.9rem 0 .6rem; }
  .roadmap-card p{ font-size:.92rem; color:var(--text-muted); line-height:1.55; }
  .roadmap-list{ margin:1.1rem 0 0; padding:0; }
  .roadmap-list li{ position:relative; list-style:none; padding-left:1.35rem; font-size:.86rem; color:var(--text-muted); margin-bottom:.55rem; line-height:1.5; }
  .roadmap-list li::before{ content:''; position:absolute; left:0; top:.45rem; width:7px; height:7px; border-radius:50%; background:var(--accent); }
  .roadmap-audience{ display:inline-block; margin-top:1.2rem; font-size:.76rem; font-weight:700; color:var(--text-navy); background:var(--light-bg); border:1px solid var(--card-border); padding:.35rem .7rem; border-radius:999px; }
  .roadmap-arrow{ width:36px; height:36px; border-radius:50%; background:var(--light-bg); border:1px solid var(--card-border); display:flex; align-items:center; justify-content:center; color:var(--accent-deep); flex-shrink:0; }
  .roadmap-arrow svg{ width:18px; height:18px; }

  /* ---------- cpo ---------- */
  .cpo-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.6rem 2.4rem; }

  /* ---------- cta ---------- */
  .cta-section{ background:var(--navy-dark); color:var(--white); position:relative; overflow:hidden; }
  .cta-inner{ position:relative; z-index:2; max-width:640px; }
  .cta-inner h2{ font-size:clamp(2rem,4vw,2.8rem); font-weight:700; }
  .waitlist-form{ display:flex; gap:.7rem; margin-top:2rem; flex-wrap:wrap; }
  .waitlist-form input{ flex:1 1 260px; padding:.95rem 1.2rem; border-radius:999px; border:1px solid rgba(255,255,255,.22); background:rgba(255,255,255,.05); color:var(--white); font-size:.95rem; }
  .waitlist-form input::placeholder{ color:rgba(255,255,255,.45); }
  .waitlist-form input:focus{ outline:2px solid var(--accent); outline-offset:2px; }
  .form-note{ margin-top:1rem; font-size:.8rem; color:var(--ice); opacity:.75; }
  .form-msg{ margin-top:1rem; font-size:.88rem; font-weight:600; padding:.7rem 1rem; border-radius:10px; display:none; }
  .form-msg.success{ background:rgba(0,217,163,.12); color:var(--accent); }
  .form-msg.error{ background:rgba(178,58,47,.15); color:#ff9d8f; }
  .form-msg.show{ display:block; }

  /* ---------- footer ---------- */
  footer{ background:var(--navy-panel); color:var(--ice); padding:3rem 0 2rem; }
  .footer-top{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1.5rem; padding-bottom:2rem; border-bottom:1px solid rgba(255,255,255,.08); }
  .footer-links{ display:flex; gap:1.8rem; flex-wrap:wrap; }
  .footer-links a{ font-size:.86rem; opacity:.8; }
  .footer-links a:hover{ opacity:1; color:var(--accent); }
  .footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.8rem; padding-top:1.4rem; font-size:.78rem; opacity:.65; }

  /* ---------- count helper ---------- */
  .count-target{ display:inline-block; }

  /* ---------- responsive ---------- */
  @media (max-width:980px){
    .nav-links{ display:none; }
    .nav-burger{ display:flex; }
    .hero-grid{ grid-template-columns:1fr; }
    .hero-visual{ height:320px; margin-top:1rem; }
    .problem-grid{ grid-template-columns:1fr; }
    .journey-sticky{ grid-template-columns:1fr; padding:1.5rem var(--pad); gap:1.6rem; }
    .journey-scene{ height:300px; }
    .how-grid{ grid-template-columns:repeat(2,1fr); }
    .how-arch{ grid-template-columns:1fr; }
    .beyond-grid{ grid-template-columns:1fr; }
    .stats-grid{ grid-template-columns:repeat(2,1fr); }
    .cpo-grid{ grid-template-columns:1fr; }
    .roadmap-grid{ grid-template-columns:1fr; }
    .roadmap-arrow{ transform:rotate(90deg); margin:.25rem auto; }
  }
  @media (max-width:560px){
    .how-grid{ grid-template-columns:1fr; }
    .stats-grid{ grid-template-columns:1fr; }
    .hero-ctas{ flex-direction:column; align-items:stretch; }
    .hero-ctas .btn{ width:100%; }
    .nav-right .btn-primary.btn-sm{ display:none; }
    .nav{ padding-left:1rem; padding-right:1rem; }
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
  }