:root {
  --bg: #0f1419;
  --bg-card: #1a2332;
  --bg-card-alt: #16202e;
  --accent: #f59e0b;
  --accent-dim: #d97706;
  --text: #e8edf4;
  --text-muted: #8b9ab4;
  --text-dim: #566477;
  --border: #253447;
}

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

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

/* NAV */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.stat {
  background: var(--bg);
  padding: 1.75rem 2rem;
}
.stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* THE GAP */
.the-gap {
  background: var(--bg-card);
  padding: 5rem 2rem;
}
.gap-label, .formats-label, .money-label, .closing-kicker {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  max-width: 1100px;
  margin: 0 auto 1.25rem;
}
.gap-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}
.gap-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.gap-card {
  border: 1px solid var(--border);
  padding: 2rem 2.25rem;
}
.gap-card--solution { border-color: var(--accent-dim); }
.gap-card-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.gap-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.gap-card ul {
  list-style: none;
}
.gap-card ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.gap-card ul li:last-child { border-bottom: none; }

/* CONTENT FORMATS */
.content-formats {
  padding: 5rem 2rem;
}
.formats-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}
.formats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.format-card {
  background: var(--bg-card);
  padding: 2rem 1.75rem;
}
.format-number {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.format-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.format-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* MONEY */
.money {
  background: var(--bg-card);
  padding: 5rem 2rem;
}
.money-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 3rem;
  text-align: center;
}
.money-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.money-card {
  background: var(--bg);
  padding: 1.5rem 1.25rem;
}
.money-source {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.money-detail {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.money-example {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
}
.money-example strong { color: var(--text); }

/* CLOSING */
.closing {
  padding: 6rem 2rem;
  background: var(--bg);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2rem;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.closing-statement {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2.5rem;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.footer-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.footer-note {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: 1fr; }
  .gap-grid { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr 1fr; }
  .money-grid { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.5rem 2.5rem; }
  .the-gap, .content-formats, .money, .closing { padding: 3.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .formats-grid { grid-template-columns: 1fr; }
}