:root {
  --bg: #FAF7F2;
  --bg-alt: #F2EDE5;
  --fg: #1C1917;
  --fg-muted: #78716C;
  --accent: #C85A1A;
  --accent-light: #F4E4D4;
  --card-bg: #FFFFFF;
  --blob-color: #E8D5C4;
  --step-line: #D6C9B8;
}

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

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

/* NAV */
.nav {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--step-line);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}
.nav-cta {
  margin-left: auto;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: background 0.15s;
}
.nav-cta:hover { background: #A84818; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 70vh;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}
.hero-cta {
  display: inline-block;
  margin-top: 28px;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  letter-spacing: 0.3px;
  transition: background 0.15s, transform 0.1s;
}
.hero-cta:hover { background: #A84818; }
.hero-cta:active { transform: scale(0.98); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-blob {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--blob-color) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.hero-card-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--step-line);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  max-width: 320px;
}
.hero-card-1 { transform: translateX(-20px); }
.hero-card-2 { transform: translateX(10px); }
.hero-card-3 { transform: translateX(-5px); }
.card-emoji { font-size: 28px; line-height: 1; }
.card-text { font-size: 14px; font-weight: 500; color: var(--fg); line-height: 1.3; }

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 80px 40px;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bg);
  max-width: 800px;
  margin-bottom: 48px;
}
.manifesto-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 48px;
}
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: #A8A29E;
  line-height: 1.4;
}

/* FEATURES */
.features {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}
.features-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 560px;
  margin-bottom: 56px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--step-line);
  border-radius: 16px;
  padding: 36px;
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* HOW IT WORKS */
.howitworks {
  background: var(--bg-alt);
  padding: 80px 40px;
}
.howitworks-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}
.howitworks-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  max-width: 560px;
}
.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--step-line);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--blob-color);
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.5px;
  max-width: 800px;
  margin: 0 auto 28px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--step-line);
  padding: 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}
.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
}
.footer-copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px 80px;
    min-height: auto;
  }
  .hero-visual { display: none; }
  .hero-headline { font-size: 40px; }
  .manifesto { padding: 60px 24px; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 28px; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .howitworks { padding: 60px 24px; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; }
  .step-num { font-size: 36px; }
  .closing { padding: 80px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}