:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE8DE;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #E8500A;
  --accent-warm: #FFF0E4;
  --card-bg: #FFFFFF;
  --border: #D9D3C8;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.15;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { font-size: 14px; color: var(--accent); }
.brand-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.3px; }
.nav-tag { font-size: 13px; color: var(--fg-muted); letter-spacing: 0.5px; text-transform: uppercase; }

/* Manifesto */
.manifesto { padding: 96px 48px 80px; max-width: 880px; }
.manifesto-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--fg-muted); margin-bottom: 28px; }
.manifesto-headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 32px;
}
.manifesto-rule { width: 64px; height: 3px; background: var(--accent); margin-bottom: 28px; }
.manifesto-body { font-size: 18px; color: var(--fg-muted); max-width: 580px; line-height: 1.7; }

/* Section shared */
.section-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 16px; }
.section-headline { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -1px; margin-bottom: 48px; line-height: 1.15; }

/* Playbooks */
.playbooks { padding: 80px 48px; background: var(--fg); color: var(--bg); }
.playbooks .section-label { color: var(--accent); }
.playbooks .section-headline { color: var(--bg); }
.playbook-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.playbook-card { background: #222222; padding: 40px 36px; }
.playbook-number { font-family: 'Space Grotesk', sans-serif; font-size: 11px; letter-spacing: 1px; color: var(--fg-muted); margin-bottom: 20px; }
.playbook-icon { font-size: 28px; color: var(--accent); margin-bottom: 16px; }
.playbook-title { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--bg); }
.playbook-desc { font-size: 14px; color: #9A9590; line-height: 1.7; margin-bottom: 20px; }
.playbook-stack { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.playbook-stack li { font-size: 13px; color: #7A7570; padding-left: 14px; position: relative; }
.playbook-stack li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }

/* Outcomes */
.outcomes { padding: 72px 48px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.outcomes-inner { display: flex; align-items: center; gap: 0; }
.outcome-block { flex: 1; padding: 0 40px; }
.outcome-block:first-child { padding-left: 0; }
.outcome-block:last-child { padding-right: 0; }
.outcome-stat { font-family: 'Space Grotesk', sans-serif; font-size: clamp(40px, 5vw, 60px); font-weight: 700; color: var(--accent); letter-spacing: -2px; line-height: 1; margin-bottom: 10px; }
.outcome-label { font-size: 14px; color: var(--fg-muted); max-width: 180px; line-height: 1.5; }
.outcome-divider { width: 1px; height: 80px; background: var(--border); flex-shrink: 0; }

/* Pricing */
.pricing { padding: 80px 48px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pricing-card { background: var(--card-bg); border: 1px solid var(--border); padding: 36px 32px; position: relative; }
.pricing-card--featured { border-color: var(--fg); }
.pricing-badge { position: absolute; top: -12px; left: 32px; background: var(--accent); color: white; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; font-family: 'Space Grotesk', sans-serif; }
.pricing-tier { font-family: 'Space Grotesk', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--fg-muted); margin-bottom: 16px; }
.pricing-price { font-family: 'Space Grotesk', sans-serif; font-size: 44px; font-weight: 700; letter-spacing: -2px; line-height: 1; margin-bottom: 12px; color: var(--fg); }
.pricing-price span { font-size: 18px; font-weight: 400; letter-spacing: 0; color: var(--fg-muted); }
.pricing-note { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.5; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--fg); padding-left: 18px; position: relative; }
.pricing-features li::before { content: '&#10003;'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }

/* Closing */
.closing { padding: 96px 48px; background: var(--accent-warm); }
.closing-inner { max-width: 680px; }
.closing-headline { font-size: clamp(28px, 4vw, 42px); font-weight: 700; letter-spacing: -1px; color: var(--fg); margin-bottom: 16px; line-height: 1.2; }
.closing-body { font-size: 16px; color: var(--fg-muted); }

/* Footer */
.footer { padding: 40px 48px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-tag { font-size: 13px; color: var(--fg-muted); flex: 1; }
.footer-copy { font-size: 12px; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .manifesto { padding: 60px 24px 48px; }
  .playbooks { padding: 60px 24px; }
  .playbook-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 48px 24px; }
  .outcomes-inner { flex-direction: column; gap: 32px; }
  .outcome-block { padding: 0; }
  .outcome-divider { display: none; }
  .pricing { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; flex-wrap: wrap; gap: 12px; }
}