:root {
  --bg: #faf8f4;
  --fg: #1a1a2e;
  --accent: #c9820a;
  --accent-light: #f5e6cc;
  --muted: #6b6b7e;
  --surface: #ffffff;
  --border: #e8e4dc;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -2px;
}
.stat-label {
  margin-top: 12px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}
.hero-copy {}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
}
.hero-types {
  max-width: 1100px;
  margin: 48px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.hero-types span {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ── PROBLEM ── */
.problem {
  padding: 80px 48px;
  background: var(--fg);
  color: #f0ede6;
}
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.problem-item {}
.problem-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,130,10,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}
.problem-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.problem-item p {
  color: #a8a5a0;
  font-size: 15px;
  line-height: 1.65;
}

/* ── SOLUTION ── */
.solution {
  padding: 80px 48px;
}
.solution-inner { max-width: 1100px; margin: 0 auto; }
.solution h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.solution-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.solution-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.pillar h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pillar p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── NICHES ── */
.niches {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.niches-inner { max-width: 1100px; margin: 0 auto; }
.niches h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.5px;
  max-width: 560px;
  margin-bottom: 48px;
}
.niches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.niche-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  background: var(--bg);
  transition: transform 0.2s;
}
.niche-item:hover { transform: translateY(-2px); }
.niche-emoji {
  color: var(--accent);
  margin-bottom: 12px;
}
.niche-item h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.niche-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.howitworks {
  padding: 80px 48px;
}
.howitworks-inner { max-width: 1100px; margin: 0 auto; }
.howitworks h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 56px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  letter-spacing: -2px;
}
.step-content h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 48px;
  background: var(--fg);
  color: #f0ede6;
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: #a8a5a0;
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.closing-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
}
.closing-unit {
  font-size: 22px;
  font-weight: 500;
  color: #f0ede6;
}
.closing-detail {
  font-size: 15px;
  color: #6b6b7e;
  margin-top: 8px;
}

/* ── FOOTER ── */
.site-footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--fg);
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.footer-links span {
  font-size: 13px;
  color: var(--muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { padding: 56px 28px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .stat-number { font-size: 60px; }
  .hero-copy h1 { font-size: 38px; }
  .problem { padding: 56px 28px; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution { padding: 56px 28px; }
  .solution-pillars { grid-template-columns: 1fr; gap: 28px; }
  .niches { padding: 56px 28px; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .howitworks { padding: 56px 28px; }
  .howitworks h2 { font-size: 32px; }
  .closing { padding: 72px 28px; }
  .closing h2 { font-size: 36px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .site-footer { padding: 32px 28px; }
}

@media (max-width: 500px) {
  .niches-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 56px 1fr; gap: 16px; }
  .step-num { font-size: 36px; }
}