:root {
  --bg: #FDFAF6;
  --fg: #1C1917;
  --accent: #C2622D;
  --accent-light: #E07A47;
  --muted: #6B6259;
  --surface: #F0EBE1;
  --surface-dark: #E5DDD3;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ——— NAV ——— */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-dark);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ——— HERO ——— */
.hero {
  padding: 80px 32px 64px;
  border-bottom: 1px solid var(--surface-dark);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.proof-item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.proof-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--surface-dark);
  flex-shrink: 0;
}

/* ——— ACTIVITY FEED (hero visual) ——— */
.activity-feed {
  background: var(--surface);
  border: 1px solid var(--surface-dark);
  border-radius: 16px;
  overflow: hidden;
  font-family: var(--font-body);
}
.feed-header {
  background: var(--fg);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 20px;
}
.feed-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--surface-dark);
  font-size: 14px;
  line-height: 1.5;
}
.feed-item:last-child { border-bottom: none; }
.feed-done { color: var(--muted); }
.feed-active { background: rgba(194, 98, 45, 0.06); color: var(--fg); }
.feed-icon {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  width: 18px;
}
.feed-icon-pulse { color: var(--accent); }

/* ——— WHAT ——— */
.what {
  padding: 96px 32px;
  border-bottom: 1px solid var(--surface-dark);
}
.what-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.what-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 56px;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.what-card {
  background: var(--surface);
  border: 1px solid var(--surface-dark);
  border-radius: 12px;
  padding: 36px;
  transition: background 0.2s;
}
.what-card:hover { background: var(--surface-dark); }
.what-card-icon {
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.what-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 10px;
}
.what-card-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ——— HOW ——— */
.how {
  padding: 96px 32px;
  background: var(--fg);
  border-bottom: 1px solid #2E2925;
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.how .section-label { color: var(--accent-light); }
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: #FDFAF6;
  margin-bottom: 56px;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid #2E2925;
  align-items: start;
}
.how-step:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--accent-light);
  line-height: 1;
  letter-spacing: -2px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: #FDFAF6;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 15px;
  color: #9E9387;
  line-height: 1.65;
  max-width: 520px;
}

/* ——— RESULTS ——— */
.results {
  padding: 96px 32px;
  border-bottom: 1px solid var(--surface-dark);
}
.results-inner { max-width: 1100px; margin: 0 auto; }
.results-statement {
  text-align: center;
  margin-bottom: 64px;
}
.results-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  font-style: italic;
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: -0.5px;
  max-width: 700px;
  margin: 0 auto 16px;
}
.results-attribution {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.result-item {
  background: var(--surface);
  border: 1px solid var(--surface-dark);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
}
.result-stat {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1.5px;
  margin-bottom: 8px;
  line-height: 1;
}
.result-label {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* ——— CLOSING ——— */
.closing {
  padding: 96px 32px 80px;
  background: var(--surface);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
}
.closing-vision {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--accent);
  line-height: 1.5;
  font-weight: 500;
}

/* ——— FOOTER ——— */
.footer {
  padding: 40px 32px;
  border-top: 1px solid var(--surface-dark);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}
.footer-desc {
  font-size: 13px;
  color: var(--muted);
}
.footer-note {
  font-size: 12px;
  color: var(--muted);
}

/* ——— RESPONSIVE ——— */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { order: -1; }
  .what-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
  .how-step {
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 28px 0;
  }
  .step-number { font-size: 40px; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero { padding: 56px 24px 48px; }
  .what, .how, .results, .closing { padding: 64px 24px; }
}
@media (max-width: 480px) {
  .results-grid { grid-template-columns: 1fr; }
  .hero-headline { letter-spacing: -1px; }
}