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

:root {
  --pink: #E25B8A;
  --pink-light: #F2A0BA;
  --navy: #101C2E;
  --navy-mid: #1A2D47;
  --sage: #C2D4C2;
  --sage-light: #E8F0E8;
  --cream: #FAFAF7;
  --white: #FFFFFF;
  --gray-100: #F5F5F3;
  --gray-200: #E8E8E4;
  --gray-400: #A0A09A;
  --gray-600: #6B6B65;
  --gray-800: #333330;
  --red-accent: #C0392B;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 130px; }

/* ========== ALERT BANNER ========== */
.alert-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  display: flex; align-items: center; justify-content: center; gap: 0.55rem;
  height: 44px; padding: 0 1rem;
  background: var(--pink); color: #fff;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.01em; text-decoration: none; white-space: nowrap;
  transition: background 0.2s ease;
}
.alert-banner:hover { background: #d14a7a; }
.alert-banner svg { flex-shrink: 0; opacity: 0.9; }
.alert-banner strong { font-weight: 700; }
.alert-banner-arrow { transition: transform 0.2s ease; }
.alert-banner:hover .alert-banner-arrow { transform: translateX(3px); }
.cms-closed .alert-banner { display: none; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========== UTILITY ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ========== NAV ========== */
nav {
  position: fixed; top: 44px; left: 0; right: 0; z-index: 100;
  background: rgba(16, 28, 46, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease;
}
nav .nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 140px;
}
nav .nav-logo { height: 120px; width: auto; }
nav .nav-links { display: flex; gap: 0.5rem; align-items: center; }
nav .nav-links a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 1.05rem; font-weight: 500; letter-spacing: 0.01em;
  padding: 0.6rem 1.1rem; border-radius: 6px;
  transition: all 0.2s ease;
}
nav .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
nav .nav-links a.nav-cta {
  background: var(--pink); color: #fff; font-weight: 600;
  margin-left: 0.75rem;
}
nav .nav-links a.nav-cta:hover { background: #d14a7a; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: #fff;
  margin: 5px 0; transition: all 0.3s ease; border-radius: 2px;
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--navy);
  position: relative; overflow: hidden;
  padding-top: 184px;
}
.cms-closed nav { top: 0; }
.cms-closed .hero { padding-top: 140px; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(226, 91, 138, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(194, 212, 194, 0.06) 0%, transparent 60%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226,91,138,0.3), transparent);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 1;
  padding: 4rem 0;
}
.hero-content {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(226, 91, 138, 0.12); border: 1px solid rgba(226, 91, 138, 0.25);
  padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; color: var(--pink-light);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff; line-height: 1.1; margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic; color: var(--pink);
}
.hero-sub {
  font-size: 1.15rem; line-height: 1.7; color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem; font-weight: 300; max-width: 520px;
}
.hero-sub strong { color: rgba(255,255,255,0.92); font-weight: 500; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.8rem; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--pink); color: #fff;
  box-shadow: 0 2px 16px rgba(226,91,138,0.3);
}
.btn-primary:hover { background: #d14a7a; transform: translateY(-1px); box-shadow: 0 4px 24px rgba(226,91,138,0.4); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn-dark {
  background: var(--navy); color: #fff;
}
.btn-dark:hover { background: var(--navy-mid); }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-stat-card {
  position: absolute; bottom: -1.5rem; right: -1rem;
  background: rgba(16, 28, 46, 0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 1.75rem 2rem;
  backdrop-filter: blur(12px);
  text-align: center; max-width: 300px;
  z-index: 2;
}
.hero-stat-number {
  font-family: var(--font-display); font-size: 5rem;
  color: var(--pink); line-height: 1; margin-bottom: 0.35rem;
}
.hero-stat-label {
  font-size: 1rem; color: rgba(255,255,255,0.75); font-weight: 300;
  line-height: 1.5;
}
.hero-stat-label strong { color: #fff; font-weight: 500; }

/* ========== SCROLL INDICATOR ========== */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.25); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-hint svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ========== SECTIONS ========== */
section { padding: 6rem 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(226, 91, 138, 0.12); border: 1px solid rgba(226, 91, 138, 0.25);
  padding: 0.45rem 1.1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; color: var(--pink);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink); animation: pulse 2s infinite;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy); line-height: 1.15; margin-bottom: 1.5rem;
}
.section-intro {
  font-size: 1.2rem; line-height: 1.8; color: var(--gray-600);
  max-width: 720px; font-weight: 300;
}
.subsection-title {
  font-family: var(--font-display); color: var(--navy);
  font-size: clamp(2rem, 3vw, 2.4rem); line-height: 1.15;
}

/* ========== VIDEO SECTION ========== */
.video-section {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.video-wrapper {
  aspect-ratio: 16/9; background: var(--navy); border-radius: 16px;
  overflow: hidden; position: relative; margin-top: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.video-wrapper iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ========== PROBLEM SECTION ========== */
.problem-section { background: var(--cream); }
.problem-quote {
  font-family: var(--font-display); font-size: 1.6rem;
  color: var(--navy); line-height: 1.4; font-style: italic;
  border-left: 3px solid var(--pink); padding-left: 1.5rem;
  margin: 3rem 0;
}
.pipeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin: 3rem 0; position: relative;
}
.pipeline::before {
  content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--pink), var(--sage), var(--pink-light), var(--red-accent));
  z-index: 0;
}
.pipeline-step {
  text-align: center; position: relative; z-index: 1;
  padding: 0 1rem;
}
.pipeline-icon {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-size: 1.5rem; font-weight: 700;
  color: #fff;
}
.pipeline-step:nth-child(1) .pipeline-icon { background: var(--navy); }
.pipeline-step:nth-child(2) .pipeline-icon { background: var(--pink); }
.pipeline-step:nth-child(3) .pipeline-icon { background: var(--gray-600); }
.pipeline-step:nth-child(4) .pipeline-icon { background: var(--red-accent); }
.pipeline-step h4 {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--navy);
  margin-bottom: 0.75rem;
}
.pipeline-step p {
  font-size: 1.05rem; line-height: 1.7; color: var(--gray-600); font-weight: 300;
}

.players-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.player-card {
  background: var(--white); border-radius: 12px; padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all 0.25s ease;
}
.player-card:hover { border-color: var(--pink-light); box-shadow: 0 4px 20px rgba(226,91,138,0.08); }
.player-card h4 {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--pink);
  margin-bottom: 0.6rem; line-height: 1.1;
}
.player-card p {
  font-size: 1.05rem; line-height: 1.7; color: var(--gray-600); font-weight: 300;
}
.player-anchor {
  margin-top: 1.25rem;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 2.75rem 3rem;
  transition: all 0.25s ease;
}
.player-anchor:hover { border-color: var(--pink-light); box-shadow: 0 4px 20px rgba(226,91,138,0.08); }
.player-anchor-label {
  font-size: 0.8rem; font-weight: 600; color: var(--pink);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.player-anchor h4 {
  font-family: var(--font-display); font-size: 2.4rem; color: var(--pink);
  margin-bottom: 0.85rem; line-height: 1;
}
.player-anchor p {
  font-size: 1.2rem; line-height: 1.75; color: var(--gray-600);
  font-weight: 300; max-width: 820px;
}
.player-anchor p strong { color: var(--navy); font-weight: 600; }

/* ========== RESEARCH ========== */
.research-section { background: var(--navy); color: #fff; }
.research-section .section-label {
  color: var(--pink-light);
  background: rgba(226, 91, 138, 0.15); border-color: rgba(226, 91, 138, 0.3);
}
.research-section .section-label::before { background: var(--pink-light); }
.research-section .section-title { color: #fff; }
.research-section .section-intro { color: rgba(255,255,255,0.5); }
.research-grid { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.research-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 2.5rem;
  transition: all 0.25s ease;
  display: grid; grid-template-columns: auto 1fr; gap: 2rem;
  align-items: start;
}
.research-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(226,91,138,0.2);
}
.research-year {
  font-family: var(--font-display); font-size: 2.6rem; color: var(--pink);
  line-height: 1; min-width: 86px;
}
.research-item h4 {
  font-family: var(--font-display); font-size: 1.45rem; color: #fff;
  margin-bottom: 0.4rem; line-height: 1.3;
}
.research-authors {
  font-size: 1rem; color: var(--pink-light); margin-bottom: 0.5rem; font-weight: 500;
}
.research-journal {
  font-size: 0.92rem; color: rgba(255,255,255,0.4); font-style: italic;
  margin-bottom: 0.85rem;
}
.research-desc {
  font-size: 1.1rem; line-height: 1.65; color: rgba(255,255,255,0.55); font-weight: 300;
}
.research-abstract { margin-top: 1.15rem; }
.research-abstract summary {
  cursor: pointer; list-style: none; user-select: none;
  font-size: 0.95rem; font-weight: 600; color: var(--pink-light);
  letter-spacing: 0.03em; padding: 0.5rem 0;
  display: inline-flex; align-items: center; gap: 0.45rem;
  transition: color 0.2s ease;
}
.research-abstract summary::-webkit-details-marker { display: none; }
.research-abstract summary::after { content: '+'; font-size: 1.05rem; line-height: 1; }
.research-abstract[open] summary::after { content: '\2212'; }
.research-abstract summary:hover { color: #fff; }
.research-abstract-body { padding-top: 0.5rem; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 0.25rem; }
.research-abstract-body p {
  font-size: 1rem; line-height: 1.75; color: rgba(255,255,255,0.6);
  font-weight: 300; margin-bottom: 1rem;
}
.research-abstract-body p:last-child { margin-bottom: 0; }
.research-abstract-body p strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.research-keywords { font-style: italic; color: rgba(255,255,255,0.4) !important; }
.research-link {
  display: inline-block; margin-top: 1rem;
  font-size: 0.98rem; font-weight: 600; color: var(--pink-light);
  text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s ease;
}
.research-link:hover { color: #fff; }

/* ========== WHERE WE ARE / SOLUTIONS ========== */
.progress-section { background: var(--cream); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2.5rem; }
.col-card {
  background: var(--white); border-radius: 16px; padding: 2.5rem;
  border: 1px solid var(--gray-200);
}
.col-card h3 {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--navy);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem;
}
.col-card h3 .icon-circle {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.col-card ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.col-card li {
  font-size: 1.08rem; line-height: 1.65; color: var(--gray-600);
  padding-left: 1.25rem; position: relative; font-weight: 300;
}
.col-card li::before {
  content: ''; position: absolute; left: 0; top: 0.6rem;
  width: 6px; height: 6px; border-radius: 50%;
}
.col-card.accomplishments li::before { background: var(--sage); }
.col-card.roadblocks li::before { background: var(--pink); }
.col-card li strong { font-weight: 600; color: var(--gray-800); }

/* ========== SOLUTIONS ========== */
.solutions-section {
  background: linear-gradient(180deg, var(--sage-light) 0%, var(--cream) 100%);
}
.solutions-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-top: 2.5rem;
}
.solution-card {
  background: var(--white); border-radius: 16px; padding: 2.5rem;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.solution-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--pink); transform: scaleX(0);
  transition: transform 0.3s ease; transform-origin: left;
}
.solution-card:hover::before { transform: scaleX(1); }
.solution-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.solution-number {
  font-family: var(--font-display); font-size: 2.5rem; color: var(--sage);
  line-height: 1; margin-bottom: 1rem;
}
.solution-card h3 {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--navy);
  margin-bottom: 1rem;
}
.solution-card p {
  font-size: 1.05rem; line-height: 1.7; color: var(--gray-600); font-weight: 300;
}

/* ========== SHARE YOUR STORY ========== */
.share-section {
  background: var(--navy); color: #fff;
  position: relative; overflow: hidden;
}
.share-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(226,91,138,0.06) 0%, transparent 70%);
}
.share-section .section-label {
  color: var(--pink-light);
  background: rgba(226, 91, 138, 0.15); border-color: rgba(226, 91, 138, 0.3);
}
.share-section .section-label::before { background: var(--pink-light); }
.share-section .section-title { color: #fff; }
.share-section .section-intro { color: rgba(255,255,255,0.5); }
.action-header {
  text-align: center; max-width: 720px; margin: 0 auto 1rem;
  position: relative; z-index: 1;
}
.action-header .section-label { margin-left: auto; margin-right: auto; }
.action-header .section-intro {
  color: rgba(255,255,255,0.55); margin-left: auto; margin-right: auto;
}
.share-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin: 2.5rem 0; position: relative; z-index: 1;
}
.share-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 2rem;
  text-align: center;
  transition: all 0.25s ease;
  display: flex; flex-direction: column;
}
.share-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(226,91,138,0.3);
}
.share-card-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.share-card h4 {
  font-family: var(--font-display); font-size: 1.35rem; color: #fff;
  margin-bottom: 0.6rem;
}
.share-card p {
  font-size: 1rem; line-height: 1.6; color: rgba(255,255,255,0.55); font-weight: 300;
  margin-bottom: 1.5rem;
}
.share-card-cta {
  margin-top: auto; align-self: center;
  font-size: 0.95rem; font-weight: 600; color: var(--pink-light);
  text-decoration: none; letter-spacing: 0.02em;
  transition: color 0.2s ease;
  background: none; border: none; cursor: pointer; font-family: inherit;
  padding: 0;
}
.share-card-cta:hover { color: #fff; }

/* ========== CMS / WRITE ========== */
.cms-section { background: var(--cream); }
.cms-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start;
}
.cms-right-image {
  border-radius: 16px; overflow: hidden; margin-bottom: 1.5rem;
}
.cms-right-image img {
  width: 100%; height: auto; display: block; border-radius: 16px;
  aspect-ratio: 4 / 3; object-fit: cover;
}
.cms-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-top: 2.5rem; align-items: start;
}
.cms-steps { display: flex; flex-direction: column; gap: 1rem; }
.cms-step {
  display: flex; gap: 1rem; align-items: flex-start;
}
.cms-step-number {
  background: var(--pink); color: #fff;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; flex-shrink: 0;
}
.cms-step p {
  font-size: 1.05rem; line-height: 1.65; color: var(--gray-600); font-weight: 300;
}
.cms-step p strong {
  font-weight: 600; color: var(--gray-800);
}
.cms-alert {
  background: rgba(226,91,138,0.06); border: 1px solid rgba(226,91,138,0.2);
  border-radius: 12px; padding: 1.5rem 1.75rem; margin-top: 2rem;
}
.cms-alert p {
  font-size: 1rem; line-height: 1.65; color: var(--gray-600); font-weight: 300;
  margin-top: 1rem;
}
.cms-alert p strong { color: var(--navy); font-weight: 600; }
.cms-countdown {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 100px; padding: 0.55rem 1.15rem;
  font-size: 0.95rem; color: var(--gray-600); font-weight: 400;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.cms-countdown svg { color: var(--pink); flex-shrink: 0; }
.cms-countdown strong {
  color: var(--navy); font-weight: 700; font-size: 1.15rem;
  margin-left: 0.15rem;
}
.cms-countdown.is-closed strong { display: none; }
.letter-template {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 2.5rem;
  font-size: 1.05rem; line-height: 1.8; color: var(--gray-600);
  font-weight: 300; position: relative;
}
.letter-template::before {
  content: 'TEMPLATE'; position: absolute; top: 1rem; right: 1.5rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--pink); background: rgba(226,91,138,0.08);
  padding: 0.25rem 0.75rem; border-radius: 4px;
}
.letter-template p { margin-bottom: 1rem; }
.letter-template p:last-child { margin-bottom: 0; }

/* ========== TEAM ========== */
.team-section { background: var(--white); border-top: 1px solid var(--gray-200); }
.team-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 2.5rem 1.75rem; margin: 2.5rem auto 0; max-width: 780px;
}
.team-card { text-align: center; flex: 0 1 calc((100% - 3.5rem) / 3); }
.team-photo {
  width: 104px; height: 104px; border-radius: 50%;
  background: var(--sage-light); margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--sage);
  border: 3px solid var(--gray-200);
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 50%;
}
.team-card h4 {
  font-family: var(--font-display); font-size: 0.95rem; color: var(--navy);
  margin-bottom: 0.35rem; line-height: 1.25;
}
.team-card .team-title {
  font-size: 0.72rem; color: var(--pink); font-weight: 600;
  margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.03em;
}
.team-card p {
  font-size: 0.85rem; line-height: 1.55; color: var(--gray-600); font-weight: 300;
}
.team-disclaimer {
  margin: 2.5rem auto 0; max-width: 620px; text-align: center;
  font-size: 0.8rem; line-height: 1.55; color: var(--gray-600);
  font-weight: 300; font-style: italic;
}

/* ========== INDUSTRY VOICES ========== */
.industry-section {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.industry-quote-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 3rem; text-align: center;
  margin-top: 2.5rem;
}
.industry-quote-card blockquote {
  font-family: var(--font-display); font-size: 1.65rem; color: var(--navy);
  font-style: italic; line-height: 1.5; max-width: 680px; margin: 0 auto;
}
.industry-quote-card .attribution {
  font-size: 0.95rem; color: var(--gray-400);
}
.industry-quote-card .attribution a {
  color: var(--pink); text-decoration: none; font-weight: 600;
}

/* ========== PDF CTA ========== */
.pdf-cta {
  background: var(--sage-light); padding: 3.5rem 0;
  border-top: 1px solid var(--sage);
}
.pdf-cta .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.pdf-cta h3 {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--navy);
  margin-bottom: 0.4rem;
}
.pdf-cta p {
  font-size: 1.05rem; color: var(--gray-600); font-weight: 300;
}

/* ========== FOOTER ========== */
footer {
  background: var(--navy); color: rgba(255,255,255,0.4);
  padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: auto 2fr 1fr 1fr; gap: 3rem;
  align-items: start; margin-bottom: 3rem;
}
.footer-logo { display: flex; align-items: start; }
.footer-logo img { height: 120px; opacity: 0.9; }
.footer-desc p {
  font-size: 1.02rem; line-height: 1.7; font-weight: 300;
  max-width: 380px;
}
.footer-col h5 {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: rgba(255,255,255,0.4); text-decoration: none;
  font-size: 0.95rem; padding: 0.35rem 0; font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--pink-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem;
}

/* ========== ANIMATIONS ========== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ========== SECTION IMAGES ========== */
.hero-image {
  border-radius: 20px; overflow: hidden;
  max-width: 480px; width: 100%; aspect-ratio: 1 / 1;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center; display: block;
  border-radius: 20px;
}
.section-image {
  border-radius: 16px; overflow: hidden;
  margin: 2.5rem 0;
  max-height: 400px;
}
.section-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 16px; max-height: 400px;
}
.section-image-full {
  border-radius: 16px; overflow: hidden;
  margin-top: 2.5rem;
}
.section-image-full img {
  width: 100%; height: 320px; object-fit: cover; display: block;
  border-radius: 16px;
}

/* ========== DATA CALLOUT ========== */
.data-callout {
  background: var(--navy); border-radius: 20px; padding: 3rem 2.5rem;
  text-align: center; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  aspect-ratio: 1 / 1; max-width: 480px; width: 100%;
}
.data-callout-number {
  font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--pink); line-height: 1; margin-bottom: 1rem;
}
.data-callout-label {
  font-size: 1.2rem; color: rgba(255,255,255,0.72); font-weight: 300;
  line-height: 1.5; max-width: 300px;
}
.data-callout-source {
  font-size: 0.85rem; color: rgba(255,255,255,0.35); margin-top: 1.5rem;
  font-weight: 300; font-style: italic;
}

/* ========== 2-COLUMN SECTION LAYOUT ========== */
.section-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; margin-bottom: 3rem;
}
.section-split-image {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 1 / 1; max-width: 480px; width: 100%;
}
.section-split-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 20px;
}

/* ========== NOSCRIPT FALLBACK ========== */
noscript + * .fade-up,
.no-js .fade-up {
  opacity: 1; transform: none;
}

/* ========== REIMBURSEMENT CHART ========== */
.reimbursement-chart {
  margin: 5.5rem 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
}
.chart-info .section-label { margin-bottom: 1rem; }
.chart-title {
  font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.4rem); color: var(--navy);
  margin-bottom: 0.75rem; line-height: 1.2;
}
.chart-sub {
  font-size: 1.1rem; color: var(--gray-600); font-weight: 300; line-height: 1.7;
  margin-bottom: 1.5rem;
}
.chart-sub strong { color: var(--navy); font-weight: 600; }
.chart-bars {
  display: flex; align-items: flex-end; justify-content: center; gap: 3rem;
  height: 300px; padding-top: 2.25rem;
  border-bottom: 2px solid rgba(16,28,46,0.18);
}
.chart-labels { display: flex; justify-content: center; gap: 3rem; margin-top: 0.9rem; }
.chart-labels .chart-bar-label { width: 130px; text-align: center; white-space: nowrap; }
.chart-track { position: relative; width: 130px; height: 100%; display: flex; align-items: flex-end; }
.chart-col { width: 100%; height: 100%; display: flex; flex-direction: column; }
.chart-fill {
  background: #b9d6e6; position: relative;
  display: block; flex: 0 0 66%; border-radius: 0;
}
.chart-fill-full { flex: 1 1 auto; border-radius: 8px 8px 0 0; }
.chart-ghost {
  flex: 0 0 34%;
  border: 2px dashed rgba(226,91,138,0.7); border-bottom: none;
  border-radius: 8px 8px 0 0; background: rgba(226,91,138,0.07);
  display: flex; align-items: center; justify-content: center;
}
.chart-gap-tag { font-family: var(--font-display); color: var(--pink); font-weight: 400; font-size: 1.2rem; letter-spacing: 0.01em; }
.chart-val-in {
  position: absolute; top: 0.65rem; left: 0; right: 0; text-align: center;
  font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); font-weight: 400;
}
.chart-bar-label {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray-600);
}
.chart-ghost { cursor: help; position: relative; }
.chart-ghost:focus { outline: none; }
.chart-ghost:hover, .chart-ghost:focus { background: rgba(226,91,138,0.14); }
.chart-tip {
  position: absolute; bottom: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 230px; background: var(--navy); color: #fff;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 300; line-height: 1.5;
  text-transform: none; letter-spacing: normal;
  padding: 0.8rem 0.95rem; border-radius: 10px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.22);
  opacity: 0; visibility: hidden; transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 5; pointer-events: none;
}
.chart-tip::after {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-top-color: var(--navy);
}
.chart-ghost:hover .chart-tip, .chart-ghost:focus .chart-tip {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.chart-source { font-size: 0.9rem; color: rgba(0,0,0,0.45); font-style: italic; margin-top: 1.75rem; }

/* ========== PUBLIC HEALTH CRISIS ========== */
.crisis-block {
  margin: 3.5rem 0 1rem;
  background: linear-gradient(150deg, #8f2c50 0%, #4a1727 100%);
  border-radius: 16px; padding: 3rem;
}
.crisis-head { max-width: 640px; margin-bottom: 2.5rem; }
.crisis-head .section-label {
  color: #ffd3e0; background: var(--navy);
  border-color: rgba(16,28,46,0.9); margin-bottom: 1rem;
}
.crisis-head .section-label::before { background: #ffd3e0; }
.crisis-head h3 {
  font-family: var(--font-display); font-size: 2.1rem; color: #fff;
  margin-bottom: 0.6rem; line-height: 1.15;
}
.crisis-head p {
  font-size: 1.1rem; color: rgba(255,255,255,0.72); font-weight: 300; line-height: 1.6;
}
.crisis-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.crisis-item { border-top: 2px solid var(--navy); padding-top: 1rem; }
.crisis-num {
  font-family: var(--font-display); font-size: 1.4rem; color: #ffc0d5;
  display: block; margin-bottom: 0.5rem;
}
.crisis-item h4 { font-size: 1.1rem; color: #fff; font-weight: 600; margin-bottom: 0.45rem; line-height: 1.3; }
.crisis-item p { font-size: 0.95rem; color: rgba(255,255,255,0.62); font-weight: 300; line-height: 1.55; }

/* ========== ACTION EXPLAINER SECTIONS ========== */
.detail-section.is-light { background: var(--cream); }
.detail-section.is-dark {
  background: var(--navy); color: #fff;
  position: relative; overflow: hidden;
}
.detail-section.is-dark .section-label {
  color: var(--pink-light);
  background: rgba(226, 91, 138, 0.15); border-color: rgba(226, 91, 138, 0.3);
}
.detail-section.is-dark .section-label::before { background: var(--pink-light); }
.detail-section.is-dark .section-title { color: #fff; }
.detail-section.is-dark .section-intro { color: rgba(255,255,255,0.6); }
.detail-section .section-intro strong { color: var(--navy); font-weight: 600; }
.detail-section.is-dark .section-intro strong { color: #fff; font-weight: 500; }

/* ========== MAILING LIST MODAL ========== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8, 15, 26, 0.75);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px; padding: 2.5rem;
  width: 100%; max-width: 460px; position: relative;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 0.9rem; right: 1.25rem;
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 1.9rem; line-height: 1; cursor: pointer; padding: 0;
  transition: color 0.2s ease;
}
.modal-close:hover { color: #fff; }

#mc_embed_signup h2 {
  font-family: var(--font-display); font-size: 1.6rem; color: #fff;
  line-height: 1.2; margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
#mc_embed_signup .mc-intro {
  font-size: 1rem; color: rgba(255,255,255,0.6); font-weight: 300;
  line-height: 1.6; margin-bottom: 1.5rem;
}
#mc_embed_signup .indicates-required {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  text-align: right; margin-bottom: 1rem;
}
#mc_embed_signup .asterisk { color: var(--pink); }
#mc_embed_signup .mc-field-group { margin-bottom: 1.1rem; }
#mc_embed_signup .mc-field-group label {
  display: block; font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.75); margin-bottom: 0.4rem; letter-spacing: 0.02em;
}
#mc_embed_signup input[type="email"],
#mc_embed_signup input[type="text"] {
  width: 100%; padding: 0.75rem 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; color: #fff; font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, background 0.2s ease;
}
#mc_embed_signup input::placeholder { color: rgba(255,255,255,0.3); }
#mc_embed_signup input[type="email"]:focus,
#mc_embed_signup input[type="text"]:focus {
  outline: none; border-color: var(--pink); background: rgba(255,255,255,0.09);
}
#mc_embed_signup .mc-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }
.mc-thankyou { text-align: center; padding: 1rem 0 0.5rem; }
.mc-thankyou-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(194,212,194,0.15); border: 1px solid rgba(194,212,194,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0.5rem auto 1.5rem;
}
.mc-thankyou h2 {
  font-family: var(--font-display); font-size: 2rem; color: #fff;
  line-height: 1.15; margin-bottom: 0.75rem; letter-spacing: -0.01em;
}
.mc-thankyou p {
  font-size: 1.05rem; color: rgba(255,255,255,0.62); font-weight: 300;
  line-height: 1.6; margin: 0 auto 1.75rem; max-width: 360px;
}
.mc-thankyou .btn { min-width: 140px; justify-content: center; }
#mc_embed_signup .response { font-size: 0.95rem; line-height: 1.5; padding: 0.35rem 0; }
#mc_embed_signup #mce-error-response { color: #ff8fab; }
#mc_embed_signup #mce-success-response { color: var(--sage); }

/* ========== MOBILE ========== */
/* The inline nav needs ~980px (logo + 6 links + padding); collapse to the
   hamburger before it wraps to a second row on tablets / small laptop windows. */
@media (max-width: 1000px) {
  nav .nav-links { display: none; }
  .hamburger { display: block; }
  nav.menu-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 140px; left: 0; right: 0;
    background: var(--navy); padding: 1rem 2rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  nav.menu-open .nav-links a { padding: 0.75rem 0; }
  nav.menu-open .nav-links a.nav-cta { padding: 0.8rem 2rem; margin: 0.6rem 0 0; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-image { max-width: 360px; margin: 0 auto; }
  .hero-stat-card { right: auto; left: 50%; transform: translateX(-50%); bottom: -1rem; }
  .pipeline { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .pipeline::before { display: none; }
  .two-col, .solutions-grid { grid-template-columns: 1fr; }
  .share-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { max-width: 560px; margin-left: auto; margin-right: auto; }
  .team-card { flex: 0 1 calc((100% - 1.75rem) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-logo img { height: 80px; }
  .players-grid { grid-template-columns: repeat(2, 1fr); }
  .player-anchor { padding: 2rem 1.75rem; }
  .crisis-grid { grid-template-columns: repeat(3, 1fr); }
  .crisis-block { padding: 2.25rem; }
  .reimbursement-chart { grid-template-columns: 1fr; gap: 2.5rem; }
  .chart-info { order: -1; }
  .chart-plot { gap: 2.5rem; }
  .research-item { grid-template-columns: 1fr; }
  .research-year { font-size: 1.9rem; margin-bottom: 0.5rem; }
  .cms-layout { grid-template-columns: 1fr; }
  .cms-grid { grid-template-columns: 1fr; }
  .section-split { grid-template-columns: 1fr; gap: 2rem; }
  .section-split-image { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .alert-banner { font-size: 0.78rem; gap: 0.4rem; padding: 0 0.75rem; }
  .alert-banner svg { width: 14px; height: 14px; }
  .pipeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .share-grid { grid-template-columns: 1fr; }
  .players-grid { grid-template-columns: 1fr; }
  .crisis-grid { grid-template-columns: 1fr; }
  .chart-plot { gap: 1.5rem; }
  .chart-track { width: 90px; }
  .team-grid { max-width: 340px; }
  .team-card { flex: 0 1 100%; max-width: none; }
  section { padding: 4rem 0; }
}
