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

:root {
  --bg: #f5f2ee;
  --bg-dark: #1a3a2a;
  --bg-mid: #243d2e;
  --fg: #1a1a1a;
  --fg-inv: #f5f2ee;
  --accent: #e8a43a;
  --accent-dim: #c4892d;
  --muted: #7a7a7a;
  --border: #ddd8d0;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1200px;
  --radius: 6px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); font-weight: 400; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ===== NAV ===== */
.site-nav { padding: 20px 40px; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--bg-dark); text-decoration: none; letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.875rem; color: var(--muted); }

/* ===== HERO ===== */
.hero { padding: 80px 40px 60px; max-width: var(--max-w); margin: 0 auto; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-img-wrap { position: relative; }
.hero-img-wrap::before { content: ''; position: absolute; inset: -12px; background: var(--bg-dark); border-radius: 12px; z-index: 0; }
.hero-img { position: relative; z-index: 1; width: 100%; border-radius: 8px; display: block; }
.hero-headline { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--bg-dark); margin-bottom: 24px; }
.hero-lede { font-size: 1.125rem; color: #444; line-height: 1.7; margin-bottom: 40px; max-width: 460px; }
.hero-stats { display: flex; gap: 48px; }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.875rem; color: var(--muted); max-width: 120px; line-height: 1.4; }

/* ===== SHARED SECTIONS ===== */n.section-header { margin-bottom: 40px; }
.section-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; display: block; margin-bottom: 10px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; color: var(--bg-dark); }

/* ===== WHAT IT DOES ===== */
.what-it-does { padding: 80px 40px; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.what-para { font-size: 1.125rem; color: #555; max-width: 680px; margin-bottom: 56px; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); transition: transform 0.2s; }
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { width: 44px; height: 44px; background: var(--bg-dark); color: var(--accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--bg-dark); margin-bottom: 10px; }
.feature-desc { font-size: 0.875rem; color: #666; line-height: 1.6; }

/* ===== PLAYBOOK ===== */
.playbook { padding: 80px 40px; max-width: var(--max-w); margin: 0 auto; }
.playbook-layout { display: grid; grid-template-columns: 420px 1fr; gap: 80px; align-items: start; }
.playbook-img { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); display: block; }
.playbook-steps { display: flex; flex-direction: column; gap: 0; }
.play-step { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 28px 0; border-bottom: 1px solid var(--border); align-items: start; }
.play-step:last-child { border-bottom: none; }
.step-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--accent); line-height: 1.2; }
.step-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--bg-dark); margin-bottom: 8px; }
.step-desc { font-size: 0.9rem; color: #666; line-height: 1.65; }

/* ===== OUTCOMES ===== */
.outcomes { padding: 80px 40px; background: var(--bg-dark); }
.outcomes .section-label { color: var(--accent); }
.outcomes .section-title { color: var(--fg-inv); }
.outcomes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(245,242,238,0.15); border: 1px solid rgba(245,242,238,0.15); border-radius: var(--radius); overflow: hidden; }
.outcome-card { background: var(--bg-mid); padding: 48px 40px; }
.outcome-value { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.outcome-label { font-size: 0.9rem; font-weight: 500; color: var(--fg-inv); margin-bottom: 12px; }
.outcome-note { font-size: 0.825rem; color: rgba(245,242,238,0.6); line-height: 1.6; }

/* ===== MANIFESTO ===== */
.manifesto { padding: 100px 40px; background: #fff; }
.manifesto-inner { max-width: 760px; margin: 0 auto; }
.manifesto-title { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--bg-dark); letter-spacing: -0.02em; margin-bottom: 32px; line-height: 1.25; }
.manifesto-body { font-size: 1.0625rem; color: #444; line-height: 1.8; margin-bottom: 24px; }
.manifesto-body:last-child { margin-bottom: 0; }

/* ===== CLOSING ===== */
.closing { padding: 80px 40px; background: var(--bg); border-top: 1px solid var(--border); }
.closing-inner { max-width: 760px; margin: 0 auto; }
.closing-statement { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; color: var(--bg-dark); line-height: 1.4; letter-spacing: -0.02em; text-align: center; }

/* ===== FOOTER ===== */
.site-footer { padding: 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--bg-dark); display: block; margin-bottom: 6px; }
.footer-desc { font-size: 0.875rem; color: var(--muted); }
.footer-meta { font-size: 0.875rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.footer-sep { color: var(--border); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .playbook-layout { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; }
}
@media (max-width: 600px) {
  .site-nav, .hero, .what-it-does, .playbook, .outcomes, .manifesto, .closing, .site-footer { padding-left: 24px; padding-right: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}