:root {
      --bg: #05060e;
      --panel: #0f1224;
      --glow: linear-gradient(120deg, #5cf0ff, #6b7bff, #d777ff);
      --accent: #79ffe1;
      --accent-2: #9f8bff;
      --text: #eaf2ff;
      --muted: #9fb2d5;
      --pill: #11162f;
      --border: rgba(255,255,255,0.08);
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Archivo', 'Space Grotesk', system-ui, sans-serif;
      color: var(--text);
      background: radial-gradient(circle at 20% 20%, rgba(111,255,229,0.08), transparent 25%),
                  radial-gradient(circle at 80% 0%, rgba(151,133,255,0.1), transparent 30%),
                  var(--bg);
      min-height: 100vh;
      line-height: 1.6;
      overflow-x: hidden;
    }
    .noise {
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2240%22 height=%2240%22 viewBox=%220 0 40 40%22%3E%3Cpath fill=%22%230e1023%22 d=%22M0 0h40v40H0z%22/%3E%3Cpath fill=%22%23202645%22 opacity=%220.18%22 d=%22M5 7h2v2H5zM25 17h2v2h-2zM15 3h1v1h-1zM35 27h1v1h-1zM9 29h2v1H9zM19 33h1v2h-1zM29 11h1v1h-1z%22/%3E%3C/svg%3E');
      mix-blend-mode: lighten;
      opacity: 0.5;
      z-index: 0;
    }
    header {
      padding: 28px clamp(20px, 5vw, 48px) 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      backdrop-filter: blur(12px);
      background: rgba(5,6,14,0.75);
      border-bottom: 1px solid var(--border);
      z-index: 2;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--text);
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    .logo-mark {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      background: var(--glow);
      position: relative;
      box-shadow: 0 10px 30px rgba(124, 131, 255, 0.35);
    }
    .logo-mark::after {
      content: '';
      position: absolute;
      inset: 8px;
      border-radius: 8px;
      background: rgba(5,6,14,0.9);
      box-shadow: inset 0 0 0 2px rgba(255,255,255,0.08);
    }
    nav {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    nav a {
      color: var(--muted);
      text-decoration: none;
      padding: 10px 14px;
      border-radius: 999px;
      background: var(--pill);
      border: 1px solid var(--border);
      transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    }
    nav a:hover {
      color: var(--text);
      border-color: rgba(255,255,255,0.18);
      transform: translateY(-2px);
    }
    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      border-radius: 14px;
      background: var(--glow);
      color: #031018;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 12px 40px rgba(92, 240, 255, 0.25);
      transition: transform 0.18s ease, box-shadow 0.2s ease;
    }
    .cta-btn:hover {
      transform: translateY(-3px) scale(1.01);
      box-shadow: 0 16px 48px rgba(111, 123, 255, 0.35);
    }
    .wrapper {
      padding: 0 clamp(20px, 5vw, 48px) 100px;
      position: relative;
      z-index: 1;
    }
    .hero {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
      padding: 60px 0 40px;
      align-items: center;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(121, 255, 225, 0.08);
      border: 1px solid rgba(121, 255, 225, 0.35);
      color: var(--accent);
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-size: 12px;
    }
    h1 {
      font-family: 'Space Grotesk', 'Archivo', sans-serif;
      font-size: clamp(32px, 5vw, 54px);
      margin: 14px 0 16px;
      line-height: 1.1;
    }
    h1 span {
      background: var(--glow);
      -webkit-background-clip: text;
      color: transparent;
    }
    .lead {
      color: var(--muted);
      max-width: 620px;
      font-size: 17px;
    }
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 16px;
      margin-top: 28px;
    }
    .stat {
      background: var(--panel);
      padding: 14px 16px;
      border-radius: 16px;
      border: 1px solid var(--border);
      box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    }
    .stat strong {
      display: block;
      font-size: 22px;
      margin-bottom: 6px;
      color: var(--accent);
    }
    .card-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
      margin-top: 36px;
    }
    .card {
      background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
      border-radius: 18px;
      padding: 18px;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 20%, rgba(121,255,225,0.1), transparent 30%);
      opacity: 0.7;
      pointer-events: none;
    }
    .card h3 {
      margin: 0 0 10px;
      font-family: 'Space Grotesk', sans-serif;
    }
    
    .card-cta-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }
    .lead-tight {
      margin: 8px 0 0;
    }
    .section-title {
      margin: 80px 0 16px;
      font-size: 26px;
      font-family: 'Space Grotesk', sans-serif;
    }
    .timeline {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
    }
    .step {
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 14px 14px 16px;
      background: #0b0e1b;
      position: relative;
    }
    .step span {
      display: inline-block;
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: var(--glow);
      color: #04121d;
      font-weight: 700;
      text-align: center;
      line-height: 34px;
      margin-bottom: 10px;
    }
    .feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 14px;
      margin-top: 20px;
    }
    .feature {
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 12px;
      border-radius: 14px;
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border);
    }
    .feature strong { color: var(--text); }
    footer {
      margin: 80px 0 40px;
      padding: 20px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: rgba(255,255,255,0.02);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
    }
    .cta-inline { display: inline-flex; gap: 10px; align-items: center; }
    @media (max-width: 700px) {
      header { position: sticky; }
      nav { display: none; }
    }
