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

:root {
  --bg: #0c0c0e;
  --surface: #141416;
  --border: #2a2a2e;
  --fg: #f0ede8;
  --fg-muted: #8a8680;
  --accent: #e8a838;
  --accent-dim: #c4882a;
  --font-head: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

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;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,12,14,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 10vh, 7rem);
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}
.hero-headline br { display: block; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── SECTION SHARED ── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2rem;
}

/* ── WHAT ── */
.what {
  padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}
.what-inner { max-width: 1100px; margin: 0 auto; }
.what-body {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
  color: var(--fg-muted);
  max-width: 700px;
  margin-bottom: 3rem;
}
.what-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.what-stat {
  background: var(--surface);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.stat-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* ── HOW ── */
.how {
  padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.how-step {
  background: var(--bg);
  padding: 2.5rem 2rem;
}
.step-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.step-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.step-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── ROSTER ── */
.roster {
  padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}
.roster-inner { max-width: 1100px; margin: 0 auto; }
.roster-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.creator-card {
  background: var(--surface);
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.creator-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.creator-pub {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}
.creator-aud {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.creator-reach {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

/* ── REACH / CLIENTS ── */
.reach {
  padding: clamp(4rem, 8vh, 6rem) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.reach-inner { max-width: 1100px; margin: 0 auto; }
.reach-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.client-tag {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ── CLOSING ── */
.closing {
  padding: clamp(5rem, 12vh, 8rem) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 900px; margin: 0 auto; }
.closing-statement {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--fg);
}

/* ── FOOTER ── */
.footer {
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--fg);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .what-stats,
  .how-steps { grid-template-columns: 1fr; }
  .roster-grid { grid-template-columns: 1fr; }
  .hero-headline br { display: none; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}