/* ===== TOKENS ===== */
:root {
  --bg:         #0d1117;
  --bg-2:       #161b22;
  --bg-3:       #1c2330;
  --amber:      #f5a623;
  --amber-dim:  #c4821a;
  --amber-glow: rgba(245, 166, 35, 0.15);
  --steel:      #8b949e;
  --fog:        #c9d1d9;
  --white:      #f0f6fc;
  --border:     rgba(255,255,255,0.07);
  --border-amber: rgba(245, 166, 35, 0.3);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--fog); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--amber); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 6rem 4rem;
  overflow: hidden;
}

/* Blueprint grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Amber gradient accent */
.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2.5rem;
  opacity: 0.85;
}
.label-divider { opacity: 0.4; }
.label-sub { color: var(--steel); }

.hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(5rem, 11vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}
.headline-line-2,
.headline-line-4 { color: var(--amber); font-style: italic; }

.hero-lede {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--steel);
  max-width: 600px;
  font-weight: 300;
}

/* Stat strip */
.hero-stat-strip {
  position: relative;
  z-index: 1;
  margin-top: 6rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 3rem;
}
.stat-item { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.stat-label { font-family: var(--font-mono); font-size: 0.7rem; color: var(--steel); letter-spacing: 0.05em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: var(--border-amber); }

/* ===== SECTION COMMON ===== */
.section-header { margin-bottom: 4rem; }
.section-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  max-width: 700px;
}

/* ===== PLAYBOOK ===== */
.playbook {
  padding: 8rem 6rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.playbook-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.playbook-step {
  padding: 3rem;
  border: 1px solid var(--border);
  border-bottom: none;
  border-right: none;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.playbook-step:nth-child(even) { border-right: 1px solid var(--border); }
.playbook-step:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.25;
  line-height: 1;
  min-width: 3.5rem;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.step-body p { font-size: 0.95rem; color: var(--steel); line-height: 1.7; font-weight: 300; }

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 10rem 6rem;
  background: var(--bg);
}
.manifesto-inner { max-width: 900px; }
.manifesto-label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}
.label-rule { flex: 0 0 40px; height: 1px; background: var(--amber); }
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--fog);
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}
.manifesto-sub { font-size: 1rem; color: var(--steel); line-height: 1.7; max-width: 600px; }

/* ===== OUTCOMES ===== */
.outcomes {
  padding: 8rem 6rem;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.outcomes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.outcome-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-right: none;
  background: var(--bg-2);
}
.outcome-card:last-child { border-right: 1px solid var(--border); }
.outcome-icon {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.outcome-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.outcome-card p { font-size: 0.875rem; color: var(--steel); line-height: 1.7; font-weight: 300; }

/* ===== CLOSING ===== */
.closing {
  padding: 10rem 6rem;
  background: var(--bg);
}
.closing-inner { max-width: 800px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
}
.closing-body { font-size: 1.15rem; color: var(--steel); line-height: 1.75; margin-bottom: 1.25rem; font-weight: 300; }
.closing-stamp {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1rem 1.75rem;
  border: 1px solid var(--border-amber);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--steel);
  text-transform: uppercase;
}
.closing-stamp strong { color: var(--amber); font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0; }

/* ===== FOOTER ===== */
.footer {
  padding: 2.5rem 6rem;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-wordmark { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--amber); display: block; margin-bottom: 0.25rem; }
.footer-tagline { font-family: var(--font-mono); font-size: 0.7rem; color: var(--steel); letter-spacing: 0.1em; text-transform: uppercase; }
.footer-meta { text-align: right; }
.footer-slug { font-family: var(--font-mono); font-size: 0.75rem; color: var(--steel); display: block; margin-bottom: 0.25rem; }
.footer-copy { font-family: var(--font-mono); font-size: 0.7rem; color: var(--steel); opacity: 0.5; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { padding: 4rem 2rem 3rem; }
  .hero-stat-strip { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stat-divider { display: none; }
  .playbook { padding: 5rem 2rem; }
  .playbook-grid { grid-template-columns: 1fr; }
  .playbook-step { border-right: 1px solid var(--border) !important; }
  .playbook-step:last-child { border-bottom: 1px solid var(--border); }
  .manifesto { padding: 6rem 2rem; }
  .outcomes { padding: 5rem 2rem; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-card:nth-child(even) { border-right: 1px solid var(--border); }
  .outcome-card:nth-child(n+3) { border-top: none; }
  .outcome-card:nth-child(2) { border-top: 1px solid var(--border); }
  .closing { padding: 6rem 2rem; }
  .footer { padding: 2rem; }
  .footer-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .footer-meta { text-align: left; }
}
@media (max-width: 600px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-card { border-right: 1px solid var(--border) !important; border-top: none !important; }
  .outcome-card:first-child { border-top: 1px solid var(--border) !important; }
}