    :root{
      --bg: #070b14;
      --panel: #0b1220;
      --panel2:#0f1a2f;
      --text:#e8eefc;
      --muted:#aab7d6;
      --muted2:#7f8fb5;
      --line: rgba(232,238,252,.12);
      --brand:#57d1ff;
      --brand2:#8bffcf;
      --warn:#ffdf7a;
      --good:#7dffb0;
      --radius: 18px;
      --shadow: 0 10px 30px rgba(0,0,0,.35);
      --max: 1120px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
      background:
        radial-gradient(1200px 600px at 10% 0%, rgba(87,209,255,.14), transparent 55%),
        radial-gradient(900px 500px at 90% 10%, rgba(139,255,207,.10), transparent 55%),
        radial-gradient(900px 500px at 60% 80%, rgba(87,209,255,.08), transparent 60%),
        var(--bg);
      color:var(--text);
      line-height:1.5;
    }

    a{color:inherit}
    .skip{
      position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
    }
    .skip:focus{
      left:16px; top:16px; width:auto; height:auto; padding:10px 12px; border-radius:10px;
      background:var(--panel); border:1px solid var(--line); z-index:9999;
    }

    .container{max-width:var(--max); margin:0 auto; padding:0 18px}
    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:saturate(140%) blur(10px);
      background:linear-gradient(to bottom, rgba(7,11,20,.85), rgba(7,11,20,.55));
      border-bottom:1px solid var(--line);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex; align-items:center; gap:10px; text-decoration:none;
      font-weight:700; letter-spacing:.2px;
    }
    .logo{
      width:34px; height:34px; border-radius:12px;
      background:linear-gradient(135deg, rgba(87,209,255,.95), rgba(139,255,207,.9));
      box-shadow: 0 10px 25px rgba(87,209,255,.18);
      display:grid; place-items:center; color:#061021; font-weight:900;
    }
    nav ul{
      list-style:none; margin:0; padding:0;
      display:flex; gap:14px; align-items:center; flex-wrap:wrap;
    }
    nav a{
      text-decoration:none; color:var(--muted);
      padding:8px 10px; border-radius:12px; border:1px solid transparent;
    }
    nav a:hover{color:var(--text); border-color:var(--line); background:rgba(255,255,255,.03)}
    .nav-cta{
      display:flex; gap:10px; align-items:center;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:8px;
      padding:10px 14px; border-radius:14px; border:1px solid var(--line);
      background:rgba(255,255,255,.03);
      color:var(--text);
      text-decoration:none; font-weight:650;
      box-shadow:none;
      transition: transform .06s ease, background .15s ease, border-color .15s ease;
      white-space:nowrap;
    }
    .btn:hover{background:rgba(255,255,255,.06); border-color:rgba(232,238,252,.2)}
    .btn:active{transform:translateY(1px)}
    .btn.primary{
      border-color:rgba(87,209,255,.45);
      background:linear-gradient(135deg, rgba(87,209,255,.22), rgba(139,255,207,.12));
    }
    .btn.primary:hover{border-color:rgba(87,209,255,.75)}
    .btn.ghost{background:transparent}
    .pill{
      display:inline-flex; gap:10px; flex-wrap:wrap;
      color:var(--muted);
      font-size:.95rem;
    }
    .pill span{
      padding:6px 10px; border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.02);
    }

    main{padding:34px 0 70px}
    .hero{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:20px;
      align-items:stretch;
      margin-top:14px;
    }
    .card{
      background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow);
    }
    .hero-left{padding:28px}
    .hero-right{padding:22px}

    h1{
      font-size:clamp(1.7rem, 2.4vw + 1rem, 3rem);
      line-height:1.12;
      margin:0 0 10px;
      letter-spacing:-.3px;
    }
    .sub{
      color:var(--muted);
      font-size:1.05rem;
      margin:0 0 16px;
      max-width:60ch;
    }
    h2{
      font-size:1.55rem;
      margin:0 0 10px;
      letter-spacing:-.2px;
    }
    h3{
      font-size:1.05rem;
      margin:0 0 8px;
      color:var(--text);
    }
    .bullets{
      margin:14px 0 18px;
      padding-left:18px;
      color:var(--muted);
    }
    .bullets li{margin:6px 0}
    .cta-row{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
    .micro{
      margin:8px 0 0;
      color:var(--muted2);
      font-size:.92rem;
    }
    .trust{
      margin-top:14px;
      padding-top:14px;
      border-top:1px solid var(--line);
      display:flex; gap:10px; flex-wrap:wrap;
      color:var(--muted);
      font-size:.92rem;
    }
    .trust strong{color:var(--text); font-weight:650}

    .section{margin-top:26px}
    .section .wrap{
      display:grid; gap:16px;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .grid-2{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:14px;
    }
    .panel{padding:20px}
    .muted{color:var(--muted)}
    .muted2{color:var(--muted2)}
    .kicker{
      color:var(--brand);
      font-weight:750;
      letter-spacing:.25px;
      text-transform:uppercase;
      font-size:.8rem;
    }

    /* Estimator */
    form{margin:0}
    .form-grid{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:12px;
      margin-top:12px;
    }
    label{display:block; font-size:.92rem; color:var(--muted); margin:0 0 6px}
    input, select{
      width:100%;
      padding:12px 12px;
      border-radius:14px;
      border:1px solid rgba(232,238,252,.16);
      background:rgba(6,10,18,.55);
      color:var(--text);
      outline:none;
    }
    input:focus, select:focus{border-color:rgba(87,209,255,.55)}
    .result{
      margin-top:14px;
      border-top:1px solid var(--line);
      padding-top:14px;
      display:grid;
      gap:8px;
    }
    .result-row{
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
      color:var(--muted);
    }
    .result-row strong{color:var(--text)}
    .note{
      padding:10px 12px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.03);
      border-radius:14px;
      color:var(--muted);
      font-size:.92rem;
    }

    /* Proof tiles */
    .tiles{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .tile{
      padding:16px;
      border-radius:16px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.02);
    }
    .tile .cap{color:var(--muted2); font-size:.9rem}
    .tile .kv{margin-top:8px; color:var(--muted); font-size:.95rem}
    .tile .kv strong{color:var(--text)}

    /* Packages */
    .tag{
      display:inline-flex;
      padding:6px 10px;
      border-radius:999px;
      font-size:.82rem;
      color:rgba(232,238,252,.92);
      border:1px solid rgba(232,238,252,.14);
      background:rgba(255,255,255,.02);
    }

    /* Steps */
    .steps{display:grid; gap:12px}
    .step{
      display:flex; gap:12px; align-items:flex-start;
      padding:14px; border-radius:16px; border:1px solid var(--line);
      background:rgba(255,255,255,.02);
    }
    .num{
      width:34px; height:34px; border-radius:12px;
      display:grid; place-items:center;
      background:rgba(87,209,255,.16);
      border:1px solid rgba(87,209,255,.35);
      color:var(--text); font-weight:800;
      flex:0 0 auto;
    }

    /* FAQ */
    details{
      border:1px solid var(--line);
      border-radius:16px;
      background:rgba(255,255,255,.02);
      padding:12px 14px;
    }
    summary{
      cursor:pointer;
      font-weight:650;
      color:var(--text);
    }
    details p{margin:10px 0 0; color:var(--muted)}
    details + details{margin-top:10px}

    footer{
      border-top:1px solid var(--line);
      padding:26px 0 42px;
      color:var(--muted);
    }
    .foot-grid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap:16px;
    }
    .small{font-size:.92rem; color:var(--muted2)}
    .foot-links{display:flex; flex-wrap:wrap; gap:10px}
    .foot-links a{
      color:var(--muted); text-decoration:none;
      border:1px solid var(--line);
      background:rgba(255,255,255,.02);
      padding:8px 10px; border-radius:12px;
    }
    .foot-links a:hover{color:var(--text)}

    @media (max-width: 940px){
      .hero{grid-template-columns:1fr}
      .grid-3, .tiles{grid-template-columns:1fr}
      .grid-2{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      .foot-grid{grid-template-columns:1fr}
      nav ul{display:none}
    }
