:root {
  --bg: #0b0e17;
  --bg-deep: #070a11;
  --bg-card: #111827;
  --bg-card-hover: #1a2236;
  --fg: #e2e8f0;
  --fg-muted: #8b97b0;
  --accent: #f0a500;
  --accent-glow: rgba(240,165,0,0.15);
  --accent-soft: #ffd866;
  --radius: 16px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 160px;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(240,165,0,0.06) 0%, transparent 70%),
              var(--bg);
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 720px;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(240,165,0,0.2);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
}

.lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

/* CTA row */
.hero-cta-row {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #0b0e17;
  background: var(--accent);
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(240,165,0,0.3);
}

.hero-cta-btn:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,165,0,0.4);
}

.cta-play-icon {
  font-size: 0.85rem;
}

.hero-cta-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
  opacity: 0.7;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 120px;
}

/* ========== STREAMS ========== */
.streams {
  background: var(--bg-deep);
  padding: 100px 24px 120px;
}

.streams-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  margin-bottom: 56px;
  text-align: center;
}

.stream-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stream-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: background 0.3s, transform 0.3s;
}

.stream-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.stream-card-wide {
  grid-column: 1 / -1;
}

.stream-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  filter: grayscale(0.3);
}

.stream-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 10px;
}

.stream-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.stream-rpm {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 4px 12px;
  border-radius: 6px;
}

/* ========== HOW ========== */
.how {
  background: var(--bg);
  padding: 100px 24px 120px;
}

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

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
}

.how-item {
  position: relative;
  padding-left: 0;
}

.how-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  color: rgba(240,165,0,0.12);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.how-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 8px;
}

.how-item p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ========== CLOSING ========== */
.closing {
  background: var(--bg-deep);
  padding: 100px 24px 120px;
  text-align: center;
}

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

.closing h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.closing > div > p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  font-weight: 300;
  line-height: 1.8;
}

.closing-inner > p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  font-weight: 300;
  line-height: 1.8;
}

.closing-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-display);
  font-weight: 500;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg);
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

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

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(139,151,176,0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .stream-grid {
    grid-template-columns: 1fr;
  }
  .stream-card-wide {
    grid-column: auto;
  }
  .how-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .closing-stats {
    gap: 40px;
  }
  .hero {
    padding: 100px 20px 140px;
  }
  .lede {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .closing-stats {
    flex-direction: column;
    gap: 32px;
  }
  .stat-val {
    font-size: 2rem;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
}