    :root {
      --bg: #0a0b10;
      --surface: #12141c;
      --surface2: #1a1d28;
      --border: rgba(255,255,255,0.08);
      --accent: #4f8aff;
      --accent2: #7c5cfc;
      --accent3: #00d9b1;
      --text: #e8eaf2;
      --text-muted: #6b7280;
      --text-dim: #9ca3af;
      --grad: linear-gradient(135deg, #4f8aff, #7c5cfc);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 4rem;
      background: rgba(10,11,16,0.85);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800; font-size: 1.35rem; letter-spacing: -0.03em;
      background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      text-decoration: none;
    }

    .nav-links { display: flex; gap: 2.5rem; align-items: center; }
    .nav-links a {
      color: var(--text-dim); text-decoration: none; font-size: 0.875rem;
      font-weight: 400; letter-spacing: 0.01em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }

    .nav-cta {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.5rem 1.2rem;
      background: var(--grad);
      color: #fff !important;
      border-radius: 6px; font-weight: 500 !important;
      font-size: 0.875rem; transition: opacity 0.2s;
    }
    .nav-cta:hover { opacity: 0.85; }

    .star-badge {
      display: inline-flex; align-items: center; gap: 0.35rem;
      padding: 0.4rem 0.9rem;
      background: var(--surface2); border: 1px solid var(--border);
      border-radius: 20px; font-size: 0.8rem; color: var(--text-dim);
    }
    .star-badge svg { color: #f59e0b; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      padding: 8rem 2rem 6rem;
      position: relative; overflow: hidden;
    }

    .hero-glow {
      position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
      width: 900px; height: 600px;
      background: radial-gradient(ellipse, rgba(79,138,255,0.12) 0%, rgba(124,92,252,0.07) 40%, transparent 70%);
      pointer-events: none;
    }

    .hero-tag {
      display: inline-block;
      padding: 0.35rem 1rem;
      background: rgba(79,138,255,0.1);
      border: 1px solid rgba(79,138,255,0.25);
      border-radius: 20px;
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
      color: var(--accent); text-transform: uppercase;
      margin-bottom: 2rem;
      animation: fadeUp 0.6s ease both;
    }

    .hero h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(3rem, 8vw, 6rem);
      font-weight: 800; line-height: 1.05; letter-spacing: -0.04em;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.6s 0.1s ease both;
    }

    .hero h1 .highlight {
      background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }

    .hero-sub {
      max-width: 560px; color: var(--text-dim); font-size: 1.05rem;
      margin-bottom: 3rem;
      animation: fadeUp 0.6s 0.2s ease both;
    }

    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
      margin-bottom: 3.5rem;
      animation: fadeUp 0.6s 0.3s ease both;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.85rem 2rem;
      background: var(--grad);
      color: #fff; text-decoration: none;
      border-radius: 8px; font-weight: 500; font-size: 0.95rem;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(79,138,255,0.35);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79,138,255,0.45); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.85rem 2rem;
      border: 1px solid var(--border);
      background: var(--surface);
      color: var(--text-dim); text-decoration: none;
      border-radius: 8px; font-weight: 500; font-size: 0.95rem;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }

    .install-box {
      display: inline-flex; align-items: center; gap: 0.75rem;
      padding: 0.7rem 1.2rem;
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: 'DM Mono', monospace; font-size: 0.85rem; color: var(--accent3);
      animation: fadeUp 0.6s 0.4s ease both;
      cursor: pointer; transition: border-color 0.2s;
    }
    .install-box:hover { border-color: rgba(0,217,177,0.3); }
    .install-label {
      color: var(--text-muted); font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
      border-right: 1px solid var(--border); padding-right: 0.75rem;
    }

    /* ── FEATURED IN ── */
    .featured {
      padding: 3rem 4rem;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: var(--surface);
    }
    .featured-inner {
      max-width: 900px; margin: 0 auto;
      display: flex; align-items: center; gap: 3rem; flex-wrap: wrap;
    }
    .featured-label {
      font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-muted); white-space: nowrap; font-weight: 500;
    }
    .featured-logos {
      display: flex; gap: 2.5rem; flex-wrap: wrap; align-items: center;
    }
    .featured-logos span {
      font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: 0.9rem; color: var(--text-dim); letter-spacing: 0.05em;
      opacity: 0.55; transition: opacity 0.2s;
    }
    .featured-logos span:hover { opacity: 1; }

    /* ── SECTION ── */
    section { padding: 7rem 4rem; }

    .container { max-width: 1100px; margin: 0 auto; }

    .section-tag {
      display: inline-block;
      font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--accent); font-weight: 500; margin-bottom: 1.2rem;
    }

    h2.section-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
      margin-bottom: 1.2rem;
    }

    .section-desc {
      color: var(--text-dim); font-size: 1rem; max-width: 520px;
      margin-bottom: 3.5rem; line-height: 1.8;
    }

    /* ── FEATURE GRID ── */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .feature-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
      transition: border-color 0.2s, transform 0.2s;
    }
    .feature-card:hover { border-color: rgba(79,138,255,0.25); transform: translateY(-3px); }

    .feature-icon {
      width: 44px; height: 44px;
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.2rem; font-size: 1.2rem;
    }

    .feature-card h3 {
      font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: 1.05rem; margin-bottom: 0.6rem;
    }

    .feature-card p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.7; }

    /* ── STATS ROW ── */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem; margin-top: 4rem;
    }
    .stat-block {
      background: var(--surface2);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 1.75rem;
    }
    .stat-num {
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: 2.4rem; letter-spacing: -0.04em;
      background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .stat-label { color: var(--text-dim); font-size: 0.85rem; margin-top: 0.3rem; }

    /* ── HOW IT WORKS ── */
    .how-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1rem;
      counter-reset: steps;
    }

    .how-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px; padding: 1.75rem;
      counter-increment: steps;
      position: relative; overflow: hidden;
      transition: border-color 0.2s;
    }
    .how-card::before {
      content: counter(steps, decimal-leading-zero);
      position: absolute; top: -10px; right: 1rem;
      font-family: 'Syne', sans-serif; font-weight: 800;
      font-size: 5rem; color: rgba(255,255,255,0.03); line-height: 1;
      pointer-events: none;
    }
    .how-card:hover { border-color: rgba(79,138,255,0.2); }

    .how-card h3 {
      font-family: 'Syne', sans-serif; font-weight: 700;
      font-size: 0.95rem; margin-bottom: 0.5rem;
    }
    .how-card p { color: var(--text-dim); font-size: 0.875rem; line-height: 1.7; }

    /* ── APPS ── */
    .apps-section { background: var(--surface); }

    .apps-grid {
      display: flex; flex-wrap: wrap; gap: 0.75rem;
    }

    .app-pill {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.5rem 1rem;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 20px; font-size: 0.82rem; color: var(--text-dim);
      transition: border-color 0.2s, color 0.2s;
    }
    .app-pill:hover { border-color: rgba(79,138,255,0.3); color: var(--text); }
    .app-pill .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--accent);
    }

    /* ── COMMUNITY ── */
    .community-section {
      background: linear-gradient(135deg, rgba(79,138,255,0.06) 0%, rgba(124,92,252,0.06) 100%);
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    }

    .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.25rem; margin-top: 3rem;
    }

    .testimonial {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px; padding: 1.5rem;
    }
    .testimonial p { color: var(--text-dim); font-size: 0.875rem; line-height: 1.75; font-style: italic; margin-bottom: 1rem; }
    .testimonial-author { font-size: 0.78rem; color: var(--text-muted); }
    .testimonial-author strong { color: var(--text-dim); }

    /* ── FAQ ── */
    .faq-list { max-width: 720px; }

    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 0;
    }
    .faq-q {
      font-family: 'Syne', sans-serif; font-weight: 600;
      font-size: 0.97rem; color: var(--text); cursor: pointer;
      display: flex; justify-content: space-between; align-items: flex-start;
      gap: 1rem; user-select: none;
    }
    .faq-q .chevron {
      flex-shrink: 0; color: var(--accent); margin-top: 2px;
      transition: transform 0.2s;
    }
    .faq-item.open .chevron { transform: rotate(180deg); }
    .faq-a {
      color: var(--text-dim); font-size: 0.875rem; line-height: 1.8;
      max-height: 0; overflow: hidden;
      transition: max-height 0.3s ease, padding-top 0.2s;
    }
    .faq-item.open .faq-a {
      max-height: 500px; padding-top: 0.75rem;
    }

    /* ── CTA BOTTOM ── */
    .cta-section {
      padding: 8rem 4rem; text-align: center;
      background: var(--bg);
    }
    .cta-inner { max-width: 600px; margin: 0 auto; }
    .cta-section h2 {
      font-family: 'Syne', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800; letter-spacing: -0.04em; margin-bottom: 1.2rem; line-height: 1.1;
    }
    .cta-section p { color: var(--text-dim); font-size: 1rem; margin-bottom: 2.5rem; }

    /* ── FOOTER ── */
    footer {
      padding: 2.5rem 4rem;
      border-top: 1px solid var(--border);
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    }
    .footer-left { font-size: 0.82rem; color: var(--text-muted); }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--text); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      section { padding: 5rem 1.5rem; }
      .featured { padding: 2rem 1.5rem; }
      footer { padding: 2rem 1.5rem; flex-direction: column; align-items: flex-start; }
    }