:root {
  --bg: #0A1628;
  --surface: #111e35;
  --surface2: #162440;
  --amber: #F59E0B;
  --amber-dim: rgba(245,158,11,0.12);
  --cream: #FAFAF8;
  --muted: #94a3b8;
  --border: rgba(148,163,184,0.12);
}

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

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .hero-headline, .section-title {
  font-family: 'DM Sans', sans-serif;
}

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--cream);
}
.nav-tagline {
  font-size: 12px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 80px 100px;
  min-height: 80vh;
}
.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--cream);
}
.hero-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-pipeline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pipeline-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--cream);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
}
.pipeline-icon {
  width: 20px;
  height: 20px;
  background: var(--amber);
  color: var(--bg);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pipeline-arrow { color: var(--muted); }

/* Channel card */
.channel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
.channel-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.channel-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a5f, #2a4a7f);
  flex-shrink: 0;
}
.channel-meta { flex: 1; }
.channel-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--cream);
}
.channel-stat {
  font-size: 12px;
  color: var(--muted);
}
.channel-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  background: #16a34a;
  color: white;
  border-radius: 4px;
  padding: 3px 8px;
  letter-spacing: 0.5px;
}
.channel-video-placeholder {
  height: 180px;
  background: linear-gradient(135deg, #1a2d4a 0%, #0f1d30 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.video-play-icon { opacity: 0.9; }
.video-overlay-stats {
  display: flex;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--muted);
}
.channel-recent { padding: 16px 20px; }
.recent-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 12px;
}
.recent-video {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.rv-thumb {
  width: 60px;
  height: 40px;
  border-radius: 6px;
  background: var(--surface2);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.rv-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 2px;
}
.rv-meta {
  font-size: 11px;
  color: var(--muted);
}

/* Manifesto */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 80px;
}
.manifesto-inner { max-width: 780px; }
.manifesto-text {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.55;
  color: var(--cream);
  margin-bottom: 24px;
}
.manifesto-text--accent {
  font-style: italic;
  color: var(--amber);
}

/* Pipeline section */
.pipeline-section {
  padding: 80px 80px 60px;
}
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--cream);
  margin-bottom: 56px;
  max-width: 560px;
}
.pipeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.p-step {
  background: var(--surface);
  padding: 32px 28px;
}
.p-step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.p-step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.p-step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Outcomes */
.outcomes {
  padding: 60px 80px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.outcome-card {
  background: var(--surface2);
  padding: 32px 28px;
}
.outcome-stat {
  font-family: 'DM Sans', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--amber);
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.outcome-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.outcome-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* Differentiators */
.differentiators {
  padding: 60px 80px 80px;
}
.diff-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.diff-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 36px;
}
.diff-list { display: flex; flex-direction: column; gap: 20px; }
.diff-item { display: flex; gap: 14px; align-items: flex-start; }
.diff-marker {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.diff-item strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
}
.diff-item div:last-child {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* Comparison table */
.comparison-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.comp-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 20px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
  align-items: center;
}
.comp-row:last-child { border-bottom: none; }
.comp-row > div:first-child { color: var(--cream); }

/* Closing */
.closing {
  padding: 100px 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  text-align: center;
}
.closing-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--cream);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 32px 80px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'DM Sans', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--cream);
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 60px; gap: 48px; min-height: auto; }
  .manifesto { padding: 48px 24px; }
  .pipeline-section { padding: 48px 24px; }
  .pipeline-steps { grid-template-columns: 1fr; }
  .outcomes { padding: 48px 24px; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
  .differentiators { padding: 48px 24px 64px; }
  .diff-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 24px;; }
  .nav { padding: 16px 24px; }
}