:root {
  --bg: #F7F5F0;
  --bg-alt: #EEEBE4;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #C8952A;
  --accent-dark: #A8781E;
  --white: #FFFFFF;
  --border: #D9D5CE;
}

* { 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: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--fg);
}
.nav-logo-accent { color: var(--accent); }
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 48px 64px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* Stats */
.stats {
  background: var(--fg);
  padding: 48px;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  flex: 1;
  padding: 0 40px;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
}

/* Section label */
.section-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.section-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-top: 12px;
  margin-bottom: 0;
}

/* How It Works */
.how-it-works {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 48px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.step {
  padding: 0 40px 0 0;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; padding-right: 0; }
.step:first-child { padding-left: 0; }
.step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 56px;
  color: var(--bg-alt);
  line-height: 1;
  display: block;
  margin-bottom: 24px;
}
.step-title {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* What You Get */
.what-you-get {
  background: var(--fg);
  padding: 96px 48px;
}
.wyg-content {
  max-width: 1100px;
  margin: 0 auto 64px;
}
.wyg-body {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  max-width: 520px;
}
.wyg-cards {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
}
.wyg-card {
  background: rgba(255,255,255,0.04);
  padding: 36px 40px;
}
.wyg-card-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.wyg-card h4 {
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.wyg-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* Closing */
.closing {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 48px;
  text-align: center;
}
.closing-statement {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto 24px;
}
.closing-sub {
  font-size: 15px;
  color: var(--fg-muted);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  color: var(--fg);
}
.footer-logo-accent { color: var(--accent); }
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 56px 24px 48px; }
  .stats { padding: 32px 24px; }
  .stats-grid { flex-direction: column; gap: 32px; }
  .stat { padding: 0; border-right: none; }
  .stat-divider { display: none; }
  .how-it-works { padding: 64px 24px; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .step { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 48px; }
  .step:last-child { border-bottom: none; padding-bottom: 0; }
  .what-you-get { padding: 64px 24px; }
  .wyg-cards { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 8px; }
}