
    :root {
      --bg: #0f172a;
      --bg-soft: #111827;
      --card: #1f2937;
      --card-2: #243244;
      --text: #f8fafc;
      --muted: #cbd5e1;
      --accent: #22c55e;
      --accent-dark: #16a34a;
      --border: rgba(255,255,255,0.08);
      --shadow: 0 10px 30px rgba(0,0,0,0.22);
      --radius: 18px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: linear-gradient(180deg, #08111f 0%, var(--bg) 100%);
      color: var(--text);
      line-height: 1.7;
    }
    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }
    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .topbar {
      position: sticky;
      top: 0;
      z-index: 10;
      backdrop-filter: blur(10px);
      background: rgba(8,17,31,0.9);
      border-bottom: 1px solid var(--border);
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 72px;
    }
    .brand { font-size: 24px; font-weight: 700; color: var(--text); }
    .brand span { color: var(--accent); }
    .nav-links { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
    .nav-links a { color: var(--muted); font-size: 14px; }
    .btn {
      display: inline-block;
      padding: 13px 22px;
      border-radius: 12px;
      background: var(--accent);
      color: #05110a;
      font-weight: 700;
      box-shadow: var(--shadow);
      transition: transform .2s ease, background .2s ease;
    }
    .btn:hover { background: var(--accent-dark); text-decoration: none; transform: translateY(-1px); }
    .btn.secondary {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
      box-shadow: none;
    }
    .hero { padding: 54px 0 18px; }
    .card {
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: var(--shadow);
      margin: 18px 0;
      width: 100%;
      box-sizing: border-box;
    }
    h1, h2, h3 { margin: 0 0 14px; line-height: 1.2; }
    h1 { font-size: 44px; color: var(--text); }
    h2 { font-size: 28px; }
    h3 { font-size: 20px; }
    p { margin: 0 0 16px; color: var(--muted); font-size: 16px; }
    ul { margin: 0; padding-left: 22px; color: var(--muted); }
    li { margin: 8px 0; }
    .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
    .footer {
      margin-top: 32px;
      border-top: 1px solid var(--border);
      padding: 24px 0 40px;
      color: #94a3b8;
      font-size: 14px;
    }
    @media (max-width: 980px) { h1 { font-size: 34px; } }
  

/* FINAL MOBILE NAV FIX */
@media (max-width:640px){
  .topbar{position:sticky;top:0;z-index:999;}
  .nav{flex-direction:row !important;justify-content:space-between;align-items:center;}
  .nav-links a:not(.btn){display:none;}
  .nav-links{flex-direction:row !important;width:auto !important;}
  .btn{width:auto !important;}
}
