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

    :root {
      --bg: #060a10;
      --bg2: #080d16;
      --surface: rgba(255,255,255,0.03);
      --border: rgba(0,207,255,0.10);
      --border2: rgba(0,207,255,0.22);
      --text: #d0eeff;
      --muted: rgba(160,210,240,0.50);
      --cyan: #00cfff;
      --cyan2: #00a8e0;
      --cyan3: #80e8ff;
      --orange: #ff7a1a;
      --card: rgba(8,14,22,0.80);
      --fm: 'Rajdhani', sans-serif;
      --fmono: 'Share Tech Mono', monospace;
      --fbody: 'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--fbody);
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── BG SCENE ──────────────────────────────────────────── */
    .bg-scene {
      position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
    }
    .bg-mesh {
      position: absolute;
      top: -20%; left: 50%; transform: translateX(-50%);
      width: 1100px; height: 850px;
      background:
        radial-gradient(ellipse at 35% 45%, rgba(0,229,200,0.11) 0%, transparent 60%),
        radial-gradient(ellipse at 72% 55%, rgba(0,100,180,0.10) 0%, transparent 60%),
        radial-gradient(ellipse at 18% 78%, rgba(0,229,200,0.05) 0%, transparent 55%);
      filter: blur(24px);
    }
    .bg-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(0,229,200,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,200,0.035) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 0%, transparent 100%);
    }
    .bg-stars {
      position: absolute; inset: 0;
      background-image:
        radial-gradient(1.5px 1.5px at 12% 18%, rgba(0,229,200,0.45) 0%, transparent 100%),
        radial-gradient(1px 1px at 78% 8%, rgba(255,255,255,0.30) 0%, transparent 100%),
        radial-gradient(1px 1px at 55% 30%, rgba(255,255,255,0.18) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 90% 42%, rgba(0,229,200,0.38) 0%, transparent 100%),
        radial-gradient(1px 1px at 6% 62%, rgba(255,255,255,0.18) 0%, transparent 100%),
        radial-gradient(1px 1px at 38% 84%, rgba(0,229,200,0.28) 0%, transparent 100%),
        radial-gradient(1px 1px at 87% 73%, rgba(255,255,255,0.18) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 24% 91%, rgba(0,229,200,0.32) 0%, transparent 100%),
        radial-gradient(1px 1px at 63% 64%, rgba(255,255,255,0.13) 0%, transparent 100%),
        radial-gradient(1px 1px at 47% 49%, rgba(0,229,200,0.18) 0%, transparent 100%),
        radial-gradient(1px 1px at 33% 7%, rgba(255,255,255,0.18) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 22%, rgba(0,229,200,0.22) 0%, transparent 100%);
    }

    /* ── NAV ───────────────────────────────────────────────── */
    nav {
      position: sticky; top: 0; z-index: 200;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px;
      height: 60px;
      border-bottom: 1px solid var(--border);
      background: rgba(6,10,16,0.80);
      backdrop-filter: blur(24px);
    }
    .nav-logo {
      display: flex; align-items: center;
      text-decoration: none; flex-shrink: 0;
    }
    .nav-logo img { height: 38px; width: auto; display: block; }
    .nav-links {
      display: flex; gap: 32px; list-style: none; align-items: center;
    }
    .nav-links a {
      color: var(--muted); text-decoration: none;
      font-family: var(--fmono); font-size: 0.75rem;
      letter-spacing: 0.08em; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--cyan); }
    .btn-nav {
      background: transparent;
      border: 1px solid var(--cyan2);
      color: var(--cyan); border-radius: 3px;
      padding: 8px 20px;
      font-family: var(--fmono); font-size: 0.75rem;
      letter-spacing: 0.14em; cursor: pointer;
      transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
      text-decoration: none; display: inline-block;
    }
    .btn-nav:hover {
      background: rgba(0,229,200,0.08);
      box-shadow: 0 0 20px rgba(0,229,200,0.18);
      transform: translateY(-1px);
    }

    /* ── HERO ──────────────────────────────────────────────── */
    .hero {
      position: relative; z-index: 10;
      display: flex; flex-direction: row; align-items: center;
      gap: 48px;
      max-width: 1200px; margin: 0 auto;
      padding: 100px 48px 60px;
      text-align: left;
    }
    .hero-text {
      flex: 1; min-width: 0;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid var(--border2);
      background: rgba(0,229,200,0.05);
      border-radius: 2px;
      padding: 5px 14px;
      font-family: var(--fmono); font-size: 0.70rem;
      letter-spacing: 0.18em; color: var(--cyan);
      margin-bottom: 28px;
      animation: fadeUp 0.6s ease both;
    }
    .badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--cyan); box-shadow: 0 0 6px var(--cyan);
      animation: blink 2s infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

    .hero h1 {
      font-family: var(--fm); font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 800; line-height: 1.03;
      letter-spacing: 0.04em; color: #fff;
      text-transform: uppercase; max-width: 560px;
      animation: fadeUp 0.7s 0.08s ease both;
    }
    .hero h1 span { color: var(--cyan); }
    .hero-sub {
      margin-top: 18px; color: var(--muted);
      font-size: 0.92rem; line-height: 1.70;
      max-width: 440px; font-style: italic;
      animation: fadeUp 0.7s 0.16s ease both;
    }
    .hero-badges-row {
      display: flex; flex-wrap: wrap; gap: 20px;
      justify-content: flex-start; margin-top: 28px;
      animation: fadeUp 0.7s 0.22s ease both;
    }
    .hero-badge-item {
      display: flex; align-items: center; gap: 7px;
      font-family: var(--fmono); font-size: 0.72rem;
      color: var(--muted); letter-spacing: 0.06em;
    }
    .hero-badge-item svg { color: var(--cyan); flex-shrink: 0; }
    .hero-ctas {
      display: flex; flex-wrap: wrap; gap: 14px;
      justify-content: flex-start; margin-top: 38px;
      animation: fadeUp 0.7s 0.28s ease both;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--cyan); color: #060a10;
      border: none; border-radius: 3px;
      padding: 11px 28px;
      font-family: var(--fm); font-size: 0.82rem;
      font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; cursor: pointer;
      text-decoration: none;
      box-shadow: 0 0 32px rgba(0,229,200,0.32), 0 4px 20px rgba(0,0,0,0.5);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 52px rgba(0,229,200,0.52), 0 6px 28px rgba(0,0,0,0.5);
    }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 10px;
      background: transparent;
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.75); border-radius: 3px;
      padding: 11px 24px;
      font-family: var(--fmono); font-size: 0.70rem;
      letter-spacing: 0.14em; text-transform: uppercase;
      cursor: pointer; text-decoration: none;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
    }
    .btn-secondary:hover {
      border-color: rgba(255,255,255,0.30);
      color: #fff; background: rgba(255,255,255,0.04);
    }

    /* ── MOCKUP SCENE ──────────────────────────────────────── */
    .mockup-scene {
      position: relative; z-index: 10;
      flex: 0 0 500px; width: 500px;
      display: flex; align-items: center; gap: 10px;
      animation: fadeUp 0.85s 0.38s ease both;
    }
    .phone {
      position: relative; flex-shrink: 0;
      width: 150px; height: 296px;
      background: linear-gradient(158deg, #141c28, #0a0f18);
      border-radius: 30px;
      border: 1.5px solid rgba(0,229,200,0.16);
      box-shadow:
        0 24px 64px rgba(0,0,0,0.78),
        0 0 0 1px rgba(0,229,200,0.04),
        0 0 60px rgba(0,229,200,0.05);
      overflow: hidden; z-index: 3;
    }
    .phone-notch {
      position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
      width: 66px; height: 10px;
      background: rgba(255,255,255,0.04); border-radius: 6px;
    }
    .phone-status {
      position: absolute; top: 26px; left: 0; right: 0;
      display: flex; justify-content: space-between; padding: 0 16px;
      font-family: var(--fmono); font-size: 0.52rem;
      color: rgba(0,229,200,0.45);
    }
    .phone-brand {
      position: absolute; top: 42px; left: 0; right: 0;
      text-align: center;
      font-family: var(--fm); font-size: 0.58rem;
      font-weight: 700; letter-spacing: 0.22em;
      color: rgba(0,229,200,0.55);
    }
    .phone-orb-wrap {
      position: absolute; top: 68px; left: 50%; transform: translateX(-50%);
      width: 100px; height: 100px;
    }
    .phone-ring {
      position: absolute; border-radius: 50%; border: 1.5px solid;
      animation: spin linear infinite;
    }
    .pr1 {
      inset: 0;
      border-color: rgba(255,122,26,0.55) transparent rgba(255,122,26,0.55) transparent;
      animation-duration: 4s;
    }
    .pr2 {
      inset: 9px;
      border-color: transparent rgba(255,122,26,0.22) transparent rgba(255,122,26,0.22);
      animation-duration: 7s; animation-direction: reverse;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .phone-orb-core {
      position: absolute; inset: 20px; border-radius: 50%;
      background: radial-gradient(circle at 40% 35%, #1c2535, #090d16);
      border: 1.5px solid rgba(255,122,26,0.38);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      box-shadow: 0 0 22px rgba(255,122,26,0.10), inset 0 0 22px rgba(255,122,26,0.05);
    }
    .phone-orb-label {
      font-family: var(--fmono); font-size: 0.50rem;
      letter-spacing: 0.12em; color: var(--orange); margin-top: 4px;
    }
    .phone-stats {
      position: absolute; bottom: 16px; left: 12px; right: 12px;
    }
    .phone-stat-row {
      display: flex; justify-content: space-between;
      padding: 5px 8px;
      background: rgba(0,229,200,0.035);
      border: 1px solid rgba(0,229,200,0.09);
      border-radius: 4px; margin-bottom: 5px;
    }
    .psl { font-family: var(--fmono); font-size: 0.48rem; letter-spacing: 0.10em; color: var(--muted); }
    .psv { font-family: var(--fmono); font-size: 0.48rem; color: var(--cyan); }
    .phone-bottom-brand { display: none; }

    /* ── LEFT CARD ─────────────────────────────────────────── */
    .conn-card {
      position: relative;
      flex: 1; min-width: 0;
      background: var(--card);
      backdrop-filter: blur(28px);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 16px 18px; z-index: 4;
      box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(0,229,200,0.03);
    }
    .card-title {
      font-family: var(--fmono); font-size: 0.60rem;
      letter-spacing: 0.18em; color: var(--muted); margin-bottom: 14px;
    }
    .conn-status-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
    .conn-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
      animation: blink 2s infinite; flex-shrink: 0;
    }
    .conn-dot.orange { background: var(--orange); box-shadow: 0 0 8px var(--orange); }
    .conn-status-text { font-family: var(--fmono); font-size: 0.73rem; color: #fff; }
    .conn-status-sub { font-size: 0.60rem; color: var(--muted); }
    .card-divider { height: 1px; background: var(--border); margin: 10px 0; }
    .conn-metric {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 6px;
    }
    .conn-metric:last-child { margin-bottom: 0; }
    .cml { font-family: var(--fmono); font-size: 0.58rem; letter-spacing: 0.10em; color: var(--muted); }
    .cmv { font-family: var(--fmono); font-size: 0.70rem; color: var(--cyan); }
    .cmv.orange { color: var(--orange); }

    /* ── RIGHT CARD ────────────────────────────────────────── */
    .shield-card {
      position: relative;
      flex: 1; min-width: 0;
      background: var(--card);
      backdrop-filter: blur(28px);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 18px 18px 14px; z-index: 4;
      box-shadow: 0 16px 48px rgba(0,0,0,0.55);
    }
    .shield-score { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
    .shield-num { font-family: var(--fm); font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; }
    .shield-label { font-family: var(--fmono); font-size: 0.58rem; color: var(--cyan); letter-spacing: 0.10em; }
    .shield-bar-wrap {
      height: 3px; background: rgba(0,229,200,0.09);
      border-radius: 2px; margin-bottom: 12px;
    }
    .shield-bar-fill {
      height: 100%; width: 96%; border-radius: 2px;
      background: linear-gradient(90deg, var(--cyan2), var(--cyan));
      box-shadow: 0 0 8px rgba(0,229,200,0.38);
    }
    .shield-checks { display: flex; flex-direction: column; gap: 6px; }
    .shield-check {
      display: flex; align-items: center; gap: 8px;
      font-family: var(--fmono); font-size: 0.63rem; color: var(--text);
    }
    .check-icon {
      width: 15px; height: 15px; border-radius: 50%;
      background: rgba(0,229,200,0.10);
      border: 1px solid rgba(0,229,200,0.28);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.48rem; color: var(--cyan); flex-shrink: 0;
    }
    .shield-footer {
      margin-top: 12px; padding-top: 10px;
      border-top: 1px solid var(--border);
      font-family: var(--fmono); font-size: 0.56rem;
      color: var(--muted); line-height: 1.5; word-break: break-all;
    }

    /* ── TRUST STRIP ───────────────────────────────────────── */
    .trust-strip {
      position: relative; z-index: 10;
      border-top: 1px solid rgba(0,229,200,0.06);
      border-bottom: 1px solid rgba(0,229,200,0.06);
      background: rgba(255,255,255,0.012);
      padding: 14px 0;
      margin-top: 56px;
      overflow: hidden;
    }
    .trust-inner {
      display: flex; align-items: center; justify-content: center;
      flex-wrap: wrap; gap: 0;
    }
    .trust-item {
      display: flex; align-items: center; gap: 9px;
      padding: 0 28px;
      border-right: 1px solid rgba(255,255,255,0.055);
    }
    .trust-item:last-child { border-right: none; }
    .trust-dot { color: var(--cyan); font-size: 10px; }
    .trust-label {
      font-family: var(--fmono); font-size: 10px;
      letter-spacing: 2px; color: rgba(255,255,255,0.28);
      text-transform: uppercase;
    }

    /* ── SECTION LAYOUT ────────────────────────────────────── */
    .section {
      position: relative; z-index: 10;
      max-width: 1040px; margin: 0 auto;
      padding: 96px 32px 64px;
    }
    .section + .section { border-top: 1px solid rgba(255,255,255,0.05); }
    .section-full {
      position: relative; z-index: 10;
      padding: 96px 32px 64px;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .section-inner {
      max-width: 1040px; margin: 0 auto;
    }
    .section-label {
      font-family: var(--fmono); font-size: 0.68rem;
      letter-spacing: 0.22em; color: var(--cyan);
      text-transform: uppercase; margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--fm); font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      font-weight: 800; letter-spacing: 0.04em;
      text-transform: uppercase; color: #fff;
      margin-bottom: 16px; line-height: 1.1;
    }
    .section-title span { color: var(--cyan); }
    .section-sub {
      font-size: 0.95rem; color: var(--muted); line-height: 1.8;
      max-width: 560px; margin-bottom: 56px;
    }

    /* ── FEATURES ──────────────────────────────────────────── */
    .feat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    @media(max-width:640px){ .feat-grid { grid-template-columns: 1fr 1fr; } }
    .feat-item {
      display: flex; align-items: flex-start; gap: 14px;
      background: rgba(8,14,22,0.60);
      border: 1px solid var(--border);
      border-radius: 10px; padding: 20px 18px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .feat-item:hover {
      border-color: rgba(0,229,200,0.30);
      box-shadow: 0 0 24px rgba(0,229,200,0.07);
    }
    .feat-icon {
      flex-shrink: 0; width: 36px; height: 36px;
      background: rgba(0,229,200,0.08);
      border: 1px solid rgba(0,229,200,0.18);
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      color: var(--cyan);
    }
    .feat-body {}
    .feat-title {
      font-family: var(--fm); font-size: 0.88rem; font-weight: 700;
      letter-spacing: 0.05em; color: #fff;
      text-transform: uppercase; margin-bottom: 4px;
    }
    .feat-desc {
      font-size: 0.78rem; color: var(--muted); line-height: 1.55;
    }
    .feat-sec-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

    /* ── HOW IT WORKS ──────────────────────────────────────── */
    .pipeline {
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 6px; overflow: hidden; margin-bottom: 32px;
    }
    .pipeline-header {
      padding: 16px 26px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(255,255,255,0.012);
    }
    .pipeline-body {
      padding: 28px; overflow-x: auto;
    }
    .pipeline-row {
      display: flex; align-items: stretch; gap: 0; min-width: 540px;
    }
    .pipe-node {
      flex: 1; padding: 18px 12px;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 4px; text-align: center;
    }
    .pipe-node.highlight {
      border-color: rgba(0,229,200,0.22);
      background: rgba(0,229,200,0.03);
    }
    .pipe-node-label {
      font-family: var(--fmono); font-size: 0.52rem;
      letter-spacing: 0.14em; color: var(--muted);
      text-transform: uppercase; margin-bottom: 8px;
    }
    .pipe-node-name {
      font-family: var(--fm); font-size: 0.95rem;
      font-weight: 700; letter-spacing: 0.10em;
      color: rgba(255,255,255,0.75); margin-bottom: 5px;
    }
    .pipe-node-name.accent { color: var(--cyan); }
    .pipe-node-sub { font-size: 0.72rem; color: var(--muted); }
    .pipe-arrow {
      display: flex; align-items: center; padding: 0 8px;
      color: rgba(255,255,255,0.14); font-size: 14px; flex-shrink: 0;
    }
    .tech-specs-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 12px;
    }
    .tech-spec {
      border: 1px solid rgba(255,255,255,0.06); border-radius: 6px;
      padding: 18px 20px;
    }
    .tech-spec-key {
      font-family: var(--fmono); font-size: 0.58rem;
      letter-spacing: 0.14em; color: var(--muted);
      text-transform: uppercase; margin-bottom: 7px;
    }
    .tech-spec-val {
      font-family: var(--fmono); font-size: 0.80rem;
      color: var(--cyan); line-height: 1.5;
    }

    /* ── PRESS/NGO ─────────────────────────────────────────── */
    .ngo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px; margin-bottom: 48px;
    }
    .ngo-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(0,229,200,0.12);
      border-radius: 6px; padding: 30px 26px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .ngo-card:hover {
      border-color: rgba(0,229,200,0.30);
      box-shadow: 0 0 30px rgba(0,229,200,0.06);
    }
    .ngo-icon { font-size: 22px; margin-bottom: 14px; }
    .ngo-title {
      font-family: var(--fm); font-size: 0.80rem;
      font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--cyan3);
      margin-bottom: 12px;
    }
    .ngo-desc {
      font-family: var(--fmono); font-size: 0.72rem;
      color: rgba(255,255,255,0.45); line-height: 1.85;
      margin-bottom: 18px;
    }
    .ngo-list {
      list-style: none; padding: 0; margin: 0;
      display: flex; flex-direction: column; gap: 7px;
    }
    .ngo-list li {
      font-family: var(--fmono); font-size: 0.68rem;
      color: rgba(255,255,255,0.50); letter-spacing: 0.05em;
    }
    .ngo-list li::before { content: '→ '; color: var(--cyan); }
    .ngo-cta-wrap { text-align: center; }
    .btn-ngo {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(0,229,200,0.05);
      border: 1px solid rgba(0,229,200,0.35);
      border-radius: 3px; color: var(--cyan3);
      font-family: var(--fmono); font-size: 0.72rem;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 14px 32px; text-decoration: none;
      transition: background 0.2s, box-shadow 0.2s;
    }
    .btn-ngo:hover {
      background: rgba(0,229,200,0.10);
      box-shadow: 0 0 32px rgba(0,229,200,0.14);
    }
    .ngo-note {
      font-family: var(--fmono); font-size: 0.62rem;
      color: rgba(255,255,255,0.28); letter-spacing: 1px;
      margin-top: 12px;
    }

    /* ── PRICING ───────────────────────────────────────────── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px; max-width: 940px; margin: 0 auto;
    }
    .price-card {
      background: rgba(8,14,22,0.80);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px; padding: 32px;
      position: relative; overflow: hidden;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }
    .price-card:hover {
      border-color: rgba(0,229,200,0.30);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(0,0,0,0.55);
    }
    .price-card.featured {
      border-color: rgba(108,243,255,0.28);
      background: rgba(108,243,255,0.02);
    }
    .price-card.featured:hover {
      border-color: rgba(108,243,255,0.65);
      box-shadow: 0 16px 48px rgba(108,243,255,0.08);
    }
    .price-tag-wrap {
      position: absolute; top: 0; left: 50%; transform: translateX(-50%);
      background: rgba(108,243,255,0.12);
      border: 1px solid rgba(108,243,255,0.28);
      border-top: none; border-radius: 0 0 6px 6px;
      padding: 3px 14px;
      font-family: var(--fmono); font-size: 0.60rem;
      color: var(--cyan3); letter-spacing: 2px; text-transform: uppercase;
    }
    .price-period {
      font-family: var(--fmono); font-size: 0.60rem;
      letter-spacing: 2px; color: var(--muted);
      text-transform: uppercase; margin-bottom: 14px;
    }
    .price-period.accent { color: var(--cyan3); }
    .price-amount {
      font-family: var(--fm); font-size: 3rem;
      font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px;
    }
    .price-per {
      font-family: var(--fmono); font-size: 0.72rem;
      color: var(--muted); margin-bottom: 28px;
    }
    .price-per.accent { color: var(--cyan3); }
    .price-features {
      list-style: none; padding: 0; margin: 0 0 28px;
      display: flex; flex-direction: column; gap: 11px;
    }
    .price-features li {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.88rem; color: rgba(255,255,255,0.65);
    }
    .price-features li .dot { color: var(--cyan3); font-size: 0.70rem; }
    .btn-price {
      display: block; text-align: center;
      padding: 13px 0;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 6px;
      color: #fff; font-family: var(--fmono);
      font-size: 0.72rem; letter-spacing: 2px;
      text-transform: uppercase; text-decoration: none;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .btn-price:hover {
      background: rgba(0,229,200,0.09);
      border-color: rgba(0,229,200,0.38);
      color: var(--cyan);
    }
    .btn-price.accent {
      background: rgba(108,243,255,0.09);
      border-color: var(--cyan3); color: var(--cyan3);
    }
    .btn-price.accent:hover { background: rgba(108,243,255,0.18); }

    /* ── COMPARISON TABLE ──────────────────────────────────── */
    .comparison-wrap {
      overflow-x: auto;
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 6px;
    }
    .comparison-table {
      width: 100%; border-collapse: collapse;
      font-family: var(--fmono); font-size: 0.72rem;
    }
    .comparison-table th, .comparison-table td {
      padding: 13px 18px;
    }
    .comparison-table thead tr {
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .comparison-table th {
      color: rgba(255,255,255,0.28); letter-spacing: 2px;
      font-weight: 400; text-transform: uppercase; text-align: center;
    }
    .comparison-table th:first-child { text-align: left; }
    .comparison-table th.lp-col {
      background: rgba(108,243,255,0.04);
      border-left: 1px solid rgba(108,243,255,0.14);
      border-right: 1px solid rgba(108,243,255,0.14);
      color: var(--cyan3);
    }
    .comparison-table tbody tr {
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .comparison-table tbody tr:last-child { border-bottom: none; }
    .comparison-table td { text-align: center; }
    .comparison-table td:first-child {
      text-align: left; color: rgba(255,255,255,0.50);
    }
    .comparison-table td.lp-col {
      background: rgba(108,243,255,0.025);
      border-left: 1px solid rgba(108,243,255,0.09);
      border-right: 1px solid rgba(108,243,255,0.09);
    }
    .check-yes { color: #8ed6c3; }
    .check-partial { color: rgba(255,165,0,0.75); }
    .check-no { color: #ff4444; }
    .comparison-note {
      text-align: center; margin-top: 14px;
      font-family: var(--fmono); font-size: 0.58rem;
      letter-spacing: 1px; color: rgba(255,255,255,0.16);
    }

    /* ── FAQ ───────────────────────────────────────────────── */
    .faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 820px; margin: 0 auto; }
    .faq-item {
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 8px; overflow: hidden;
      background: rgba(8,14,22,0.70);
      backdrop-filter: blur(16px);
      transition: border-color 0.2s;
    }
    .faq-item:hover { border-color: rgba(0,229,200,0.22); }
    .faq-item.open { border-color: rgba(0,229,200,0.30); }
    .faq-btn {
      width: 100%; text-align: left;
      padding: 20px 24px;
      display: flex; align-items: center; justify-content: space-between;
      background: transparent; border: none; cursor: pointer;
      gap: 16px;
    }
    .faq-q-wrap { display: flex; align-items: center; gap: 14px; }
    .faq-num {
      font-family: var(--fmono); font-size: 0.62rem;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 3px; padding: 2px 7px;
      color: rgba(255,255,255,0.35);
      flex-shrink: 0;
    }
    .faq-num.important {
      color: #f87171;
      border-color: rgba(248,113,113,0.28);
      background: rgba(248,113,113,0.07);
    }
    .faq-q {
      font-family: var(--fbody); font-size: 0.95rem;
      font-weight: 600; color: #fff; text-align: left;
    }
    .faq-chevron {
      width: 18px; height: 18px; flex-shrink: 0;
      color: rgba(255,255,255,0.35);
      transition: transform 0.28s; transform: rotate(0deg);
    }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-body {
      display: none; padding: 0 24px 22px;
      color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.75;
    }
    .faq-body p { margin-bottom: 12px; }
    .faq-body p:last-child { margin-bottom: 0; }
    .faq-code {
      background: rgba(0,0,0,0.50);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 6px; padding: 14px 16px;
      font-family: var(--fmono); font-size: 0.72rem;
      line-height: 1.9; color: var(--text);
      margin: 10px 0;
    }
    .faq-code .accent { color: var(--cyan3); display: block; margin-bottom: 4px; }
    .faq-grid2 {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 10px;
    }
    .faq-grid2 > div {
      background: rgba(0,0,0,0.40);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 6px; padding: 14px;
    }
    .faq-grid2 .kv-key {
      font-family: var(--fmono); font-size: 0.60rem;
      color: var(--cyan3); letter-spacing: 0.10em;
      text-transform: uppercase; margin-bottom: 8px;
    }
    .faq-grid2 .kv-val {
      font-family: var(--fmono); font-size: 0.72rem;
      color: rgba(255,255,255,0.55); line-height: 1.8;
    }
    .compat-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 12px;
    }
    .compat-item {
      background: rgba(0,0,0,0.50); border-radius: 6px; padding: 12px 8px;
      text-align: center;
      font-family: var(--fmono); font-size: 0.70rem; color: rgba(255,255,255,0.55);
    }
    .compat-item span { display: block; color: var(--cyan3); margin-top: 4px; font-size: 0.62rem; }

    /* ── CTA BANNER ────────────────────────────────────────── */
    .cta-banner {
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 6px; padding: 64px 40px;
      text-align: center;
      background: rgba(255,255,255,0.01);
      position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse, rgba(0,229,200,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-banner h2 {
      font-family: var(--fm); font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 800; letter-spacing: 0.06em;
      text-transform: uppercase; color: #fff;
      margin-bottom: 16px;
    }
    .cta-banner h2 span { color: var(--cyan); }
    .cta-banner p {
      font-size: 1rem; color: var(--muted); line-height: 1.75;
      max-width: 440px; margin: 0 auto 40px;
    }
    .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .social-row {
      display: flex; gap: 24px; justify-content: center;
      margin-top: 40px; flex-wrap: wrap;
    }
    .social-link {
      font-family: var(--fmono); font-size: 0.72rem;
      letter-spacing: 2px; text-transform: uppercase;
      color: rgba(255,255,255,0.38); text-decoration: none;
      transition: color 0.2s;
    }
    .social-link:hover { color: var(--cyan); }
    .social-sep { color: rgba(255,255,255,0.12); }

    /* ── FOOTER ────────────────────────────────────────────── */
    footer {
      position: relative; z-index: 10;
      border-top: 1px solid rgba(255,255,255,0.05);
      background: rgba(4,7,12,0.97);
      backdrop-filter: blur(12px);
      padding: 18px 40px;
    }
    .footer-top {
      display: flex; align-items: center; gap: 24px;
      flex-wrap: wrap; padding-bottom: 14px;
      margin-bottom: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .footer-tech {
      font-family: var(--fmono); font-size: 0.60rem;
      letter-spacing: 2.5px; color: rgba(255,255,255,0.18);
      text-transform: uppercase;
    }
    .footer-brave {
      font-family: var(--fmono); font-size: 0.60rem;
      letter-spacing: 1px; color: rgba(255,255,255,0.16);
    }
    .footer-brave a {
      color: rgba(255,255,255,0.30); text-decoration: none;
      transition: color 0.2s;
    }
    .footer-brave a:hover { color: var(--cyan); }
    .footer-main {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-copy {
      font-family: var(--fmono); font-size: 0.68rem;
      letter-spacing: 2px; color: rgba(255,255,255,0.22);
      text-transform: uppercase;
    }
    .footer-links {
      display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
    }
    .footer-link {
      font-family: var(--fmono); font-size: 0.68rem;
      letter-spacing: 1px; text-transform: uppercase;
      color: rgba(255,255,255,0.32); text-decoration: none;
      transition: color 0.2s;
    }
    .footer-link:hover { color: var(--cyan); }
    .footer-sep { color: rgba(255,255,255,0.12); font-size: 10px; }

    /* ── NETWORK STATUS ────────────────────────────────────── */
    .net-header {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 20px;
      border: 1px solid var(--border); border-radius: 4px 4px 0 0;
      background: rgba(0,207,255,0.02);
    }
    .net-status-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 8px var(--cyan);
      animation: netPulse 2.4s ease-in-out infinite;
      flex-shrink: 0;
    }
    @keyframes netPulse {
      0%,100% { opacity:1; box-shadow:0 0 8px var(--cyan); }
      50%      { opacity:.4; box-shadow:0 0 3px var(--cyan); }
    }
    .net-status-label {
      font-family: var(--fmono); font-size: 0.68rem;
      letter-spacing: 2px; color: var(--muted); text-transform: uppercase;
    }
    .net-tag {
      font-family: var(--fmono); font-size: 0.60rem;
      letter-spacing: 1.5px; color: var(--cyan);
      border: 1px solid rgba(0,207,255,0.2);
      padding: 2px 10px; border-radius: 2px;
      background: rgba(0,207,255,0.05);
    }
    .net-stats {
      display: grid; grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--border); border-top: none;
    }
    .net-stat-cell {
      padding: 28px 20px; text-align: center;
      border-right: 1px solid var(--border);
    }
    .net-stat-cell:last-child { border-right: none; }
    .net-stat-value {
      font-family: var(--fm); font-size: 2rem; font-weight: 800;
      color: #fff; letter-spacing: 0.04em; line-height: 1;
      margin-bottom: 8px;
    }
    .net-stat-value.cyan { color: var(--cyan); }
    .net-stat-key {
      font-family: var(--fmono); font-size: 0.62rem;
      letter-spacing: 2px; color: var(--muted); text-transform: uppercase;
    }
    .net-secondary {
      display: grid; grid-template-columns: 1fr 1fr;
      border: 1px solid var(--border); border-top: none;
      border-radius: 0 0 4px 4px; overflow: hidden; margin-bottom: 0;
    }
    .net-sec-cell {
      padding: 16px 20px; display: flex; align-items: center; gap: 12px;
      border-right: 1px solid var(--border);
    }
    .net-sec-cell:last-child { border-right: none; }
    .net-ind {
      width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
      background: var(--cyan); box-shadow: 0 0 6px var(--cyan);
    }
    .net-ind.warn { background: var(--orange); box-shadow: 0 0 6px var(--orange); }
    .net-sec-label {
      font-family: var(--fmono); font-size: 0.60rem;
      letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase;
      margin-bottom: 3px;
    }
    .net-sec-val {
      font-family: var(--fmono); font-size: 0.72rem; color: var(--text);
      word-break: break-all;
    }
    .net-extra {
      display: grid; grid-template-columns: repeat(3,1fr);
      gap: 1px; margin-top: 1px;
    }
    .net-extra-cell {
      padding: 14px 16px; text-align: center;
      background: rgba(0,207,255,0.02);
      border: 1px solid var(--border);
      border-radius: 2px;
    }
    .net-extra-val {
      font-family: var(--fm); font-size: 1.2rem; font-weight: 700;
      color: var(--cyan); margin-bottom: 4px;
    }
    .net-extra-key {
      font-family: var(--fmono); font-size: 0.58rem;
      letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase;
    }
    .net-refresh {
      font-family: var(--fmono); font-size: 0.58rem;
      color: rgba(0,207,255,0.3); letter-spacing: 1px;
      margin-top: 12px; text-align: right;
    }

    /* ── ROADMAP ───────────────────────────────────────────── */
    .roadmap-grid {
      display: flex; flex-direction: column; gap: 0;
      max-width: 780px; margin: 0 auto;
      position: relative;
    }
    .roadmap-grid::before {
      content: '';
      position: absolute; left: 119px; top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom,
        transparent 0%, rgba(0,207,255,0.18) 8%,
        rgba(0,207,255,0.18) 92%, transparent 100%);
    }
    .roadmap-item {
      display: grid; grid-template-columns: 120px 1fr;
      gap: 0 28px; padding: 28px 0;
      border-bottom: 1px solid rgba(0,207,255,0.06);
      position: relative;
    }
    .roadmap-item:last-child { border-bottom: none; }
    .roadmap-phase {
      text-align: right; padding-right: 0;
      display: flex; flex-direction: column;
      align-items: flex-end; justify-content: flex-start;
      padding-top: 2px;
    }
    .roadmap-phase-label {
      font-family: var(--fmono); font-size: 0.58rem;
      letter-spacing: 2px; color: var(--muted);
      text-transform: uppercase; margin-bottom: 4px;
    }
    .roadmap-phase-date {
      font-family: var(--fmono); font-size: 0.65rem;
      letter-spacing: 1px; color: rgba(255,255,255,0.2);
    }
    /* dot on the timeline */
    .roadmap-item::before {
      content: '';
      position: absolute; left: 114px; top: 34px;
      width: 11px; height: 11px; border-radius: 50%;
      border: 1.5px solid var(--cyan);
      background: var(--bg);
      z-index: 1;
    }
    .roadmap-item.status-done::before {
      background: var(--cyan);
      box-shadow: 0 0 10px rgba(0,207,255,0.5);
    }
    .roadmap-item.status-active::before {
      background: rgba(0,207,255,0.3);
      box-shadow: 0 0 14px rgba(0,207,255,0.4);
      animation: pulseDot 2s ease-in-out infinite;
    }
    .roadmap-item.status-planned::before {
      border-color: rgba(0,207,255,0.25);
      background: var(--bg);
    }
    @keyframes pulseDot {
      0%, 100% { box-shadow: 0 0 8px rgba(0,207,255,0.4); }
      50% { box-shadow: 0 0 18px rgba(0,207,255,0.7); }
    }
    .roadmap-content { padding-left: 4px; }
    .roadmap-status {
      display: inline-flex; align-items: center; gap: 6px;
      margin-bottom: 8px;
    }
    .roadmap-badge {
      font-family: var(--fmono); font-size: 0.55rem;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 2px 8px; border-radius: 2px;
    }
    .badge-done {
      background: rgba(0,207,255,0.1);
      color: var(--cyan); border: 1px solid rgba(0,207,255,0.25);
    }
    .badge-active {
      background: rgba(0,207,255,0.08);
      color: var(--cyan3); border: 1px solid rgba(0,207,255,0.2);
    }
    .badge-planned {
      background: rgba(255,255,255,0.03);
      color: rgba(255,255,255,0.25); border: 1px solid rgba(255,255,255,0.07);
    }
    .roadmap-title {
      font-family: var(--fm); font-size: 1.05rem;
      font-weight: 700; letter-spacing: 0.04em;
      color: #fff; margin-bottom: 8px; text-transform: uppercase;
    }
    .roadmap-item.status-planned .roadmap-title { color: rgba(255,255,255,0.45); }
    .roadmap-features {
      display: flex; flex-wrap: wrap; gap: 6px;
    }
    .roadmap-tag {
      font-family: var(--fmono); font-size: 0.60rem;
      letter-spacing: 0.5px; padding: 3px 9px; border-radius: 2px;
      color: var(--muted); background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
    }
    .roadmap-item.status-done .roadmap-tag {
      color: rgba(0,207,255,0.6); border-color: rgba(0,207,255,0.1);
    }
    .roadmap-item.status-active .roadmap-tag {
      color: var(--cyan3); border-color: rgba(0,207,255,0.15);
    }

    /* ── ANIMATIONS ────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0; transform: translateY(18px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── WOW ANIMATIONS ───────────────────────────────────── */
    @keyframes glow {
      0%, 100% { box-shadow: 0 0 20px rgba(0,229,200,0.3); }
      50% { box-shadow: 0 0 40px rgba(0,229,200,0.6), 0 0 60px rgba(0,229,200,0.3); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    @keyframes pulseGlow {
      0%, 100% { opacity: 0.3; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.05); }
    }

    @keyframes typing {
      from { width: 0; }
      to { width: 100%; }
    }

    @keyframes blink-caret {
      from, to { border-color: transparent; }
      50% { border-color: var(--cyan); }
    }

    @keyframes ripple {
      0% { transform: scale(0); opacity: 0.5; }
      100% { transform: scale(4); opacity: 0; }
    }

    @keyframes particle {
      0% { transform: translateY(100vh) translateX(0); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateY(-10vh) translateX(20px); opacity: 0; }
    }

    @keyframes scanline {
      0% { top: -100%; }
      100% { top: 100%; }
    }

    @keyframes wave {
      0%, 100% { transform: translateX(0) translateY(0); }
      25% { transform: translateX(5px) translateY(-2px); }
      50% { transform: translateX(0) translateY(0); }
      75% { transform: translateX(-5px) translateY(-2px); }
    }

    @keyframes circuitPulse {
      0% { stroke-dashoffset: 1000; opacity: 0.3; }
      50% { opacity: 1; }
      100% { stroke-dashoffset: 0; opacity: 0.3; }
    }

    /* Button ripple effect */
    .btn-primary, .btn-secondary, .btn-nav {
      position: relative;
      overflow: hidden;
    }
    .btn-primary::after, .btn-secondary::after, .btn-nav::after {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      width: 0; height: 0;
      background: rgba(255,255,255,0.3);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.6s ease, height 0.6s ease;
    }
    .btn-primary:active::after, .btn-secondary:active::after, .btn-nav:active::after {
      width: 200px; height: 200px;
    }

    /* Floating elements */
    .float-animation {
      animation: float 3s ease-in-out infinite;
    }

    /* Glow effect on hover */
    .glow-hover:hover {
      animation: glow 2s ease-in-out infinite;
    }

    /* Scanline effect for cards */
    .scanline-effect {
      position: relative;
      overflow: hidden;
    }
    .scanline-effect::before {
      content: '';
      position: absolute;
      left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--cyan), transparent);
      animation: scanline 3s linear infinite;
      opacity: 0.3;
      pointer-events: none;
    }

    /* Particle background */
    .particles {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      overflow: hidden;
      z-index: 0;
    }
    .particle {
      position: absolute;
      width: 2px; height: 2px;
      background: var(--cyan);
      border-radius: 50%;
      animation: particle 15s linear infinite;
      opacity: 0;
    }

    /* Stagger animations */
    .stagger-1 { animation-delay: 0.1s; }
    .stagger-2 { animation-delay: 0.2s; }
    .stagger-3 { animation-delay: 0.3s; }
    .stagger-4 { animation-delay: 0.4s; }
    .stagger-5 { animation-delay: 0.5s; }
    .stagger-6 { animation-delay: 0.6s; }

    /* Typing effect */
    .typing-effect {
      overflow: hidden;
      border-right: 3px solid var(--cyan);
      white-space: nowrap;
      animation: typing 2s steps(30) forwards, blink-caret 0.75s step-end infinite;
    }

    /* Card hover effects */
    .card-wow {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .card-wow:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0,229,200,0.2);
    }

    /* Gradient animation for titles */
    .gradient-text {
      color: #fff;
    }
    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    /* Network pulse */
    .network-pulse {
      animation: pulseGlow 2s ease-in-out infinite;
    }

    /* Progress bar animation */
    @keyframes progressFill {
      from { width: 0; }
    }
    .progress-animated {
      animation: progressFill 1.5s ease-out forwards;
    }

    /* ── AURORA BACKGROUND ─────────────────────────────────── */
    .aurora-bg {
      position: fixed;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(ellipse at 20% 80%, rgba(0,207,255,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255,0,128,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0,255,136,0.08) 0%, transparent 60%),
        var(--bg);
      animation: aurora 20s ease-in-out infinite;
    }
    @keyframes aurora {
      0%, 100% {
        background-position: 0% 50%, 100% 50%, 50% 0%;
        filter: hue-rotate(0deg);
      }
      33% {
        background-position: 100% 50%, 0% 50%, 50% 100%;
        filter: hue-rotate(30deg);
      }
      66% {
        background-position: 50% 100%, 50% 0%, 0% 50%;
        filter: hue-rotate(-20deg);
      }
    }

    /* ── GLITCH EFFECT ──────────────────────────────────────── */
    .glitch-text {
      position: relative;
      display: inline-block;
    }
    .glitch-text::before,
    .glitch-text::after {
      content: attr(data-text);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    .glitch-text::before {
      animation: glitch-1 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
      color: #ff00ff;
      z-index: 1;
    }
    .glitch-text::after {
      animation: glitch-2 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
      color: #00ffff;
      z-index: 2;
    }
    @keyframes glitch-1 {
      0%, 100% { transform: translate(0); }
      20% { transform: translate(-3px, 3px); }
      40% { transform: translate(-3px, -3px); }
      60% { transform: translate(3px, 3px); }
      80% { transform: translate(3px, -3px); }
    }
    @keyframes glitch-2 {
      0%, 100% { transform: translate(0); }
      20% { transform: translate(3px, -3px); }
      40% { transform: translate(3px, 3px); }
      60% { transform: translate(-3px, -3px); }
      80% { transform: translate(-3px, 3px); }
    }
    .glitch-text:hover {
      animation: glitch-skew 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
    }
    @keyframes glitch-skew {
      0% { transform: skew(0deg); }
      20% { transform: skew(-2deg); }
      40% { transform: skew(2deg); }
      60% { transform: skew(-1deg); }
      80% { transform: skew(1deg); }
      100% { transform: skew(0deg); }
    }

    /* ── 3D TILT CARDS ─────────────────────────────────────── */
    .tilt-card {
      transform-style: preserve-3d;
      perspective: 1000px;
      transition: transform 0.3s ease;
    }
    .tilt-card:hover {
      transform: rotateX(5deg) rotateY(-5deg) translateZ(20px);
    }
    .tilt-card .card-shine {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255,255,255,0.1) 50%,
        transparent 100%
      );
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
      border-radius: inherit;
    }
    .tilt-card:hover .card-shine {
      opacity: 1;
    }

    /* ── CURSOR TRAIL ──────────────────────────────────────── */
    .cursor-dot {
      position: fixed;
      width: 8px;
      height: 8px;
      background: var(--cyan);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transition: transform 0.1s;
      mix-blend-mode: screen;
      box-shadow: 0 0 20px var(--cyan), 0 0 40px var(--cyan);
    }
    .cursor-trail {
      position: fixed;
      width: 4px;
      height: 4px;
      background: var(--cyan3);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      opacity: 0.6;
      transition: opacity 0.5s;
    }

    /* ── MAGNETIC BUTTONS ─────────────────────────────────── */
    .magnetic-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .magnetic-btn:hover {
      transform: scale(1.05);
    }

    /* ── LETTER REVEAL ─────────────────────────────────────── */
    .letter-reveal {
      display: inline-block;
      opacity: 0;
      transform: translateY(100%) rotateX(-90deg);
      transform-origin: bottom;
    }
    .letter-reveal.visible {
      animation: letterReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }
    @keyframes letterReveal {
      to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
      }
    }

    /* ── COUNTER ANIMATION ────────────────────────────────── */
    .counter {
      font-variant-numeric: tabular-nums;
    }

    /* ── SMOOTH SCROLL LENIS ──────────────────────────────── */
    html.lenis {
      height: auto;
    }
    .lenis.lenis-smooth {
      scroll-behavior: auto !important;
    }
    .lenis.lenis-smooth [data-lenis-prevent] {
      overscroll-behavior: contain;
    }

    /* ── PARALLAX IMAGES ───────────────────────────────────── */
    .parallax-img {
      will-change: transform;
      transition: transform 0.1s linear;
    }

    /* ── SCANLINES RGB ─────────────────────────────────────── */
    .scanlines {
      position: relative;
    }
    .scanlines::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        0deg,
        rgba(255,0,0,0.03) 0px,
        rgba(255,0,0,0.03) 1px,
        transparent 1px,
        transparent 2px,
        rgba(0,255,255,0.03) 2px,
        rgba(0,255,255,0.03) 3px,
        transparent 3px,
        transparent 4px
      );
      pointer-events: none;
      animation: scanlines 10s linear infinite;
    }
    @keyframes scanlines {
      0% { transform: translateY(0); }
      100% { transform: translateY(4px); }
    }

    /* ── TEXT GLOW ANIMATION ──────────────────────────────── */
    .text-glow {
      animation: textGlow 2s ease-in-out infinite alternate;
    }
    @keyframes textGlow {
      from { text-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan); }
      to { text-shadow: 0 0 20px var(--cyan), 0 0 30px var(--cyan), 0 0 40px var(--cyan); }
    }

    /* ── IMAGE REVEAL ─────────────────────────────────────── */
    .img-reveal {
      position: relative;
      overflow: hidden;
    }
    .img-reveal::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--bg);
      transform: scaleY(1);
      transform-origin: top;
      transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
    }
    .img-reveal.revealed::after {
      transform: scaleY(0);
      transform-origin: bottom;
    }

    /* ── HOVER LIFT ────────────────────────────────────────── */
    .hover-lift {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .hover-lift:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,207,255,0.2);
    }

    /* ── RESPONSIVE ────────────────────────────────────────── */
    @media (max-width: 960px) {
      .hero {
        flex-direction: column;
        padding: 80px 24px 40px;
        text-align: center;
      }
      .hero-text { width: 100%; }
      .hero-badges-row { justify-content: center; }
      .hero-ctas { justify-content: center; }
      .mockup-scene {
        flex: none; width: 100%; max-width: 520px; height: 340px;
      }
    }
    @media (max-width: 860px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .conn-card, .shield-card { display: none; }
      .phone { width: 140px; height: 272px; }
      .mockup-scene { justify-content: center; }
      .section, .section-inner { padding-left: 20px; padding-right: 20px; }
      footer { padding: 16px 20px; }
      .faq-grid2 { grid-template-columns: 1fr; }
      .compat-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 560px) {
      .hero { padding: 60px 16px 32px; }
      .hero h1 { font-size: 2.4rem; }
      .cta-banner { padding: 48px 20px; }
      .pricing-grid { grid-template-columns: 1fr; }
      .android-grid { grid-template-columns: 1fr !important; }
      .payforward-grid { grid-template-columns: 1fr !important; }
    }
