/* === TOKENS === */
:root {
  --bg: #f5f2ed;
  --bg-dark: #1a1a1a;
  --fg: #1a1a1a;
  --fg-muted: #6b6560;
  --fg-light: #9e9890;
  --accent: #e8a838;
  --accent-dark: #c8881a;
  --green: #3a8c5a;
  --amber: #c47d1a;
  --surface: #ffffff;
  --border: #d8d3cb;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* === LAYOUT === */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === NAV === */
.nav {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* === HERO === */
.hero {
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-kicker {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero-body {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 46ch;
  line-height: 1.7;
}
.hero-right {
  border-left: 1px solid var(--border);
  padding-left: 4rem;
}
.hero-stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
}
.hero-stat {}
.hero-stat-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.hero-stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* === STATS === */
.stats {
  background: var(--bg-dark);
  padding: 3rem 0;
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.stats-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.stats-item {
  flex: 1;
  padding: 0 3rem 0 0;
}
.stats-item:last-child { padding-right: 0; }
.stats-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}
.stats-text {
  font-size: 0.9rem;
  color: #9e9890;
  line-height: 1.5;
}
.stats-divider {
  width: 1px;
  background: #333;
  margin: 0 2.5rem;
  align-self: stretch;
}

/* === PLAYBOOK === */
.playbook {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}
.playbook-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.playbook-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  max-width: 44ch;
  margin-bottom: 3rem;
}
.playbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
}
.playbook-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
}
.playbook-card-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: var(--bg-dark);
  padding: 0.2rem 0.6rem;
  margin-bottom: 1rem;
}
.playbook-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.playbook-card-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.playbook-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.playbook-card-list li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 0.5rem;
  border-left: 2px solid var(--border);
  line-height: 1.5;
}
.card-tag-green {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-right: 0.4rem;
}
.card-tag-amber {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-right: 0.4rem;
}

/* === PROCESS === */
.process {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}
.process-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.process-heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}
.process-body {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 42ch;
  line-height: 1.7;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:first-child { padding-top: 0; }
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  min-width: 2rem;
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--bg-dark);
  padding: 5rem 0;
}
.manifesto-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.manifesto-quote {
  max-width: 60ch;
}
.manifesto-text {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #fff;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.manifesto-attribution {
  font-size: 0.85rem;
  color: #9e9890;
}

/* === CLOSING === */
.closing {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}
.closing-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.closing-headline {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  max-width: 18ch;
  margin-bottom: 2rem;
  line-height: 1.1;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.closing-sub:last-child { margin-bottom: 0; }

/* === FOOTER === */
.footer {
  background: var(--bg-dark);
  padding: 3rem 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
}
.footer-tagline {
  font-size: 0.9rem;
  color: #9e9890;
}
.footer-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #6b6560;
}
.footer-meta span { color: #6b6560; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 2.5rem; }
  .hero-stat-block { gap: 1.5rem; }
  .playbook-grid { grid-template-columns: 1fr; }
  .process-inner { grid-template-columns: 1fr; gap: 3rem; }
  .stats-row { flex-direction: column; gap: 1.5rem; }
  .stats-divider { display: none; }
  .stats-item { padding-right: 0; border-bottom: 1px solid #333; padding-bottom: 1.5rem; }
  .stats-item:last-child { border-bottom: none; }
  .stats { padding: 2rem 0; }
  .hero { padding: 3rem 0 2.5rem; }
  .playbook { padding: 4rem 0; }
  .process { padding: 4rem 0; }
  .closing { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .hero-stat-num { font-size: 1.8rem; }
  h1.hero-headline { font-size: 2.4rem; }
}