:root {
  --bg: #FDFAF6;
  --fg: #2C2416;
  --accent: #2D5016;
  --gold: #C9A84C;
  --muted: #8B7355;
  --surface: #F0EAE0;
  --border: rgba(44, 36, 22, 0.12);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: '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-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 60px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  max-width: 560px;
}

.hero-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-lede {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 52px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 36px;
}

.stat:first-child { padding-left: 0; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

.hero-visual {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 80px;
}

.book-mockup {
  display: flex;
  align-items: stretch;
  filter: drop-shadow(0 24px 48px rgba(44,36,22,0.15));
}

.book-spine {
  width: 20px;
  background: var(--accent);
  border-radius: 2px 0 0 2px;
}

.book-cover {
  width: 180px;
  height: 240px;
  background: var(--accent);
  border-radius: 0 4px 4px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.book-month {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.book-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 10px;
}

.book-sub {
  font-family: var(--font-sans);
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.book-dots {
  font-size: 8px;
  letter-spacing: 4px;
  color: var(--gold);
}

/* ── HOW IT WORKS ─────────────────────────────────── */
.how-it-works {
  padding: 100px 60px;
  background: var(--surface);
}

.hiw-header {
  margin-bottom: 72px;
}

.hiw-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hiw-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.15;
}

.hiw-header h2 em {
  font-style: italic;
  color: var(--accent);
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.hiw-step {
  padding: 48px 40px 48px 0;
}

.hiw-step + .hiw-step {
  padding-left: 40px;
  border-left: 1px solid var(--border);
}

.step-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: rgba(45,80,22,0.12);
  line-height: 1;
  margin-bottom: 20px;
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── WHAT'S INSIDE ────────────────────────────────── */
.whats-inside {
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.wi-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.wi-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
}

.wi-left h2 em { font-style: italic; color: var(--accent); }

.wi-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 400px;
}

.wi-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
}

.fc-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── MANIFESTO ─────────────────────────────────────── */
.manifesto {
  background: var(--accent);
  padding: 100px 60px;
}

.manifesto-inner {
  max-width: 680px;
}

.manifesto-quote-mark {
  font-family: var(--font-serif);
  font-size: 96px;
  line-height: 0.6;
  color: rgba(201,168,76,0.3);
  margin-bottom: 32px;
}

blockquote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin-bottom: 40px;
  font-weight: 400;
}

.manifesto-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}

.manifesto-attr {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  font-weight: 300;
}

/* ── CLOSING ──────────────────────────────────────── */
.closing {
  padding: 100px 60px 80px;
  text-align: center;
  background: var(--bg);
}

.closing h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing h2 em { font-style: italic; color: var(--accent); }

.closing p {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
}

.closing-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.cta-buy-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}

.cta-buy-button:hover { background: #244012; }

.cta-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.price-from {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.price-note {
  font-size: 13px;
  color: var(--muted);
}

/* ── FOOTER ───────────────────────────────────────── */
footer {
  padding: 40px 60px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 60px 32px;
    text-align: center;
  }
  .hero-lede { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-visual { padding-left: 0; padding-top: 48px; }
  .book-mockup { transform: scale(0.85); }
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-step + .hiw-step { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 32px; }
  .whats-inside { grid-template-columns: 1fr; gap: 48px; }
  .wi-right { grid-template-columns: 1fr; }
  .how-it-works, .whats-inside, .closing { padding: 72px 32px; }
  .manifesto { padding: 72px 32px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }
}