
    :root{
      /* Visual Identity Palette */
      --bg: #0B0F14;          /* Deep Charcoal */
      --fg: #EAEAEA;          /* Signal White */
      --muted: rgba(234,234,234,.72);
      --muted2: rgba(234,234,234,.55);
      --card: rgba(234,234,234,.06);
      --card2: rgba(234,234,234,.085);
      --line: rgba(234,234,234,.12);

      --cyan: #00E5FF;        /* Electric Cyan */
      --violet: #8B5CF6;      /* Neon Violet (optional accent) */
      --green: #A3FF12;       /* Acid Green (optional accent) */

      --radius-xl: 22px;
      --radius-lg: 16px;
      --shadow: 0 20px 60px rgba(0,0,0,.45);
      --shadow2: 0 12px 30px rgba(0,0,0,.35);

      --max: 1120px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      background: var(--bg);
      color: var(--fg);
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      line-height: 1.4;
      overflow-x:hidden;
    }

    /* Subtle grid + glow background */
    .bg-grid{
      position:fixed; inset:0;
      background:
        radial-gradient(800px 500px at 25% 10%, rgba(0,229,255,.14), transparent 60%),
        radial-gradient(700px 500px at 70% 30%, rgba(139,92,246,.12), transparent 55%),
        linear-gradient(rgba(234,234,234,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234,234,234,.06) 1px, transparent 1px);
      background-size: auto, auto, 64px 64px, 64px 64px;
      opacity:.9;
      pointer-events:none;
      filter: saturate(1.05);
    }

    a{color:inherit; text-decoration:none}
    .wrap{max-width:var(--max); margin:0 auto; padding:0 20px}
    .section{padding:84px 0}
    .section.tight{padding:54px 0}
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:10px 14px;
      border:1px solid var(--line);
      background: rgba(0,0,0,.25);
      border-radius:999px;
      color: var(--muted);
      font-size: 13px;
      letter-spacing:.2px;
      backdrop-filter: blur(8px);
    }
    .dot{
      width:8px; height:8px; border-radius:50%;
      background: var(--cyan);
      box-shadow: 0 0 18px rgba(0,229,255,.65);
    }

    /* Header */
    header{
      position:sticky; top:0; z-index:50;
      backdrop-filter: blur(10px);
      background: rgba(11,15,20,.62);
      border-bottom: 1px solid rgba(234,234,234,.08);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      padding:14px 0;
      gap:12px;
    }
    .brand{
      display:flex; align-items:center; gap:12px;
      min-width: 180px;
    }
    .brand img{
      width:40px; height:40px; object-fit:contain;
      filter: drop-shadow(0 0 18px rgba(0,229,255,.22));
    }
    .brand .name{
      font-family: "Space Grotesk", Inter, sans-serif;
      font-weight:700;
      letter-spacing:.8px;
      font-size: 15px;
    }
    .navlinks{
      display:flex; align-items:center; gap:18px;
      color: var(--muted);
      font-size: 14px;
    }
    .navlinks a{padding:8px 10px; border-radius:10px}
    .navlinks a:hover{background: rgba(234,234,234,.06); color: var(--fg)}
    .actions{display:flex; align-items:center; gap:10px}
    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      border-radius: 14px;
      border: 1px solid rgba(234,234,234,.14);
      background: rgba(234,234,234,.06);
      color: var(--fg);
      padding: 11px 14px;
      font-weight:600;
      font-size: 14px;
      cursor:pointer;
      transition: transform .12s ease, border-color .12s ease, background .12s ease, box-shadow .12s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{
      transform: translateY(-1px);
      border-color: rgba(0,229,255,.35);
      box-shadow: 0 0 0 3px rgba(0,229,255,.09);
    }
    .btn.primary{
      border-color: rgba(0,229,255,.45);
      background: linear-gradient(180deg, rgba(0,229,255,.16), rgba(0,229,255,.08));
      box-shadow: 0 16px 40px rgba(0,229,255,.09);
    }
    .btn.primary:hover{
      box-shadow: 0 18px 52px rgba(0,229,255,.14), 0 0 0 3px rgba(0,229,255,.11);
    }
    .btn.ghost{
      border-color: rgba(234,234,234,.10);
      background: transparent;
    }
    .hamburger{
      display:none;
      width:44px; height:44px;
      border-radius:14px;
      border:1px solid rgba(234,234,234,.12);
      background: rgba(234,234,234,.05);
      cursor:pointer;
    }
    .hamburger svg{opacity:.9}

    /* Hero */
    .hero{
      padding:76px 0 52px;
      position:relative;
    }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:34px;
      align-items:center;
    }
    h1{
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: clamp(38px, 4.2vw, 58px);
      line-height: 1.03;
      margin: 16px 0 14px;
      letter-spacing: -0.6px;
    }
    .subhead{
      font-size: 18px;
      color: var(--muted);
      max-width: 56ch;
      margin: 0 0 22px;
    }
    .hero-cta{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
    .hero-meta{
      margin-top: 18px;
      display:flex; gap:18px; flex-wrap:wrap;
      color: var(--muted2);
      font-size: 13px;
    }
    .hero-meta .chip{
      display:inline-flex; gap:10px; align-items:center;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(234,234,234,.10);
      background: rgba(0,0,0,.22);
    }
    .hero-meta .chip b{color:var(--fg); font-weight:600}
    .panel{
      border-radius: var(--radius-xl);
      border: 1px solid rgba(234,234,234,.12);
      background: linear-gradient(180deg, rgba(234,234,234,.07), rgba(234,234,234,.04));
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .panel:before{
      content:"";
      position:absolute; inset:-1px;
      background:
        radial-gradient(520px 240px at 30% 15%, rgba(0,229,255,.22), transparent 65%),
        radial-gradient(520px 240px at 80% 55%, rgba(139,92,246,.18), transparent 60%);
      opacity:.9;
      pointer-events:none;
    }
    .panel-inner{
      position:relative;
      padding:22px;
    }
    .logo-card{
      display:flex; align-items:center; justify-content:center;
      padding:22px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(234,234,234,.10);
      background: rgba(0,0,0,.28);
      margin-bottom: 14px;
      min-height: 190px;
    }
    .logo-card img{
      width:min(420px, 100%);
      height:auto;
      filter: drop-shadow(0 0 18px rgba(0,229,255,.18));
    }
    .mini{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:12px;
      margin-top:12px;
    }
    .mini .tile{
      border-radius: 16px;
      border:1px solid rgba(234,234,234,.10);
      background: rgba(234,234,234,.06);
      padding:14px;
    }
    .kicker{
      font-family:"Space Grotesk", Inter, sans-serif;
      font-weight:600;
      letter-spacing:.4px;
      color: var(--fg);
      margin:0 0 6px;
    }
    .tile p{
      margin:0;
      color: var(--muted);
      font-size: 13px;
    }

    /* Sections */
    .h2{
      font-family:"Space Grotesk", Inter, sans-serif;
      font-size: 28px;
      letter-spacing: -0.2px;
      margin:0 0 12px;
    }
    .lead{
      margin:0 0 26px;
      color: var(--muted);
      max-width: 72ch;
    }

    .grid-3{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .card{
      border-radius: var(--radius-xl);
      border:1px solid rgba(234,234,234,.12);
      background: rgba(234,234,234,.06);
      padding:18px;
      box-shadow: var(--shadow2);
      position:relative;
      overflow:hidden;
    }
    .card:hover{
      border-color: rgba(0,229,255,.28);
      box-shadow: 0 18px 48px rgba(0,0,0,.42);
      transform: translateY(-1px);
      transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
    }
    .card .top{
      display:flex; align-items:center; justify-content:space-between; gap:10px;
      margin-bottom: 10px;
    }
    .badge{
      font-size: 12px;
      color: rgba(0,229,255,.92);
      border: 1px solid rgba(0,229,255,.25);
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(0,229,255,.08);
      font-weight: 700;
      letter-spacing:.35px;
      font-family:"Space Grotesk", Inter, sans-serif;
    }
    .card h3{
      margin:0 0 8px;
      font-family:"Space Grotesk", Inter, sans-serif;
      font-size: 18px;
      letter-spacing:.1px;
    }
    .card .desc{
      margin:0 0 14px;
      color: var(--muted);
      font-size: 14px;
    }
    .list{
      margin:0; padding-left: 18px;
      color: var(--muted2);
      font-size: 13px;
    }
    .list li{margin:6px 0}

    .how{
      display:grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap:14px;
      margin-top: 18px;
    }
    .step{
      border-radius: var(--radius-xl);
      border:1px solid rgba(234,234,234,.12);
      background: rgba(0,0,0,.20);
      padding:18px;
    }
    .step .num{
      font-family:"Space Grotesk", Inter, sans-serif;
      font-size: 12px;
      letter-spacing:.35px;
      color: rgba(234,234,234,.8);
      border:1px solid rgba(234,234,234,.16);
      width: 34px; height: 34px;
      display:flex; align-items:center; justify-content:center;
      border-radius: 12px;
      margin-bottom: 10px;
      background: rgba(234,234,234,.06);
    }
    .step h4{
      margin:0 0 8px;
      font-family:"Space Grotesk", Inter, sans-serif;
      font-size: 16px;
    }
    .step p{margin:0; color: var(--muted); font-size: 14px}

    /* Pricing */
    .pricing{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap:14px;
    }
    .price{
      padding:20px;
      border-radius: var(--radius-xl);
      border:1px solid rgba(234,234,234,.12);
      background: rgba(234,234,234,.06);
      position:relative;
      overflow:hidden;
    }
    .price.featured{
      border-color: rgba(0,229,255,.40);
      background: linear-gradient(180deg, rgba(0,229,255,.12), rgba(234,234,234,.05));
      box-shadow: 0 18px 60px rgba(0,229,255,.10);
    }
    .price .tier{
      display:flex; align-items:center; justify-content:space-between;
      margin-bottom: 10px;
    }
    .price .tier h3{margin:0; font-family:"Space Grotesk", Inter, sans-serif}
    .price .money{
      font-family:"Space Grotesk", Inter, sans-serif;
      font-size: 34px;
      margin: 10px 0 6px;
      letter-spacing:-.3px;
    }
    .price .note{color: var(--muted); font-size: 13px; margin:0 0 12px}
    .hr{height:1px; background: rgba(234,234,234,.10); margin:16px 0}

    /* FAQ */
    details{
      border-radius: 18px;
      border: 1px solid rgba(234,234,234,.12);
      background: rgba(234,234,234,.05);
      padding: 14px 16px;
    }
    details summary{
      cursor:pointer;
      font-family:"Space Grotesk", Inter, sans-serif;
      font-weight:600;
      letter-spacing:.1px;
      list-style:none;
    }
    details summary::-webkit-details-marker{display:none}
    details p{margin:10px 0 0; color: var(--muted); font-size: 14px}

    /* Footer */
    footer{
      padding: 36px 0 50px;
      border-top: 1px solid rgba(234,234,234,.08);
      color: var(--muted2);
    }
    .foot{
      display:flex; justify-content:space-between; align-items:flex-start; gap:16px;
      flex-wrap:wrap;
    }
    .foot small{display:block; margin-top:10px}
    .foot a{color: var(--muted); }
    .foot a:hover{color: var(--fg)}

    /* Mobile */
    @media (max-width: 960px){
      .hero-grid{grid-template-columns: 1fr; }
      .grid-3, .how, .pricing{grid-template-columns: 1fr}
      .navlinks{display:none}
      .hamburger{display:inline-flex; align-items:center; justify-content:center}
      .brand{min-width:auto}
    }

    /* Mobile menu */
    .mobile{
      display:none;
      border-top: 1px solid rgba(234,234,234,.08);
      padding: 10px 0 16px;
    }
    .mobile a{
      display:block;
      padding: 12px 10px;
      border-radius: 12px;
      color: var(--muted);
    }
    .mobile a:hover{background: rgba(234,234,234,.06); color: var(--fg)}
    .mobile.open{display:block}
