/* ===== COLORS ===== */
:root {
  --forest: #1B4332;
  --forest-light: #2D6A4F;
  --amber: #D97706;
  --amber-light: #F59E0B;
  --amber-pale: #FEF3C7;
  --stone: #78716C;
  --stone-light: #A8A29E;
  --cream: #FAF9F7;
  --white: #FFFFFF;
  --dark: #0F2018;
}

/* ===== RESET & BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -0.02em;
}

header nav {
  display: flex;
  gap: 32px;
}

header nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}

header nav a:hover {
  color: var(--forest);
}

/* ===== SECTION BASE ===== */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--forest);
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 96px;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.stat {}

.stat-value {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual svg {
  width: 100%;
  max-width: 460px;
  height: auto;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}

.step {
  position: relative;
}

.step-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.step-icon svg {
  width: 40px;
  height: 40px;
}

.step h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.65;
}

/* ===== NICHES ===== */
.niches {
  padding: 100px 0;
  background: var(--cream);
}

.niche-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.niche-card {
  background: var(--white);
  border: 1px solid rgba(27, 67, 50, 0.08);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.niche-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(27, 67, 50, 0.08);
}

.niche-svg {
  width: 60px;
  height: 50px;
  margin-bottom: 20px;
}

.niche-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.niche-card p {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 16px;
}

.niche-meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.04em;
}

.niches-footnote {
  margin-top: 40px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--stone-light);
  font-style: italic;
}

/* ===== OUTCOMES ===== */
.outcomes {
  padding: 100px 0;
  background: var(--forest);
}

.outcomes .section-eyebrow {
  color: var(--amber-light);
}

.outcomes .section-header h2 {
  color: var(--white);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  margin-bottom: 64px;
}

.outcome {}

.outcome-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.outcome p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* Revenue Table */
.revenue-model {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
}

.revenue-model h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
}

.revenue-table {
  width: 100%;
}

.rev-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.rev-row:last-child {
  border-bottom: none;
}

.rev-header {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.rev-row span:first-child,
.rev-row span:nth-child(2) {
  color: rgba(255, 255, 255, 0.6);
}

.rev-value {
  font-weight: 700;
  color: var(--amber) !important;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
}

.rev-note {
  margin-top: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 0;
  background: var(--dark);
}

.closing-content {
  max-width: 680px;
  margin-bottom: 64px;
}

.closing h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 16px;
}

.closing-cta {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4) !important;
  font-style: italic;
}

.closing-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.closing-stat {}

.closing-number {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.closing-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--forest);
  padding: 40px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--amber);
  margin-bottom: 4px;
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual svg {
    max-width: 300px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .hero-stats .stat:last-child {
    grid-column: 1 / -1;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .niche-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .revenue-model {
    padding: 24px;
  }

  .closing-stats {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  header nav {
    display: none;
  }

  .stat-value {
    font-size: 1.4rem;
  }

  .closing-number {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0 72px;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .rev-row {
    font-size: 0.8rem;
    padding: 12px 0;
  }
}