
    :root{
      --navy:#192230;
      --yellow:#FFCD00;
      --white:#FFFFFF;
      --ease:cubic-bezier(.2,.8,.2,1);
      --page:min(1380px, calc(100% - 44px));
      --shadow:0 22px 65px rgba(25,34,48,.13);
      --shadow-heavy:0 34px 90px rgba(25,34,48,.22);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      background:var(--white);
      color:var(--navy);
      font-family:"Montserrat",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
      overflow-x:hidden;
    }
    button{font:inherit}
    a{text-decoration:none;color:inherit}
    .container{width:var(--page);margin-inline:auto}

    .eyebrow{
      display:inline-flex;align-items:center;gap:10px;
      font-size:10px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;
    }
    .eyebrow::before{
      content:"";width:26px;height:3px;border-radius:99px;background:var(--yellow);
    }
    .display{
      margin:16px 0 0;
      max-width:900px;
      font-size:clamp(38px,4.7vw,66px);
      line-height:.98;
      letter-spacing:-.052em;
      font-weight:800;
    }
    .lead{
      margin:20px 0 0;
      max-width:700px;
      font-size:14px;
      line-height:1.8;
      opacity:.68;
    }

    /* =========================================================
       HERO
       ========================================================= */
    .hero{
      padding:88px 0 54px;
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(rgba(25,34,48,.025) 1px,transparent 1px),
        linear-gradient(90deg,rgba(25,34,48,.025) 1px,transparent 1px),
        var(--white);
      background-size:56px 56px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:54px;
      align-items:end;
    }
    .hero-note{
      position:relative;
      padding:26px;
      border-radius:25px;
      background:var(--navy);
      color:var(--white);
      box-shadow:var(--shadow-heavy);
      overflow:hidden;
    }
    .hero-note::before{
      content:"";
      position:absolute;left:0;top:0;bottom:0;width:5px;background:var(--yellow);
    }
    .hero-note small{
      color:var(--yellow);
      font-size:9px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;
    }
    .hero-note h2{
      margin:14px 0 10px;
      font-size:25px;line-height:1.08;letter-spacing:-.035em;
    }
    .hero-note p{
      margin:0;
      font-size:11px;line-height:1.75;color:rgba(255,255,255,.64);
    }
    .hero-mini-flow{
      display:flex;align-items:center;gap:7px;margin-top:20px;flex-wrap:wrap;
    }
    .hero-mini-flow span{
      display:inline-flex;align-items:center;justify-content:center;
      min-height:30px;padding:0 10px;border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      font-size:8px;font-weight:800;
    }
    .hero-mini-flow i{
      width:13px;border-top:2px dotted var(--yellow);opacity:.8;
    }

    /* =========================================================
       ROADMAP STAGE
       ========================================================= */
    .roadmap-section{
      padding:38px 0 72px;
    }
    .roadmap-shell{
      position:relative;
      height:740px;
      border-radius:34px;
      background:var(--navy);
      overflow:hidden;
      box-shadow:var(--shadow-heavy);
      isolation:isolate;
    }

    .roadmap-shell::before{
      content:"";
      position:absolute;inset:0;
      background-image:
        linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px);
      background-size:54px 54px;
      z-index:-2;
    }

    .roadmap-label{
      position:absolute;left:34px;top:28px;z-index:5;
      color:rgba(255,255,255,.62);
      font-size:9px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;
    }
    .roadmap-label strong{color:var(--yellow)}

    .route-svg{
      position:absolute;inset:70px 4% 42px;
      width:92%;height:610px;
      overflow:visible;
      z-index:1;
      pointer-events:none;
    }
    .route-base{
      fill:none;
      stroke:rgba(255,255,255,.16);
      stroke-width:3;
      stroke-linecap:round;
      stroke-dasharray:2 15;
    }
    .route-progress{
      fill:none;
      stroke:var(--yellow);
      stroke-width:3;
      stroke-linecap:round;
      stroke-dasharray:2 15;
      opacity:.82;
      clip-path:inset(0 100% 0 0);
      transition:clip-path .7s var(--ease);
    }
    .roadmap-shell.started .route-progress{clip-path:inset(0 0 0 0)}

    .route-mark{
      position:absolute;
      z-index:6;
      transform:translate(-50%,-50%);
    }
    .point-btn{
      width:64px;height:64px;
      border-radius:50%;
      border:2px solid rgba(255,255,255,.28);
      background:var(--navy);
      color:var(--white);
      cursor:pointer;
      display:grid;place-items:center;
      box-shadow:0 12px 28px rgba(0,0,0,.17);
      position:relative;
      transition:transform .25s var(--ease),background .25s var(--ease),border-color .25s var(--ease),color .25s var(--ease);
    }
    .point-btn::after{
      content:"";
      position:absolute;
      inset:-8px;
      border-radius:50%;
      border:1px dashed rgba(255,205,0,.38);
      opacity:0;
      transform:scale(.8);
      transition:.25s var(--ease);
    }
    .point-btn:hover,
    .point-btn:focus-visible,
    .route-mark.active .point-btn{
      background:var(--yellow);
      border-color:var(--yellow);
      color:var(--navy);
      transform:scale(1.08);
      outline:none;
    }
    .point-btn:hover::after,
    .point-btn:focus-visible::after,
    .route-mark.active .point-btn::after{
      opacity:1;
      transform:scale(1);
    }
    .point-btn strong{font-size:12px}

    .point-name{
      position:absolute;
      top:74px;left:50%;
      transform:translateX(-50%);
      min-width:120px;
      text-align:center;
      color:var(--white);
      font-size:10px;font-weight:800;
    }
    .point-name span{
      display:block;
      margin-top:4px;
      color:rgba(255,255,255,.46);
      font-size:8px;font-weight:600;
    }

    /* route coordinates */
    .p1{left:10%;top:73%}
    .p2{left:26%;top:45%}
    .p3{left:43%;top:68%}
    .p4{left:59%;top:32%}
    .p5{left:76%;top:54%}
    .p6{left:90%;top:24%}

    /* Desktop floating popover */
    .process-popover{
      position:absolute;
      z-index:20;
      width:min(360px,calc(100% - 40px));
      padding:20px;
      border-radius:20px;
      background:var(--white);
      color:var(--navy);
      box-shadow:0 22px 70px rgba(0,0,0,.28);
      border:1px solid rgba(25,34,48,.08);
      pointer-events:none;
      opacity:0;
      visibility:hidden;
      transform:translateY(8px) scale(.97);
      transition:opacity .2s var(--ease),transform .2s var(--ease),visibility .2s;
    }
    .process-popover.show{
      opacity:1;
      visibility:visible;
      transform:none;
    }
    .popover-top{
      display:flex;align-items:center;justify-content:space-between;gap:12px;
      margin-bottom:12px;
    }
    .popover-num{
      width:34px;height:34px;border-radius:10px;
      background:var(--navy);color:var(--yellow);
      display:grid;place-items:center;font-size:9px;font-weight:800;
    }
    .popover-tag{
      font-size:8px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;
      opacity:.48;
    }
    .process-popover h3{
      margin:0;
      font-size:20px;line-height:1.05;letter-spacing:-.03em;
    }
    .process-popover p{
      margin:9px 0 0;
      font-size:10px;line-height:1.65;opacity:.62;
    }
    .popover-items{
      display:grid;grid-template-columns:1fr 1fr;gap:7px;margin-top:14px;
    }
    .popover-item{
      padding:9px 10px;border-radius:10px;background:rgba(25,34,48,.05);
      font-size:8px;font-weight:700;line-height:1.4;
    }
    .popover-output{
      margin-top:13px;
      padding-top:12px;
      border-top:1px solid rgba(25,34,48,.09);
      display:flex;align-items:center;justify-content:space-between;gap:12px;
    }
    .popover-output span{font-size:8px;opacity:.48;font-weight:800;text-transform:uppercase}
    .popover-output strong{font-size:9px;text-align:right}

    .start-marker,.finish-marker{
      position:absolute;z-index:4;
      display:flex;align-items:center;gap:7px;
      color:rgba(255,255,255,.56);
      font-size:8px;font-weight:800;letter-spacing:.11em;text-transform:uppercase;
    }
    .start-marker{left:5%;bottom:8%}
    .finish-marker{right:5%;top:8%}
    .start-marker::before,.finish-marker::after{
      content:"";width:8px;height:8px;background:var(--yellow);border-radius:2px;
    }

    /* =========================================================
       MOBILE ROADMAP — completely different interaction
       ========================================================= */
    .mobile-journey{display:none}

    /* =========================================================
       SIMPLE TRUST BAND
       ========================================================= */
    .trust-band{
      padding:0 0 68px;
    }
    .trust-shell{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      border:1px solid rgba(25,34,48,.10);
      border-radius:24px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .trust-item{
      padding:21px;
      border-right:1px solid rgba(25,34,48,.10);
      background:var(--white);
    }
    .trust-item:last-child{border-right:0}
    .trust-icon{
      width:38px;height:38px;border-radius:11px;
      display:grid;place-items:center;
      background:var(--navy);color:var(--yellow);
    }
    .trust-icon svg{width:17px;height:17px}
    .trust-item h3{margin:18px 0 6px;font-size:13px}
    .trust-item p{margin:0;font-size:9px;line-height:1.6;opacity:.58}

    /* =========================================================
       ENGAGEMENT SWITCH
       ========================================================= */
    .engagement{
      padding:68px 0;
      background:var(--navy);
      color:var(--white);
    }
    .engagement-head{
      display:grid;
      grid-template-columns:1fr .6fr;
      gap:35px;
      align-items:end;
      margin-bottom:26px;
    }
    .engagement .lead{opacity:1;color:rgba(255,255,255,.60)}
    .mode-switch{
      justify-self:end;
      display:flex;
      padding:5px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.04);
    }
    .mode-btn{
      border:0;cursor:pointer;
      padding:11px 14px;
      border-radius:10px;
      background:transparent;
      color:rgba(255,255,255,.55);
      font-size:9px;font-weight:800;
    }
    .mode-btn.active{background:var(--yellow);color:var(--navy)}
    .mode-panel{
      display:none;
      padding:26px;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.09);
      background:rgba(255,255,255,.035);
    }
    .mode-panel.active{display:grid;grid-template-columns:.8fr 1.2fr;gap:36px;align-items:center}
    .mode-panel h3{margin:0;font-size:24px;line-height:1.05}
    .mode-panel p{margin:10px 0 0;font-size:10px;line-height:1.7;color:rgba(255,255,255,.60)}
    .mode-flow{
      display:flex;flex-wrap:wrap;gap:7px;justify-content:flex-end;
    }
    .mode-flow span{
      padding:9px 11px;border-radius:999px;border:1px solid rgba(255,255,255,.14);
      font-size:8px;font-weight:800;
    }
    .mode-flow i{
      width:18px;align-self:center;border-top:2px dotted var(--yellow);
    }

    /* =========================================================
       EXPECTATIONS
       ========================================================= */
    .expectations{padding:68px 0}
    .expect-head{
      text-align:center;
      max-width:760px;
      margin:0 auto 28px;
    }
    .expect-head .eyebrow{justify-content:center}
    .expect-head .display{font-size:clamp(30px,3.5vw,48px);margin-inline:auto}
    .expect-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
    .expect-card{
      padding:26px;border-radius:22px;border:1px solid rgba(25,34,48,.10);
      background:var(--white);box-shadow:var(--shadow);
    }
    .expect-card.dark{background:var(--navy);color:var(--white);border-color:var(--navy)}
    .expect-card h3{margin:0 0 17px;font-size:18px}
    .expect-list{display:grid;gap:8px}
    .expect-row{
      display:grid;grid-template-columns:28px 1fr;gap:10px;align-items:start;
      padding:9px 0;border-bottom:1px solid rgba(25,34,48,.08);
    }
    .expect-card.dark .expect-row{border-bottom-color:rgba(255,255,255,.08)}
    .expect-row:last-child{border-bottom:0}
    .expect-num{
      width:27px;height:27px;border-radius:8px;
      display:grid;place-items:center;background:var(--yellow);color:var(--navy);
      font-size:8px;font-weight:800;
    }
    .expect-row strong{font-size:9px}
    .expect-row small{display:block;margin-top:3px;font-size:8px;line-height:1.5;opacity:.52}

    /* =========================================================
       CTA
       ========================================================= */
    .cta{padding:0 0 78px}
    .cta-shell{
      position:relative;overflow:hidden;
      padding:38px 42px;border-radius:25px;
      background:var(--navy);color:var(--white);
      display:grid;grid-template-columns:1fr auto;gap:28px;align-items:center;
    }
    .cta-shell::before{content:"";position:absolute;left:0;top:0;bottom:0;width:5px;background:var(--yellow)}
    .cta-shell h2{
      margin:0;max-width:760px;font-size:clamp(28px,3.3vw,45px);
      line-height:1;letter-spacing:-.04em;
    }
    .cta-shell p{margin:10px 0 0;font-size:9px;line-height:1.65;color:rgba(255,255,255,.60)}
    .cta-btn{
      min-height:50px;padding:0 18px;border-radius:15px;
      background:var(--yellow);color:var(--navy);
      display:inline-flex;align-items:center;gap:9px;
      font-size:10px;font-weight:800;transition:.25s var(--ease);
    }
    .cta-btn:hover{transform:translateY(-3px)}
    .cta-btn svg{width:16px;height:16px}

    .reveal{opacity:0;transform:translateY(20px);transition:.65s var(--ease)}
    .reveal.visible{opacity:1;transform:none}

    @media(max-width:960px){
      :root{--page:min(100% - 28px,1380px)}
      .hero-grid{grid-template-columns:1fr;gap:30px}
      .trust-shell{grid-template-columns:1fr 1fr}
      .trust-item:nth-child(2){border-right:0}
      .trust-item:nth-child(-n+2){border-bottom:1px solid rgba(25,34,48,.10)}
      .engagement-head{grid-template-columns:1fr}
      .mode-switch{justify-self:start}
    }

    @media(max-width:760px){
      .hero{padding:68px 0 42px}
      .display{font-size:clamp(38px,11vw,52px)}
      .hero-note{padding:21px}

      /* Hide the hover-centric desktop map */
      .roadmap-shell{display:none}

      /* Mobile becomes a vertical path with tap cards */
      .mobile-journey{
        display:block;
        position:relative;
        padding:18px 0 4px;
      }
      .mobile-journey::before{
        content:"";
        position:absolute;
        left:28px;top:30px;bottom:24px;
        border-left:3px dotted rgba(25,34,48,.22);
      }
      .mobile-step{
        position:relative;
        display:grid;
        grid-template-columns:58px 1fr;
        gap:12px;
        margin-bottom:10px;
      }
      .mobile-node{
        width:56px;height:56px;border-radius:50%;
        background:var(--navy);color:var(--yellow);
        display:grid;place-items:center;
        font-size:10px;font-weight:800;
        border:4px solid var(--white);
        box-shadow:0 8px 20px rgba(25,34,48,.15);
        z-index:2;
      }
      .mobile-trigger{
        width:100%;
        border:1px solid rgba(25,34,48,.10);
        border-radius:17px;
        background:var(--white);
        padding:16px 46px 16px 16px;
        text-align:left;
        color:var(--navy);
        position:relative;
        box-shadow:0 8px 24px rgba(25,34,48,.055);
      }
      .mobile-trigger strong{font-size:12px}
      .mobile-trigger span{display:block;margin-top:4px;font-size:8px;opacity:.52}
      .mobile-plus{
        position:absolute;right:13px;top:50%;transform:translateY(-50%);
        width:28px;height:28px;border-radius:8px;
        display:grid;place-items:center;background:var(--navy);color:var(--yellow);
        font-size:17px;transition:.25s var(--ease);
      }
      .mobile-step.open .mobile-plus{transform:translateY(-50%) rotate(45deg)}
      .mobile-content{
        grid-column:2;
        max-height:0;opacity:0;overflow:hidden;
        transition:max-height .4s var(--ease),opacity .25s var(--ease),padding .3s var(--ease);
        padding:0 15px;
      }
      .mobile-step.open .mobile-content{
        max-height:430px;opacity:1;
        padding:13px 15px 16px;
      }
      .mobile-content p{margin:0;font-size:9px;line-height:1.65;opacity:.62}
      .mobile-items{display:flex;flex-wrap:wrap;gap:6px;margin-top:10px}
      .mobile-items span{
        padding:7px 8px;border-radius:8px;background:rgba(25,34,48,.055);
        font-size:7px;font-weight:800;
      }
      .mobile-output{
        margin-top:10px;padding-top:9px;border-top:1px solid rgba(25,34,48,.08);
        font-size:8px;font-weight:800;
      }
      .mobile-output b{color:var(--navy)}

      .roadmap-section{padding:28px 0 55px}
      .roadmap-mobile-head{display:block;margin-bottom:18px}

      .trust-shell{grid-template-columns:1fr}
      .trust-item{border-right:0!important;border-bottom:1px solid rgba(25,34,48,.10)}
      .trust-item:last-child{border-bottom:0}
      .mode-panel.active{grid-template-columns:1fr;gap:18px}
      .mode-flow{justify-content:flex-start}
      .expect-grid{grid-template-columns:1fr}
      .cta-shell{grid-template-columns:1fr;padding:30px 23px}
    }

    @media(min-width:761px){
      .roadmap-mobile-head{display:none}
    }

    @media(max-width:480px){
      :root{--page:calc(100% - 20px)}
      .hero-mini-flow i{display:none}
      .trust-band{padding-bottom:54px}
      .engagement{padding:58px 0}
      .expectations{padding:58px 0}
      .mode-switch{width:100%}
      .mode-btn{flex:1}
    }

    @media(prefers-reduced-motion:reduce){
      *{transition:none!important;animation:none!important}
      .reveal{opacity:1;transform:none}
    }
  