/* ── Tokens ── */
:root {
  --bg: #0d0d12;
  --surface: #141419;
  --surface-2: #1c1c24;
  --fg: #fafaf8;
  --fg-muted: #8a8a98;
  --accent: #b5ff4a;
  --accent-dim: rgba(181, 255, 74, 0.12);
  --border: rgba(255,255,255,0.07);
  --radius: 8px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  scroll-behavior: smooth;
}

body { min-height: 100vh; }

/* ── Topbar ── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.wordmark {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero { padding: 80px 48px 72px; }

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}

/* Reel grid */
.hero-reel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 260px;
}

.reel-slot {
  aspect-ratio: 9/16;
  border-radius: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.reel-slot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
}

.reel-slot::after {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* Stat column */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.stat {}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Pain ── */
.pain {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 48px;
  background: var(--surface);
}

.pain-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain-statement {
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--fg-muted);
}

.pain-statement strong { color: var(--fg); }

/* ── How ── */
.how { padding: 80px 48px; }

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  color: var(--fg);
}

.steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {}

.step-num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}

.step-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--fg);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Niches ── */
.niches {
  background: var(--surface);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.niches-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.niche-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.niche-icon {
  color: var(--accent);
  margin-bottom: 4px;
}

.niche-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
}

.niche-card p {
  font-size: 0.83rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Process ── */
.process {
  padding: 80px 48px;
}

.process-inner { max-width: 760px; margin: 0 auto; }

.process-desc {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.process-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: var(--accent-dim);
  border: 1px solid rgba(181,255,74,0.2);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ── Closing ── */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 96px 48px;
}

.closing-inner { max-width: 760px; margin: 0 auto; }

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 36px;
}

.closing-cta {
  display: inline-block;
  background: var(--accent);
  color: #0d0d12;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.15s ease, transform 0.1s ease;
}

.closing-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-inner .wordmark { font-size: 0.9rem; }

.footer-inner p {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .topbar { padding: 16px 24px; }
  .hero { padding: 56px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-reel-grid { width: 180px; }
  .hero-stats { flex-direction: row; gap: 32px; }
  .pain { padding: 40px 24px; }
  .how { padding: 56px 24px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .niches { padding: 56px 24px; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .process { padding: 56px 24px; }
  .closing { padding: 64px 24px; }
  .site-footer { padding: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 600px) {
  .niches-grid { grid-template-columns: 1fr; }
  .hero-reel-grid { display: none; }
}
