/* ========================================
   THE GLOBAL MEN'S INITIATIVE
   Executive Summary — Landing Page
   ======================================== */

/* ===== DESIGN TOKENS ===== */
:root,
[data-theme='light'] {
  /* Brand Colors — Navy & Gold */
  --color-navy: #1a2744;
  --color-navy-light: #2a3a5e;
  --color-navy-deep: #111829;
  --color-gold: #c89b3c;
  --color-gold-light: #d9b05e;
  --color-gold-deep: #a87e26;

  /* Surfaces */
  --color-bg: #f8f7f4;
  --color-surface: #fdfcfa;
  --color-surface-2: #f2f0eb;
  --color-surface-offset: #ede9e3;
  --color-divider: #e0ddd6;
  --color-border: #d4d0c8;

  /* Text */
  --color-text: #1a1a1a;
  --color-text-muted: #6b6862;
  --color-text-faint: #a8a59e;
  --color-text-inverse: #f8f7f4;

  /* Semantic */
  --color-primary: var(--color-navy);
  --color-primary-hover: var(--color-navy-light);
  --color-accent: var(--color-gold);
  --color-accent-hover: var(--color-gold-light);

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26, 39, 68, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 39, 68, 0.1);
  --shadow-lg: 0 12px 40px rgba(26, 39, 68, 0.15);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

[data-theme='dark'] {
  --color-navy: #6b8fc7;
  --color-navy-light: #8baad9;
  --color-navy-deep: #0a0f1a;
  --color-gold: #e8c264;
  --color-gold-light: #f0d089;
  --color-gold-deep: #c89b3c;

  --color-bg: #0d1117;
  --color-surface: #131923;
  --color-surface-2: #1a2230;
  --color-surface-offset: #1d2735;
  --color-divider: #2a3344;
  --color-border: #364158;

  --color-text: #d4d4d4;
  --color-text-muted: #8b8b8b;
  --color-text-faint: #5a5a5a;
  --color-text-inverse: #0d1117;

  --color-primary: var(--color-navy);
  --color-primary-hover: var(--color-navy-light);
  --color-accent: var(--color-gold);
  --color-accent-hover: var(--color-gold-light);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* ===== TYPE SCALE ===== */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Content widths */
  --content-narrow: 680px;
  --content-default: 960px;
  --content-wide: 1200px;

  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul[role='list'], ol[role='list'] {
  list-style: none;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  line-height: 1.15;
  font-family: var(--font-display);
}

p, li, figcaption {
  text-wrap: pretty;
  max-width: 72ch;
}

::selection {
  background: rgba(200, 155, 60, 0.25);
  color: var(--color-text);
}

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

a, button {
  transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), opacity var(--transition), transform var(--transition);
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== LAYOUT UTILITIES ===== */
.container {
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.container--narrow {
  max-width: var(--content-narrow);
}

.section {
  padding-block: clamp(var(--space-12), 6vw, var(--space-24));
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(var(--space-10), 4vw, var(--space-16));
}

.section__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.section__eyebrow--light {
  color: var(--color-gold-light);
}

.section__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.section__subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-inline: auto;
  line-height: 1.6;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--color-border);
}

.header--hidden {
  transform: translateY(-100%);
}

.header__inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.logo__icon {
  width: 28px;
  height: 28px;
  color: var(--color-navy);
}

[data-theme='dark'] .logo__icon {
  color: var(--color-gold);
}

.logo__text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav__list {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
  padding-block: var(--space-1);
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--color-gold);
  background: var(--color-surface-2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: var(--radius-full);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle--active .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle--active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle--active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-20) var(--space-4);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, color-mix(in oklab, var(--color-navy) 12%, transparent) 0%, transparent 70%);
  z-index: 0;
}

[data-theme='dark'] .hero__bg {
  background: radial-gradient(ellipse at 50% 30%, color-mix(in oklab, var(--color-gold) 8%, transparent) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__logo {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-8);
}

.hero__logo-svg {
  width: 100px;
  height: 100px;
  color: var(--color-navy);
  opacity: 0.9;
}

[data-theme='dark'] .hero__logo-svg {
  color: var(--color-gold);
  opacity: 0.85;
}

.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}

.hero__title {
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.hero__tagline {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-12);
  line-height: 1.5;
}

.hero__bridge {
  border-left: 3px solid var(--color-gold);
  padding: var(--space-2) var(--space-6);
  text-align: left;
  margin-inline: auto;
  max-width: 580px;
}

.hero__bridge-text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  font-style: italic;
  line-height: 1.7;
  max-width: none;
}

.hero__bridge-text strong {
  color: var(--color-gold);
  font-style: normal;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-faint);
  z-index: 1;
  animation: bounce 2s ease-in-out infinite;
}

.hero__scroll:hover {
  color: var(--color-gold);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== MISSION SECTION ===== */
.section--mission {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.mission__body {
  margin-top: var(--space-8);
}

.mission__body p {
  font-size: var(--text-base);
  line-height: 1.8;
  margin-bottom: var(--space-5);
  color: var(--color-text);
}

.mission__body strong {
  color: var(--color-navy);
  font-weight: 600;
}

[data-theme='dark'] .mission__body strong {
  color: var(--color-gold);
}

/* ===== THE NEED ===== */
.need__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-12);
}

.need__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.need__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--color-gold) 40%, var(--color-border));
}

.need__icon {
  width: 40px;
  height: 40px;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.need__card-title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.need__card-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.need__statement {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.need__statement p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-navy);
  font-style: italic;
}

[data-theme='dark'] .need__statement p {
  color: var(--color-gold);
}

/* ===== VISION & PILLARS ===== */
.section--vision {
  background: var(--color-navy-deep);
  color: var(--color-text-inverse);
}

[data-theme='light'] .section--vision {
  background: linear-gradient(180deg, #1a2744 0%, #111829 100%);
}

.section--vision .section__title {
  color: #f8f7f4;
}

.section--vision .section__subtitle {
  color: rgba(248, 247, 244, 0.7);
}

.section--vision .section__eyebrow {
  color: var(--color-gold-light);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: var(--space-6);
}

.pillar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-8);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 155, 60, 0.3);
  transform: translateY(-2px);
}

.pillar__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gold);
  opacity: 0.5;
  margin-bottom: var(--space-3);
  line-height: 1;
}

.pillar__title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: #f8f7f4;
  margin-bottom: var(--space-3);
}

.pillar__text {
  font-size: var(--text-sm);
  color: rgba(248, 247, 244, 0.65);
  line-height: 1.65;
}

/* ===== STRATEGIC IMPLEMENTATION PLAN ===== */
.section--plan {
  background: var(--color-surface);
}

.phase {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-12);
  position: relative;
}

.phase:last-child {
  padding-bottom: 0;
}

.phase__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phase__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-navy);
  color: #f8f7f4;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

[data-theme='dark'] .phase__number {
  background: var(--color-gold);
  color: var(--color-navy-deep);
}

.phase__line {
  flex: 1;
  width: 2px;
  background: var(--color-border);
  margin-top: var(--space-2);
  min-height: 40px;
}

.phase:last-child .phase__line {
  display: none;
}

.phase__content {
  padding-bottom: var(--space-4);
}

.phase__timeline {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.phase__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.phase__objectives {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.phase__deliverables {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
}

.phase__deliverables-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.phase__deliverables-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  list-style: none;
}

.phase__deliverables-list li {
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-4);
  margin: 0;
  max-width: none;
}

/* ===== INITIATIVE CHALLENGES ===== */
.section--challenges {
  background: var(--color-bg);
}

.challenges__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-12);
}

.challenge {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-5);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.challenge:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.challenges__note {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.challenges__note strong {
  color: var(--color-navy);
  font-weight: 600;
}

[data-theme='dark'] .challenges__note strong {
  color: var(--color-gold);
}

/* ===== MEASURABLE OUTCOMES ===== */
.section--outcomes {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr));
  gap: var(--space-5);
}

.outcome {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.outcome:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.outcome__icon {
  width: 36px;
  height: 36px;
  color: var(--color-gold);
  margin: 0 auto var(--space-3);
}

.outcome__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ===== THE ASK ===== */
.section--ask {
  background: var(--color-bg);
}

.ask__card {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-deep) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-10), 5vw, var(--space-20)) clamp(var(--space-6), 4vw, var(--space-16));
  text-align: center;
  color: #f8f7f4;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.ask__card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.ask__amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1rem + 6vw, 4.5rem);
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin: var(--space-4) 0 var(--space-3);
  letter-spacing: -0.02em;
}

.ask__subtitle {
  font-size: var(--text-lg);
  color: rgba(248, 247, 244, 0.8);
  margin-bottom: var(--space-6);
  font-weight: 500;
}

.ask__detail {
  font-size: var(--text-base);
  color: rgba(248, 247, 244, 0.65);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto var(--space-10);
}

.ask__funding-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
  gap: var(--space-3);
  text-align: left;
}

.ask__category {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
}

.ask__category-name {
  font-size: var(--text-sm);
  color: rgba(248, 247, 244, 0.8);
  font-weight: 500;
}

/* ===== PARTNERSHIP OPPORTUNITIES ===== */
.section--partners {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  gap: var(--space-4);
}

.partner {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.partner:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: color-mix(in oklab, var(--color-gold) 40%, var(--color-border));
}

.partner svg {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  margin: 0 auto var(--space-3);
}

.partner p {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  max-width: none;
}

/* ===== LONG-TERM VISION ===== */
.section--longterm {
  background: var(--color-bg);
  text-align: center;
}

.longterm__pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: var(--space-4);
  margin: var(--space-10) 0;
}

.longterm__pillar {
  padding: var(--space-6) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.longterm__pillar-title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-navy);
}

[data-theme='dark'] .longterm__pillar-title {
  color: var(--color-gold);
}

.longterm__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-inline: auto;
}

/* ===== CALL TO ACTION ===== */
.section--cta {
  background: linear-gradient(180deg, var(--color-navy-deep) 0%, var(--color-navy) 100%);
  color: #f8f7f4;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section--cta::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(200, 155, 60, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta__content {
  position: relative;
  z-index: 1;
}

.cta__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-4);
}

.cta__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #f8f7f4;
  margin-bottom: var(--space-10);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.cta__statements {
  margin-bottom: var(--space-10);
}

.cta__statement {
  font-size: var(--text-lg);
  color: rgba(248, 247, 244, 0.85);
  margin-bottom: var(--space-3);
  line-height: 1.5;
}

.cta__statement:first-child {
  font-size: var(--text-base);
  color: rgba(248, 247, 244, 0.6);
  margin-bottom: var(--space-6);
}

.cta__statement strong {
  color: var(--color-gold);
  font-weight: 600;
}

.cta__final {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-gold);
  font-style: italic;
  letter-spacing: 0.02em;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-navy-deep);
  padding: var(--space-12) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer__logo {
  width: 32px;
  height: 32px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.footer__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #f8f7f4;
}

.footer__tagline {
  font-size: var(--text-xs);
  color: rgba(248, 247, 244, 0.5);
  font-style: italic;
}

.footer__note {
  font-size: var(--text-xs);
  color: rgba(248, 247, 244, 0.4);
  text-align: right;
  max-width: 300px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    padding: var(--space-4);
    gap: var(--space-2);
  }

  .nav__link {
    display: block;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
  }

  .nav__link:hover {
    background: var(--color-surface-2);
  }

  .nav__link::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    display: block;
  }

  .header__inner {
    padding: var(--space-3) var(--space-4);
  }

  .logo__text {
    font-size: var(--text-xs);
  }

  .hero__title {
    font-size: clamp(2rem, 1rem + 5vw, 2.8rem);
  }

  .hero__tagline {
    font-size: var(--text-base);
  }

  .hero__bridge {
    padding: var(--space-2) var(--space-4);
  }

  .hero__bridge-text {
    font-size: var(--text-sm);
  }

  .phase {
    grid-template-columns: 44px 1fr;
    gap: var(--space-4);
  }

  .phase__number {
    width: 36px;
    height: 36px;
    font-size: var(--text-base);
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__note {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__logo-svg {
    width: 72px;
    height: 72px;
  }

  .need__grid {
    grid-template-columns: 1fr;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .outcomes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners__grid {
    grid-template-columns: 1fr;
  }

  .cta__title {
    font-size: var(--text-xl);
  }
}
