:root {
  --bg: #0d0d0d;
  --surface: #1a1a1a;
  --accent: #f5a623;
  --accent-dim: #c4821a;
  --text: #f0ede8;
  --text-muted: #8a8680;
  --text-dim: #5a5754;
  --border: #2a2a2a;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 6rem 3rem 5rem;
  max-width: 1100px;
}
.hero-eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 3.5rem;
  font-weight: 300;
}
.hero-stat-row {
  display: flex;
  gap: 3.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* Section labels */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 3rem;
}

/* Streams */
.streams {
  padding: 5rem 3rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stream-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.stream-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  position: relative;
}
.stream-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--border);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  line-height: 1;
}
.stream-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.stream-range {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
.stream-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.stream-offer {
  font-size: 0.75rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  font-family: 'DM Sans', monospace;
}

/* Process */
.process {
  padding: 5rem 3rem;
  max-width: 1100px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  min-width: 3.5rem;
}
.step-content h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 500px;
}

/* Manifesto */
.manifesto {
  padding: 5rem 3rem;
  background: var(--bg);
}
.manifesto-rule {
  height: 1px;
  background: var(--accent);
  opacity: 0.3;
  margin-bottom: 3rem;
}
.manifesto-rule:last-child { margin-bottom: 0; margin-top: 3rem; }
.manifesto-statement {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.manifesto-body {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.manifesto-subscribe {
  font-size: 0.875rem;
  color: var(--text-dim);
  font-style: italic;
  max-width: 480px;
}

/* Footer */
footer {
  padding: 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.footer-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 300;
}
.footer-legal {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 3.5rem; }
  .hero-stat-row { gap: 2rem; }
  .streams { padding: 3rem 1.5rem; }
  .stream-cards { grid-template-columns: 1fr; }
  .process { padding: 3rem 1.5rem; }
  .manifesto { padding: 3rem 1.5rem; }
  .process-step { gap: 1.5rem; }
  footer { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 3.5rem; }
  .hero-stat-row { flex-wrap: wrap; gap: 1.5rem; }
}