:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --surface2: #1a1a1a;
  --accent: #FACC15;
  --accent-dim: rgba(250, 204, 21, 0.12);
  --text: #EFEFEF;
  --text-muted: #888888;
  --border: #1f1f1f;
  --border2: #2a2a2a;
}

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

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

/* ─── Typography ─── */
h1, h2, h3, .headline { font-family: 'Syne', system-ui, sans-serif; font-weight: 700; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-headline {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 32px;
  font-family: 'Syne', sans-serif;
}

/* ─── Navbar ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-wordmark {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.nav-tag {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ─── Hero ─── */
.hero {
  padding: 80px 24px 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.12;
  margin-bottom: 20px;
  font-family: 'Syne', sans-serif;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.pill-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text-muted);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 100px;
  font-family: 'DM Sans', monospace;
}
.pill-sep {
  color: var(--border2);
  font-size: 14px;
}

/* Pipeline card */
.pipeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pipeline-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
}
.pipeline-step--money { background: var(--accent-dim); border-radius: 8px; padding: 12px 10px; margin-top: 4px; }
.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-icon--yellow { background: var(--accent); }
.step-icon--green { background: var(--accent); }
.step-body { flex: 1; }
.step-label { font-weight: 600; font-size: 14px; margin-bottom: 3px; font-family: 'Syne', sans-serif; }
.step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.pipeline-arrow { display: flex; justify-content: center; padding: 2px 0; }

/* ─── How It Works ─── */
.howitworks {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.6;
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Syne', sans-serif;
}
.step-body { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── Pipeline section ─── */
.pipeline {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.pipeline-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pipeline-body { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 480px; }
.stack-list { display: flex; flex-direction: column; gap: 20px; }
.stack-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.stack-icon { flex-shrink: 0; margin-top: 2px; }
.stack-name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.stack-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── Monetization ─── */
.monetization {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.money-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.money-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.money-icon { margin-bottom: 16px; }
.money-label { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.money-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ─── Creators ─── */
.creators {
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.creators-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.creators-left .section-headline { margin-bottom: 0; }
.creator-checklist { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}
.check-item svg { flex-shrink: 0; margin-top: 2px; }
.creator-tags { }
.tag-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 10px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: var(--accent-dim);
  border: 1px solid rgba(250,204,21,0.2);
  color: var(--accent);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ─── Closing ─── */
.closing {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 56px;
}
.closing-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.footer-tag { font-size: 13px; color: var(--text-muted); }

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .hero-inner, .pipeline-content, .creators-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .money-grid { grid-template-columns: 1fr; }
  .closing-stat-row { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .closing { padding: 60px 24px; }
  .hero { padding: 48px 24px 40px; }
  .howitworks, .pipeline, .monetization, .creators { padding: 48px 24px; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .pill-row { gap: 6px; }
}