:root {
  --bg: #0F0F0F;
  --surface: #1A1A1A;
  --accent: #FF5722;
  --accent-dim: #CC4620;
  --text: #F5F0E8;
  --text-dim: #A09888;
  --text-muted: #6B6358;
  --border: #2A2620;
}

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

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

/* NAV */
.nav {
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-dim);
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

/* HERO */
.hero {
  padding: 80px 32px 64px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 560px;
  line-height: 1.7;
}
.hero-ember {
  position: absolute;
  right: -100px;
  top: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,87,34,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* STATS ROW */
.stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.stats-row .stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 36px;
  flex: 1;
  min-width: 120px;
}
.stats-row .stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* WHAT SECTION */
.what {
  padding: 96px 32px;
}
.what-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 48px;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.what-card {
  background: var(--surface);
  padding: 32px;
  border: 1px solid var(--border);
}
.what-icon {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 16px;
}
.what-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.what-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* NICHES */
.niches {
  padding: 96px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.niches-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.niches-intro {
  font-size: 20px;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 56px;
  margin-top: -32px;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.niche-item {
  background: var(--bg);
  padding: 28px;
  border: 1px solid var(--border);
}
.niche-emoji {
  font-size: 28px;
  margin-bottom: 16px;
}
.niche-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
}
.niche-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto {
  padding: 96px 32px;
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 24px;
}
.manifesto-bold {
  color: var(--text);
  font-weight: 500;
}

/* CLOSING */
.closing {
  padding: 96px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 64px);
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 48px;
}
.closing-vibe {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* FOOTER */
.footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 6px;
}
.footer-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 56px 20px 48px; }
  .what { padding: 64px 20px; }
  .what-grid { grid-template-columns: 1fr; }
  .niches { padding: 64px 20px; }
  .niche-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 64px 20px; }
  .closing { padding: 64px 20px; }
  .footer { padding: 40px 20px; }
  .stats-row { padding: 20px; gap: 0; }
  .stats-row .stat { padding: 0 20px; min-width: 90px; }
  .hero-headline { font-size: 36px; }
  .stat-num { font-size: 18px; }
}