:root {
  --bg: #0a0a0a;
  --bg-alt: #121212;
  --fg: #f5f5f0;
  --muted: #9a9a94;
  --accent: #d4ff3f;
  --line: rgba(245,245,240,0.12);
  --card: #17171577;
  --radius: 14px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--accent); z-index: 999; transition: width 0.1s linear;
}

.section { padding: 100px 6vw; max-width: var(--maxw); margin: 0 auto; position: relative; }
.section.alt { background: var(--bg-alt); max-width: none; }
.section.alt > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.75rem;
  color: var(--accent); margin-bottom: 12px; font-weight: 600;
}

h1, h2 { font-weight: 700; line-height: 1.05; margin: 0 0 20px; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.body-text { color: var(--muted); font-size: 1.05rem; line-height: 1.6; max-width: 640px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* HERO */
.hero {
  height: 100vh; max-width: none; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; position: relative; padding: 0 6vw;
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.4); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%); }
.hero-content { position: relative; z-index: 2; }
.hero-title { font-size: clamp(2.6rem, 8vw, 6rem); }
.hero-title .accent { color: var(--accent); display: block; }
.hero-sub { color: #ddd; font-size: 1rem; letter-spacing: 0.03em; margin-top: 14px; }
.scroll-cue {
  position: absolute; bottom: 36px; z-index: 2; font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: #ccc; display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bob 2s infinite ease-in-out;
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* STATS */
.stats { padding-top: 60px; padding-bottom: 60px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px;
  text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 40px 0;
}
.stat-value { font-size: clamp(1.8rem, 4.5vw, 2.8rem); font-weight: 800; color: var(--accent); }
.stat-label { color: var(--muted); font-size: 0.82rem; margin-top: 6px; letter-spacing: 0.02em; }

/* TEXT BLOCK */
.text-block-inner { max-width: 640px; }

/* CREATOR GRID */
.creators-section h2 { margin-top: 0; }
.creator-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 40px;
}
.creator-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
}
.creator-card-media { width: 100%; height: 340px; object-fit: cover; background: #1c1c1c; }
.creator-card-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.creator-card-name { font-weight: 700; font-size: 1.1rem; }
.creator-card-caption { font-size: 0.85rem; color: #ccc; line-height: 1.4; font-style: italic; }
.creator-card-metrics {
  margin-top: auto; display: flex; flex-direction: column; gap: 6px;
  border-top: 1px solid var(--line); padding-top: 12px;
}
.creator-metric-row { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--muted); }
.creator-metric-row b { color: var(--fg); font-weight: 600; }
.creator-card-total {
  display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 700;
  color: var(--accent); margin-top: 4px;
}

/* TOTALS TABLE */
.totals-table-wrap { margin-top: 36px; overflow-x: auto; }
.totals-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 560px; }
.totals-table th, .totals-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.totals-table th { color: var(--muted); text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.05em; font-weight: 600; }
.totals-table tr:last-child td { color: var(--accent); font-weight: 700; border-bottom: none; }

/* FOOTER */
.footer { text-align: center; padding: 120px 6vw; max-width: none; }
.footer h2 { font-size: clamp(2.2rem, 6vw, 3.5rem); }
.footer p { color: var(--muted); }

@media (max-width: 600px) {
  .section { padding: 70px 6vw; }
}
