/* ===== TOKENS ===== */
:root {
  --bg: #08080c;
  --bg-2: #0f0f14;
  --bg-card: #111118;
  --fg: #f0ede6;
  --fg-dim: rgba(240, 237, 230, 0.5);
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --accent-2: #e87c0e;
  --border: rgba(240, 237, 230, 0.08);
  --border-accent: rgba(245, 158, 11, 0.3);
  --green: #22c55e;
  --red: #ef4444;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; }
a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.brand-mark-sm { width: 20px; height: 20px; }
.nav-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--fg-dim);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem 3rem 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-dim);
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  width: fit-content;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.proof-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
}
.proof-label {
  font-size: 0.72rem;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-display);
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual — Film Reels */
.hero-visual { position: relative; height: 420px; }
.reel-stack { position: relative; width: 100%; height: 100%; }
.reel {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-1 {
  width: 280px; height: 280px;
  top: 20px; left: 0;
  background: conic-gradient(from 0deg, #1a1a24, #252535, #1a1a24);
  border: 3px solid rgba(245,158,11,0.4);
  box-shadow: 0 0 60px rgba(245,158,11,0.08);
}
.reel-2 {
  width: 220px; height: 220px;
  top: 80px; left: 140px;
  background: conic-gradient(from 45deg, #1a1a24, #252535, #1a1a24);
  border: 3px solid rgba(245,158,11,0.25);
  box-shadow: 0 0 40px rgba(245,158,11,0.05);
}
.reel-3 {
  width: 160px; height: 160px;
  top: 160px; left: 40px;
  background: conic-gradient(from 90deg, #1a1a24, #252535, #1a1a24);
  border: 2px solid rgba(245,158,11,0.2);
}
.reel-inner { text-align: center; }
.reel-sprocket-row {
  display: flex;
  justify-content: space-around;
  padding: 0 12px;
  gap: 4px;
}
.reel-sprocket-row span {
  width: 10px; height: 10px;
  background: var(--bg);
  border-radius: 50%;
  display: inline-block;
}
.reel-center {
  width: 30px; height: 30px;
  background: var(--accent);
  border-radius: 50%;
  margin: 8px auto;
}

/* Channel Cards */
.channel-cards {
  position: absolute;
  right: 0;
  top: 60px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1rem 1.25rem;
  min-width: 220px;
  position: relative;
  overflow: hidden;
}
.card-dim { opacity: 0.6; }
.cc-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}
.card-dim .cc-bar { background: var(--fg-dim); }
.cc-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.cc-metrics {
  display: flex;
  gap: 1rem;
  font-size: 0.72rem;
  color: var(--fg-dim);
  font-family: var(--font-display);
}
.cc-metrics span:first-child { color: var(--accent); }

/* ===== PROBLEM ===== */
.problem {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 5rem 3rem;
}
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-label {
  font-size: 0.72rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 3rem;
  text-align: center;
}
.problem-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}
.problem-col {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--bg-card);
}
.col-old .problem-icon { color: var(--red); }
.col-new .problem-icon { color: var(--green); }
.problem-col h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.problem-col p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.65;
}
.problem-icon { margin-bottom: 1rem; }

/* ===== FEATURES ===== */
.features {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.features-header { margin-bottom: 4rem; }
.features-label {
  font-size: 0.72rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.features-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg-2); }
.feature-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--fg-dim);
  line-height: 1.65;
}

/* ===== ANATOMY ===== */
.anatomy {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 3rem;
}
.anatomy-inner { max-width: 900px; margin: 0 auto; }
.anatomy-label {
  font-size: 0.72rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.anatomy-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
}
.anatomy-streams { display: flex; flex-direction: column; gap: 2.5rem; }
.stream { }
.stream-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}
.stream-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.stream-range {
  font-size: 0.8rem;
  color: var(--accent);
  font-family: var(--font-display);
}
.stream-bar {
  height: 4px;
  background: rgba(240,237,230,0.08);
  border-radius: 2px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.stream-fill {
  height: 100%;
  border-radius: 2px;
}
.fill-ads { width: 90%; background: linear-gradient(90deg, var(--accent), #e87c0e); }
.fill-aff { width: 75%; background: #a3a3a3; }
.fill-sponsor { width: 55%; background: #737373; }
.fill-product { width: 40%; background: #525252; }
.stream-desc {
  font-size: 0.82rem;
  color: var(--fg-dim);
  line-height: 1.6;
}
.anatomy-case {
  margin-top: 3.5rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-left: 3px solid var(--accent);
  border-radius: 0 3px 3px 0;
}
.case-label {
  display: block;
  font-size: 0.68rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.anatomy-case p {
  font-size: 0.88rem;
  color: var(--fg-dim);
  line-height: 1.65;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-inner { text-align: center; }
.manifesto-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 3rem;
}
.manifesto-statement {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 760px;
  margin: 0 auto 3rem;
  font-style: normal;
}
.manifesto-sub {
  max-width: 520px;
  margin: 0 auto;
}
.manifesto-sub p {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}
.footer-note {
  font-size: 0.7rem;
  color: rgba(240,237,230,0.25);
  margin-top: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem 3rem;
    gap: 3rem;
  }
  .hero-visual { height: 280px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-cols { grid-template-columns: 1fr; }
  .nav { padding: 1rem 1.5rem; }
  .hero-proof { flex-direction: column; align-items: start; gap: 1rem; }
  .proof-divider { width: 40px; height: 1px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features, .anatomy, .manifesto { padding: 4rem 1.5rem; }
}