body{background-color:white;}

.shinyjs-hide { display: none !important; }


* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { font-family: 'Montserrat', sans-serif; background: #ffffff; color: #0a1628; scroll-behavior: smooth; overflow-x: hidden; }
body.nav-drawer-open { overflow: hidden; touch-action: none; }

/* ── NAV ── */
.wmo-nav {
  position: sticky; top: 0; z-index: 1100;
  isolation: isolate;
  overflow: visible;
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8eef7;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 0; text-decoration: none; }
/* wmo-* names avoid Bootstrap .nav-link / .nav conflicts on Shiny hosted apps */
.wmo-nav-links { display: flex; align-items: center; gap: 2rem; }
.wmo-nav-item {
  font-size: 13px; color: #3d4f68; text-decoration: none; font-weight: 400;
  cursor: pointer; transition: color 0.2s; background: none; border: none; padding: 0;
}
.wmo-nav-item:hover { color: #003399; }
.wmo-nav-cta {
  font-size: 13px; font-weight: 500; color: #003399;
  border: 1px solid #003399; padding: 8px 18px; border-radius: 50px;
  cursor: pointer; background: none; transition: all 0.2s;
}
.wmo-nav-cta:hover { background: #003399; color: white; }

/* Mobile menu (hidden on desktop) */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  z-index: 1;
  background: rgba(0, 26, 102, 0.35);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.nav-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid #002a82;
  border-radius: 12px;
  background: #003399;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 20;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(0, 26, 102, 0.25);
}
/* White bars on blue button — high contrast on mobile */
.nav-menu-toggle .nav-menu-icon {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: #ffffff;
  box-shadow: 0 7px 0 #ffffff, 0 14px 0 #ffffff;
  flex-shrink: 0;
}
.wmo-nav.nav-open .nav-backdrop { display: block; }

/* Page content stays under the sticky header stacking context */
#main-content { position: relative; z-index: 0; }

/* ── PAGE ── */
.page-section { max-width: 960px; margin: 0 auto; padding: 0 2rem; }

/* ── HERO ── */
.hero-wrap {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 2rem; overflow: hidden;
  background: #001a66;
}

/* Video background — two-video crossfade for seamless loop */
.hero-poster,
.hero-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-poster { z-index: 0; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.5s ease;
}
/* vid-a starts visible once loaded, vid-b starts invisible */
.hero-video.vid-active  { opacity: 1; }
.hero-video.vid-standby { opacity: 0; }
@media (max-width: 900px) {
  .hero-video { display: none; }
}

/* Layered overlay: deep WMO blue gradient over the video */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(
      105deg,
      rgba(0, 26, 102, 0.88) 0%,
      rgba(0, 51, 153, 0.72) 45%,
      rgba(0, 26, 80, 0.60) 100%
    );
}
/* Subtle vignette at edges */
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,10,40,0.5) 100%);
}

.hero-inner {
  max-width: 960px; margin: 0 auto; width: 100%;
  position: relative; z-index: 3;
  display: flex; flex-direction: column;
}

/* Logo */
.hero-logo-wrap {
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-ready .hero-logo-wrap {
  opacity: 1; transform: translateY(0);
  transition-delay: 0s;
}
.hero-logo { display: block; filter: none; }

.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #F5A729; font-weight: 500; margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-ready .hero-eyebrow { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white; line-height: 1.08; margin-bottom: 1.75rem; max-width: 700px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-ready .hero-title { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.hero-title em { color: #F5A729; font-style: italic; }
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.6;
  max-width: 720px; margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-ready .hero-sub { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.hero-actions {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 4rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-ready .hero-actions { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.btn-primary {
  background: #F5A729; color: #0a1628; font-size: 14px; font-weight: 500;
  padding: 14px 28px; border-radius: 50px; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; transition: all 0.2s;
}
.btn-primary:hover { background: #ffe033; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: white; font-size: 14px; font-weight: 400;
  padding: 14px 28px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.35); cursor: pointer;
  font-family: 'Montserrat', sans-serif; transition: all 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.06); }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255,255,255,0.15);
  border-radius: 14px; overflow: hidden; max-width: 720px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.hero-ready .hero-stats { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }
.hero-stat { background: rgba(255,255,255,0.07); padding: 1.25rem 1.75rem; }
.hero-stat-val {
  font-family: 'Montserrat', sans-serif; font-size: 2rem;
  color: #F5A729; line-height: 1;
}
.hero-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 5px; line-height: 1.4; }
.hero-stat-lbl-top { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 5px; line-height: 1.4; }

/* Scroll hint — in-flow below stats, never overlaps */
.hero-scroll-hint-inline {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  margin-top: 2rem;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-ready .hero-scroll-hint-inline { opacity: 1; transition-delay: 1.2s; }
@media (max-width: 480px) { .hero-scroll-hint-inline { display: none; } }
.scroll-hint-text { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.scroll-hint-arrow {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── SECTION HEADERS ── */
.s-eyebrow {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #003399; font-weight: 500; margin-bottom: 0.5rem;
}
.s-title {
  font-family: 'Montserrat', sans-serif; font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: #0a1628; line-height: 1.2; margin-bottom: 1rem;
}
.s-body { font-size: 16px; color: #3d4f68; line-height: 1.8; max-width: 620px; }

/* ── WHAT IS ── */
.what-section { padding: 6rem 0; }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 2.5rem; }
.what-card {
  background: #f4f7fc; border-radius: 14px; padding: 1.5rem;
  border-left: 3px solid #003399;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.what-card.visible { opacity: 1; transform: translateY(0); }
.what-card-title { font-size: 14px; font-weight: 500; color: #003399; margin-bottom: 8px; }
.what-card-body { font-size: 13px; color: #3d4f68; line-height: 1.7; }

/* ── PATHWAYS ── */
.pathways-section { padding: 6rem 0; background: #f4f7fc; }
.pathways-section .page-section { padding-top: 0; }
.pathway-grid { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.pathway-item { border-top: 1px solid #d8e4f0; cursor: pointer; transition: background 0.2s; }
.pathway-item:last-child { border-bottom: 1px solid #d8e4f0; }
.pathway-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0; gap: 1rem;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  font: inherit;
}
.pathway-left { display: flex; align-items: center; gap: 1.25rem; }
.pathway-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: #003399; color: #F5A729; font-size: 14px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background 0.2s;
}
.pathway-item.open .pathway-num { background: #F5A729; color: #003399; }
.pathway-title-text { font-size: 17px; font-weight: 500; color: #0a1628; font-family: 'Montserrat', sans-serif; }
.pathway-arrow { font-size: 18px; color: #3d4f68; transition: transform 0.3s; flex-shrink: 0; }
.pathway-item.open .pathway-arrow { transform: rotate(45deg); color: #003399; }
.pathway-body { display: none; padding: 0 0 1.75rem 3.5rem; }
.pathway-item.open .pathway-body { display: block; }
.pathway-desc { font-size: 15px; color: #3d4f68; line-height: 1.8; margin-bottom: 1rem; }
.pathway-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pathway-tag { font-size: 11px; padding: 4px 12px; border-radius: 20px; background: #e8eef7; color: #0055CC; font-weight: 500; }

/* ── TIERS ── */
.tiers-section { }
.tiers-section.tiers-dark {
  background: #0a1628;
}
.tiers-section.tiers-dark .s-eyebrow { color: #F5A729 !important; }
.tiers-section.tiers-dark .s-title { color: white; }
.tiers-section.tiers-dark .s-body { color: rgba(255,255,255,0.86); }
.tiers-section.tiers-dark .tier-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
.tiers-section.tiers-dark .tier-card.tier-horizon {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.09);
}
.tiers-section.tiers-dark .tier-card.tier-sky {
  background: linear-gradient(180deg, rgba(16,45,116,0.82) 0%, rgba(9,34,97,0.92) 100%);
  border-color: rgba(128,170,255,0.5);
  box-shadow: 0 10px 26px rgba(0,22,72,0.28);
}
.tiers-section.tiers-dark .tier-card.featured {
  background: #003399;
  border-color: #8fb4ff;
  box-shadow: 0 14px 38px rgba(0,24,86,0.4);
}
.tiers-section.tiers-dark .tier-amount { color: #ffffff; }
.tiers-section.tiers-dark .tier-amount span { color: rgba(255,255,255,0.9); }
.tiers-section.tiers-dark .tier-perk { color: rgba(255,255,255,0.92); }
.tiers-section.tiers-dark .tier-perk::before { color: #F5A729; }
.tiers-section.tiers-dark .tier-divider { border-color: rgba(255,255,255,0.1); }
.tiers-section { padding: 6rem 0; background: #f4f7fc; }
.tiers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 2.5rem; }
.tier-card {
  background: white; border-radius: 16px; padding: 1.75rem;
  border: 1px solid #d8e4f0; position: relative;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.2s;
}
.tier-card:hover { box-shadow: 0 8px 32px rgba(0,51,153,0.1); }
.tier-card.visible { opacity: 1; transform: translateY(0); }
.tier-card.featured { border: 2px solid #003399; }
.tier-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: #003399; color: white; font-size: 11px; padding: 4px 16px;
  border-radius: 20px; font-weight: 500; white-space: nowrap;
}
.tier-card.tier-horizon .tier-badge {
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.22);
}
.tier-card.tier-sky .tier-badge {
  background: #0d58c9;
  color: #ffffff;
}
.tier-card.featured .tier-badge {
  background: #F5A729;
  color: #0a1628;
}
.tier-note { font-size: 11px; color: #b0b8c4; margin-top: 10px; font-style: italic; padding-top: 10px; border-top: 1px solid #f0f4fa; }
.tier-name { display: none; }
.tier-amount { font-family: 'Montserrat', sans-serif; font-size: 1.75rem; color: #0a1628; margin-bottom: 4px; }
.tier-amount span { font-size: 13px; font-family: 'Montserrat', sans-serif; color: #3d4f68; }
.tier-divider { height: 1px; background: #e8eef7; margin: 1.25rem 0; }
.tier-perk { font-size: 13px; color: #3d4f68; display: flex; gap: 8px; line-height: 1.5; margin-bottom: 8px; }
.tier-perk::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: #003399; margin-top: 7px; flex-shrink: 0; }

/* ── PROCESS ── */
.process-section { padding: 6rem 0; }
.steps-wrap { margin-top: 2.5rem; position: relative; }
.steps-line { position: absolute; left: 19px; top: 30px; bottom: 30px; width: 1px; background: linear-gradient(to bottom, #003399, #d8e4f0); }
.step-item { display: flex; gap: 1.25rem; padding-bottom: 2.5rem; }
.step-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: #003399; color: white; font-size: 14px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1;
  opacity: 0; transform: scale(0.7);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.step-circle.visible { opacity: 1; transform: scale(1); }
.step-body { padding-top: 8px; }
.step-title { font-size: 16px; font-weight: 500; color: #0a1628; margin-bottom: 4px; }
.step-desc { font-size: 14px; color: #3d4f68; line-height: 1.7; }

/* ── KNOW MORE (document downloads) ── */
.knowmore-section {
  padding: 2.5rem 0 5.5rem;
  background: #eef4ff;
  border-top: 1px solid #dbe6fb;
  border-bottom: 1px solid #dbe6fb;
}
.knowmore-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: #0a1628;
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.knowmore-sub {
  margin: 0 0 1.4rem;
  font-size: 14px;
  color: #3d4f68;
  line-height: 1.65;
}
.knowmore-list {
  margin: 0;
  border-top: 1px solid #e4eaf3;
}
.knowmore-item {
  padding: 1rem 0;
  border-bottom: 1px solid #e4eaf3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.knowmore-item-title {
  font-size: 15px;
  color: #1f2a44;
  line-height: 1.5;
  font-weight: 500;
}
.knowmore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  background: #003399;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid #003399;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.knowmore-btn:hover { background: #0048cc; transform: translateY(-1px); }

/* ── CONTACT ── */
.contact-section { padding: 6rem 0; background: #003399; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.contact-title { font-family: 'Montserrat', sans-serif; font-size: 2.25rem; color: white; line-height: 1.15; margin-bottom: 1rem; }
.contact-title em { color: #F5A729; font-style: italic; }
.contact-sub { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 2rem; }
.contact-meta { display: flex; flex-direction: column; gap: 12px; }
.contact-meta-item { font-size: 13px; color: rgba(255,255,255,0.55); }
.contact-meta-item strong { color: rgba(255,255,255,0.85); display: block; margin-bottom: 2px; }
.contact-form-wrap { background: white; border-radius: 20px; padding: 2rem; }
.form-row { margin-bottom: 1.25rem; }
.form-label { font-size: 12px; font-weight: 500; color: #3d4f68; margin-bottom: 6px; display: block; letter-spacing: 0.05em; text-transform: uppercase; }
.form-control {
  width: 100%; border: 1px solid #e8eef7; border-radius: 10px;
  padding: 11px 14px; font-size: 14px; font-family: 'Montserrat', sans-serif;
  color: #0a1628; outline: none; transition: border-color 0.2s; background: white;
}
.form-control:focus { border-color: #003399; }
.form-select {
  width: 100%; border: 1px solid #e8eef7; border-radius: 10px;
  padding: 11px 14px; font-size: 14px; font-family: 'Montserrat', sans-serif;
  color: #0a1628; outline: none; background: white; cursor: pointer;
  transition: border-color 0.2s; -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a82' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-select:focus { border-color: #003399; }
.form-textarea { min-height: 100px; resize: vertical; }
.submit-btn {
  width: 100%; background: #003399; color: white; font-size: 14px; font-weight: 500;
  padding: 14px; border-radius: 50px; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; transition: all 0.2s; margin-top: 0.5rem;
}
.submit-btn:hover { background: #0044cc; }
.form-success { text-align: center; padding: 2rem; font-size: 15px; color: #003399; display: none; }

/* ── FOOTER ── */
.footer-wrap { background: #0a1628; padding: 3rem 2rem; text-align: center; }
.footer-logo { margin-bottom: 1.25rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; }
.footer-link { font-size: 12px; color: rgba(255,255,255,0.92); text-decoration: none; }
.footer-link:hover { color: rgba(255,255,255,1); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); }
.footer-attrib { margin-top: 0.75rem; font-size: 11px; color: rgba(255,255,255,0.75); }
.footer-attrib a { color: #ffda66; text-decoration: underline; }
.footer-attrib a:hover { color: #ffffff; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.scroll-reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── CRISIS STATS ── */
.crisis-wrap { background: #0a1628; padding: 5rem 0; }
.crisis-eyebrow { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,167,41,0.7); font-weight: 500; margin-bottom: 1.25rem; }
.crisis-headline { font-family: 'Montserrat', sans-serif; font-size: clamp(1.75rem, 3.5vw, 2.75rem); color: white; line-height: 1.15; margin-bottom: 1rem; max-width: 580px; }
.crisis-subhead { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 520px; margin-bottom: 3.5rem; }
.crisis-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; }
.crisis-stat {
  background: #0a1628; padding: 2rem 1.75rem; cursor: pointer; transition: background 0.2s; position: relative;
  border: none; width: 100%; text-align: left; font: inherit;
}
.crisis-stat:hover { background: #111e35; }
.crisis-stat.active { background: #003399; }
.crisis-num { font-family: 'Montserrat', sans-serif; font-size: clamp(2.5rem,5vw,4rem); color: #F5A729; line-height: 1; margin-bottom: 0.5rem; }
.crisis-label { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; line-height: 1.4; margin-bottom: 0.75rem; }
.crisis-sublabel { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.crisis-expand { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; display: none; }
.crisis-stat.active .crisis-expand { display: block; }
.crisis-expand strong { color: #F5A729; }
.crisis-bottom { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; color: rgba(255,255,255,0.35); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.crisis-source-link { color: rgba(245,167,41,0.5); text-decoration: none; font-size: 12px; }
.crisis-source-link:hover { color: #F5A729; }
.crisis-cite { font-size: 11px; color: rgba(255,255,255,0.3); font-style: italic; }

/* ── ACRONYM TOOLTIP ── */
.acro { text-decoration: underline dotted rgba(245,167,41,0.6); cursor: help; font-style: normal; }
.acro:hover { text-decoration-color: #F5A729; }


body.rtl .pathway-left { flex-direction: row-reverse; }
body.rtl .steps-line { left: auto; right: 19px; }
body.rtl .step-item { flex-direction: row-reverse; }

/* Responsive */
@media (max-width: 1100px) { .tiers-grid { grid-template-columns: repeat(2, 1fr); } }

/* Medium screens: stats go 2×2, hero breathes */
@media (max-width: 900px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 460px;
  }
  .hero-wrap { padding: 4rem 2rem 6rem; }
}

@media (max-width: 768px) {
  .what-grid, .tiers-grid, .contact-inner { grid-template-columns: 1fr; }
  .wmo-nav {
    padding: 0 1rem;
    gap: 0.5rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav-menu-toggle { display: flex; }
  .wmo-nav:not(.nav-open) .wmo-nav-links {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .wmo-nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 15;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.25rem;
    padding: 1rem 1.25rem 2rem;
    margin: 0;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #e8eef7;
    box-shadow: 0 12px 40px rgba(7, 28, 73, 0.12);
    max-height: calc(100vh - 64px);
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: visible;
  }
  .wmo-nav.nav-open {
    z-index: 10050;
  }
  .wmo-nav.nav-open .wmo-nav-links {
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  body.rtl .wmo-nav-links { flex-direction: column; align-items: stretch; }
  .wmo-nav-links .wmo-nav-item,
  .wmo-nav-links .wmo-nav-cta {
    width: 100%;
    text-align: start;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 10px;
  }
  .wmo-nav-links .wmo-nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
  }
  .crisis-grid { grid-template-columns: 1fr; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
  }
  .hero-wrap { padding: 3.5rem 1.5rem 5rem; min-height: unset; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline,
  .hero-actions .hero-motion-toggle {
    width: 100%;
    max-width: 100%;
  }
  /* Push scroll hint into flow so it never overlaps stats */
  .hero-scroll-hint {
    position: relative;
    bottom: auto; left: auto;
    transform: none;
    margin-top: 2.5rem;
    align-self: center;
  }
  .contact-section { padding: 4rem 0; }
  .contact-inner { gap: 2rem; }
  .contact-title { font-size: clamp(1.6rem, 6vw, 2.1rem); }
  .p8-svg-container { padding: 24px 4px 28px; }
  .p8-instruction {
    display: block;
    margin: 0.65rem 0 0;
    text-align: center;
    max-width: 100%;
  }
  .pathways-new-section .s-body { line-height: 1.65; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .hero-scroll-hint { display: none; }  /* too cramped, omit */
}

@media (max-width: 640px) {
  .page-section { padding: 0 1.1rem; }
  .hero-wrap { padding: 3rem 1.1rem 4.5rem; }
  .hero-title { font-size: clamp(1.85rem, 8.5vw, 2.65rem); }
  .hero-sub { font-size: 15px; line-height: 1.65; }
  .intro-scroll-section { padding: 2.25rem 0; }
  .intro-story-shell { padding: 0 1.1rem; }
  .what-act1-sticky .page-section { width: 100%; padding-left: 1.1rem; padding-right: 1.1rem; }
  #what-sentences,
  .what-act1-sticky .s-eyebrow { max-width: 100%; }
  .s-title { font-size: clamp(1.45rem, 6vw, 2rem); }
  .s-body { font-size: 15px; line-height: 1.65; }
  .crisis-wrap { padding: 3.5rem 0; }
  .crisis-stat { padding: 1.35rem 1.1rem; }
  .whynow-section { padding: 4rem 0 2rem; }
  .whywmo-section .whywmo-outer { min-height: auto; }
  .whywmo-photo-panel { height: min(42vh, 320px); }
  .whywmo-roles { padding: 1.25rem 1rem 1.5rem; }
  .pathways-new-section { padding: 4rem 0; }
  .p8-wrap { margin-top: 1rem; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .p8-diagram-wrap { min-width: min(100%, 520px); margin: 0 auto; }
  .knowmore-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .knowmore-btn { width: auto; }
  .tiers-grid { grid-template-columns: 1fr !important; }
  .footer-wrap { padding: 2.5rem 1.1rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem 1.5rem; justify-content: center; }
  .contact-form-wrap .submit-btn { font-size: 13px; padding: 12px 14px; word-break: break-word; }
}
/* ── EVIDENCE PILE SECTION ── */
.evidence-section {
  background: #ffffff;
  padding: 6rem 0 8rem;
}
.evidence-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(380px, 1fr);
  gap: 3rem;
  align-items: start;
}
.evidence-left {
  position: sticky; top: 96px; align-self: start;
}
.evidence-kicker {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #5b6a82; font-weight: 500; margin-bottom: 0.85rem;
  display: block;
}
.evidence-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.1; margin: 0 0 0.85rem;
  color: #151515;
}
.evidence-body {
  font-size: 14px; line-height: 1.8; color: #3d4f68;
  max-width: 300px; margin-bottom: 2rem;
}
.evidence-scroll-cue {
  margin: -0.5rem 0 1.4rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #003399;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.evidence-scroll-cue::before {
  content: '↕';
  font-size: 12px;
  line-height: 1;
  color: #F5A729;
}
.evidence-ref-toggle {
  margin-top: 1.5rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50px;
  padding: 10px 22px;
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  color: #3d4f68;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.evidence-ref-toggle:hover { border-color: rgba(0,0,0,0.3); }
.evidence-ref-panel {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid #d8e4f0;
  border-radius: 10px;
  background: #f4f7fc;
  font-size: 12px;
  line-height: 1.6;
  color: #3d4f68;
}
/* evidence-link CSS removed */

/* Pile track — tall enough for cards to fully separate */
.pile-track {
  position: relative;
  height: calc(var(--pile-count, 3) * 88vh + 70vh);
  min-height: 2200px;
}
.pile-sticky {
  position: sticky; top: 88px;
  height: 72vh; min-height: 500px;
  pointer-events: none;
}
.pile-canvas {
  position: relative; width: 100%; height: 100%;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .pile-track { height: calc(var(--pile-count, 3) * 95vh + 70vh); min-height: 2300px; }
  .pile-sticky { height: 74vh; min-height: 420px; }
}

/* Cards */
.pile-card {
  position: absolute; left: 50%; top: 0;
  width: min(420px, 92%);
  height: min(68vh, 540px);
  border-radius: 20px; padding: 1.75rem 1.75rem 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  transform: translate(-50%, 0);
  transform-origin: 50% 18%;
  will-change: transform, opacity;
  cursor: default;
}
.pile-card::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0.12) 100%);
  pointer-events: none;
}

/* Card inner layout */
.pile-card-inner {
  position: relative; z-index: 1;
  height: 100%; display: flex; flex-direction: column; justify-content: space-between;
}
.pile-card-label {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 500; margin-bottom: auto;
}
.pile-card-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: #F5A729; line-height: 1; margin: auto 0 0.4rem;
}
.pile-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: rgba(255,255,255,0.92); line-height: 1.15;
  margin-bottom: 0.5rem;
}
.pile-card-desc {
  font-size: 12px; color: rgba(255,255,255,0.55);
  line-height: 1.6; max-width: 88%;
}
.pile-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pile-card-src {
  font-size: 10px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}
.pile-card-tag {
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,167,41,0.65); font-weight: 600;
}
.pile-card-expand-wrap { margin-top: 0.75rem; }
.pile-card-expand-btn {
  background: none; border: none; padding: 0;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85); cursor: pointer;
  text-transform: uppercase;
  transition: color 0.2s;
}
.pile-card-expand-btn:hover { color: rgba(255,255,255,1); }
.pile-card-expand-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-top: 0;
}
.pile-card-expand-wrap.open .pile-card-expand-body {
  max-height: 300px;
  padding-top: 0.75rem;
}
.pile-card-expand-wrap.open .pile-card-expand-btn { color: rgba(255,255,255,0.9); }
.pile-card-expand-body p {
  font-size: 12px; line-height: 1.65;
  color: rgba(255,255,255,0.8); margin: 0;
}

/* Evidence punchline — scroll word reveal */
.evidence-punchline-section {
  padding: 8rem 0 8rem;
  background: #060e1f;
}
.evidence-punchline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.35;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.evidence-punchline .pw {
  display: inline-block;
  margin-right: 0.24em;
  color: rgba(255,255,255,0.82);
  transition: color 0.5s ease;
}
.evidence-punchline .pw.pw-lit { color: rgba(255,255,255,0.9); }
.evidence-punchline .pw.pw-blue { color: rgba(255,255,255,0.82); }
.evidence-punchline .pw.pw-blue.pw-lit { color: #F5A729; font-style: italic; }
/* ── WHY CONTRIBUTE SECTION ── */
.why-contribute-section {
  padding: 7rem 0 6rem;
  background: #f4f7fc;
}
.wc-eyebrow { color: #003a99 !important; }
.wc-header { margin-bottom: 4rem; }
.wc-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #0a1628;
  line-height: 1.2;
  max-width: 640px;
  margin-top: 0.75rem;
}
.wc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.wc-card {
  background: white;
  border: 1px solid #e4eaf3;
  border-radius: 16px;
  padding: 2rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.wc-card:hover {
  background: white;
  border-color: #F5A729;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,51,153,0.08);
}
.wc-icon { width: 40px; height: 40px; flex-shrink: 0; }
.wc-svg { width: 100%; height: 100%; }
.wc-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #0a1628;
  line-height: 1.2;
  margin: 0;
}
.wc-card-body {
  font-size: 13px;
  color: #3d4f68;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.wc-card:hover .wc-card-body { color: #0a1628; }
@media (max-width: 900px) {
  .wc-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 560px) {
  .wc-grid { grid-template-columns: 1fr; gap: 1rem; }
}

.pile-card.c-navy   { background: #001F6B; }
.pile-card.c-blue   { background: #003399; }
.pile-card.c-ink    { background: #0a1628; }
.pile-card.c-mid    { background: #0055CC; }
.pile-card.c-deep   { background: #00204A; }
.pile-card.c-slate  { background: #1a2a4a; }

@media (max-width: 900px) {
  .evidence-grid { grid-template-columns: 1fr; }
  .evidence-left { position: relative; top: 0; }
  .pile-track { min-height: 1200px; height: calc(var(--pile-count,6) * 52vh + 36vh); }
  .pile-sticky { top: 72px; min-height: 420px; }
}

/* ── FIX 8: SKIP LINK ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: #003399; color: white; padding: 10px 20px;
  border-radius: 0 0 8px 8px; font-size: 14px; font-weight: 500;
  z-index: 2000; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ── FIX 2.5.8: NAV LINK MIN TARGET SIZE (24×24 CSS px) ── */
.wmo-nav-item { padding: 6px 4px; min-height: 24px; }


/* ── FIX 1.4.11: FORM INPUT BORDER CONTRAST ── */
.form-control, .form-select { border: 1px solid #8a9ab5; }
.form-control:focus, .form-select:focus { border-color: #003399; box-shadow: 0 0 0 2px rgba(0,51,153,0.25); }

/* ── FIX 3: PREFERS-REDUCED-MOTION ── */
@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;
  }
  .scroll-reveal, .what-card, .tier-card, .step-circle {
    opacity: 1 !important; transform: none !important;
  }
  .hero-ready .hero-logo-wrap,
  .hero-ready .hero-eyebrow,
  .hero-ready .hero-title,
  .hero-ready .hero-sub,
  .hero-ready .hero-actions,
  .hero-ready .hero-stats,
  .hero-ready .hero-scroll-hint-inline {
    opacity: 1 !important; transform: none !important;
  }
  .hero-scroll-hint-inline { display: none; }
  .hero-video { display: none; }
}

/* ── CONTACT EMAIL CTA (replaces form) ── */
.contact-cta-wrap {
  background: white; border-radius: 20px; padding: 2.5rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 1.5rem;
}
.contact-cta-icon { font-size: 2.5rem; }
.contact-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem; color: #0a1628; line-height: 1.2;
}
.contact-cta-body { font-size: 14px; color: #3d4f68; line-height: 1.7; max-width: 380px; }
.contact-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem; font-style: italic;
  color: rgba(255,255,255,0.88);
  margin: 1rem 0 0; line-height: 1.5;
}
.contact-email-btn {
  display: inline-block; background: #003399; color: white;
  font-size: 15px; font-weight: 500; padding: 14px 32px;
  border-radius: 50px; text-decoration: none;
  font-family: 'Montserrat', sans-serif; transition: all 0.2s;
}
.contact-email-btn:hover { background: #0044cc; transform: translateY(-1px); }
.contact-email-note { font-size: 12px; color: #8a9ab5; }

/* ── INTRO — static one-slide section ── */
.intro-scroll-section {
  position: relative;
  height: auto;
  min-height: auto;
  padding: 2.75rem 0;
  background: #001a66;
  --s1: 1;
  --s2: 1;
  --s3: 1;
  --s4: 1;
  --coreReveal: 1;
}
.intro-story-sticky {
  position: relative;
  top: auto;
  height: auto;
  min-height: auto;
  overflow: hidden;
  background: #001a66;
}
.intro-story-sticky::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px; pointer-events: none;
}
.intro-story-sticky::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(245,167,41,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.intro-story-shell {
  position: relative; z-index: 1; height: auto;
  max-width: 980px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr;
  align-items: center; justify-items: start;
}
.intro-story-copy { max-width: 860px; text-align: left; }
.intro-story-heading {
  margin: 0 0 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(245,167,41,0.75);
}
.intro-story-beats {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.intro-beat {
  position: relative;
  margin: 0; max-width: 820px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  line-height: 1.85;
  color: rgba(255,255,255,0.9);
  opacity: 1;
  transform: none;
  transition: none;
}
.intro-story-visual {
  position: relative; height: min(78vh, 760px); border-radius: 22px; overflow: hidden;
  box-shadow: 0 24px 70px rgba(3,12,48,0.45);
  background: radial-gradient(circle at 28% 30%, #3f7cff 0%, #1b47a8 34%, #0a1e58 100%);
  transition: box-shadow 0.6s ease;
}
.intro-story-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(3,12,48,0.36) 0%, rgba(3,12,48,0.08) 48%, rgba(3,12,48,0.42) 100%);
}
.intro-network-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; z-index: 1;
}
.intro-network-grid { display: none; }
.intro-bg-ring {
  fill: none; stroke: rgba(160,200,255,0.045); stroke-width: 1;
}
.intro-link-deco {
  fill: none; stroke: rgba(100,150,230,0.07);
  stroke-width: 1; stroke-dasharray: 3 7;
}
.intro-link-base {
  fill: none;
  stroke: rgba(100,150,230,0.14);
  stroke-width: 1.5;
}
.intro-link-step {
  fill: none;
  stroke: #F5A729;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(245,167,41,0.42));
}
.intro-link-step.s1 { stroke-dasharray: 410; stroke-dashoffset: calc(410 * (1 - var(--s1, 0))); opacity: calc(0.08 + var(--s1, 0) * 0.92); }
.intro-link-step.s2 { stroke-dasharray: 360; stroke-dashoffset: calc(360 * (1 - var(--s2, 0))); opacity: calc(0.08 + var(--s2, 0) * 0.92); }
.intro-link-step.s3 { stroke-dasharray: 380; stroke-dashoffset: calc(380 * (1 - var(--s3, 0))); opacity: calc(0.08 + var(--s3, 0) * 0.92); }
.intro-link-step.s4 { stroke-dasharray: 340; stroke-dashoffset: calc(340 * (1 - var(--s4, 0))); opacity: calc(0.08 + var(--s4, 0) * 0.92); }
.intro-flow-dot {
  fill: #F5A729;
  stroke: rgba(255,235,180,0.7);
  stroke-width: 1;
  filter: drop-shadow(0 0 7px rgba(245,167,41,0.65));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.intro-node-outer {
  fill: none;
  stroke: rgba(120,170,255,0.12);
  stroke-width: 1;
  transition: stroke 0.45s ease;
}
.intro-node {
  fill: rgba(30,60,140,0.22);
  stroke: rgba(130,175,255,0.38);
  stroke-width: 1.5;
  transition: fill 0.45s ease, stroke 0.45s ease;
}
.intro-node.n-core {
  fill: rgba(255,255,255,0.97);
  stroke: rgba(245,167,41,0.7);
  filter: drop-shadow(0 0 14px rgba(245,167,41,0.38));
}
.intro-node.active {
  fill: #F5A729;
  stroke: rgba(255,220,140,0.7);
  filter: drop-shadow(0 0 8px rgba(245,167,41,0.5));
}
.intro-node.current {
  fill: #F5A729;
  stroke: rgba(255,230,160,0.8);
  filter: drop-shadow(0 0 12px rgba(245,167,41,0.65));
}
.intro-node:not(.n-core) {
  fill: #F5A729;
  stroke: rgba(255,230,160,0.8);
  filter: drop-shadow(0 0 8px rgba(245,167,41,0.5));
}
.intro-core-halo {
  fill: none;
  stroke: rgba(245,167,41,0.4);
  stroke-width: 1.2;
  opacity: calc(0.15 + var(--s4, 0) * 0.75);
  transform-origin: 320px 320px;
  animation: introCorePulse 2.6s ease-in-out infinite;
}
.intro-core-halo2 {
  fill: none;
  stroke: rgba(100,150,255,0.1);
  stroke-width: 1;
  opacity: calc(0.1 + var(--s4, 0) * 0.5);
  transform-origin: 320px 320px;
  animation: introCorePulse 3.4s ease-in-out infinite reverse;
}
.intro-network-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: #eaf1ff;
  transition: fill 0.35s ease;
}
.intro-network-label.active { fill: #ffffff; }
.intro-network-label.current { fill: #ffda66; }
.intro-network-label { fill: #ffffff; }
.intro-gold { color: #F5A729; }
.intro-beat .intro-gold { font-weight: 500; }
.intro-network-core-oval {
  fill: white;
  stroke: rgba(200,218,240,0.9);
  stroke-width: 1.5;
}
.intro-network-core-shadow {
  fill: rgba(245,167,41,0.12);
  filter: blur(10px);
}
.intro-core-reward {
  opacity: var(--coreReveal, 0);
  transform: translateY(calc((1 - var(--coreReveal, 0)) * 28px)) scale(calc(0.72 + var(--coreReveal, 0) * 0.46));
  transform-origin: 320px 320px;
  transition: opacity 0.12s linear, transform 0.12s linear;
}
.intro-network-hint {
  position: absolute; left: 1.2rem; top: 1rem; z-index: 2;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.intro-network-hint,
.intro-progress-track,
.intro-dots,
.intro-flow-dot {
  display: none;
}

@keyframes introCorePulse {
  0%, 100% { transform: scale(0.98); opacity: calc(0.16 + var(--s4, 0) * 0.7); }
  50% { transform: scale(1.03); opacity: calc(0.28 + var(--s4, 0) * 0.8); }
}
.intro-progress-track {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  width: 2px; height: 140px; background: rgba(255,255,255,0.2); border-radius: 4px; z-index: 2;
}
.intro-progress-bar {
  width: 100%; height: 0%; background: #F5A729;
  border-radius: 4px; transition: height 0.08s linear;
}
.intro-dots {
  position: absolute; left: 2rem; bottom: 2rem;
  display: flex; gap: 8px; z-index: 2;
}
.intro-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.34);
  transition: transform 0.3s, background 0.3s;
}
.intro-dot.is-active { background: #F5A729; transform: scale(1.35); }

@media (max-width: 992px) {
  .intro-scroll-section { min-height: auto; padding: 3rem 0; }
  .intro-story-shell {
    grid-template-columns: 1fr;
    padding-top: 3.5rem; padding-bottom: 3rem;
  }
  .intro-story-copy { max-width: 100%; text-align: left; }
  .intro-story-beats { min-height: 0; }
  .intro-beat { max-width: 100%; }
}

/* ── FOUNDER CONTRIBUTORS ── */
.founders-section {
  padding: 5rem 0;
  background: #f4f7fc;
  text-align: center;
}
.founders-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}
.founders-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.founder-logo-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 2.5rem;
  box-shadow: 0 2px 16px rgba(0,51,153,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.founder-logo-card:hover {
  box-shadow: 0 6px 28px rgba(0,51,153,0.13);
  transform: translateY(-2px);
}
.founder-logo-card img {
  display: block;
  max-height: 72px;
  max-width: 220px;
  object-fit: contain;
}

/* ── PATHWAYS — infinity loop interactive diagram ── */
.pathways-new-section {
  padding: 6rem 0;
  background: #f4f7fc;
}
.p8-instruction {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  background: #003399;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.p8-wrap { margin: 1.35rem 0 0; }

.p8-svg-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 8px 34px;
}
.p8-svg {
  width: 100%; height: auto;
  display: block;
  cursor: default;
}

/* Loop hover glow */
.p8-loop { transition: filter 0.4s ease, opacity 0.4s ease; }
.p8-loop-blue:hover,
.p8-loop-blue.p8-active { filter: drop-shadow(0 0 12px rgba(0,51,153,0.48)); opacity: 1; }
.p8-loop-green:hover,
.p8-loop-green.p8-active { filter: drop-shadow(0 0 12px rgba(45,140,82,0.46)); opacity: 1; }
.p8-loop-blue.p8-inactive { opacity: 0.22; filter: none; }
.p8-loop-green.p8-inactive { opacity: 0.22; filter: none; }
.p8-loop-hit {
  fill: transparent;
  stroke: transparent;
  pointer-events: all;
}

/* SVG arrow labels */
.p8-arrow-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  text-anchor: middle; font-weight: 600;
}
.p8-arrow-blue  { fill: #003399; }
.p8-arrow-green { fill: #2d8c52; }
.p8-side-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.p8-side-lbl-blue { fill: #003399; }
.p8-side-lbl-gold { fill: #8a5a00; }
.p8-side-lbl-green { fill: #2d6e3e; }

/* SVG loop inner labels */
.p8-lbl-inner {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  text-anchor: middle; fill: rgba(255,255,255,0.82);
}
.p8-lbl-pct {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px; font-weight: 700;
  text-anchor: middle; fill: rgba(255,255,255,0.6);
}

.p8-diagram-wrap { max-width: 900px; margin: 0 auto; }
.p8-svg-container { position: relative; }
.p8-node-trigger { cursor: pointer; opacity: 0.72; transition: opacity 0.3s ease; }
.p8-node-trigger:hover,
.p8-node-trigger.p8-node-active { opacity: 1; }
.p8-node-stroke-blue { stroke: #1d4fbe; }
.p8-node-stroke-green { stroke: #6fae3c; }

.p8-corner-copy {
  position: absolute;
  width: 244px;
  cursor: pointer;
  /* Full opacity so text contrast is not blended down (WCAG / Axe). */
  opacity: 1;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.35rem 0.25rem 0.15rem;
  box-sizing: border-box;
}
/* Dim non-focused corners without lowering foreground opacity (keeps AAA contrast). */
.p8-svg-container.p8-hover-mode .p8-corner-copy:not(.p8-node-active):not(:hover) {
  opacity: 1;
  border-color: rgba(0, 51, 153, 0.12);
  box-shadow: none;
  transform: translateY(0) scale(0.985);
}
.p8-svg-container.p8-hover-mode .p8-corner-copy.p8-node-active {
  opacity: 1;
  transform: translateY(-2px) scale(1);
  border-color: rgba(0, 51, 153, 0.22);
  box-shadow: 0 8px 24px rgba(7, 28, 73, 0.12);
}
.p8-corner-copy:hover,
.p8-corner-copy.p8-node-active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(0, 51, 153, 0.18);
  box-shadow: 0 6px 20px rgba(7, 28, 73, 0.08);
}
.p8-corner-title {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: #0a1628 !important;
  font-weight: 700;
}
.p8-corner-copy p {
  margin: 0.45rem 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: #141c2e !important;
  line-height: 1.55;
}
.p8-corner-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
}
.p8-corner-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  line-height: 0;
}
.p8-corner-icon svg { width: 100%; height: 100%; }
.p8-corner-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}
.p8-tl .p8-corner-icon,
.p8-bl .p8-corner-icon { color: #1d5fc7; }
.p8-tr .p8-corner-icon,
.p8-br .p8-corner-icon { color: #6fae3c; }
.p8-corner-copy.p8-tl { left: -2px; top: -2px; text-align: left; }
.p8-corner-copy.p8-tr { right: -2px; top: -2px; text-align: left; }
.p8-corner-copy.p8-bl { left: -2px; bottom: -2px; text-align: left; }
.p8-corner-copy.p8-br { right: -2px; bottom: -2px; text-align: left; }
.p8-hover-popup {
  position: fixed;
  z-index: 1200;
  width: min(540px, 52vw);
  max-height: 70vh;
  overflow: auto;
  background: rgba(255,255,255,0.98);
  border: 1px solid #d9e6f5;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(7, 28, 73, 0.24);
  padding: 0.9rem 1rem 0.8rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}
.p8-hover-popup.show { opacity: 1; transform: translateY(0); }
.p8-hover-popup .p8-panel-head {
  padding: 0 0 0.6rem;
  background: transparent;
  border-bottom: 1px solid #e5edf7;
}
.p8-hover-popup .p8-panel-num {
  font-size: 2rem;
  color: #003399;
}
.p8-hover-popup .p8-panel-eyebrow { color: #003399; }
.p8-hover-popup .p8-panel-title { color: #003399; }
.p8-hover-popup[data-p="3"] .p8-panel-num,
.p8-hover-popup[data-p="4"] .p8-panel-num { color: #2d8c52; }
.p8-hover-popup[data-p="3"] .p8-panel-eyebrow,
.p8-hover-popup[data-p="4"] .p8-panel-eyebrow { color: #2d8c52; }
.p8-hover-popup[data-p="3"] .p8-panel-title,
.p8-hover-popup[data-p="4"] .p8-panel-title { color: #2d8c52; }
.p8-hover-popup .p8-panel-body { padding: 0.8rem 0 0; gap: 1rem; }
.p8-hover-popup .p8-tags { padding: 0.3rem 0 0; }
.p8-labels,
.p8-detail { display: none !important; }

@media (max-width: 1100px) {
  .p8-svg-container { padding: 48px 10px 44px; }
  .p8-corner-copy { width: 214px; }
}
@media (max-width: 920px) {
  .p8-corner-copy {
    position: static;
    width: 100%;
    padding: 0.5rem 0.2rem;
    transform: none !important;
  }
  .p8-svg-container { display: grid; gap: 0.6rem; padding: 0; }
  .p8-hover-popup { display: none !important; }
}

/* Label row below SVG */
.p8-labels {
  display: flex;
  gap: 3px;
  margin: 1.5rem auto 2.5rem;
  max-width: 780px;
}
.p8-label-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: white;
  border: none;
  border-top: 2px solid #e4eaf3;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: border-top-color 0.2s, background 0.2s;
  border-radius: 0 0 6px 6px;
}
.p8-label-item:hover { background: #eef3fc; border-top-color: #003399; }
.p8-label-item.active { border-top-color: #003399; background: #e6f1fb; }
.p8-label-item[data-p="3"].active,
.p8-label-item[data-p="4"].active { border-top-color: #2d8c52; background: #eaf5ef; }
.p8-label-item[data-p="3"]:hover,
.p8-label-item[data-p="4"]:hover { border-top-color: #2d8c52; }
.p8-label-num {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  color: #4a5f80; flex-shrink: 0; padding-top: 1px;
}
.p8-label-item.active .p8-label-num { color: #003399; }
.p8-label-item[data-p="3"].active .p8-label-num,
.p8-label-item[data-p="4"].active .p8-label-num { color: #2d8c52; }
.p8-label-text { font-size: 12px; color: #3d4f68; line-height: 1.4; }
.p8-label-item.active .p8-label-text { color: #0a1628; font-weight: 500; }

/* Detail panel */
.p8-detail {
  background: white;
  border-radius: 16px;
  border: 1px solid #e4eaf3;
  overflow: hidden;
  min-height: 300px;
  max-width: 960px;
  margin: 0 auto;
}
.p8-panel { display: none; animation: p8FadeIn 0.35s ease; }
.p8-panel.active { display: block; }
@keyframes p8FadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.p8-panel-head {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.75rem 2.5rem;
  border-bottom: 1px solid #e4eaf3;
  background: #f4f7fc;
}
.p8-panel-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem; color: #003399; line-height: 1; flex-shrink: 0;
}
.p8-panel[data-p="3"] .p8-panel-num,
.p8-panel[data-p="4"] .p8-panel-num { color: #2d8c52; }
.p8-panel-eyebrow {
  font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase;
  color: #003399; font-weight: 500; margin-bottom: 0.3rem;
}
.p8-panel[data-p="3"] .p8-panel-eyebrow,
.p8-panel[data-p="4"] .p8-panel-eyebrow { color: #2d8c52; }
.p8-panel-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: #0a1628; line-height: 1.2;
}
.p8-panel-body {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 2rem; padding: 2rem 2.5rem;
}
.p8-bullets p {
  font-size: 14px; color: #1f2a44; line-height: 1.7;
  padding-left: 1rem; border-left: 2px solid #003399;
  margin-bottom: 0.75rem;
}
.p8-panel[data-p="3"] .p8-bullets p,
.p8-panel[data-p="4"] .p8-bullets p { border-left-color: #2d8c52; }
.p8-expand-label {
  font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase;
  color: #0055CC; font-weight: 500; margin-bottom: 0.75rem;
}
.p8-expand p { font-size: 13px; color: #3d4f68; line-height: 1.75; margin-bottom: 0.6rem; }
.p8-tags { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 2.5rem 1.75rem; }

@media (max-width: 768px) {
  .p8-panel-body { grid-template-columns: 1fr; }
  .p8-labels { flex-wrap: wrap; }
  .p8-label-item { flex: 1 1 45%; }
}

/* ── WHY WMO — static layout + auto image cycle ── */
.whywmo-section {
  background: #060e1f;
  position: relative;
  min-height: 100vh;
}
.whywmo-outer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Left: photo panel */
.whywmo-photo-panel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.whywmo-photo {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.9s ease;
}
.whywmo-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(6,14,31,0.15) 0%,
    rgba(6,14,31,0.55) 100%
  );
  z-index: 1;
}
.whywmo-photo-text {
  position: absolute;
  bottom: 3rem; left: 2.5rem; right: 2.5rem;
  z-index: 2;
}
.whywmo-eyebrow {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #F5A729; font-weight: 500; margin-bottom: 0.75rem;
}
.whywmo-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: white; line-height: 1.15;
}
.whywmo-headline em { color: #F5A729; font-style: italic; }

/* Right: compact static list (same layout style as before) */
.whywmo-roles {
  padding: 2.4rem 3rem 2.4rem 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}
.whywmo-role {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: transparent;
  opacity: 1;
  transform: none;
  transition: none;
}
.whywmo-role:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.whywmo-role.wr-active { opacity: 1; }
.whywmo-role-num {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  color: #ffda66;
  line-height: 1.2;
  min-width: 28px;
  margin-top: 0.1rem;
  flex-shrink: 0;
  transition: none;
}
.whywmo-role.wr-active .whywmo-role-num { color: #ffda66; }
.whywmo-role-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.04rem, 1.35vw, 1.26rem);
  color: #ffffff; line-height: 1.2;
  margin-bottom: 0.24rem;
}
.whywmo-role-body {
  font-size: 12.5px; color: rgba(255,255,255,0.9);
  line-height: 1.45; max-width: 100%;
}
.whywmo-role.wr-active .whywmo-role-body { color: #ffffff; }

@media (max-width: 900px) {
  .whywmo-outer { grid-template-columns: 1fr; min-height: auto; }
  .whywmo-photo-panel { height: 44vh; }
  .whywmo-roles { padding: 1.6rem 1rem 2rem; }
}

/* ── WHAT SECTION — three-act interactive ── */

/* ACT 1: Scroll-driven sentence reveal — full viewport, cinematic */
.what-act1 { position: relative; z-index: 1; isolation: isolate; }
.what-act1-sticky {
  position: relative;
  height: 100vh; display: flex; align-items: center; justify-content: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  background: #ffffff;
  z-index: 2;
  overflow: visible;
}
.what-act1-scroll-space { height: 0; display: none; }

/* Override page-section inside act1 to go wider */
.what-act1-sticky .page-section {
  max-width: 1040px;
  width: 92%;
}
#what-sentences {
  max-width: 920px;
  margin: 0 auto;
}
.what-act1-sticky .s-eyebrow {
  max-width: 920px;
  margin: 0 auto 1.35rem;
}

.what-sentence {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.45rem, 2.55vw, 2.15rem);
  color: #003399; line-height: 1.3;
  margin-bottom: 1.55rem;
  transition: color 0.45s ease;
}
.what-sentence.s-active { color: #003399; }
.what-sentence.s-done { color: #003399; }

#what-progress-track {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  width: 200px; height: 2px; background: #e4eaf3; border-radius: 2px;
}
#what-progress-bar {
  height: 100%; width: 0%; background: #003399;
  border-radius: 2px; transition: width 0.1s linear;
}

/* Gold accent for Act 1 sentence highlights */
/* Muted vs active: both meet AAA for large display type (≥4.5:1 on white). */
.wgold {
  color: #8a5a00;
  font-weight: 700;
  transition: color 0.35s ease;
}
.what-sentence.s-active .wgold {
  color: #8a5a00;
  font-weight: 700;
}
.what-sentence.s-done .wgold {
  color: #8a5a00;
  font-weight: 700;
}

/* Act 1 remains plain white and static. */

.what-sentence-target {
  margin-bottom: 0;
  display: flex; flex-direction: column; gap: 0.9rem;
}

.wt-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  color: #6b4500;
  transition: color 0.6s ease;
}
.what-sentence.s-active .wt-eyebrow { color: #6b4500; }

/* Scroll-driven counter */
.wt-num-wrap {
  display: flex; align-items: baseline; gap: 0.15em; line-height: 1;
}
.wt-goal-visual {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.wt-progress-circle {
  width: 72px;
  height: 72px;
}
.wt-progress-circle svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.wt-progress-track {
  fill: none;
  stroke: rgba(245,167,41,0.2);
  stroke-width: 8;
}
.wt-progress-value {
  fill: none;
  stroke: #F5A729;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 201.06;
  stroke-dashoffset: 201.06;
  transition: stroke-dashoffset 0.08s linear;
}
.wt-usd {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.9vw, 2.4rem);
  color: #8a5a00;
  transition: color 0.6s ease;
}
.what-sentence.s-active .wt-usd { color: #8a5a00; }
.wt-counter {
  font-family: 'Montserrat', sans-serif; font-style: italic;
  font-size: clamp(3.2rem, 6.2vw, 5.6rem);
  color: #8a5a00; line-height: 1;
  transition: color 0.6s ease;
}
.what-sentence.s-active .wt-counter { color: #8a5a00; }
.wt-unit {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.85rem, 4vw, 3.35rem);
  color: #8a5a00;
  transition: color 0.6s ease;
}
.what-sentence.s-active .wt-unit { color: #8a5a00; }

.wt-years {
  font-family: 'Montserrat', sans-serif; font-weight: 300;
  font-size: clamp(0.98rem, 1.1vw, 1.24rem);
  color: #4a5f80;
  letter-spacing: 0.06em;
  transition: color 0.6s ease;
}
.what-sentence.s-active .wt-years { color: #4a5f80; }

/* Scroll-fill bar */
.wt-bar-track {
  width: 100%; max-width: 460px; height: 2px;
  background: rgba(245,167,41,0.12); border-radius: 2px; overflow: hidden;
  margin-top: 0.2rem;
}
.wt-bar-fill {
  height: 100%; width: 0%; background: #F5A729;
  border-radius: 2px; transition: width 0.06s linear;
}

.wt-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(1.18rem, 1.7vw, 1.5rem);
  color: #0d2342;
  letter-spacing: 0.01em;
  line-height: 1.72;
  max-width: 560px;
  text-shadow: 0 0 0 rgba(0,0,0,0.01);
  transition: color 0.6s ease;
}
.what-sentence.s-active .wt-sub { color: #081a33; }

/* ACT 2: Static full-screen governance section */
.what-act2 {
  position: relative;
  min-height: 100vh;
}
.what-act2-sticky {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #001240;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  align-items: stretch;
}
.what-act2-left {
  padding: 6rem 6% 5rem 8%;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.what-act2-eyebrow {
  font-family: 'Montserrat', sans-serif; font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700;
  color: #ffda66; margin-bottom: 2rem;
}
.what-act2-title {
  font-family: 'Montserrat', sans-serif; font-weight: 500;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: white; line-height: 1.25; margin-bottom: 1.75rem;
}
.what-act2-intro {
  font-family: 'Montserrat', sans-serif; font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.86); line-height: 1.75; margin-bottom: 2.5rem;
}
.what-act2-vbar {
  width: 2px; height: 130px; background: rgba(255,255,255,0.08);
  border-radius: 2px; overflow: hidden;
}
.what-act2-vbar-fill {
  width: 100%; height: 100%; background: #F5A729;
  border-radius: 2px; transition: height 0.06s linear;
}
.what-act2-right {
  position: relative;
  height: 100%;
  padding: 5.25rem 8% 5rem 6%;
  display: flex;
  align-items: center;
}
.what-act2-items {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.what-act2-item {
  position: relative;
  opacity: 1;
  transform: none;
  transition: none;
  pointer-events: auto;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.1rem 1.2rem 1rem;
  background: rgba(255,255,255,0.02);
}
.what-act2-num {
  font-family: 'Montserrat', sans-serif; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  color: #F5A729; margin-bottom: 1.5rem; display: block;
}
.what-act2-label {
  font-family: 'Montserrat', sans-serif; font-weight: 500;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  color: white; line-height: 1.45; margin-bottom: 0.55rem;
}
.what-act2-body {
  font-family: 'Montserrat', sans-serif; font-weight: 300;
  font-size: clamp(0.94rem, 1.18vw, 1.05rem);
  color: rgba(255,255,255,0.9); line-height: 1.72;
}
.what-act2-closing-label {
  font-family: 'Montserrat', sans-serif; font-weight: 400;
  font-size: clamp(1.08rem, 1.45vw, 1.25rem);
  color: rgba(255,255,255,0.92); line-height: 1.6;
}
.what-act2-closing-label em { color: #F5A729; font-style: normal; font-weight: 500; }

@media (max-width: 860px) {
  .what-act2-sticky { grid-template-columns: 1fr; align-items: flex-start; padding-top: 0; min-height: auto; }
  .what-act2-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 3rem 5% 2rem; }
  .what-act2-right { padding: 2rem 5%; align-items: flex-start; }
}

/* ACT 3: Cause → Effect selector */
.what-act3 { padding: 6rem 0; background: #ffffff; }
.what-act3-header { margin-bottom: 3rem; }
.what-act3-header .s-title em { color: #003399; font-style: italic; }

.what-act3-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 0; border: 1px solid #e4eaf3; border-radius: 16px;
  overflow: hidden;
}
.what-act3-left { background: #f4f7fc; }
.what-fn-row {
  width: 100%; display: flex; align-items: center; gap: 1.25rem;
  padding: 1.5rem 2rem;
  border: none; border-bottom: 1px solid #e4eaf3;
  background: transparent; text-align: left; cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.2s;
}
.what-fn-row:last-child { border-bottom: none; }
.what-fn-row:hover { background: #eaf0fb; }
.what-fn-row.active { background: #ffffff; border-left: 3px solid #003399; }
.what-fn-num {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  color: #2f4668; flex-shrink: 0; width: 24px;
}
.what-fn-row.active .what-fn-num { color: #003399; }
.what-fn-label {
  font-size: 14px; font-weight: 500; color: #3d4f68; line-height: 1.4;
}
.what-fn-row.active .what-fn-label { color: #0a1628; }

.what-act3-right { padding: 3rem; position: relative; min-height: 280px; }
.what-fn-panel {
  display: none;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.what-fn-panel.active {
  display: block; opacity: 1; transform: translateY(0);
}
.what-fn-supports {
  font-family: 'Montserrat', sans-serif; font-weight: 400;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem); color: #3d4f68; line-height: 1.8;
  margin-bottom: 1.75rem;
}
.what-fn-divider {
  height: 1px; background: #e4eaf3; margin-bottom: 1.75rem;
}
.what-fn-why-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #002a82;
  font-weight: 700;
  margin-bottom: 1rem;
}
.what-fn-why-shared {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  color: #1f3557;
  line-height: 1.72;
  margin-bottom: 0.9rem;
}
.what-fn-outcome {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: #003399; line-height: 1.45; font-style: italic;
  padding-left: 1rem; border-left: 2px solid #F5A729;
}

@media (max-width: 860px) {
  .what-act3-grid { grid-template-columns: 1fr; }
  .what-act1-sticky { align-items: center; height: 100vh; padding-top: 1.6rem; padding-bottom: 1.6rem; }
  .what-target-card { grid-template-columns: 1fr; }
}
@media (max-height: 860px) {
  .what-act1-sticky { align-items: center; height: 100vh; padding-top: 1rem; padding-bottom: 1rem; }
  .what-act1-scroll-space { height: 0; display: none; }
  .wt-progress-circle { width: 62px; height: 62px; }
  .wt-sub { font-size: 1.2rem; line-height: 1.62; }
}
@media (min-width: 1700px) {
  .wt-years { font-size: 1.3rem; }
  .wt-sub {
    font-size: 1.58rem;
    line-height: 1.68;
    max-width: 720px;
  }
}


/* ── WHY NOW — cinematic cards ── */
.whynow-section {
  position: relative;
  background: #060e1f;
  min-height: auto;
  padding: 6rem 0 2.5rem;
  overflow: visible;
  border-top: 1px solid rgba(245,167,41,0.35);
}
.whynow-header { max-width: 680px; margin-bottom: 3.5rem; }
.whynow-eyebrow {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #F5A729; font-weight: 500; margin-bottom: 0.75rem;
}
.whynow-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  color: white; line-height: 1.1; margin-bottom: 1rem;
}
.whynow-title em { color: #F5A729; font-style: italic; }
.whynow-sub {
  font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.8; max-width: 580px;
}
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Grid: row 1 = 2 cols, row 2 = 3 cols */
.whynow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: minmax(250px, auto) minmax(220px, auto) minmax(220px, auto);
  gap: 3px;
  min-height: 0;
}
/* Row 1: Climate | AI — half each */
.whynow-grid .whynow-card:nth-child(1) { grid-column: span 3; }
.whynow-grid .whynow-card:nth-child(2) { grid-column: span 3; }
/* Row 2: Insurance | Backbone — half each */
.whynow-grid .whynow-card:nth-child(3) { grid-column: span 3; }
.whynow-grid .whynow-card:nth-child(4) { grid-column: span 3; }
/* Row 3: Supply chains — full width */
.whynow-grid .whynow-card:nth-child(5) { grid-column: span 6; }

.whynow-card {
  position: relative; overflow: hidden;
  --wn-focus: 0;
  --wn-shift: 0px;
  --wn-lift: 0px;
  min-height: 220px;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02) inset;
  cursor: default;
  transform: translateY(var(--wn-lift));
  transition: transform 0.2s linear, box-shadow 0.25s ease, border-color 0.25s ease;
}
/* Background images — dramatic, high-stakes photography */
.wn-climate  { background: url('https://images.unsplash.com/photo-1586348943529-beaae6c28db9?w=1200&q=90&fit=crop&crop=center') center/cover no-repeat; }
.wn-insurance { background: url('https://images.unsplash.com/photo-1547683905-f686c993aae5?w=1200&q=90&fit=crop&crop=center') center/cover no-repeat; }
.wn-supply   { background: url('https://images.unsplash.com/photo-1493946740644-2d8a1f1a6aff?w=1200&q=90&fit=crop&crop=center') center/cover no-repeat; }
.wn-ai       { background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1200&q=90&fit=crop&crop=center') center/cover no-repeat; }
.wn-backbone { background: url('https://images.unsplash.com/photo-1614730321146-b6fa6a46bcb4?w=1200&q=90&fit=crop&crop=center') center/cover no-repeat; }
.wn-climate  { --wn-accent: #ff8157; }
.wn-insurance { --wn-accent: #ffbe4d; }
.wn-supply   { --wn-accent: #7dc4ff; }
.wn-ai       { --wn-accent: #71ffd7; }
.wn-backbone { --wn-accent: #b598ff; }

/* Hover: subtle zoom */
.whynow-card::before {
  content: '';
  position: absolute; inset: 0;
  background: inherit;
  background-size: cover;
  transform: translateY(var(--wn-shift)) scale(calc(1.01 + var(--wn-focus) * 0.045));
  transition: transform 0.2s linear;
}
.whynow-card:hover::before { transform: translateY(var(--wn-shift)) scale(calc(1.04 + var(--wn-focus) * 0.045)); }
.whynow-card:hover {
  transform: translateY(calc(var(--wn-lift) - 4px));
  border-color: rgba(245,167,41,0.42);
  box-shadow: 0 16px 34px rgba(3,9,24,0.45), 0 0 0 1px rgba(245,167,41,0.18) inset;
}

/* Dark gradient overlay — heavy at bottom where text sits */
.whynow-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(6, 14, 31, 0.62);
}
/* WMO blue tint stripe at bottom edge */
.whynow-card-overlay::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--wn-accent, #F5A729) 0%, #F5A729 100%);
  opacity: 0.6;
  transition: opacity 0.3s ease, height 0.3s ease;
}
.whynow-card:hover .whynow-card-overlay::after { opacity: 1; height: 5px; }

.whynow-card-inner {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.75rem 2rem;
  transform: translateY(calc(var(--wn-focus) * -8px));
  transition: transform 0.2s linear;
}
.whynow-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: white; line-height: 1.2; margin-bottom: 0.5rem;
}
.whynow-card-body {
  font-size: 13px; color: rgba(255,255,255,0.88);
  line-height: 1.65; max-width: 380px;
}

@media (max-width: 900px) {
  .whynow-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }
  .whynow-grid .whynow-card:nth-child(n) { grid-column: span 1; min-height: 240px; }
  .whynow-grid .whynow-card:nth-child(1) { grid-column: span 2; }
}
@media (max-width: 600px) {
  .whynow-grid { grid-template-columns: 1fr; }
  .whynow-grid .whynow-card:nth-child(n) { grid-column: span 1; min-height: 220px; }
}

/* ── AAA hardening pass ── */
.wmo-nav-item,
.wmo-nav-cta,
.btn-primary,
.btn-outline,
.contact-email-btn,
.evidence-ref-toggle,
.skip-link {
  min-height: 44px;
  min-width: 44px;
}
.wmo-nav-item, .s-eyebrow, .hero-eyebrow, .evidence-kicker { font-size: 14px; }
.hero-stat-lbl, .scroll-hint-text, .tier-note, .footer-copy, .footer-link, .pile-card-label, .pile-card-src, .pile-card-tag { font-size: 13px; }
.crisis-sublabel, .contact-meta-item, .contact-email-note { font-size: 14px; }

/* Stronger text contrast on light surfaces */
.wmo-nav-item, .s-body, .what-card-body, .pathway-desc, .tier-name, .tier-amount span, .tier-perk, .step-desc, .evidence-body, .contact-cta-body {
  color: #1f2a44;
}
.tier-note, .contact-email-note, .footer-copy { color: #3b4866; }
.what-card-title, .s-eyebrow, .pathway-tag, .evidence-kicker, .nav-commons-label { color: #002a82; }

/* Stronger contrast in dark sections */
.hero-sub, .hero-stat-lbl, .scroll-hint-text, .crisis-subhead, .crisis-sublabel, .crisis-expand, .crisis-bottom, .footer-link, .pile-card-label, .pile-card-desc, .pile-card-src {
  color: rgba(255,255,255,0.92);
}
.footer-copy { color: rgba(255,255,255,0.85); }
.crisis-source-link, .pile-card-tag, .hero-eyebrow, .hero-title em, .crisis-num, .crisis-expand strong, .contact-title em {
  color: #ffda66;
}
.contact-sub, .contact-meta-item, .contact-meta-item strong, .crisis-label, .crisis-eyebrow {
  color: #ffffff;
}



.pathway-num { background: #003399; color: #ffffff; }
.pathway-item.open .pathway-num { background: #ffda66; color: #001a66; }

.hero-stat { background: #00245c; }
.hero-stat-val { color: #ffffff; }
.hero-stat-lbl { color: #e6edf8; }

/* Stronger focus and clear boundaries */
:focus-visible {
  outline: 3px solid #ffda66;
  outline-offset: 3px;
}
.hero-wrap :focus-visible,
.crisis-wrap :focus-visible,
.contact-section :focus-visible {
  outline-color: #ffffff;
}

/* ── HERO TEXT UPGRADE ── */
.hero-gold { color: #F5A729; }
.hero-sub-context {
  font-size: 14px; color: rgba(255,255,255,0.88); line-height: 1.7;
  max-width: 560px; margin-bottom: 2rem; letter-spacing: 0.01em;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-ready .hero-sub-context { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }

.hero-every-wrap {
  display: flex; flex-direction: column; gap: 0.35rem;
  max-width: 560px; margin-bottom: 1.75rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-ready .hero-every-wrap { opacity: 1; transform: translateY(0); transition-delay: 0.58s; }

.hero-every-line {
  display: flex; align-items: baseline; gap: 0.6rem;
  font-size: 20px; font-weight: 400; color: rgba(255,255,255,0.92);
  line-height: 1.3; letter-spacing: -0.01em;
}
.hero-every-dot {
  color: #F5A729; font-size: 22px; line-height: 1; flex-shrink: 0;
  margin-top: 1px;
}
.hero-every-line em {
  color: #F5A729; font-style: normal; font-weight: 500;
}

.hero-sub-close {
  max-width: 480px; margin-bottom: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 15px; font-style: italic;
  color: rgba(255,255,255,0.88); line-height: 1.65;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero-ready .hero-sub-close { opacity: 1; transform: translateY(0); transition-delay: 0.72s; }

/* Provide user control for moving background media */
.hero-motion-toggle {
  background: rgba(0, 26, 102, 0.92);
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  cursor: pointer;
}
.hero-motion-toggle[aria-pressed='true'] {
  background: #ffffff;
  color: #001a66;
  border-color: #001a66;
  text-shadow: none;
}
