/* ============================================================
   ALIGN TO WIN — DESIGN SYSTEM
   Source: Assets/originals/ATW Website.html
   ============================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --navy: #0d1f3c;
  --navy-mid: #1a3560;
  --gold: #c49a2e;
  --gold-light: #e8c65a;
  --cream: #faf7f2;
  --warm-white: #fff9f0;
  --text: #1a1a2e;
  --muted: #5a6175;
  --border: #e2ddd6;
  --track1: #1e3a5f;
  --track2: #7c3a2d;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { color: inherit; text-decoration: none; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,31,60,0.97);
  backdrop-filter: blur(12px);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(196,154,46,0.25);
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  color: var(--cream);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 1.75rem; list-style: none; align-items: center;
}
.nav-links a {
  color: rgba(250,247,242,0.75);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 0.45rem 1.1rem;
  border-radius: 3px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-links a.nav-cta:hover { background: var(--gold-light); color: var(--navy); }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: all 0.2s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(250,247,242,0.3);
  color: var(--cream);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(196,154,46,0.08); }
.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

/* ── HOME HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  padding: 120px 2rem 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(196,154,46,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(26,53,96,0.8) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(196,154,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,46,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(196,154,46,0.4); border-radius: 2px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--cream); line-height: 1.1;
  max-width: 820px; margin-bottom: 1.75rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 1.15rem; color: rgba(250,247,242,0.7);
  max-width: 620px; margin-bottom: 3rem;
  font-weight: 300; line-height: 1.75;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── PILLARS STRIP ── */
.pillars-strip { background: var(--gold); padding: 1.25rem 2rem; }
.pillars-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
}
.pillar-item { display: flex; align-items: center; gap: 0.75rem; color: var(--navy); }
.pillar-num { font-family: 'DM Serif Display', serif; font-size: 1.5rem; line-height: 1; opacity: 0.35; }
.pillar-label { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.pillar-sub { font-size: 0.78rem; opacity: 0.75; }

/* ── SECTION LABEL (shared) ── */
.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}

/* ── PREMISE SECTION ── */
.premise { background: var(--warm-white); padding: 100px 2rem; }
.premise-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.premise h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); line-height: 1.2; margin-bottom: 2rem;
}
.premise-quote {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem); color: var(--navy-mid);
  line-height: 1.5; border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem; margin: 2.5rem 0; text-align: left;
  background: rgba(196,154,46,0.06);
}
.premise p { color: var(--muted); font-size: 1.05rem; max-width: 700px; margin: 0 auto 1.25rem; }

/* ── PATH CHOOSER ── */
.chooser {
  background: var(--navy); padding: 100px 2rem;
  position: relative; overflow: hidden;
}
.chooser::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196,154,46,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.chooser-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.chooser-header { text-align: center; margin-bottom: 4rem; }
.chooser-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.9rem); color: var(--cream); margin-bottom: 1rem;
}
.chooser-header p { color: rgba(250,247,242,0.6); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.tracks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  border-radius: 4px; overflow: hidden;
}
.track { padding: 3rem 2.5rem; position: relative; transition: transform 0.25s; }
.track:hover { transform: translateY(-3px); }
.track-1 { background: var(--track1); }
.track-2 { background: var(--track2); }
.track-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 2px; margin-bottom: 1.5rem;
}
.track-1 .track-tag { background: rgba(255,255,255,0.12); color: #a8c8f0; }
.track-2 .track-tag { background: rgba(255,255,255,0.12); color: #f0c8a0; }
.track h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem; color: var(--cream); margin-bottom: 0.75rem; line-height: 1.2;
}
.track-for { font-size: 0.85rem; color: rgba(250,247,242,0.6); margin-bottom: 1.5rem; font-style: italic; }
.track p { color: rgba(250,247,242,0.8); font-size: 0.95rem; line-height: 1.7; margin-bottom: 2rem; }
.track-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.track-btn {
  display: block; text-decoration: none; padding: 0.85rem 1.25rem;
  border-radius: 3px; font-size: 0.88rem; font-weight: 600;
  text-align: center; transition: all 0.2s; letter-spacing: 0.03em;
}
.track-1 .track-btn-primary { background: #a8c8f0; color: #0d1f3c; }
.track-1 .track-btn-primary:hover { background: #c5ddf5; }
.track-1 .track-btn-secondary {
  background: rgba(168,200,240,0.12); color: #a8c8f0;
  border: 1px solid rgba(168,200,240,0.3);
}
.track-1 .track-btn-secondary:hover { background: rgba(168,200,240,0.2); }
.track-2 .track-btn-primary { background: #f0c8a0; color: #3a1a0d; }
.track-2 .track-btn-primary:hover { background: #f5d5b8; }
.track-2 .track-btn-secondary {
  background: rgba(240,200,160,0.12); color: #f0c8a0;
  border: 1px solid rgba(240,200,160,0.3);
}
.track-2 .track-btn-secondary:hover { background: rgba(240,200,160,0.2); }
.track-icon { width: 48px; height: 48px; margin-bottom: 1.5rem; opacity: 0.7; }

/* ── WHY ALIGNMENT ── */
.why { background: var(--cream); padding: 100px 2rem; }
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-header { max-width: 600px; margin-bottom: 4rem; }
.why-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem); color: var(--navy); margin-bottom: 1rem; line-height: 1.2;
}
.why-header p { color: var(--muted); font-size: 1.05rem; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.why-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-top: 3px solid var(--gold); padding: 2rem; border-radius: 2px;
}
.why-card-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem; color: rgba(196,154,46,0.3); line-height: 1; margin-bottom: 1rem;
}
.why-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; }
.why-card p { color: var(--muted); font-size: 0.93rem; line-height: 1.7; }

/* ── THINKERS STRIP ── */
.thinkers { background: var(--navy-mid); padding: 80px 2rem; }
.thinkers-inner { max-width: 1100px; margin: 0 auto; }
.thinkers h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--cream);
  text-align: center; margin-bottom: 3rem;
}
.quotes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.quote-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  padding: 1.75rem; border-radius: 2px;
}
.quote-card blockquote {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 1rem; color: rgba(250,247,242,0.85); line-height: 1.65; margin-bottom: 1rem;
}
.quote-card cite {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--gold); text-transform: uppercase; font-style: normal;
}

/* ── MISALIGNMENT SIGNALS ── */
.signals { background: var(--cream); padding: 100px 2rem; }
.signals-inner { max-width: 1100px; margin: 0 auto; }
.signals-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.signals-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem); color: var(--navy); margin-bottom: 1rem; line-height: 1.2;
}
.signals-text p { color: var(--muted); margin-bottom: 1.25rem; font-size: 1rem; }
.signals-list { list-style: none; }
.signals-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 0; border-bottom: 1px solid var(--border);
}
.signals-list li:last-child { border-bottom: none; }
.signal-icon {
  flex-shrink: 0; margin-top: 2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(196,154,46,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; color: var(--gold);
}
.signal-text strong { display: block; font-weight: 600; color: var(--navy); font-size: 0.95rem; margin-bottom: 0.2rem; }
.signal-text span { font-size: 0.88rem; color: var(--muted); }

/* ── HOME RESOURCES ── */
.resources { background: var(--warm-white); padding: 100px 2rem; scroll-margin-top: 68px; }
.resources-inner { max-width: 1100px; margin: 0 auto; }
.resources-header { text-align: center; margin-bottom: 4rem; }
.resources-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem); color: var(--navy); margin-bottom: 1rem;
}
.resources-header p { color: var(--muted); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.resource-tracks { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.resource-group h3 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--border);
}
.resource-group-1 h3 { color: #3a6090; border-bottom-color: #a8c8f0; }
.resource-group-2 h3 { color: #8c4030; border-bottom-color: #f0c8a0; }
.resource-card {
  background: white; border: 1px solid var(--border); border-radius: 3px;
  padding: 1.75rem; margin-bottom: 1.25rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: box-shadow 0.2s;
}
.resource-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.resource-icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.resource-group-1 .resource-icon { background: rgba(168,200,240,0.2); }
.resource-group-2 .resource-icon { background: rgba(240,200,160,0.2); }
.resource-info h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem; color: var(--navy); margin-bottom: 0.35rem;
}
.resource-info p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.85rem; line-height: 1.6; }
.resource-meta { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.resource-badge {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 2px;
}
.badge-free { background: rgba(76,175,80,0.12); color: #2e7d32; }
.badge-whitepaper { background: rgba(33,150,243,0.1); color: #1565c0; }
.badge-workshop { background: rgba(156,39,176,0.1); color: #6a1b9a; }
.badge-guide { background: rgba(230,81,0,0.1); color: #e65100; }
.badge-case { background: rgba(0,150,136,0.1); color: #00695c; }
.badge-presentation { background: rgba(121,85,72,0.1); color: #4e342e; }
.badge-reference { background: rgba(96,125,139,0.12); color: #37474f; }
.download-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  text-decoration: none; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; padding: 0.45rem 1rem; border-radius: 2px; transition: all 0.2s;
}
.resource-group-1 .download-btn { background: #1e3a5f; color: #a8c8f0; }
.resource-group-1 .download-btn:hover { background: #2a5080; }
.resource-group-2 .download-btn { background: #7c3a2d; color: #f0c8a0; }
.resource-group-2 .download-btn:hover { background: #9a4a3a; }

/* ── MISSION ── */
.mission { background: var(--navy); padding: 100px 2rem; text-align: center; }
.mission-inner { max-width: 800px; margin: 0 auto; }
.mission h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); margin-bottom: 1.5rem; line-height: 1.2;
}
.mission p { color: rgba(250,247,242,0.7); font-size: 1.1rem; margin-bottom: 1.5rem; }
.mission-divider { width: 48px; height: 2px; background: var(--gold); margin: 2.5rem auto; }
.mission-tagline {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 1.35rem; color: var(--gold-light); margin-bottom: 2.5rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy); padding: 130px 2rem 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196,154,46,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(196,154,46,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,154,46,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.page-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(196,154,46,0.35); border-radius: 2px;
}
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--cream);
  line-height: 1.1; max-width: 780px; margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-lead {
  font-size: 1.1rem; color: rgba(250,247,242,0.65);
  max-width: 640px; font-weight: 300; line-height: 1.75;
}

/* ── CONTENT SECTIONS (inner pages) ── */
.content-section { padding: 80px 2rem; }
.content-section.bg-cream { background: var(--cream); }
.content-section.bg-warm { background: var(--warm-white); }
.content-section.bg-dark { background: var(--navy); }
.content-section.bg-mid { background: var(--navy-mid); }
.content-section.bg-gold { background: var(--gold); }
.content-section:first-of-type { padding-top: 100px; }

.content-inner { max-width: 1100px; margin: 0 auto; }
.content-narrow { max-width: 900px; margin: 0 auto; }

/* ── PROSE TYPOGRAPHY ── */
.prose h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: var(--navy);
  line-height: 1.2; margin-bottom: 1.25rem; margin-top: 3rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; color: var(--navy);
  line-height: 1.3; margin-bottom: 0.75rem; margin-top: 2.25rem;
}
.prose h4 {
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 0.5rem; margin-top: 1.75rem;
}
.prose p {
  color: var(--muted); font-size: 1.02rem; line-height: 1.8;
  margin-bottom: 1.25rem;
}
.prose p strong { color: var(--text); font-weight: 600; }
.prose blockquote {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 1.15rem; color: var(--navy-mid); line-height: 1.6;
  border-left: 3px solid var(--gold); padding: 1.25rem 1.75rem;
  margin: 2rem 0; background: rgba(196,154,46,0.05); border-radius: 0 2px 2px 0;
}
.prose blockquote p { color: var(--navy-mid); font-family: 'DM Serif Display', serif; font-style: italic; font-size: 1.15rem; }
.prose blockquote cite, .prose blockquote footer {
  display: block; margin-top: 0.75rem;
  font-family: 'DM Sans', sans-serif; font-style: normal;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold);
}
.prose ul, .prose ol {
  color: var(--muted); font-size: 1.02rem; line-height: 1.8;
  padding-left: 1.5rem; margin-bottom: 1.25rem;
}
.prose li { margin-bottom: 0.5rem; }
.prose li strong { color: var(--text); font-weight: 600; }
.prose table {
  width: 100%; border-collapse: collapse; margin: 2rem 0;
  font-size: 0.92rem;
}
.prose th {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); background: rgba(196,154,46,0.08);
  padding: 0.85rem 1.25rem; text-align: left; border-bottom: 2px solid var(--gold);
}
.prose td {
  padding: 0.85rem 1.25rem; border-bottom: 1px solid var(--border);
  color: var(--muted); vertical-align: top;
}
.prose td strong { color: var(--text); }
.prose tr:last-child td { border-bottom: none; }
.prose a { color: var(--gold); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.prose a:hover { color: var(--gold-light); }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }

/* Button color overrides — must come after .prose a to win on specificity */
a.btn-primary, a.btn-primary:hover { color: var(--navy); text-decoration: none; }
a.btn-ghost, a.btn-ghost:hover { color: var(--cream); text-decoration: none; }
a.btn-outline { color: var(--gold); text-decoration: none; }
a.btn-outline:hover { color: var(--navy); text-decoration: none; }
a.nav-cta, a.nav-cta:hover { color: var(--navy); text-decoration: none; }

/* Dark prose variant */
.prose-dark h2, .prose-dark h3, .prose-dark h4 { color: var(--cream); }
.prose-dark p { color: rgba(250,247,242,0.7); }
.prose-dark blockquote { border-left-color: var(--gold-light); background: rgba(255,255,255,0.05); }
.prose-dark blockquote p { color: rgba(250,247,242,0.85); }
.prose-dark ul, .prose-dark ol { color: rgba(250,247,242,0.7); }
.prose-dark li strong { color: var(--cream); }
.prose-dark a { color: var(--gold-light); }

/* ── SECTION HEADER ── */
.section-head { margin-bottom: 3rem; }
.section-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.75rem); color: var(--navy);
  line-height: 1.2; margin-bottom: 0.75rem; margin-top: 0.5rem;
}
.section-head.dark h2 { color: var(--cream); }
.section-head p { color: var(--muted); font-size: 1.05rem; max-width: 640px; }
.section-head.dark p { color: rgba(250,247,242,0.65); }

/* ── COMPONENT: CARD GRID ── */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem;
}
.card-grid-2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-top: 3px solid var(--gold); padding: 2rem; border-radius: 2px;
}
.card h3 { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; }
.card p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.card .card-num {
  font-family: 'DM Serif Display', serif; font-size: 2.5rem;
  color: rgba(196,154,46,0.3); line-height: 1; margin-bottom: 1rem;
}

/* ── COMPONENT: SOLUTION CARDS ── */
.solution-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: 3px; padding: 2.5rem; margin-bottom: 3rem;
}
.solution-card:last-child { margin-bottom: 0; }
.solution-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 2px solid var(--border);
}
.solution-meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.75rem;
}
.solution-meta-item { font-size: 0.85rem; color: var(--muted); }
.solution-meta-item strong { color: var(--text); font-weight: 600; display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.15rem; }
.solution-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }

/* ── COMPONENT: AUDIENCE TRACK CARDS ── */
.audience-cards { display: flex; flex-direction: column; gap: 3rem; }
.audience-card {
  background: var(--warm-white); border: 1px solid var(--border);
  border-radius: 3px; overflow: hidden;
}
.audience-card-header {
  padding: 2rem 2.5rem;
  display: flex; align-items: flex-start; gap: 1.5rem;
}
.audience-card-header.track-1-bg { background: var(--track1); }
.audience-card-header.track-2-bg { background: var(--track2); }
.audience-card-header.exec-bg { background: #1c3d2a; }
.audience-card-content { padding: 2rem 2.5rem; }
.audience-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.25rem 0.65rem; border-radius: 2px; margin-bottom: 0.75rem;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8);
}
.audience-card-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.9rem; color: var(--cream); line-height: 1.15; margin: 0;
}

/* ── COMPONENT: CALLOUT ── */
.callout {
  border-left: 3px solid var(--gold); padding: 1.25rem 1.75rem;
  background: rgba(196,154,46,0.06); border-radius: 0 2px 2px 0; margin: 2rem 0;
}
.callout p { color: var(--text); font-size: 1rem; margin-bottom: 0; }
.callout-dark {
  border-left: 3px solid var(--gold-light); padding: 1.25rem 1.75rem;
  background: rgba(255,255,255,0.06); border-radius: 0 2px 2px 0; margin: 2rem 0;
}
.callout-dark p { color: rgba(250,247,242,0.85); font-size: 1rem; margin-bottom: 0; }

/* ── COMPONENT: STAT ROW ── */
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 3rem 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem; color: var(--gold); line-height: 1; margin-bottom: 0.35rem;
}
.stat-label { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }

/* ── COMPONENT: STEP LIST ── */
.step-list { counter-reset: steps; list-style: none; padding: 0; }
.step-list > li {
  counter-increment: steps;
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
}
.step-list > li:last-child { border-bottom: none; }
.step-list > li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(196,154,46,0.15); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 1rem; font-weight: bold; margin-top: 2px;
}

/* ── COMPONENT: FEATURED RESOURCE ── */
.featured-resource {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 4rem;
}
.featured-card {
  background: white; border: 1px solid var(--border); border-radius: 3px;
  padding: 2rem; transition: box-shadow 0.2s; position: relative;
}
.featured-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.featured-card.track-1-card::before { background: #a8c8f0; }
.featured-card.track-2-card::before { background: #f0c8a0; }
.featured-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }
.featured-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.track-1-card .featured-label { color: #3a6090; }
.track-2-card .featured-label { color: #8c4030; }
.featured-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.3;
}
.featured-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.25rem; }
.featured-card table { font-size: 0.84rem; width: 100%; border-collapse: collapse; margin-bottom: 1.25rem; }
.featured-card td { padding: 0.4rem 0; color: var(--muted); }
.featured-card td:first-child { font-weight: 600; color: var(--text); width: 30%; padding-right: 1rem; }
.featured-card .resource-meta { display: flex; gap: 0.65rem; flex-wrap: wrap; align-items: center; margin-top: 1rem; }

/* ── COMPONENT: FAQ ── */
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.25rem 0; display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; font-family: 'DM Sans', sans-serif;
}
.faq-q span {
  font-size: 1rem; font-weight: 600; color: var(--navy); text-align: left; line-height: 1.4;
}
.faq-q::after {
  content: '+'; flex-shrink: 0; font-size: 1.5rem; color: var(--gold);
  transition: transform 0.2s; line-height: 1;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding-bottom: 1.25rem; }
.faq-item.open .faq-a { display: block; }
.faq-a p { color: var(--muted); font-size: 0.97rem; line-height: 1.75; margin-bottom: 0; }

/* ── COMPONENT: FORM PLACEHOLDER ── */
.form-placeholder {
  background: rgba(196,154,46,0.06); border: 1px dashed rgba(196,154,46,0.4);
  padding: 2rem; border-radius: 3px; margin: 2rem 0; text-align: center;
}
.form-placeholder p {
  color: var(--muted); font-size: 0.9rem; font-style: italic; margin-bottom: 0;
}

/* ── SECTION CTA ── */
.section-cta {
  text-align: center; padding: 3rem 0; border-top: 1px solid var(--border); margin-top: 4rem;
}
.section-cta p { color: var(--muted); margin-bottom: 1.5rem; font-size: 1.02rem; }
.section-cta .cta-links {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.cta-link {
  color: var(--gold); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; letter-spacing: 0.04em;
  padding: 0.7rem 1.5rem; border: 1px solid var(--gold); border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.cta-link:hover { background: var(--gold); color: var(--navy); }

/* ── TWO COLUMN LAYOUT ── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.two-col-35-65 {
  display: grid; grid-template-columns: 35fr 65fr; gap: 3rem;
}

/* ── BREADCRUMB / PAGE NAV ── */
.breadcrumb {
  font-size: 0.8rem; color: rgba(250,247,242,0.45); margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ── TK PLACEHOLDER ── */
.tk-placeholder {
  background: rgba(255,200,0,0.08); border: 1px dashed rgba(255,200,0,0.4);
  padding: 1.25rem 1.5rem; border-radius: 3px; margin: 1.5rem 0;
}
.tk-placeholder p {
  color: #6b5a00; font-size: 0.9rem; font-style: italic; margin-bottom: 0;
}

/* ── FOOTER ── */
footer { background: #08131f; padding: 3rem 2rem; border-top: 1px solid rgba(196,154,46,0.2); }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { font-family: 'DM Serif Display', serif; color: var(--cream); font-size: 1.1rem; text-decoration: none; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.82rem; color: rgba(250,247,242,0.4); margin-top: 0.3rem; max-width: 280px; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { color: rgba(250,247,242,0.45); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy {
  font-size: 0.75rem; color: rgba(250,247,242,0.25); text-align: center;
  margin-top: 1.5rem; max-width: 1100px; margin-left: auto; margin-right: auto;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
.hero h1 { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }
.hero-sub { animation: fadeUp 0.7s ease both; animation-delay: 0.4s; }
.hero-cta { animation: fadeUp 0.7s ease both; animation-delay: 0.55s; }
.page-eyebrow { animation: fadeUp 0.5s ease both; animation-delay: 0.1s; }
.page-hero h1 { animation: fadeUp 0.6s ease both; animation-delay: 0.2s; }
.page-hero-lead { animation: fadeUp 0.6s ease both; animation-delay: 0.35s; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .solution-two-col { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col-35-65 { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .resource-tracks { grid-template-columns: 1fr; gap: 2rem; }
  .signals-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .tracks { grid-template-columns: 1fr; }
  .featured-resource { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: var(--navy); flex-direction: column; gap: 0; padding: 1rem 0;
    border-bottom: 1px solid rgba(196,154,46,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.85rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; }
  .nav-links a.nav-cta { margin: 0.5rem 1.5rem; text-align: center; border: none; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 1rem; }
}
@media (max-width: 600px) {
  .hero { padding: 100px 1.25rem 60px; }
  .page-hero { padding: 110px 1.25rem 60px; }
  .content-section { padding: 60px 1.25rem; }
  .stat-row { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .pillars-inner { gap: 1.5rem; flex-direction: column; align-items: flex-start; }
}
