:root {
  --bg: #1c1c1e;
  --bg-alt: #232326;
  --bg-card: #2a2a2e;
  --fg: #f5f0e8;
  --fg-muted: #a09a8f;
  --accent: #e8a42a;
  --accent-dark: #c88c1c;
  --border: rgba(245, 240, 232, 0.08);
  --font-display: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* — Nav — */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  border-left: 1px solid var(--border);
  padding-left: 16px;
}

/* — Hero — */
.hero {
  padding: 80px 0 72px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* — Proof — */
.proof {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.proof-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.proof-stat:first-child { padding-left: 0; }
.proof-stat:last-child { padding-right: 0; }
.proof-number {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.proof-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* — Generic section — */
.section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  letter-spacing: -0.5px;
  max-width: 620px;
}

/* — How It Works — */
.how {
  padding: 96px 0;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  display: block;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* — Outcomes — */
.outcomes {
  padding: 96px 0;
  background: var(--bg-alt);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.outcomes-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--fg);
  line-height: 1.5;
}
.outcome-check {
  flex-shrink: 0;
  margin-top: 1px;
}

/* — Niches — */
.niches {
  padding: 96px 0;
}
.niches-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.niche-card:hover {
  border-color: var(--accent);
}
.niche-icon {
  margin-bottom: 16px;
}
.niche-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.niche-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* — Closing — */
.closing {
  padding: 96px 0 80px;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 48px;
}
.closing-rule {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto;
}

/* — Footer — */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
  border-left: 1px solid var(--border);
  padding-left: 16px;
}

/* — Mobile — */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    order: -1;
  }
  .proof-stats {
    flex-direction: column;
    gap: 24px;
  }
  .proof-divider {
    display: none;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .outcomes-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .niche-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-tagline { display: none; }
}
@media (max-width: 480px) {
  .niche-grid {
    grid-template-columns: 1fr;
  }
}