:root {
  --lime: #BAFF00;
  --bg: #0A0A0A;
  --surface: #111111;
  --surface2: #1A1A1A;
  --text: #F5F5F0;
  --muted: #888;
  --border: #2A2A2A;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--lime);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ── HERO ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at center, rgba(186,255,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 800px;
}
.hero-accent {
  color: var(--lime);
}
.hero-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  background: var(--surface);
}
.stat {
  padding: 20px 32px;
}
.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--lime);
  letter-spacing: -0.02em;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
  max-width: 130px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ── PROOF ──────────────────────────────────────── */
.proof {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.proof-inner { max-width: 1200px; margin: 0 auto; }
.section-label, .proof-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 40px;
}
.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.proof-card {
  background: var(--surface2);
  padding: 40px 32px;
}
.proof-icon {
  width: 44px; height: 44px;
  background: rgba(186,255,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 24px;
}
.proof-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.proof-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PLATFORMS ───────────────────────────────────── */
.platforms {
  padding: 100px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.platforms-inner { max-width: 1200px; margin: 0 auto; }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.platform-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  background: var(--surface);
  transition: border-color 0.2s;
}
.platform-item:hover { border-color: var(--lime); }
.platform-icon-tiktok,
.platform-icon-yt,
.platform-icon-ig,
.platform-icon-blog {
  width: 40px; height: 40px;
  background: rgba(186,255,0,0.08);
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-icon-tiktok::after { content: '♪'; font-size: 20px; color: var(--lime); }
.platform-icon-yt::after { content: '▶'; font-size: 18px; color: var(--lime); }
.platform-icon-ig::after { content: '◻'; font-size: 18px; color: var(--lime); }
.platform-icon-blog::after { content: '☰'; font-size: 18px; color: var(--lime); }
.platform-name {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
}
.platform-role {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── PROCESS ────────────────────────────────────── */
.process {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 40px;
}
.step {
  flex: 1;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface2);
}
.step-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--lime);
  opacity: 0.3;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin-top: 48px;
  flex-shrink: 0;
}

/* ── CLOSING ─────────────────────────────────────── */
.closing {
  padding: 120px 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 28px;
}
.closing-accent { color: var(--lime); }
.closing-body {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--lime);
}
.footer-sub {
  font-size: 13px;
  color: var(--muted);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-tagline { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-headline { font-size: 44px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .proof-cards { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; }
  .step-connector { width: 1px; height: 24px; margin: 0 auto; }
  .closing { padding: 80px 20px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .proof, .platforms, .process { padding: 60px 20px; }
}
@media (max-width: 480px) {
  .platform-grid { grid-template-columns: 1fr; }
}