:root {
  --bg: #0C0C0C;
  --surface: #151515;
  --border: #222222;
  --fg: #F0F0EE;
  --fg-muted: #888880;
  --accent: #D1FF3E;
  --accent-dim: #A8D12E;
  --accent-glow: rgba(209, 255, 62, 0.12);
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* HERO */
.hero {
  padding: 100px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}

.lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.7;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
}

.waveform {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 180px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.waveform span {
  display: block;
  width: 6px;
  background: var(--accent);
  border-radius: 3px;
  opacity: 0.7;
  animation: wave 1.4s ease-in-out infinite;
}

.waveform span:nth-child(1)  { height: 30%; animation-delay: 0s; }
.waveform span:nth-child(2)  { height: 60%; animation-delay: 0.1s; }
.waveform span:nth-child(3)  { height: 45%; animation-delay: 0.2s; }
.waveform span:nth-child(4)  { height: 80%; animation-delay: 0.3s; }
.waveform span:nth-child(5)  { height: 55%; animation-delay: 0.4s; }
.waveform span:nth-child(6)  { height: 95%; animation-delay: 0.5s; }
.waveform span:nth-child(7)  { height: 70%; animation-delay: 0.6s; }
.waveform span:nth-child(8)  { height: 50%; animation-delay: 0.7s; }
.waveform span:nth-child(9)  { height: 85%; animation-delay: 0.8s; }
.waveform span:nth-child(10) { height: 40%; animation-delay: 0.9s; }
.waveform span:nth-child(11) { height: 75%; animation-delay: 1s; }
.waveform span:nth-child(12) { height: 35%; animation-delay: 1.1s; }
.waveform span:nth-child(13) { height: 90%; animation-delay: 1.2s; }
.waveform span:nth-child(14) { height: 60%; animation-delay: 1.3s; }
.waveform span:nth-child(15) { height: 45%; animation-delay: 0s; }
.waveform span:nth-child(16) { height: 80%; animation-delay: 0.2s; }
.waveform span:nth-child(17) { height: 55%; animation-delay: 0.4s; }
.waveform span:nth-child(18) { height: 65%; animation-delay: 0.6s; }
.waveform span:nth-child(19) { height: 35%; animation-delay: 0.8s; }
.waveform span:nth-child(20) { height: 70%; animation-delay: 1s; }
.waveform span:nth-child(21) { height: 50%; animation-delay: 1.2s; }
.waveform span:nth-child(22) { height: 90%; animation-delay: 0.1s; }
.waveform span:nth-child(23) { height: 40%; animation-delay: 0.3s; }
.waveform span:nth-child(24) { height: 75%; animation-delay: 0.5s; }
.waveform span:nth-child(25) { height: 55%; animation-delay: 0.7s; }
.waveform span:nth-child(26) { height: 85%; animation-delay: 0.9s; }
.waveform span:nth-child(27) { height: 30%; animation-delay: 1.1s; }
.waveform span:nth-child(28) { height: 60%; animation-delay: 1.3s; }
.waveform span:nth-child(29) { height: 45%; animation-delay: 0s; }
.waveform span:nth-child(30) { height: 80%; animation-delay: 0.2s; }
.waveform span:nth-child(31) { height: 35%; animation-delay: 0.4s; }
.waveform span:nth-child(32) { height: 70%; animation-delay: 0.6s; }
.waveform span:nth-child(33) { height: 50%; animation-delay: 0.8s; }
.waveform span:nth-child(34) { height: 90%; animation-delay: 1s; }
.waveform span:nth-child(35) { height: 40%; animation-delay: 1.2s; }
.waveform span:nth-child(36) { height: 65%; animation-delay: 0s; }
.waveform span:nth-child(37) { height: 75%; animation-delay: 0.3s; }
.waveform span:nth-child(38) { height: 30%; animation-delay: 0.6s; }
.waveform span:nth-child(39) { height: 85%; animation-delay: 0.9s; }
.waveform span:nth-child(40) { height: 55%; animation-delay: 1.2s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-dim);
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 12px;
  color: var(--accent);
}

.dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* HOW SECTION */
.how {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}

.how-inner { max-width: 1200px; margin: 0 auto; }

.how h2 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 56px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CHANNELS SECTION */
.channels {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}

.channels-inner { max-width: 1200px; margin: 0 auto; }

.channels-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 48px;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.channel-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.channel-card:hover {
  border-color: var(--accent-dim);
}

.channel-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border-radius: 8px;
  color: var(--accent);
  margin-bottom: 20px;
}

.channel-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.channel-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* MANIFESTO SECTION */
.manifesto {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}

.manifesto-inner { max-width: 800px; margin: 0 auto; }

.manifesto-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.manifesto blockquote {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 28px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}

.manifesto-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-links {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    padding: 72px 20px 60px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .channels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .channels-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 32px;
  }
}