:root{
      --navy:#002e5b;
      --deep:#061b33;
      --yellow:#fde428;
      --gold:#d7be00;
      --text:#1f2937;
      --muted:#667085;
      --soft:#f4f7fb;
      --line:#e5e7eb;
      --white:#ffffff;
      --green:#0f766e;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Arial, Helvetica, sans-serif;
      color:var(--text);
      background:#fff;
    }
    a{text-decoration:none;color:inherit}

    .topbar{
      background:var(--deep);
      color:#fff;
      padding:9px 7%;
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      font-size:13px;
      line-height:1.4;
    }
    .topbar strong{color:var(--yellow)}

    .nav{
      background:#fff;
      border-bottom:1px solid var(--line);
      padding:20px 7%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
      position:sticky;
      top:0;
      z-index:20;
    }
    .logo{
      font-size:29px;
      font-weight:900;
      color:var(--navy);
      letter-spacing:-1px;
      white-space:nowrap;
    }
    .logo span{color:var(--gold)}
    .navlinks{
      display:flex;
      gap:24px;
      font-size:14px;
      font-weight:700;
      color:#344054;
      flex-wrap:wrap;
      align-items:center;
    }

    .btn{
      min-height:48px;
      min-width:158px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      background:var(--yellow);
      color:var(--navy);
      padding:13px 24px;
      border-radius:4px;
      font-size:15px;
      line-height:1.1;
      font-weight:900;
      border:2px solid var(--yellow);
      box-shadow:0 12px 26px rgba(0,46,91,.13);
      cursor:pointer;
      transition:.2s ease;
    }
    .btn:hover{transform:translateY(-1px)}
    .btn.dark{
      background:var(--navy);
      color:#fff;
      border-color:var(--navy);
    }
    .btn.secondary-dark{
      background:#fff;
      color:var(--navy);
      border-color:#fff;
      box-shadow:0 12px 28px rgba(0,0,0,.18);
    }
    .btn.secondary-dark:hover{
      background:var(--yellow);
      border-color:var(--yellow);
    }
    .btn.white-outline{
      background:rgba(255,255,255,.08);
      color:#fff;
      border-color:rgba(255,255,255,.75);
      box-shadow:none;
      backdrop-filter:blur(6px);
    }
    .btn.white-outline:hover{
      background:#fff;
      color:var(--navy);
      border-color:#fff;
    }
    .btn.navy-outline{
      background:#fff;
      color:var(--navy);
      border-color:var(--navy);
      box-shadow:0 10px 24px rgba(0,46,91,.08);
    }
    .btn.navy-outline:hover{
      background:var(--navy);
      color:#fff;
    }
    .btn.small{
      min-height:42px;
      min-width:132px;
      padding:10px 18px;
      font-size:14px;
    }

    .hero{
      background:
        linear-gradient(90deg,rgba(0,46,91,.98),rgba(0,46,91,.94) 54%,rgba(0,46,91,.72)),
        radial-gradient(circle at 78% 20%,rgba(253,228,40,.28),transparent 28%),
        radial-gradient(circle at 18% 84%,rgba(255,255,255,.12),transparent 22%),
        linear-gradient(135deg,#0c315d,#061b33);
      color:#fff;
      padding:108px 7% 96px;
      min-height:690px;
      display:flex;
      align-items:center;
    }
    .hero-inner{
      max-width:1040px;
    }
    .slogan-pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      background:rgba(253,228,40,.14);
      color:var(--yellow);
      border:1px solid rgba(253,228,40,.45);
      padding:9px 14px;
      border-radius:999px;
      font-size:13px;
      font-weight:900;
      letter-spacing:1.2px;
      text-transform:uppercase;
      margin-bottom:22px;
    }
    .slogan-pill:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--yellow);
      display:inline-block;
    }
    .eyebrow{
      color:var(--gold);
      font-size:13px;
      font-weight:900;
      letter-spacing:1.5px;
      text-transform:uppercase;
      margin-bottom:14px;
    }
    .hero .eyebrow,.dark .eyebrow{color:var(--yellow)}
    h1{
      font-size:clamp(46px,6.5vw,88px);
      line-height:.98;
      letter-spacing:-3px;
      margin:0 0 24px;
      font-weight:900;
      max-width:980px;
    }
    h2{
      font-size:clamp(32px,4.4vw,56px);
      line-height:1.08;
      letter-spacing:-1.5px;
      margin:0 0 18px;
      color:var(--navy);
      font-weight:900;
      max-width:990px;
    }
    h3{
      color:var(--navy);
      font-size:24px;
      line-height:1.15;
      margin:0 0 12px;
      font-weight:900;
    }
    h4{
      color:var(--navy);
      font-size:19px;
      margin:0 0 8px;
      font-weight:900;
    }
    p{
      font-size:17px;
      line-height:1.65;
      color:var(--muted);
    }
    .hero-subtitle{
      font-size:22px;
      color:#eaf1f8;
      margin:0 0 34px;
      max-width:860px;
      line-height:1.55;
    }
    .hero-points{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      max-width:920px;
      margin-top:34px;
    }
    .hero-point{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      padding:18px;
      border-radius:8px;
    }
    .hero-point strong{
      display:block;
      color:#fff;
      font-size:17px;
      margin-bottom:6px;
    }
    .hero-point span{
      color:#dce6f2;
      font-size:14px;
      line-height:1.5;
    }
    .actions{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin-top:26px;
    }

    .proof{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:0;
      padding:0 7%;
      transform:translateY(-38px);
    }
    .proof div{
      background:#fff;
      padding:28px;
      border-right:1px solid var(--line);
      box-shadow:0 20px 45px rgba(0,46,91,.08);
    }
    .proof div:first-child{border-radius:8px 0 0 8px}
    .proof div:last-child{border-radius:0 8px 8px 0;border-right:0}
    .proof strong{
      display:block;
      color:var(--navy);
      font-size:24px;
      font-weight:900;
      margin-bottom:6px;
    }
    .proof span{color:var(--muted);font-size:14px;line-height:1.5}

    .section{padding:76px 7%}
    .soft{background:var(--soft)}
    .lead{
      font-size:19px;
      line-height:1.65;
      color:var(--muted);
      max-width:950px;
      margin:0 0 38px;
    }

    .grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
    .grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
    .card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:8px;
      padding:30px;
      box-shadow:0 12px 30px rgba(0,46,91,.06);
    }
    .card p{margin:0}
    .icon{
      width:48px;
      height:48px;
      border-radius:50%;
      background:var(--yellow);
      color:var(--navy);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      margin-bottom:18px;
    }

    .split{
      display:grid;
      grid-template-columns:.92fr 1.08fr;
      gap:56px;
      align-items:center;
    }

    .dark{
      background:var(--navy);
      color:#fff;
      padding:78px 7%;
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:50px;
      align-items:start;
    }
    .dark h2{color:#fff}
    .dark p,.dark .lead{color:#dce6f2}
    .benefits{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }
    .benefit{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      padding:22px;
      border-radius:8px;
    }
    .benefit strong{
      display:block;
      color:var(--yellow);
      font-size:18px;
      margin-bottom:8px;
    }
    .benefit span{color:#dce6f2;line-height:1.5}

    .steps{display:grid;gap:18px}
    .step{
      background:#fff;
      border-left:5px solid var(--yellow);
      padding:24px 26px;
      border-radius:6px;
      box-shadow:0 12px 30px rgba(0,46,91,.06);
    }
    .step small{
      display:inline-block;
      background:var(--navy);
      color:var(--yellow);
      font-weight:900;
      border-radius:3px;
      padding:5px 9px;
      margin-bottom:10px;
    }

    .checklist{
      list-style:none;
      padding:0;
      margin:26px 0 0;
      display:grid;
      gap:14px;
    }
    .checklist li{
      position:relative;
      padding-left:34px;
      color:#344054;
      font-size:17px;
      line-height:1.5;
    }
    .checklist li:before{
      content:"✓";
      position:absolute;
      left:0;
      top:0;
      background:var(--yellow);
      color:var(--navy);
      width:22px;
      height:22px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:13px;
      font-weight:900;
    }

    .choice{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
      margin-top:34px;
    }
    .choice-card{
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--line);
      background:#fff;
      box-shadow:0 16px 42px rgba(0,46,91,.08);
    }
    .choice-head{
      background:var(--navy);
      color:#fff;
      padding:26px;
    }
    .choice-head.alt{background:var(--deep)}
    .choice-head span{
      color:var(--yellow);
      font-weight:900;
      text-transform:uppercase;
      font-size:12px;
      letter-spacing:1.2px;
    }
    .choice-head h3{
      color:#fff;
      margin-top:10px;
      font-size:28px;
    }
    .choice-body{padding:26px}
    .choice-body p{margin-top:0}

    .snapshot-section{
      background:#fff;
      padding:20px 7% 76px;
    }
    .snapshot-wrap{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:34px;
      align-items:center;
      background:var(--soft);
      border:1px solid var(--line);
      border-radius:12px;
      padding:34px;
      box-shadow:0 18px 48px rgba(0,46,91,.07);
    }
    .snapshot-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:10px;
      padding:26px;
      box-shadow:0 16px 40px rgba(0,46,91,.08);
    }
    .snapshot-title{
      color:var(--navy);
      font-weight:900;
      font-size:20px;
      margin-bottom:18px;
    }
    .snap{
      border:1px solid var(--line);
      border-radius:8px;
      background:#fbfcff;
      padding:18px;
      margin-bottom:16px;
    }
    .row{
      display:flex;
      justify-content:space-between;
      gap:20px;
      padding:12px 0;
      border-bottom:1px solid #edf1f6;
      color:#475467;
    }
    .row:last-child{border-bottom:0}
    .row strong{color:var(--navy);text-align:right}
    .ai-box{
      background:var(--navy);
      color:#fff;
      border-radius:8px;
      padding:20px;
    }
    .ai-box .big{
      font-size:34px;
      font-weight:900;
      color:var(--yellow);
      line-height:1.05;
      margin:8px 0;
      letter-spacing:-1px;
    }
    .ai-box small{color:#dce6f2;line-height:1.5;display:block}

    .marketplace{
      background:
        linear-gradient(135deg,rgba(253,228,40,.95),rgba(255,245,166,.95)),
        radial-gradient(circle at 10% 10%,rgba(255,255,255,.6),transparent 24%);
      padding:76px 7%;
    }
    .marketplace h2{color:var(--deep)}
    .deal-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      margin-top:34px;
    }
    .deal{
      background:#fff;
      border:1px solid rgba(0,46,91,.14);
      border-radius:8px;
      padding:22px;
      box-shadow:0 12px 28px rgba(0,46,91,.08);
    }
    .deal strong{
      display:block;
      color:var(--navy);
      font-size:18px;
      margin-bottom:8px;
    }
    .deal span{
      color:#344054;
      line-height:1.5;
      font-size:15px;
    }

    .band{
      background:var(--deep);
      color:#fff;
      padding:60px 7%;
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .band h2{color:#fff;margin-bottom:10px}
    .band p{color:#dce6f2;margin:0}

    .form-section{
      padding:78px 7%;
      background:var(--soft);
    }
    .form-wrap{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:46px;
      align-items:start;
    }
    .formbox{
      background:#fff;
      border-radius:8px;
      padding:28px;
      box-shadow:0 18px 50px rgba(0,46,91,.1);
      border:1px solid var(--line);
      min-height:480px;
    }
    .note{
      background:#fff8c8;
      border-left:5px solid var(--yellow);
      padding:18px 20px;
      border-radius:5px;
      color:#344054;
      line-height:1.55;
      margin-top:24px;
    }

    .footer{
      background:var(--deep);
      color:#b8c7d9;
      padding:40px 7%;
      display:flex;
      justify-content:space-between;
      gap:24px;
      flex-wrap:wrap;
      font-size:14px;
    }
    .footer strong{color:#fff}


    .team-strip{
      background:#fff;
      padding:76px 7%;
    }
    .team-card{
      display:grid;
      grid-template-columns:.78fr 1.22fr;
      gap:34px;
      align-items:center;
      background:var(--soft);
      border:1px solid var(--line);
      border-radius:12px;
      padding:34px;
      box-shadow:0 18px 48px rgba(0,46,91,.07);
    }
    .founder-badge{
      background:var(--navy);
      color:#fff;
      border-radius:10px;
      padding:30px;
      min-height:220px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .founder-badge span{
      color:var(--yellow);
      font-size:13px;
      font-weight:900;
      letter-spacing:1.2px;
      text-transform:uppercase;
      margin-bottom:10px;
    }
    .founder-badge strong{
      font-size:34px;
      line-height:1.05;
      letter-spacing:-1px;
    }
    .founder-copy p{
      margin-top:0;
    }
    .compliance-popups{
      background:#fff;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
      padding:42px 7%;
    }
    .popup-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
      margin-top:24px;
    }
    .popup-card{
      background:var(--soft);
      border:1px solid var(--line);
      border-radius:8px;
      padding:22px;
    }
    .popup-card strong{
      display:block;
      color:var(--navy);
      margin-bottom:8px;
      font-size:18px;
    }
    .popup-card span{
      color:var(--muted);
      line-height:1.55;
      font-size:15px;
    }
    .footer-expanded{
      background:var(--deep);
      color:#b8c7d9;
      padding:56px 7% 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .75fr .75fr 1fr;
      gap:34px;
      border-bottom:1px solid rgba(255,255,255,.12);
      padding-bottom:34px;
    }
    .footer-expanded h4{
      color:#fff;
      margin:0 0 16px;
      font-size:17px;
    }
    .footer-expanded p,
    .footer-expanded a,
    .footer-expanded li{
      color:#b8c7d9;
      font-size:14px;
      line-height:1.65;
    }
    .footer-expanded a:hover{
      color:var(--yellow);
    }
    .footer-expanded ul{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:8px;
    }
    .footer-brand strong{
      display:block;
      color:#fff;
      font-size:24px;
      margin-bottom:10px;
    }
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
      padding-top:22px;
      font-size:13px;
      color:#91a4bb;
    }
    .footer-bottom a{
      color:#91a4bb;
      margin-left:14px;
    }


    .header-actions{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
    }
    .contact-btn{
      min-height:40px;
      min-width:auto;
      padding:10px 14px;
      border-radius:4px;
      font-size:13px;
      font-weight:900;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border:1px solid var(--line);
      color:var(--navy);
      background:#fff;
      box-shadow:0 8px 18px rgba(0,46,91,.06);
    }
    .contact-btn:hover{
      background:var(--soft);
    }
    .menu-group{
      display:flex;
      gap:18px;
      align-items:center;
      flex-wrap:wrap;
    }
    .choice-body{
      display:flex;
      flex-direction:column;
      min-height:390px;
    }
    .choice-body .checklist{
      flex:1;
    }
    .choice-cta{
      margin-top:24px;
      padding-top:20px;
      border-top:1px solid var(--line);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      flex-wrap:wrap;
    }
    .choice-cta span{
      color:var(--muted);
      font-size:14px;
      line-height:1.45;
      max-width:310px;
    }
    .choice-cta .btn{
      min-width:178px;
    }


    .choice-body{
      display:block;
      min-height:auto;
    }
    .choice-body .checklist{
      margin-bottom:26px;
    }
    .card-button-row{
      margin-top:26px;
    }
    .card-button-row .btn{
      width:auto;
      min-width:190px;
    }


    .card-button-row{
      margin-top:22px;
    }
    .card-button-row .btn.card-small-btn{
      min-height:38px;
      min-width:auto;
      width:auto;
      max-width:none;
      padding:9px 16px;
      font-size:13px;
      border-radius:3px;
      box-shadow:none;
      display:inline-flex;
    }

    @media(max-width:1050px){
      .deal-grid{grid-template-columns:repeat(2,1fr)}
      .hero-points{grid-template-columns:1fr}
    }
    @media(max-width:950px){
      .nav{position:relative;align-items:flex-start;flex-direction:column}
      .split,.dark,.form-wrap,.band,.snapshot-wrap{grid-template-columns:1fr}
      .proof,.grid3,.grid2,.benefits,.choice,.deal-grid,.team-card,.popup-grid,.footer-grid{grid-template-columns:1fr}
      .hero{padding:86px 7% 76px;min-height:auto}
      .proof{transform:none;padding:24px 7%}
      .proof div{border-radius:8px!important;border-right:0;margin-bottom:12px}
      h1{letter-spacing:-1.5px}
      .btn{width:100%;max-width:360px}.header-actions{width:100%}.contact-btn{width:calc(50% - 5px)}.choice-cta{align-items:flex-start}.choice-cta span{max-width:100%}
      .actions{align-items:stretch}
    }