:root {
  --bg: #0f0f0f;
  --bg-2: #171717;
  --fg: #f5f0e6;
  --fg-2: #a89f8a;
  --accent: #c9943a;
  --accent-dim: #a07830;
  --border: #2a2a2a;
}

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

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

/* Nav */
.nav {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.nav-tag {
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 480px;
}
.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.proof-block {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.proof-label {
  font-size: 13px;
  color: var(--fg-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.proof-divider {
  height: 1px;
  background: var(--border);
}
.hero-bottom-bar {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
}

/* Stats */
.stats {
  padding: 56px 40px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-figure {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.stat-desc {
  font-size: 13px;
  color: var(--fg-2);
  max-width: 200px;
  line-height: 1.5;
}
.stat-sep {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}

/* Section labels */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

/* How */
.how {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.step {
  display: flex;
  gap: 24px;
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.step:nth-child(even) {
  padding-right: 0;
  padding-left: 40px;
  border-right: none;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  padding-top: 4px;
}
.step-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.step-body p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
}

/* Niches */
.niches {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.niches-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.niche {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.niche-rank {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.niche h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.niche p {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
  margin-bottom: 0;
}
.niche-pick {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 4px 10px;
  border-radius: 2px;
}

/* Closing */
.closing {
  padding: 100px 40px;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  padding: 40px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 4px;
  display: block;
}
.footer-sub {
  font-size: 13px;
  color: var(--fg-2);
}
.footer-meta {
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner { flex-direction: column; align-items: flex-start; }
  .stat-sep { display: none; }
  .how-steps { grid-template-columns: 1fr; }
  .step { border-right: none; padding-right: 0; }
  .step:nth-child(even) { padding-left: 0; border-left: none; }
  .niche-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav, .hero, .stats, .how, .niches, .closing, .footer { padding-left: 20px; padding-right: 20px; }
  .niche-grid { grid-template-columns: 1fr; }
  .proof-block { padding: 20px; }
  .hero { padding-top: 48px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}