:root {
  --bg: #0a0a0e;
  --surface: #12121a;
  --surface-2: #1a1a26;
  --border: #2a2a3a;
  --accent: #c8ff00;
  --accent-dim: rgba(200, 255, 0, 0.12);
  --text: #f0f0f5;
  --text-muted: #8888a0;
  --text-dim: #55556a;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-tag {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 80px 40px 60px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(200, 255, 0, 0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  gap: 24px;
  align-items: center;
}
.proof-stat { display: flex; flex-direction: column; }
.proof-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.proof-label {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 2px;
  line-height: 1.4;
  max-width: 100px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Pipeline Visual */
.pipeline-viz {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
}
.pipe-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.pipe-step:last-child { border-bottom: none; }
.pipe-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,255,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.pipe-icon-ai { background: rgba(120, 80, 255, 0.1); border-color: rgba(120,80,255,0.15); color: #a080ff; }
.pipe-icon-post { background: rgba(0, 200, 255, 0.1); border-color: rgba(0,200,255,0.15); color: #00c8ff; }
.pipe-text { display: flex; flex-direction: column; }
.pipe-label { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--text); }
.pipe-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.pipe-arrow {
  display: flex;
  justify-content: center;
  padding: 4px 0;
  color: var(--text-dim);
}

/* Clip Preview */
.clip-preview { }
.clip-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.clip-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.clip-video-area {
  height: 120px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.clip-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
}
.clip-waveform span {
  display: block;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.7;
}
.clip-waveform span:nth-child(1)  { height: 20%; }
.clip-waveform span:nth-child(2)  { height: 60%; }
.clip-waveform span:nth-child(3)  { height: 40%; }
.clip-waveform span:nth-child(4)  { height: 80%; }
.clip-waveform span:nth-child(5)  { height: 100%; }
.clip-waveform span:nth-child(6)  { height: 90%; }
.clip-waveform span:nth-child(7)  { height: 50%; }
.clip-waveform span:nth-child(8)  { height: 70%; }
.clip-waveform span:nth-child(9)  { height: 30%; }
.clip-waveform span:nth-child(10) { height: 85%; }
.clip-waveform span:nth-child(11) { height: 55%; }
.clip-waveform span:nth-child(12) { height: 65%; }
.clip-waveform span:nth-child(13) { height: 45%; }
.clip-caption {
  padding: 14px 16px 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.clip-meta {
  display: flex;
  justify-content: space-between;
  padding: 0 16px 14px;
}
.clip-views { font-size: 12px; color: var(--accent); }
.clip-time { font-size: 12px; color: var(--text-dim); }

/* PIPELINE SECTION */
.pipeline-section {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 48px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.pipeline-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 640px;
}
.pipeline-note svg { color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* FACELESS SECTION */
.faceless-section {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}
.faceless-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.faceless-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.15;
}
.faceless-body { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.faceless-facts { display: flex; flex-direction: column; gap: 14px; }
.fact-row { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); }
.fact-check { color: var(--accent); flex-shrink: 0; }
.niche-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.niche-high { border-color: rgba(200,255,0,0.15); background: rgba(200,255,0,0.04); }
.niche-name { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--text); }
.niche-rpm { font-size: 12px; color: var(--text-muted); }
.niche-high .niche-rpm { color: var(--accent); }
.niche-note { font-size: 12px; color: var(--text-dim); text-align: center; margin-top: 12px; }

/* REVENUE SECTION */
.revenue-section {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
}
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.rev-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.rev-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-dim);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1;
}
.rev-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 10px;
}
.rev-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.rev-ceiling {
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 6px;
  padding: 6px 10px;
  display: inline-block;
}

/* CLOSING SECTION */
.closing-section {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,255,0,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-sub { font-size: 18px; color: var(--text-muted); line-height: 1.7; margin-bottom: 48px; }
.closing-stack {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stack-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
.stack-icon { color: var(--accent); }

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}
.footer-tag { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
.footer-links { font-size: 12px; color: var(--text-dim); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner,
  .faceless-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: 1fr; }
  .revenue-grid { grid-template-columns: repeat(2, 1fr); }
  .niche-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-proof { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 48px 20px 40px; }
  .pipeline-section,
  .faceless-section,
  .revenue-section,
  .closing-section { padding: 60px 20px; }
  .revenue-grid { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .closing-stack { gap: 16px; }
  .footer { padding: 20px; }
}