:root {
  --bg: #080b12; --s1: #0d1117; --s2: #131a27; --s3: #1a2332;
  --border: rgba(136,180,255,0.06); --border2: rgba(136,180,255,0.12);
  --text: #e1e7ef; --muted: #8a9bb5; --muted2: #96a7bf;
  --green: #00e68a; --green2: #00c974; --red: #f44060; --orange: #f59e0b;
  --blue: #60a5fa; --yellow: #eab308;
  --tier-s: #ff3d5a; --tier-a: #f59e0b; --tier-b: #60a5fa; --tier-c: #6b7280;
  --display: 'Clash Display', 'Bebas Neue', 'Orbitron', sans-serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --glow: 0 0 20px rgba(0,230,138,0.08);
  --text-xs: 10px; --text-sm: 12px; --text-base: 14px; --text-lg: 16px;
  --sp-4: 4px; --sp-8: 8px; --sp-12: 12px; --sp-16: 16px; --sp-20: 20px; --sp-24: 24px;
  --radius-sm: 6px; --radius-md: 10px; --radius-lg: 12px; --radius-xl: 16px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg); color: var(--text); font-family: var(--sans);
  overflow-x: hidden; min-height: 100vh; font-size: 16px;
}
a, button, [onclick], input, .nav-cta, .btn-primary, .btn-secondary {
  cursor: pointer;
}
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── AMBIENT ATMOSPHERE ─────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(0,230,138,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(96,165,250,0.02) 0%, transparent 50%);
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.4;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 32px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,11,18,0.88);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
}
.nav::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,230,138,0.012) 2px, rgba(0,230,138,0.012) 4px);
  z-index: -1;
}
.nav::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,230,138,0.25) 30%, rgba(0,230,138,0.25) 70%, transparent 100%);
}
.nav-brand {
  font-family: var(--display); font-size: 16px; letter-spacing: 3px;
  color: var(--text); white-space: nowrap; position: relative; z-index: 2;
}
.nav-brand span { color: var(--green); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-family: var(--mono); font-size: 11px; color: var(--muted2);
  letter-spacing: 0.5px; transition: color 0.15s; position: relative;
}
.nav-links a:hover { color: var(--green); text-decoration: none; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--green); transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-social { display: flex; gap: 14px; align-items: center; }
.nav-social a {
  color: var(--muted); transition: color .15s, transform .15s; display: flex; align-items: center;
}
.nav-social a:hover { color: var(--green); transform: translateY(-1px); text-decoration: none; }
.nav-cta {
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 1px;
  background: var(--green); color: #000; border: none; border-radius: 6px;
  padding: 9px 22px; cursor: pointer; transition: all .2s; white-space: nowrap;
  text-decoration: none;
}
.nav-cta:hover {
  background: #00ff9d; transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,230,138,0.25); text-decoration: none;
}

/* ── HAMBURGER ───────────────────────────────────────────────── */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; position: relative; z-index: 200;
  flex-shrink: 0;
}
.hamburger span {
  display: block; width: 20px; height: 2px; background: var(--text);
  position: absolute; left: 10px; transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  border-radius: 1px;
}
.hamburger span:nth-child(1) { top: 13px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 25px; }
.hamburger.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ── MOBILE DRAWER ───────────────────────────────────────────── */
.mobile-drawer {
  position: fixed; top: 64px; right: 0; bottom: 0; width: 280px;
  background: rgba(8,11,18,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--border2);
  z-index: 99; padding: 24px;
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 98;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.mobile-drawer-overlay.open { opacity: 1; visibility: visible; }
.mobile-drawer a {
  display: block; padding: 14px 16px; border-radius: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.5px;
  color: var(--muted2); transition: all 0.15s; text-decoration: none;
}
.mobile-drawer a:hover { background: rgba(0,230,138,0.06); color: var(--text); }
.mobile-drawer .drawer-divider {
  height: 1px; background: var(--border); margin: 12px 0;
}
.mobile-drawer .drawer-social {
  display: flex; gap: 16px; padding: 14px 16px; margin-top: auto;
}
.mobile-drawer .drawer-social a {
  padding: 10px; display: flex; align-items: center; min-height: 44px;
}
.mobile-drawer .drawer-cta {
  display: block; text-align: center; padding: 14px;
  background: var(--green); color: #000; border-radius: 8px;
  font-weight: 700; letter-spacing: 1px; margin-top: 8px;
}
.mobile-drawer .drawer-cta:hover { background: #00ff9d; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  min-height: auto; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 120px 24px 64px;
  position: relative; z-index: 1;
}
.hero::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,138,0.07) 0%, rgba(0,230,138,0.02) 40%, transparent 65%);
  pointer-events: none; animation: heroPulse 6s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(1.08); opacity: 0.7; }
}
/* Grid overlay for terminal feel */
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.03;
  background-image:
    linear-gradient(rgba(0,230,138,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,230,138,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black 0%, transparent 70%);
}
.hero-badge {
  font-family: var(--mono); font-size: 11px; letter-spacing: 3px; color: var(--green);
  background: rgba(0,230,138,0.06); border: 1px solid rgba(0,230,138,0.2);
  border-radius: 24px; padding: 8px 20px; margin-bottom: 32px;
  animation: badgePulse 3s ease-in-out infinite;
  position: relative; overflow: hidden;
}
.hero-badge::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,230,138,0.1), transparent);
  animation: badgeSweep 4s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,138,0); }
  50% { box-shadow: 0 0 0 8px rgba(0,230,138,0.03); }
}
@keyframes badgeSweep {
  0% { left: -100%; }
  50% { left: 200%; }
  100% { left: 200%; }
}
.hero h1 {
  font-family: 'Clash Display', var(--display); font-size: clamp(40px, 7.5vw, 78px); font-weight: 700;
  line-height: 1.02; margin-bottom: 24px; letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 .accent {
  color: var(--green);
  text-shadow: 0 0 40px rgba(0,230,138,0.15), 0 0 80px rgba(0,230,138,0.05);
}
.hero-sub {
  font-family: var(--sans); font-size: clamp(14px, 1.8vw, 17px); color: var(--muted2);
  max-width: 540px; line-height: 1.7; margin-bottom: 40px;
}
/* Typing cursor on the hero stat */
.hero-sub .hero-stat {
  color: var(--green); font-family: var(--mono); font-weight: 700;
  border-right: 2px solid var(--green);
  animation: cursorBlink 1s step-end infinite;
  padding-right: 2px;
}
@keyframes cursorBlink {
  0%, 100% { border-color: var(--green); }
  50% { border-color: transparent; }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #000; border: none; border-radius: 8px;
  padding: 15px 36px; cursor: pointer; transition: all .25s cubic-bezier(.4,0,.2,1);
  display: inline-block; text-decoration: none; text-transform: uppercase;
  box-shadow: 0 2px 16px rgba(0,230,138,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0,230,138,0.3), 0 0 60px rgba(0,230,138,0.1);
  text-decoration: none;
}
.btn-primary:active { transform: translateY(0) scale(0.98); box-shadow: 0 2px 12px rgba(0,230,138,0.2); }
.btn-secondary {
  font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.5px;
  background: transparent; color: var(--muted2); border: 1px solid var(--border2); border-radius: 8px;
  padding: 15px 36px; cursor: pointer; transition: all .25s cubic-bezier(.4,0,.2,1);
  display: inline-block; text-decoration: none;
}
.btn-secondary:hover {
  color: var(--text); border-color: rgba(0,230,138,0.35);
  background: rgba(0,230,138,0.04);
  box-shadow: 0 0 20px rgba(0,230,138,0.06);
  text-decoration: none;
}
.btn-secondary:active { transform: translateY(0); background: rgba(0,230,138,0.08); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── HERO PREVIEW ────────────────────────────────────────────── */
.hero-preview {
  margin-top: 48px; width: 100%; max-width: 920px;
  border-radius: 16px; position: relative; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5), 0 0 60px rgba(0,230,138,.04);
  border: 1px solid var(--border2);
  transform: perspective(1200px) rotateY(-4deg) rotateX(3deg);
  transition: transform 0.4s ease;
  background: linear-gradient(135deg, var(--s1) 0%, var(--s2) 50%, var(--s1) 100%);
  min-height: 200px;
}
.hero-preview:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}
.hero-preview::before {
  content: ''; position: absolute; top: -1px; left: 60px; right: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent); z-index: 1;
}
.hero-preview img { width: 100%; height: auto; display: block; }

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar {
  display: flex; gap: 0; justify-content: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--s1); position: relative; z-index: 1;
  overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(0,230,138,0.02) 50%, transparent 100%);
}
.stat-item {
  text-align: center; flex: 1; max-width: 200px;
  padding: 36px 20px;
  position: relative;
  transition: background 0.3s;
}
.stat-item:hover { background: rgba(0,230,138,0.02); }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 25%; height: 50%;
  width: 1px; background: var(--border2);
}
.stat-num {
  font-family: 'Clash Display', var(--display); font-size: 38px; font-weight: 700;
  color: var(--green); line-height: 1; letter-spacing: 1px;
  transition: text-shadow 0.3s;
}
.stat-item:hover .stat-num {
  text-shadow: 0 0 20px rgba(0,230,138,0.3);
}
.stat-label {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 1.5px; margin-top: 8px; text-transform: uppercase;
}

/* ── TRUST STRIP ─────────────────────────────────────────────── */
.trust-strip {
  padding: 24px; text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg); position: relative; z-index: 1;
  overflow: hidden;
}
.trust-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 2.5px;
  color: var(--muted); text-transform: uppercase; margin-bottom: 14px;
}
.trust-logos {
  display: flex; gap: 28px; justify-content: center; align-items: center;
  flex-wrap: wrap;
}
.trust-logos span {
  font-family: var(--mono); font-size: 11px; color: var(--muted2);
  letter-spacing: 1px; white-space: nowrap; transition: color 0.2s;
  opacity: 0.65;
}
.trust-logos span:hover { color: var(--green); opacity: 1; }

/* ── SECTIONS ────────────────────────────────────────────────── */
.section {
  padding: 88px 24px; max-width: 1000px; margin: 0 auto;
  position: relative; z-index: 1;
}
.section-label {
  font-family: var(--mono); font-size: 10px; color: var(--green); letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.section-label::before {
  content: ''; width: 16px; height: 1px; background: var(--green); opacity: 0.5;
}
.section h2 {
  font-family: var(--display); font-size: clamp(22px, 4vw, 32px); font-weight: 400;
  margin-bottom: 14px; letter-spacing: 1.5px;
}
.section-sub {
  font-size: 15px; color: var(--muted2); line-height: 1.7; max-width: 580px; margin-bottom: 40px;
}

/* ── SECTION DIVIDERS ────────────────────────────────────────── */
.section-divider {
  height: 32px; max-width: 100%; margin: 0;
  background: none; position: relative; overflow: hidden;
}
.section-divider::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(170deg, transparent 48%, var(--border2) 49.5%, var(--border2) 50.5%, transparent 52%);
}

/* ── PRODUCT CARD ────────────────────────────────────────────── */
.product-card {
  background: linear-gradient(145deg, var(--s1), rgba(19,26,39,0.6));
  border: 1px solid var(--border2); border-radius: 16px;
  padding: 40px; position: relative; overflow: hidden;
}
.product-card::before {
  content: ''; position: absolute; top: -1px; left: 40px; right: 40px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.product-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.product-logo { height: 48px; width: auto; }
.product-name { font-family: var(--display); font-size: 20px; letter-spacing: 2px; }
.product-name .t { color: var(--green); }
.product-sport {
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px;
  color: var(--orange); background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.15);
  border-radius: 4px; padding: 4px 10px; margin-left: 12px;
}
.product-desc { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 28px; }

/* ── FEATURES GRID ───────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px;
  margin-bottom: 32px;
}
.feature-item {
  background: var(--s2); border: 1px solid var(--border); border-radius: 10px;
  padding: 20px 18px; transition: all 0.25s; position: relative; overflow: hidden;
}
.feature-item::before {
  content: ''; position: absolute; inset: 0; border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,230,138,0.04), transparent);
  opacity: 0; transition: opacity 0.25s;
}
.feature-item:hover {
  border-color: rgba(0,230,138,0.15);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25), inset 2px 0 0 var(--green);
}
.feature-item:hover::before { opacity: 1; }
.feature-icon { font-size: 22px; margin-bottom: 10px; position: relative; }
.feature-title {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--text); margin-bottom: 6px; position: relative;
}
.feature-desc { font-size: 12px; color: var(--muted2); line-height: 1.6; position: relative; }

.product-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.product-badge {
  font-family: var(--mono); font-size: 10px; color: var(--muted);
  background: var(--s3); border-radius: 6px; padding: 6px 12px;
}
.product-badge-pro {
  font-family: var(--mono); font-size: 10px;
  color: var(--green); border: 1px solid rgba(0,230,138,.15);
  background: rgba(0,230,138,.05); border-radius: 6px; padding: 6px 12px;
}

/* ── SOCIAL PROOF ────────────────────────────────────────────── */
.proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: 700px; margin: 0 auto;
}
.proof-card {
  background: linear-gradient(145deg, var(--s1), var(--s2));
  border: 1px solid var(--border2); border-radius: 12px;
  padding: 28px 20px; text-align: center; transition: all 0.25s;
}
.proof-card:hover {
  border-color: rgba(136,180,255,0.15);
  transform: translateY(-2px);
}
.proof-num {
  font-family: var(--display); font-size: 32px; font-weight: 900;
  margin-bottom: 8px; line-height: 1;
}
.proof-num.green { color: var(--green); }
.proof-num.blue { color: var(--blue); }
.proof-num.orange { color: var(--orange); }
.proof-label {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* ── COMING SOON ─────────────────────────────────────────────── */
.coming-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.coming-card {
  background: var(--s1); border: 1px solid var(--border); border-radius: 12px;
  padding: 28px 20px; text-align: center; position: relative;
  opacity: 0.7; transition: all .25s;
}
.coming-card:hover { opacity: 0.85; border-color: var(--border2); }
.coming-icon { font-size: 28px; margin-bottom: 10px; }
.coming-sport { font-family: var(--display); font-size: 15px; letter-spacing: 2px; margin-bottom: 8px; }
.coming-tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px;
  color: var(--muted); background: var(--s3); border-radius: 4px;
  padding: 3px 10px; display: inline-block;
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  text-align: center; padding: 24px 16px; border-radius: 12px;
  background: var(--s1); border: 1px solid var(--border);
  transition: all 0.25s;
}
.step:hover { border-color: var(--border2); transform: translateY(-2px); }
.step-num {
  font-family: var(--display); font-size: 28px; font-weight: 900;
  color: var(--green); opacity: 0.5; margin-bottom: 12px;
}
.step-title {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  margin-bottom: 8px; letter-spacing: 0.5px;
}
.step-desc { font-size: 12px; color: var(--muted2); line-height: 1.6; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border2); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  padding: 22px 0; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: color 0.15s;
}
.faq-q:hover { color: var(--green); }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  color: var(--muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--green); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.35s;
  font-size: 14px; color: var(--muted2); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 22px; }

/* ── PRICING ─────────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; max-width: 640px; margin: 0 auto;
}
.pricing-card {
  background: linear-gradient(145deg, var(--s1), var(--s2));
  border: 1px solid var(--border2); border-radius: 16px;
  padding: 36px 28px; position: relative; transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.3); }
.pricing-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 40px rgba(0,230,138,.06), inset 0 1px 0 rgba(0,230,138,0.15);
  background: linear-gradient(145deg, rgba(0,230,138,0.03), var(--s1) 40%, var(--s2));
}
.pricing-card.featured:hover {
  box-shadow: 0 0 50px rgba(0,230,138,.1), 0 12px 40px rgba(0,0,0,.3);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--green2)); color: #000;
  font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  padding: 5px 16px; border-radius: 20px; white-space: nowrap;
}
.pricing-tier {
  font-family: var(--mono); font-size: 10px; letter-spacing: 2.5px;
  color: var(--muted); margin-bottom: 8px;
}
.pricing-tier.highlight { color: var(--green); }
.pricing-price {
  font-family: var(--display); font-size: 38px; font-weight: 900;
  color: var(--text); margin-bottom: 4px; line-height: 1;
}
.pricing-period {
  font-family: var(--mono); font-size: 11px; color: var(--muted); margin-bottom: 28px;
}
.pricing-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  font-family: var(--sans); font-size: 13px; color: var(--muted2); line-height: 2.4;
}
.pricing-list .included { color: var(--green); }
.pricing-list .excluded { color: var(--muted); opacity: 0.6; }
.pricing-btn {
  display: block; width: 100%; text-align: center; padding: 13px; border-radius: 8px;
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 1px;
  transition: all 0.2s; cursor: pointer; text-decoration: none;
}
.pricing-btn-free {
  background: transparent; color: var(--muted2); border: 1px solid var(--border2);
}
.pricing-btn-free:hover {
  border-color: rgba(0,230,138,0.3); color: var(--text);
  background: rgba(0,230,138,0.04); text-decoration: none;
}
.pricing-btn-pro {
  background: linear-gradient(135deg, var(--green), var(--green2)); color: #000; border: none;
  box-shadow: 0 2px 12px rgba(0,230,138,0.15);
}
.pricing-btn-pro:hover {
  box-shadow: 0 6px 24px rgba(0,230,138,0.25);
  transform: translateY(-1px); text-decoration: none;
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about-card {
  max-width: 640px; margin: 0 auto;
  background: linear-gradient(145deg, var(--s1), var(--s2)); border: 1px solid var(--border2);
  border-radius: 16px; padding: 44px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; top: -1px; left: 60px; right: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.about-quote {
  font-family: var(--display); font-size: 40px; color: var(--green);
  opacity: 0.15; line-height: 1; margin-bottom: -8px;
}
.about-name {
  font-family: var(--display); font-size: 15px; letter-spacing: 3px;
  color: var(--green); margin-bottom: 20px;
}
.about-text {
  font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 24px;
  font-style: italic; opacity: 0.9;
}
.about-links { display: flex; gap: 20px; justify-content: center; }
.about-links a {
  font-family: var(--mono); font-size: 11px; color: var(--muted2);
  display: flex; align-items: center; gap: 6px; transition: color 0.15s;
}
.about-links a:hover { color: var(--green); text-decoration: none; }

/* ── NEWSLETTER ──────────────────────────────────────────────── */
.newsletter-section {
  text-align: center; padding: 88px 24px; position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
}
.newsletter-form {
  display: flex; gap: 10px; max-width: 440px; margin: 0 auto;
}
.newsletter-input {
  flex: 1; min-width: 0; padding: 13px 16px;
  background: var(--s2); border: 1px solid var(--border2); border-radius: 8px;
  color: var(--text); font-family: var(--mono); font-size: 12px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.newsletter-input:focus {
  border-color: rgba(0,230,138,0.3);
  box-shadow: 0 0 0 3px rgba(0,230,138,0.15);
}
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-msg {
  font-family: var(--mono); font-size: 11px; margin-top: 12px; min-height: 20px;
}

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
  text-align: center; padding: 88px 24px; position: relative; z-index: 1;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(0,230,138,0.04), transparent);
}
.cta-section h2 {
  font-family: var(--display); font-size: clamp(22px, 4vw, 34px); font-weight: 400;
  margin-bottom: 12px; position: relative; letter-spacing: 1.5px;
}
.cta-section p { font-size: 14px; color: var(--muted2); margin-bottom: 28px; position: relative; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.landing-footer {
  padding: 48px 24px 32px; border-top: 1px solid var(--border);
  text-align: center; font-family: var(--mono); font-size: 10px; color: var(--muted);
  position: relative; z-index: 1;
}
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 24px;
  margin-bottom: 20px;
}
.footer-links a { color: var(--muted2); font-family: var(--mono); font-size: 10px; transition: color 0.15s; }
.footer-links a:hover { color: var(--green); text-decoration: none; }
.footer-social {
  display: flex; gap: 16px; justify-content: center; margin-bottom: 20px;
}
.footer-social a {
  color: var(--muted2); transition: color .15s, transform .15s; display: flex;
  align-items: center; padding: 8px; min-height: 44px;
}
.footer-social a:hover { color: var(--green); transform: translateY(-1px); text-decoration: none; }
.footer-gambling {
  margin: 0 auto 20px; padding: 12px 20px; max-width: 460px;
  background: rgba(245,158,11,.04); border: 1px solid rgba(245,158,11,.08);
  border-radius: 8px; line-height: 1.7;
}
.footer-gambling a { color: var(--orange); }

/* ── SCROLL ANIMATIONS ───────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.4s; }

/* ── FOCUS STATES ────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}
button:focus-visible { outline-offset: 2px; }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonial-grid {
  max-width: 700px; margin: 32px auto 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.testimonial-card {
  background: var(--s1); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; position: relative;
}
.testimonial-quote {
  font-size: 28px; color: var(--green); opacity: 0.15;
  font-family: var(--display); position: absolute; top: 12px; left: 16px;
}
.testimonial-text {
  font-size: 14px; color: var(--muted2); line-height: 1.7;
  margin-bottom: 12px; padding-top: 8px;
}
.testimonial-author {
  font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 1px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .coming-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .nav { padding: 0 16px; height: 60px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero { padding: 96px 20px 48px; }
  .hero h1 { font-size: clamp(26px, 7vw, 40px); }
  .hero-sub { font-size: 14px; margin-bottom: 32px; }
  .hero-preview { margin-top: 36px; border-radius: 12px; }
  .hero-preview img { border-radius: 12px; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 1 45%; padding: 24px 16px; }
  .stat-item + .stat-item::before { display: none; }
  .stat-num { font-size: 24px; }
  .section { padding: 56px 20px; }
  .product-card { padding: 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feature-item { padding: 14px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
  .proof-grid { grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
  .proof-card { padding: 20px 12px; }
  .proof-num { font-size: 26px; }
  .btn-primary, .btn-secondary { padding: 12px 24px; font-size: 11px; }
  .product-cta { flex-direction: column; align-items: stretch; }
  .product-cta .btn-primary { text-align: center; }
  .product-badge, .product-badge-pro { text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn-primary { width: 100%; text-align: center; }
  .about-card { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .coming-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas a { width: 100%; text-align: center; }
  .stats-bar { gap: 0; }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 10px; }
  .product-header { flex-wrap: wrap; }
  .landing-footer { padding: 32px 16px 24px; }
  .proof-grid { grid-template-columns: 1fr; }
  .about-links { flex-direction: column; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
