:root{
    --bg:#0b0f17;
    --panel:#111a2b;
    --panel2:#0c1324;
    --stroke:#223154;
    --stroke2:#2b3a62;
    --text:#e8eefc;
    --muted:#b7c6ea;
    --muted2:#91a6d8;
    --accent:#4b6bff;
  
    --radius:18px;
    --radius2:12px;
  }
  
  *{box-sizing:border-box}
  html,body{height:100%}
  body{
    margin:0;
    font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
    background:
      radial-gradient(900px 500px at 15% 10%, rgba(124,58,237,.22), transparent 60%),
      radial-gradient(700px 400px at 90% 15%, rgba(6,182,212,.18), transparent 55%),
      var(--bg);
    color:var(--text);
  }
  
  img{max-width:100%; height:auto}
  
  .wrap{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:24px;
  }
  
  /* Header/logo: clean (no overpowering white panel) */
  .brandHeader{
    width:min(980px,100%);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px 6px 18px;
  }
  
  .brandLogo{
    width:min(560px, 92vw);
    height:auto;
    display:block;
    opacity:0.95;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,.35));
  }
  
  .card{
    width:min(980px,100%);
    background:linear-gradient(180deg, rgba(17,26,43,.92), rgba(17,26,43,.78));
    border:1px solid var(--stroke);
    border-radius:var(--radius);
    box-shadow:0 18px 50px rgba(0,0,0,.45);
    overflow:hidden;
  }
  
  /* Card top bar to hold badge */
  .cardTop{
    display:flex;
    justify-content:flex-end;
    padding:14px 16px 0;
  }
  
  .badge{
    font-size:12px;
    color:var(--muted);
    border:1px solid var(--stroke2);
    padding:6px 10px;
    border-radius:999px;
    background:rgba(12,19,36,.55);
    white-space:nowrap;
  }
  
  .hero{
    display:grid;
    grid-template-columns: 1.25fr .75fr;
  }
  
  @media (max-width: 900px){
    .hero{grid-template-columns:1fr}
  }
  
  .left{
    padding:28px 34px 34px;
  }
  
  .right{
    padding:28px 34px 34px;
    border-left:1px solid rgba(34,49,84,.7);
    background:rgba(12,19,36,.55);
  }
  
  @media (max-width: 900px){
    .right{
      border-left:none;
      border-top:1px solid rgba(34,49,84,.7);
    }
  }
  
  h1{
    margin:0 0 12px;
    font-size:40px;
    line-height:1.08;
    letter-spacing:-.02em;
  }
  
  .sub{
    margin:0 0 18px;
    color:var(--muted);
    font-size:16px;
    line-height:1.55;
  }
  
  .kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:12px;
    color:var(--muted2);
    border:1px solid rgba(43,58,98,.9);
    background:rgba(12,19,36,.55);
    padding:7px 10px;
    border-radius:999px;
    margin-bottom:14px;
  }
  
  .kdot{
    width:10px;height:10px;border-radius:999px;
    background:linear-gradient(135deg, #7c3aed, #06b6d4);
  }
  
  .bullets{
    margin:18px 0 0;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
  }
  
  .bullets li{
    display:flex;
    gap:10px;
    color:var(--muted);
    line-height:1.45;
  }
  
  .dot{
    width:10px;height:10px;margin-top:6px;border-radius:999px;
    background:linear-gradient(135deg, #7c3aed, #06b6d4);
    flex:0 0 auto;
  }
  
  .formTitle{
    margin:0 0 10px;
    font-size:14px;
    color:var(--muted2);
    letter-spacing:.02em;
  }
  
  .label{
    display:block;
    margin:12px 0 8px;
    color:var(--muted);
    font-size:13px;
  }
  
  .input{
    width:100%;
    padding:14px 12px;
    border-radius:var(--radius2);
    border:1px solid var(--stroke2);
    background:var(--panel2);
    color:var(--text);
    outline:none;
  }
  
  .input:focus{border-color:var(--accent)}
  
  /* Button works for <button> AND <a> */
  .btn{
    width:100%;
    margin-top:14px;
    padding:14px 12px;
    border-radius:var(--radius2);
    border:0;
    background:var(--accent);
    color:white;
    font-weight:750;
    cursor:pointer;
  
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    line-height:1.1;
    white-space:normal;
  }
  
  .btn:hover{filter:brightness(1.04)}
  .btn:active{transform:translateY(1px)}
  
  .btn.ghost{
    background:transparent;
    border:1px solid var(--stroke2);
    color:var(--text);
  }
  
  .fine{
    margin:12px 0 0;
    font-size:12px;
    color:var(--muted2);
    line-height:1.45;
  }
  
  .hidden{display:none}
  
  .stack{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:8px;
  }
  
  /* Trust + trademark lines (white, professional) */
  .pageFoot{
    width:min(980px,100%);
    margin-top:16px;
    padding:0 6px 10px;
    text-align:center;
    color:rgba(255,255,255,.88);
    font-size:12px;
    line-height:1.5;
  }
  
  .pageFoot small{
    display:block;
    margin-top:8px;
    color:rgba(255,255,255,.72);
    font-size:11px;
  }
  