:root {
  --navy: #0c2547;
  --navy-2: #12376a;
  --blue: #1b6fe8;
  --sky: #55c8ff;
  --teal: #00a99d;
  --green: #13b981;
  --gold: #ffb800;
  --orange: #f97316;
  --ink: #102033;
  --muted: #64748b;
  --line: #dbe7f3;
  --soft: #f4f8fc;
  --soft-2: #edf5ff;
  --white: #ffffff;
  --danger: #b42318;
  --shadow: 0 24px 70px rgba(12, 37, 71, .14);
  --shadow-soft: 0 16px 40px rgba(12, 37, 71, .10);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 36px)); margin: 0 auto; }
.sr-only, .skip-link:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; left: 18px; top: 18px; z-index: 9999;
  background: var(--gold); color: var(--ink); padding: 10px 14px; border-radius: 10px;
}

.announcement {
  background: linear-gradient(90deg, var(--navy), #0a5f99);
  color: #e8f7ff;
  font-size: .94rem;
}
.announcement__inner {
  min-height: 42px;
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.announcement a { color: var(--gold); font-weight: 800; border-bottom: 1px solid rgba(255,184,0,.6); }
.pulse-dot {
  width: 10px; height: 10px; border-radius: 99px; background: var(--gold);
  box-shadow: 0 0 0 0 rgba(255,184,0,.7); animation: pulse 1.8s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(255,184,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,184,0,0); } }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219,231,243,.8);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-size: 1.05rem; letter-spacing: -.02em; color: var(--navy); }
.brand small { color: var(--muted); font-size: .72rem; }
.primary-nav { display: flex; align-items: center; gap: 18px; color: #314154; font-weight: 700; font-size: .92rem; }
.primary-nav a:not(.btn) { position: relative; }
.primary-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: var(--soft); border-radius: 12px; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 99px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 12px 18px; border-radius: 999px;
  font-weight: 850; border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--small { min-height: 38px; padding: 9px 14px; font-size: .88rem; }
.btn--large { min-height: 52px; padding: 15px 22px; }
.btn--primary { background: linear-gradient(135deg, var(--blue), #0b52b9); color: var(--white); box-shadow: 0 14px 28px rgba(27,111,232,.22); }
.btn--primary:hover { box-shadow: 0 18px 36px rgba(27,111,232,.28); }
.btn--ghost { background: var(--white); color: var(--navy); border-color: var(--line); box-shadow: 0 8px 26px rgba(12, 37, 71, .07); }
.btn--light { background: var(--white); color: var(--navy); border-color: rgba(255,255,255,.2); }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

.section { padding: 92px 0; }
.section--soft { background: linear-gradient(180deg, var(--soft), #fff); }
.section--glow { position: relative; overflow: hidden; }
.section--glow::before {
  content: ""; position: absolute; width: 850px; height: 850px; border-radius: 999px;
  right: -390px; top: -390px; background: radial-gradient(circle, rgba(85,200,255,.30), rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.section--dark { background: radial-gradient(circle at top right, #1e5799, var(--navy) 52%, #061a33); color: var(--white); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-weight: 900; text-transform: uppercase; letter-spacing: .12em;
  font-size: .76rem; margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--gold); border-radius: 99px; }
.eyebrow--light { color: #9be6ff; }
h1, h2, h3 { margin: 0; color: inherit; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.55rem, 6vw, 5.3rem); max-width: 860px; }
h2 { font-size: clamp(2rem, 3.7vw, 3.45rem); }
h3 { font-size: 1.22rem; }
p { margin: 0; }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: #42546a; max-width: 740px; margin: 24px 0 0; }
.hero { padding: 84px 0 70px; background: linear-gradient(180deg, #f8fbff 0%, #ffffff 74%); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) 430px; gap: 54px; align-items: center; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.trust-strip span {
  display: inline-flex; align-items: center; gap: 8px; color: #334155; background: #fff; border: 1px solid var(--line);
  padding: 9px 12px; border-radius: 999px; box-shadow: 0 8px 22px rgba(12, 37, 71, .06); font-weight: 700; font-size: .88rem;
}
.trust-strip span::before { content: "✓"; color: var(--green); font-weight: 900; }
.disclaimer-mini { margin-top: 18px; color: var(--muted); font-size: .88rem; max-width: 760px; }
.disclaimer-mini.light { color: rgba(255,255,255,.7); }

.hero-card {
  position: relative; background: rgba(255,255,255,.88); border: 1px solid rgba(219,231,243,.9);
  box-shadow: var(--shadow); border-radius: var(--radius-xl); padding: 24px; overflow: hidden;
}
.hero-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; background: linear-gradient(90deg, var(--gold), var(--sky), var(--teal)); }
.hero-card__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.status-pill { background: #eefcf7; color: #08735f; font-size: .78rem; font-weight: 900; padding: 7px 10px; border-radius: 999px; }
.journey-lines { display: grid; gap: 15px; }
.journey-step { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: start; }
.journey-step > span {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; font-weight: 900;
  color: var(--navy); background: var(--soft-2); border: 1px solid var(--line);
}
.journey-step.active > span { color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); border-color: transparent; }
.journey-step div { border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.journey-step:last-child div { border-bottom: 0; padding-bottom: 0; }
.journey-step strong { display: block; color: var(--navy); }
.journey-step small { display: block; color: var(--muted); margin-top: 3px; }
.hero-card__metric { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.hero-card__metric div { background: var(--soft); padding: 16px; border-radius: 18px; border: 1px solid var(--line); }
.hero-card__metric strong { display: block; font-size: 1.7rem; color: var(--blue); line-height: 1; }
.hero-card__metric span { display: block; margin-top: 6px; color: #42546a; font-size: .85rem; font-weight: 700; }

.source-note { padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fbfdff; }
.source-note__inner { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; color: var(--muted); font-size: .9rem; }
.source-note strong { color: var(--navy); }
.source-note a { color: var(--blue); font-weight: 900; }

.section-heading { text-align: center; max-width: 820px; margin: 0 auto 44px; }
.section-heading p { color: var(--muted); font-size: 1.06rem; margin-top: 15px; }
.section-heading.compact { max-width: 720px; margin-bottom: 30px; }
.split-heading { display: grid; grid-template-columns: 1fr 410px; gap: 32px; align-items: end; margin-bottom: 38px; }
.split-heading p { color: var(--muted); font-size: 1.02rem; }

.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.program-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-soft); min-height: 310px; display: flex; flex-direction: column;
}
.program-card.featured { background: linear-gradient(180deg, #ffffff, #eff7ff); border-color: #b8d7ff; }
.program-card__tag {
  align-self: flex-start; background: #eef5ff; color: var(--blue); font-size: .76rem; font-weight: 900;
  padding: 7px 10px; border-radius: 999px; margin-bottom: 18px;
}
.program-card h3 { color: var(--navy); }
.program-card p { color: var(--muted); margin: 13px 0 18px; }
ul { margin: 0; padding-left: 18px; color: #46586e; }
li + li { margin-top: 7px; }
.program-card ul { margin-top: auto; }

.city-dashboard { display: grid; grid-template-columns: 430px 1fr; gap: 24px; align-items: stretch; }
.city-map-card, .city-list, .diagnostic-card, .partner-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft);
}
.city-map-card { display: grid; place-items: center; padding: 24px; min-height: 410px; }
.city-list { padding: 24px; display: grid; gap: 18px; }
.city-group h3 { color: var(--navy); margin-bottom: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips span { background: var(--soft); border: 1px solid var(--line); border-radius: 999px; padding: 8px 11px; font-weight: 800; color: #41536a; font-size: .9rem; }
.gate-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 22px; }
.gate-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 20px; box-shadow: 0 12px 30px rgba(12, 37, 71, .06); }
.gate-card strong { display: block; font-size: 2rem; color: var(--blue); line-height: 1; }
.gate-card span { display: block; font-weight: 900; color: var(--navy); margin-top: 7px; }
.gate-card small { display: block; color: var(--muted); margin-top: 4px; }

.track-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.track-tab {
  border: 1px solid var(--line); background: #fff; color: #41536a; font-weight: 900;
  border-radius: 999px; padding: 11px 16px; cursor: pointer;
}
.track-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.track-panel { display: none; }
.track-panel.active { display: block; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.timeline div { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 23px; box-shadow: var(--shadow-soft); overflow: hidden; }
.timeline div::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--gold), var(--blue)); }
.timeline span { display: inline-flex; color: var(--blue); font-weight: 900; margin-bottom: 12px; }
.timeline strong { display: block; color: var(--navy); font-size: 1.06rem; line-height: 1.25; }
.timeline p { color: var(--muted); margin-top: 9px; font-size: .95rem; }

.placement-grid { display: grid; grid-template-columns: 1fr 520px; gap: 52px; align-items: center; }
.placement-grid p:not(.disclaimer-mini) { margin: 18px 0 26px; color: rgba(255,255,255,.80); font-size: 1.08rem; }
.score-card { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-xl); padding: 24px; box-shadow: 0 28px 70px rgba(0,0,0,.2); }
.score-card__header { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 18px; }
.score-card__header strong { font-size: 1.25rem; }
.score-card__header span { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); padding: 8px 10px; border-radius: 12px; font-weight: 900; }
.score-row { display: grid; grid-template-columns: 1fr 130px 34px; gap: 10px; align-items: center; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.14); }
.score-row span { color: rgba(255,255,255,.86); }
meter { width: 100%; height: 10px; }
meter::-webkit-meter-bar { background: rgba(255,255,255,.18); border-radius: 999px; border: 0; }
meter::-webkit-meter-optimum-value { background: linear-gradient(90deg, var(--gold), var(--sky)); border-radius: 999px; }

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-soft); }
.price-card--highlight { border-color: #9fc7ff; background: linear-gradient(180deg, #fff, #eef6ff); }
.price-card span { display: inline-flex; color: var(--blue); font-weight: 900; font-size: .8rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .08em; }
.price-card h3 { color: var(--navy); font-size: 1.45rem; }
.price-card p { color: var(--muted); margin: 12px 0 18px; }
.price-card ul { font-size: .92rem; }

.diagnostic-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 34px; }
.diagnostic-card p { color: var(--muted); max-width: 760px; margin-top: 12px; }

.apply-section { background: linear-gradient(180deg, #fff, #f6faff); }
.apply-grid { display: grid; grid-template-columns: 420px 1fr; gap: 36px; align-items: start; }
.apply-copy { position: sticky; top: 105px; }
.apply-copy p { color: var(--muted); margin-top: 15px; }
.apply-steps { display: grid; gap: 10px; margin: 24px 0; }
.apply-steps div { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 12px; }
.apply-steps strong { width: 38px; height: 38px; border-radius: 14px; display: grid; place-items: center; background: var(--soft-2); color: var(--blue); }
.apply-steps span { font-weight: 800; color: #34465b; }
.contact-card { background: var(--navy); color: #fff; padding: 22px; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.contact-card p { color: rgba(255,255,255,.7); margin: 8px 0 12px; }
.contact-card a { display: block; color: #9be6ff; font-weight: 800; margin-top: 6px; }

.enrollment-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); overflow: hidden; }
.form-progress { height: 7px; background: #e9f2fb; }
.form-progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--blue), var(--teal)); transition: width .22s ease; }
.form-step { border: 0; margin: 0; padding: 28px; display: none; }
.form-step.active { display: block; }
legend { color: var(--navy); font-size: 1.35rem; font-weight: 900; margin-bottom: 22px; letter-spacing: -.02em; }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row.two { grid-template-columns: repeat(2, 1fr); }
.form-row.three { grid-template-columns: repeat(3, 1fr); }
label { display: grid; gap: 7px; color: #334155; font-weight: 800; font-size: .92rem; }
input, select, textarea {
  width: 100%; border: 1px solid #cfddec; border-radius: 13px; padding: 12px 13px; background: #fff; color: var(--ink);
  outline: none; transition: border-color .18s ease, box-shadow .18s ease;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(27,111,232,.12); }
input.invalid, select.invalid, textarea.invalid { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(180,35,24,.10); }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 18px; }
.check-grid label, .consent-box label { display: flex; align-items: flex-start; gap: 9px; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; padding: 12px; font-weight: 800; }
.check-grid input, .consent-box input { width: auto; margin-top: 4px; }
.city-readiness { background: #fff8e6; border: 1px solid #ffe0a3; color: #714b00; border-radius: 16px; padding: 14px; font-weight: 800; }
.consent-box { display: grid; gap: 10px; margin-top: 16px; }
.form-errors { color: var(--danger); padding: 0 28px; font-weight: 800; min-height: 0; }
.form-errors:not(:empty) { margin-bottom: 12px; }
.form-actions { display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding: 20px 28px; background: #fbfdff; }
.hidden { display: none !important; }


.btn--soft { background: #eefcf7; color: #08735f; border-color: #b8efe4; box-shadow: 0 10px 26px rgba(0,169,157,.12); }
.lead-lite { color: #42546a; font-size: 1.08rem; max-width: 760px; margin-top: 18px; }
.scholarship-section { background: linear-gradient(180deg, #ffffff, #f5fbff 55%, #ffffff); }
.scholarship-hero { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: center; background: linear-gradient(135deg, #ffffff, #eef8ff); border: 1px solid #c9e3ff; border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); padding: 34px; margin-bottom: 24px; }
.scholarship-actions { margin-top: 24px; }
.access-fund-card { min-height: 230px; border-radius: 28px; padding: 28px; color: #fff; background: radial-gradient(circle at top right, rgba(255,184,0,.38), transparent 40%), linear-gradient(145deg, var(--navy), #075f7d 68%, #078b80); box-shadow: 0 22px 50px rgba(12, 37, 71, .22); display: flex; flex-direction: column; justify-content: flex-end; }
.access-fund-card::before { content: "♥"; width: 62px; height: 62px; border-radius: 20px; display: grid; place-items: center; background: rgba(255,255,255,.13); color: var(--gold); font-size: 2.2rem; margin-bottom: auto; }
.access-fund-card strong { font-size: 1.5rem; line-height: 1.08; }
.access-fund-card span { color: rgba(255,255,255,.82); margin-top: 10px; }
.scholarship-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.scholarship-grid--six { grid-template-columns: repeat(3, 1fr); }
.scholarship-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-soft); min-height: 230px; }
.scholarship-card--dark { background: radial-gradient(circle at top right, rgba(85,200,255,.22), transparent 42%), var(--navy); color: #fff; border-color: rgba(255,255,255,.10); }
.scholarship-card--dark p { color: rgba(255,255,255,.78); }
.scholarship-card--accent { background: linear-gradient(180deg, #fffaf0, #ffffff); border-color: #ffe1a5; }
.card-number { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 14px; background: #eaf7ff; color: var(--blue); font-weight: 950; margin-bottom: 15px; }
.scholarship-card--dark .card-number { background: rgba(255,255,255,.13); color: var(--gold); }
.scholarship-card h3 { color: var(--navy); margin-bottom: 10px; }
.scholarship-card--dark h3 { color: #fff; }
.scholarship-card p, .mini-steps { color: var(--muted); }
.mini-steps { padding-left: 20px; margin: 0; font-weight: 700; }
.assurance-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.assurance-pills span { background: #eefcf7; color: #08735f; border: 1px solid #b9efe3; border-radius: 999px; padding: 8px 10px; font-size: .84rem; font-weight: 900; }
.assurance-pills.big span { font-size: .92rem; padding: 10px 12px; }
.infographic-panel { margin-top: 28px; display: grid; grid-template-columns: 390px 1fr; gap: 28px; align-items: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); padding: 28px; }
.infographic-panel h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.8rem); }
.infographic-panel p { color: var(--muted); margin-top: 14px; }
.infographic-panel picture, .infographic-panel img { border-radius: 22px; overflow: hidden; }
.infographic-panel img { box-shadow: 0 18px 48px rgba(12,37,71,.18); border: 1px solid #d8e6f3; }
.infographic-panel--vertical { grid-template-columns: 1fr; max-width: 950px; margin: 0 auto; }
.scholarship-note-form { background: #fff8e6; border: 1px solid #ffe0a3; color: #714b00; border-radius: 16px; padding: 14px; font-size: .92rem; font-weight: 700; margin-top: 16px; }
.access-fund-quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); padding: 34px; min-height: 330px; display: flex; flex-direction: column; justify-content: center; }
.access-fund-quote span { color: var(--gold); font-size: 5rem; line-height: .7; font-family: Georgia, serif; }
.access-fund-quote strong { display: block; color: var(--navy); font-size: 2rem; line-height: 1.08; letter-spacing: -.035em; }
.access-fund-quote p { color: var(--muted); font-size: 1.1rem; margin-top: 14px; }
.split-scholarship { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.clean-list { list-style: none; padding-left: 0; margin-top: 16px; }
.clean-list li { background: var(--soft); border: 1px solid var(--line); border-radius: 16px; padding: 14px; color: #475569; }
.dark-cta { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #fff; box-shadow: none; }
.dark-cta p { color: rgba(255,255,255,.76); }

.partner-card { padding: 34px; display: flex; justify-content: space-between; gap: 28px; align-items: center; }
.partner-card p { color: var(--muted); max-width: 760px; margin-top: 12px; }

.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 12px; }
details { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 30px rgba(12, 37, 71, .06); overflow: hidden; }
summary { list-style: none; cursor: pointer; padding: 20px 22px; font-weight: 900; color: var(--navy); display: flex; justify-content: space-between; gap: 18px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--blue); font-size: 1.5rem; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { padding: 0 22px 20px; color: var(--muted); }

.site-footer { background: #061a33; color: rgba(255,255,255,.76); padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .9fr .7fr; gap: 44px; }
.brand--footer strong { color: #fff; }
.brand--footer small { color: rgba(255,255,255,.68); }
.site-footer p { margin-top: 18px; max-width: 500px; }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.site-footer a { display: block; color: #9be6ff; margin: 9px 0; font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 36px; padding-top: 18px; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .86rem; }
.footer-bottom p { margin: 0; }

.modal { position: fixed; inset: 0; z-index: 2000; background: rgba(6,26,51,.62); display: none; align-items: center; justify-content: center; padding: 20px; }
.modal[aria-hidden="false"] { display: flex; }
.modal__dialog { position: relative; background: #fff; border-radius: var(--radius-xl); padding: 34px; max-width: 560px; width: 100%; box-shadow: 0 36px 90px rgba(0,0,0,.24); text-align: center; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border: 0; border-radius: 99px; background: var(--soft); font-size: 1.4rem; cursor: pointer; }
.success-icon { width: 58px; height: 58px; border-radius: 99px; display: grid; place-items: center; background: #e7fbf3; color: #08735f; font-size: 2rem; font-weight: 900; margin: 0 auto 16px; }
.modal__dialog h2 { color: var(--navy); }
.modal__dialog p { color: var(--muted); margin-top: 12px; }
.modal-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.privacy-page { padding: 80px 0; }
.privacy-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); border-radius: var(--radius-xl); padding: 34px; }
.privacy-card h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); }
.privacy-card h2 { font-size: 1.5rem; color: var(--navy); margin-top: 30px; }
.privacy-card p, .privacy-card li { color: var(--muted); }
.privacy-card p { margin-top: 14px; }

@media (max-width: 1040px) {
  .hero__grid, .city-dashboard, .placement-grid, .apply-grid { grid-template-columns: 1fr; }
  .hero-card, .city-map-card, .score-card { max-width: 620px; margin: 0 auto; width: 100%; }
  .program-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .scholarship-hero, .infographic-panel, .split-scholarship { grid-template-columns: 1fr; }
  .scholarship-grid, .scholarship-grid--six { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .split-heading { grid-template-columns: 1fr; }
  .apply-copy { position: static; }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute; top: 76px; left: 18px; right: 18px; display: none; flex-direction: column; align-items: stretch;
    background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 18px; box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 6px 0; }
  .section { padding: 70px 0; }
  .hero { padding-top: 60px; }
  .gate-grid, .timeline, .program-grid, .pricing-grid, .scholarship-grid, .scholarship-grid--six { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .diagnostic-card, .partner-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .announcement__inner { justify-content: flex-start; padding: 8px 0; }
  .hero__actions, .modal-actions { flex-direction: column; align-items: stretch; }
  .hero-card__metric, .form-row.two, .form-row.three, .check-grid { grid-template-columns: 1fr; }
  .score-row { grid-template-columns: 1fr; }
  .score-row b { display: none; }
  .form-step { padding: 22px; }
  .form-actions { padding: 18px 22px; }
  h1 { font-size: 2.35rem; }
}

/* Revised neutral-platform additions */
.option-card { min-height: 360px; }
.option-actions { margin-top: 20px; }
.program-grid--options .program-card { position: relative; }
.launch-gates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.launch-gates article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-soft); }
.launch-gates article strong { display: block; color: var(--navy); font-size: 1.15rem; margin-bottom: 8px; }
.launch-gates article span { color: var(--muted); }
.launch-gates--wide { grid-template-columns: repeat(4, 1fr); }
.timeline--five { grid-template-columns: repeat(5, 1fr); }
.form-help { color: var(--muted); margin: -10px 28px 20px; }
.form-step .form-help { margin: -10px 0 20px; }
.subpage-hero h1 { font-size: clamp(2.35rem, 5vw, 4.45rem); }
.boundary-card { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.boundary-card > div { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); padding: 22px; }
.boundary-card strong { display: block; font-size: 1.1rem; margin-bottom: 12px; }
.boundary-card ul { color: rgba(255,255,255,.82); }
.boundary-card li + li { margin-top: 8px; }
.primary-nav a[aria-current="page"] { color: var(--blue); }
@media (max-width: 1050px) {
  .timeline--five { grid-template-columns: repeat(2, 1fr); }
  .launch-gates, .launch-gates--wide { grid-template-columns: repeat(2, 1fr); }
  .boundary-card { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .timeline--five, .launch-gates, .launch-gates--wide { grid-template-columns: 1fr; }
}

/* SEO expansion pages */
.chips--links a { display:inline-flex; align-items:center; background:#eef5ff; color:var(--blue); border:1px solid #cfe2ff; border-radius:999px; padding:8px 12px; font-weight:900; margin:0 8px 8px 0; }
.chips--links a:hover { background:#e0efff; transform:translateY(-1px); }
.seo-note { background:#f8fbff; border:1px solid var(--line); border-radius:18px; padding:16px; color:var(--muted); }
.program-card .option-actions { margin-top:auto; padding-top:18px; }
