/* ============ Catalyst Microsite — v3 ============ */
/* Strict aiEDU brand palette: Navy + Aqua + Mandarin (+ Light Grey, White). */
/* Signature offset drop-shadow treatment from readinessreport.aiedu.org. */

:root {
  /* Primary */
  --navy:      #222244;
  --aqua:      #00D9D3;
  /* Secondary */
  --mandarin:  #F5501C;
  --light-grey:#EAEAEA;
  --white:     #FFFFFF;

  /* Tints */
  --bg:           #ffffff;
  --bg-soft:      #f7f7f9;
  --bg-aqua:      #e8fbfb;
  --ink:          var(--navy);
  --ink-soft:     #3a3a52;
  --ink-muted:    #6a6a7d;
  --ink-subtle:   #a3a3b3;
  --rule:         #e6e6ec;
  --rule-strong:  #cdcdd4;

  --display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --body:    'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 22px;

  /* Brand drop-shadow style — offset, no blur, solid color */
  --shadow-card-offset:  8px 8px;
  --shadow-card-pop-md:  6px 6px;
  --shadow-card-pop-sm:  4px 4px;

  --container:        1200px;
  --container-narrow:  760px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }

a { color: var(--mandarin); text-decoration: none; font-weight: 500; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); }
h4 { font-size: 1.05rem; font-family: var(--body); font-weight: 700; letter-spacing: 0; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  display: inline-block;
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--mandarin);
  margin: 0 0 14px;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: var(--navy);
}
.nav__brand:hover { text-decoration: none; }
.nav__brand img { height: 84px; width: auto; }
.nav__brand-divider {
  height: 56px;
  width: 1px;
  background: var(--rule-strong);
}
.nav__brand-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a {
  text-decoration: none;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav__links a:hover { color: var(--mandarin); }
.nav__cta {
  background: var(--mandarin);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.08s, box-shadow 0.18s;
  box-shadow: 3px 3px 0 var(--navy);
}
.nav__cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--navy);
  text-decoration: none !important;
}
@media (max-width: 760px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .nav__brand-label, .nav__brand-divider { display: none; }
}

/* ============ HERO ============ */
.hero {
  padding: 88px 0 110px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 217, 211, 0.10) 0%, transparent 55%),
    radial-gradient(circle at 8% 88%, rgba(245, 80, 28, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero__inner { max-width: 940px; }
.hero__title {
  font-size: clamp(2.8rem, 6.2vw, 4.6rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--navy);
}
.hero__title em {
  font-style: normal;
  color: var(--mandarin);
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.06em;
  height: 0.16em;
  background: var(--aqua);
  z-index: -1;
}
.hero__sub {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 38em;
}
.hero__ctas { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.08s, box-shadow 0.18s, background 0.15s, color 0.15s;
}
.btn--primary {
  background: var(--mandarin);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--navy);
}
.btn--primary:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--navy);
}
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 4px 4px 0 var(--aqua);
}
.btn--white:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--aqua);
}

/* ============ STATS ============ */
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
@media (max-width: 920px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .stats__grid { grid-template-columns: 1fr; gap: 28px; } }
.stat__value {
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--white);
}
.stat__label {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 12px;
  color: rgba(255,255,255,0.92);
}
.stat__footnote {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  line-height: 1.5;
}
.stat__bar {
  display: inline-block;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 12px;
}

/* ============ SECTION ============ */
.section { padding: 100px 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-aqua); }
.section--ink { background: var(--navy); color: var(--white); }
.section__head { max-width: 760px; margin: 0 0 56px; }
.section__head h2 { margin-bottom: 18px; }
.section__head p { color: var(--ink-soft); font-size: 1.12rem; line-height: 1.55; }
.section--ink h2 { color: var(--white); }
.section--ink .section__head p { color: rgba(255,255,255,0.82); }

/* ============ THEMES (3-column intro) ============ */
.themes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .themes { grid-template-columns: 1fr; } }
.theme {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1.5px solid var(--navy);
  position: relative;
  box-shadow: var(--shadow-card-pop-md) 0 var(--accent, var(--aqua));
  transition: transform 0.12s, box-shadow 0.12s;
}
.theme:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--accent, var(--aqua));
}
.theme h3 { margin-bottom: 12px; color: var(--navy); }
.theme p { color: var(--ink-soft); margin: 0; }

/* ============ GALLERY ============ */
.filters {
  display: flex;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.filter-chip {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.filter-chip:hover { background: var(--bg-aqua); }
.filter-chip.is-active {
  background: var(--navy);
  color: var(--white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 980px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 620px) { .gallery { grid-template-columns: 1fr; gap: 28px; } }

.card {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  cursor: pointer;
  transition: transform 0.14s, box-shadow 0.14s;
  display: flex;
  flex-direction: column;
  text-align: left;
  font-family: var(--body);
  border: 1.5px solid var(--navy);
  padding: 0;
  width: 100%;
  text-decoration: none;
  min-height: 380px;
  box-shadow: var(--shadow-card-offset) 0 var(--card-shadow, var(--aqua));
}
.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--card-shadow, var(--aqua));
}

.card__type {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card__type::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}
.card__expand-hint {
  margin-top: auto;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.95;
}
.card__expand-hint::after {
  content: '→';
  transition: transform 0.15s;
}
.card:hover .card__expand-hint::after { transform: translateX(4px); }

/* Voice card — solid color background */
.card--voice {
  padding: 32px;
  background: var(--card-color, var(--navy));
  color: var(--white);
}
.card--voice[style*="00D9D3"] { color: var(--navy); }
.card--voice[style*="00D9D3"] .card__quote { color: var(--navy); }
.card--voice[style*="00D9D3"] .card__type,
.card--voice[style*="00D9D3"] .card__role { color: var(--navy); opacity: 0.7; }
.card--voice[style*="00D9D3"] .card__speaker,
.card--voice[style*="00D9D3"] .card__expand-hint { color: var(--navy); }

.card--voice .card__type { color: rgba(255,255,255,0.85); }
.card--voice .card__quote {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.6vw, 1.42rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--white);
}
.card--voice .card__quote::before { content: '"'; opacity: 0.55; }
.card--voice .card__quote::after { content: '"'; opacity: 0.55; }
.card--voice .card__speaker {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--white);
}
.card--voice .card__role {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
}
.card--voice .card__expand-hint { color: var(--white); }

/* Project card — white bg with colored top accent stripe */
.card--project {
  background: var(--white);
  color: var(--navy);
  padding: 32px;
  position: relative;
}
.card--project::before {
  content: '';
  position: absolute;
  top: 0; left: -1.5px; right: -1.5px;
  height: 6px;
  background: var(--card-color, var(--aqua));
  border-radius: var(--radius) var(--radius) 0 0;
}
.card--project .card__type { color: var(--mandarin); margin-top: 10px; }
.card--project .card__logo-wrap {
  height: 44px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}
.card--project .card__logo-wrap img { max-height: 44px; max-width: 60%; object-fit: contain; }
.card--project .card__logo-placeholder {
  height: 44px;
  display: flex;
  align-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.card--project .card__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 12px;
}
.card--project .card__tagline {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.card--project .card__expand-hint { color: var(--mandarin); }
.card--project .card__partners {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 18px;
}

/* ============ MODAL ============ */
.modal {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100vh;
}
.modal::backdrop {
  background: rgba(34, 34, 68, 0.7);
  backdrop-filter: blur(4px);
}
.modal__inner {
  position: relative;
  background: var(--white);
  border-radius: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: flex;
  justify-content: center;
}
@media (min-width: 720px) {
  .modal__inner {
    border-radius: 16px;
    max-width: 760px;
    height: auto;
    max-height: 90vh;
    margin: 5vh auto;
    border: 1.5px solid var(--navy);
    box-shadow: 8px 8px 0 var(--modal-shadow, var(--aqua));
  }
}
.modal__content {
  padding: 56px 40px 64px;
  width: 100%;
  max-width: 680px;
}
@media (max-width: 720px) {
  .modal__content { padding: 32px 24px 48px; }
}
.modal__close {
  position: sticky;
  top: 16px;
  margin-left: auto;
  background: var(--white);
  border: 1.5px solid var(--navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  margin-right: 16px;
  margin-top: 16px;
  transition: background 0.15s;
  font-family: var(--body);
  color: var(--navy);
  line-height: 1;
}
.modal__close:hover { background: var(--aqua); }

.modal__type {
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mandarin);
  margin-bottom: 16px;
}
.modal__type::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  margin-right: 8px;
  vertical-align: 0.05em;
}
.modal__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 20px;
}
.modal__lede {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.modal__body { font-size: 1rem; line-height: 1.7; color: var(--ink); }
.modal__body p { margin-bottom: 1.1em; }
.modal__pull {
  margin: 28px 0;
  padding: 22px 26px;
  border-left: 5px solid var(--mandarin);
  background: var(--bg-soft);
  border-radius: 0 8px 8px 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--navy);
}
.modal__pull-attr {
  display: block;
  font-style: normal;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-top: 12px;
}
.modal__meta {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.modal__meta a { color: var(--mandarin); font-weight: 600; }
.modal__meta strong { color: var(--navy); }

/* ============ MAP ============ */
.map-wrap {
  background: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 6px 6px 0 var(--mandarin);
}
.map-grid {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-auto-rows: 1fr;
  gap: 6px;
  aspect-ratio: 11 / 7;
  margin-bottom: 24px;
}
.map-tile {
  background: var(--light-grey);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-subtle);
  letter-spacing: 0.05em;
  position: relative;
  cursor: default;
  transition: background 0.15s;
}
.map-tile--hq {
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
}
.map-tile--hq:hover { background: var(--mandarin); }
.map-tile--reach {
  background: rgba(0, 217, 211, 0.45);
  color: var(--navy);
  cursor: pointer;
}
.map-tile--reach:hover { background: var(--aqua); }
.map-tile--hq::after,
.map-tile--reach::after {
  content: attr(data-count);
  position: absolute;
  top: 3px;
  right: 4px;
  font-size: 0.6rem;
  background: var(--mandarin);
  color: var(--white);
  border-radius: 99px;
  padding: 0 5px;
  font-weight: 700;
}
.map-tile--reach::after {
  background: var(--navy);
  color: var(--white);
}
.map-tile--empty { background: transparent; }
.map-legend {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--ink-muted);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.map-legend__swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 6px;
}
.map-legend__swatch--hq { background: var(--navy); }
.map-legend__swatch--reach { background: rgba(0, 217, 211, 0.45); }
.map-legend__swatch--inactive { background: var(--light-grey); }
.map-legend__national {
  font-style: italic;
  color: var(--ink-muted);
  font-size: 0.82rem;
}
.state-detail__group { margin-top: 12px; }
.state-detail__group:first-child { margin-top: 0; }
.state-detail__label {
  display: inline-block;
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--mandarin);
  margin-bottom: 6px;
}
.state-detail__national {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 217, 211, 0.4);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-muted);
}
.state-detail {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bg-aqua);
  border-radius: 8px;
  border-left: 5px solid var(--aqua);
  display: none;
}
.state-detail.is-open { display: block; }
.state-detail h4 { margin: 0 0 8px; color: var(--navy); }
.state-detail ul { margin: 0; padding-left: 18px; color: var(--ink-soft); }
.state-detail li { margin-bottom: 6px; }
.state-detail a { color: var(--mandarin); font-weight: 600; margin-left: 6px; }

/* ============ APPLY CTA ============ */
.apply {
  padding: 110px 0 120px;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 140px;
}
.apply::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 217, 211, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 92% 90%, rgba(245, 80, 28, 0.14) 0%, transparent 50%);
  pointer-events: none;
}
.apply > * { position: relative; }
.apply__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.apply h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  margin-bottom: 18px;
  font-weight: 800;
}
.apply h2 em {
  font-style: normal;
  color: var(--aqua);
}
.apply__lede {
  color: rgba(255,255,255,0.85);
  font-size: 1.12rem;
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto;
}

.apply__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto 52px;
}
@media (max-width: 760px) { .apply__stats { grid-template-columns: 1fr; gap: 14px; } }
.apply__stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 20px 22px;
  text-align: center;
}
.apply__stat-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--aqua);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 4px;
}
.apply__stat-label {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
}

.apply__panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
@media (max-width: 920px) { .apply__panels { grid-template-columns: 1fr; gap: 18px; } }
.apply__panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 28px;
}
.apply__panel h3 {
  color: var(--aqua);
  font-size: 1.15rem;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.apply__panel-lede {
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  margin-bottom: 16px;
}
.apply__panel ul,
.apply__panel ol.apply__paths {
  margin: 0 0 16px;
  padding-left: 20px;
  color: rgba(255,255,255,0.92);
  font-size: 0.95rem;
  line-height: 1.55;
}
.apply__panel li { margin-bottom: 6px; }
.apply__panel li strong { color: var(--white); }
.apply__panel ol.apply__paths { padding-left: 24px; }
.apply__panel ol.apply__paths li::marker { color: var(--aqua); font-weight: 700; }
.apply__note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0;
}
.apply__note strong { color: var(--mandarin); }
.apply__note--neg strong { color: var(--mandarin); }

.apply__cta {
  text-align: center;
  margin-top: 8px;
}
.apply__cta .btn--primary {
  background: var(--mandarin);
  font-size: 1.08rem;
  padding: 16px 34px;
  box-shadow: 5px 5px 0 var(--aqua);
}
.apply__cta .btn--primary:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--aqua);
}
.apply__sub {
  margin: 22px auto 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  max-width: 620px;
}
.apply__sub a { color: rgba(255,255,255,0.92); text-decoration: underline; }

/* Scroll-margin so anchored sections clear the sticky nav (now ~120px tall) */
#about, #gallery, #map, #apply { scroll-margin-top: 130px; }

/* ============ FOOTER ============ */
.footer {
  padding: 44px 0;
  background: var(--light-grey);
  color: var(--ink-muted);
  font-size: 0.88rem;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer a { color: var(--navy); font-weight: 600; }

/* ============ UTILITY ============ */
.is-hidden { display: none !important; }
