/* Base */
:root {
  --bg: #0B0E14;
  --surface: #12151C;
  --surface-2: #1A1E28;
  --amber: #F59E0B;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --text: #E8E4DC;
  --text-dim: #7A7680;
  --border: rgba(255,255,255,0.07);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #F4F0E8;
}

/* Nav */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* Hero */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: 1140px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 440px;
  line-height: 1.7;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}
.card-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.card-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.card-row-last { border-bottom: none; }
.card-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--amber);
  min-width: 1.5rem;
  margin-top: 0.15rem;
}

/* Stats */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}
.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  padding: 0 2rem;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }
.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* What */
.what {
  padding: 5rem 2rem;
  max-width: 1140px;
  margin: 0 auto;
}
.what-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.what-headline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  max-width: 520px;
}
.what-body {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.what-item {
  background: var(--surface);
  padding: 1.75rem;
}
.what-icon {
  margin-bottom: 1rem;
}
.what-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.what-item p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Niches */
.niches {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}
.niches-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.niches-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.niche {
  background: var(--surface-2);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.niche-icon-wrap {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.niche h4 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.niche p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Revenue */
.revenue {
  padding: 5rem 2rem;
  max-width: 1140px;
  margin: 0 auto;
}
.revenue-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.revenue-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.revenue-headline {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}
.revenue-sub {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.rev-streams {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rev-stream {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.rev-stream:last-child { border-bottom: none; }
.rev-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--amber);
  min-width: 1.75rem;
  margin-top: 0.2rem;
}
.rev-stream h4 {
  font-size: 0.88rem;
  margin-bottom: 0.25rem;
}
.rev-stream p {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Closing */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-text {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.closing-statement {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #F4F0E8;
  line-height: 1.4;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-inner { flex-direction: column; gap: 2rem; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .what-grid { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr; }
  .revenue-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 600px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .what { padding: 3rem 1.25rem; }
  .niches { padding: 3rem 1.25rem; }
  .revenue { padding: 3rem 1.25rem; }
  .closing { padding: 3rem 1.25rem; }
  .hero-headline { font-size: 1.75rem; }
  .revenue-headline { font-size: 1.5rem; }
  .closing-statement { font-size: 1rem; }
}