:root {
  --bg: #18181B;
  --bg-alt: #1C1C20;
  --bg-card: #222228;
  --fg: #FAF8F5;
  --fg-muted: #A8A29E;
  --fg-subtle: #78716C;
  --accent: #F59E0B;
  --accent-dim: #D97706;
  --border: #2E2E35;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

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

/* NAV */
nav {
  padding: 20px 40px;
  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: var(--serif);
  font-size: 22px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.nav-tag {
  font-size: 12px;
  color: var(--fg-subtle);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero { padding: 80px 40px 80px; }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-clips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.clip-tag {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* Video Stack */
.hero-right { display: flex; justify-content: center; }
.video-stack { display: flex; flex-direction: column; gap: 12px; }
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  padding: 12px;
}
.video-card-sm { margin-left: 24px; }
.video-thumb { height: 110px; border-radius: 4px; overflow: hidden; margin-bottom: 10px; }
.thumb-content {
  height: 100%;
  background: linear-gradient(135deg, #2A2A30 0%, #1E1E24 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
}
.thumb-dark { background: linear-gradient(135deg, #1A1A2E 0%, #16162A 100%); }
.thumb-warm { background: linear-gradient(135deg, #2A2010 0%, #1E1808 100%); }
.thumb-lines { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.line { height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; }
.line.long { width: 70%; }
.line.med { width: 50%; }
.line.short { width: 35%; }
.play-btn { font-size: 18px; opacity: 0.4; flex-shrink: 0; }
.video-meta { display: flex; align-items: center; gap: 6px; }
.platform-dot { width: 7px; height: 7px; border-radius: 50%; background: #E1306C; flex-shrink: 0; display: inline-block; }
.dot-li { background: #0A66C2; }
.dot-yt { background: #FF0000; }
.platform-label { font-size: 12px; color: var(--fg-subtle); }

/* STATS */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--fg-muted); max-width: 180px; line-height: 1.4; }
.stat-sep { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

/* HOW */
.how { padding: 80px 40px; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 12px; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; margin-bottom: 16px; }
.section-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 60px;
  max-width: 600px;
}
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.step-num { font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 0.1em; margin-bottom: 16px; }
.step-title { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* PRICING */
.pricing { padding: 80px 40px; background: var(--bg-alt); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  position: relative;
}
.card-featured {
  border-color: var(--accent-dim);
  background: linear-gradient(180deg, #1E1C14 0%, var(--bg-card) 100%);
}
.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #18181B;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card-tier { font-size: 14px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 12px; }
.card-price { font-family: var(--serif); font-size: 44px; color: var(--fg); margin-bottom: 4px; }
.card-price span { font-size: 18px; color: var(--fg-muted); font-family: var(--sans); }
.card-tagline { font-size: 13px; color: var(--fg-subtle); margin-bottom: 24px; }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.card-features li { font-size: 14px; color: var(--fg-muted); padding-left: 16px; position: relative; }
.card-features li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 12px; }
.card-cta {
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  letter-spacing: 0.04em;
}
.card-cta-featured {
  background: var(--accent);
  border-color: var(--accent);
  color: #18181B;
  font-weight: 600;
}

/* MANIFESTO */
.manifesto { padding: 80px 40px; }
.manifesto-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.manifesto-mark { font-size: 80px; color: var(--accent); line-height: 0.5; margin-bottom: 20px; font-family: var(--serif); }
.manifesto-text { font-family: var(--serif); font-size: clamp(22px, 2.5vw, 32px); line-height: 1.4; color: var(--fg); margin-bottom: 20px; letter-spacing: -0.3px; }
.manifesto-sub { font-size: 16px; color: var(--fg-muted); max-width: 560px; margin: 0 auto 40px; }
.manifesto-rule { width: 40px; height: 2px; background: var(--accent); margin: 0 auto 40px; }
.manifesto-bottom { font-family: var(--serif); font-size: 22px; color: var(--fg-muted); line-height: 1.6; }

/* CLOSING */
.closing { padding: 100px 40px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px; }
.closing-sub { font-size: 17px; color: var(--fg-muted); margin-bottom: 48px; }
.closing-cta { border: 1px solid var(--border); border-radius: 8px; padding: 28px; display: inline-block; }
.cta-label { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.cta-sub { font-size: 14px; color: var(--fg-muted); }

/* FOOTER */
footer { padding: 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-brand { font-family: var(--serif); font-size: 20px; margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: var(--fg-subtle); margin-bottom: 16px; }
.footer-links { font-size: 12px; color: var(--fg-subtle); letter-spacing: 0.06em; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-wrap: wrap; gap: 24px; }
  .stat-sep { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 24px 48px; }
  .stats { padding: 28px 24px; }
  .how { padding: 48px 24px; }
  .pricing { padding: 48px 24px; }
  .manifesto { padding: 48px 24px; }
  .closing { padding: 64px 24px; }
  nav { padding: 16px 24px; }
  .steps { grid-template-columns: 1fr; }
}