@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap);

    :root {
      --bg: #070b14;
      --panel: #0b1220;
      --panel2: #0e1730;
      --text: #e9eefc;
      --muted: #a9b2cc;
      --line: rgba(255,255,255,.10);
      --brand1: #6ae4ff;
      --brand2: #8b5cf6;
      --radius: 18px;
      --shadow: 0 18px 60px rgba(0,0,0,.35);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: "Montserrat", sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background:
        radial-gradient(900px 500px at 20% 0%, rgba(106, 228, 255, 0.18), transparent 55%),
        radial-gradient(800px 450px at 85% 10%, rgba(139, 92, 246, 0.14), transparent 60%),
        var(--bg);
      color: var(--text);
      min-height: 100vh;
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .wrap {
      max-width: 1120px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(10px);
      background: rgba(7, 11, 20, 0.72);
      border-bottom: 1px solid var(--line);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 14px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      letter-spacing: .2px;
    }

    .brand-dot {
      width: 12px;
      height: 12px;
      border-radius: 99px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 4px rgba(106, 228, 255, 0.10);
      flex: 0 0 auto;
    }

    .brand-name {
      font-size: 16px;
    }

    .top-link {
      color: var(--muted);
      padding: 10px 14px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.04);
      transition: .18s ease;
    }

    .top-link:hover {
      color: var(--text);
      background: rgba(255,255,255,0.08);
    }

    .hero {
      padding: 72px 0 26px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 26px;
      align-items: stretch;
    }

    .kicker {
      color: var(--muted);
      font-size: 13px;
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    h1 {
      font-size: clamp(34px, 1.5vw, 54px);
      line-height: 1.08;
      margin-bottom: 14px;
    }

    .grad {
      background: #4da3f5;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .lead {
      color: rgba(233, 238, 252, 0.86);
      font-size: 18px;
      line-height: 1.55;
      margin-bottom: 22px;
      max-width: 70ch;
    }

    .hero-card {
      height: 100%;
      padding: 18px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: rgba(233, 238, 252, 0.9);
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.06);
      padding: 6px 10px;
      border-radius: 999px;
      margin-bottom: 14px;
    }

    .badge::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--brand1), var(--brand2));
      box-shadow: 0 0 0 4px rgba(106,228,255,0.08);
    }

    .mini {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px;
      margin-top: 12px;
    }

    .mini-ic {
      width: 36px;
      height: 36px;
      flex: 0 0 auto;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      color: var(--text);
      font-size: 16px;
      font-weight: 800;
    }

    .mini-title {
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 2px;
    }

    .mini-sub {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .section {
      padding: 32px 0 64px;
    }

    .panel {
      padding: 22px;
    }

    h2 {
      font-size: clamp(24px, 2.3vw, 34px);
      margin-bottom: 10px;
    }

    h3 {
      margin-bottom: 8px;
      font-size: 16px;
    }

    p {
      color: rgba(233,238,252,0.82);
      font-size: 15px;
    }

    .list {
      list-style: none;
      margin-top: 10px;
    }

    .list li {
      padding: 8px 0;
      color: rgba(233,238,252,0.82);
      word-break: break-word;
    }

    .list li:first-child {
      border-top: none;
      padding-top: 0;
    }

    .eyebrow {
      color: var(--muted);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .14em;
      margin-bottom: 8px;
    }

    .callout {
      margin-top: 18px;
      color: rgba(233,238,252,0.86);
    }

    .callout strong {
      color: var(--text);
    }

    .footer {
      padding: 20px 0 36px;
      color: rgba(233,238,252,0.65);
    }

    .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .footer-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-links a {
      padding: 8px 10px;
      border-radius: 12px;
    }

    .footer-links a:hover {
      background: rgba(255,255,255,0.06);
    }

    @media (max-width: 980px) {
      .hero-grid,
      .grid2,
      .footer-row {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
      }

      .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }