:root {
  --ink: #11131a;
  --muted: #5c6478;
  --paper: #f7f8fa;
  --blue: #00274c;
  --maize: #ffcb05;
  --cyan: #37d7ff;
  --pink: #ff4f9a;
  --orange: #ff7a2f;
  --panel: #ffffff;
  --line: rgba(0, 39, 76, 0.14);
  --radius: 2px;
  --container: 1140px;
  --header-height: 64px;
  --section-pad: 80px;
  --shadow: 0 1px 0 var(--line), 0 12px 32px rgba(0, 39, 76, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

main section[id],
main aside[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.visually-hidden {
  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;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  /* Fallback only; the full-bleed intro covers the viewport so CSS/video seams can't show. */
  background: #00223e;
  clip-path: inset(0 0 0 0);
  transition: clip-path 420ms cubic-bezier(0.76, 0, 0.24, 1);
}

.loader.is-hidden {
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
  transition:
    clip-path 420ms cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0s linear 420ms;
}

html.intro-seen .loader {
  display: none;
  visibility: hidden;
  pointer-events: none;
}

.loader-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.loader-skip {
  position: absolute;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 2;
  min-height: 44px;
  min-width: 44px;
  padding: 10px 16px;
  color: var(--blue);
  background: var(--maize);
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.loader-skip:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.loader.is-hidden .loader-skip {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .loader,
  .loader.is-hidden {
    transition: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  height: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.site-header.is-raised {
  box-shadow: 0 8px 28px rgba(0, 39, 76, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 32px);
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  color: var(--blue);
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: min(48vw, 190px);
  object-fit: contain;
  border-radius: 3px;
}

.footer-brand .brand-logo {
  height: 32px;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--blue);
  background: var(--maize);
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  font-weight: 900;
}

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-primary {
  display: flex;
  gap: 2px;
  align-items: center;
}

.nav-primary a {
  padding: 6px 10px;
  color: rgba(0, 39, 76, 0.72);
  border-bottom: 2px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 160ms ease, border-color 160ms ease;
}

.nav-primary a:hover,
.nav-primary a:focus-visible {
  color: var(--blue);
  background: transparent;
  border-bottom-color: rgba(255, 203, 5, 0.55);
  outline: none;
}

.nav-primary a.is-active,
.nav-primary a[aria-current="page"] {
  color: var(--blue);
  background: transparent;
  border-bottom-color: var(--maize);
  box-shadow: none;
}

.nav .nav-cta.button {
  min-height: 36px;
  margin-left: 4px;
  padding-inline: 14px;
  font-size: 13px;
}

.nav .nav-cta.button::before {
  display: none;
}

.nav .nav-cta.button:hover {
  transform: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  align-content: center;
  justify-items: center;
  gap: 4px;
  background: var(--blue);
  border: 0;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  background: #fff;
  border-radius: 1px;
}

.hero {
  padding: calc(var(--header-height) + 48px) 0 0;
  background:
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 40px;
  align-items: stretch;
  padding-bottom: 40px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 {
  max-width: 12ch;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
}

.hero h1 {
  max-width: 17ch;
  font-size: clamp(44px, 5vw, 64px);
}

h2 {
  max-width: 18ch;
  color: var(--blue);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
}

h3 {
  color: var(--blue);
  font-size: 22px;
  font-weight: 800;
}

.hero-lede,
.page-hero p,
.section-heading p,
.section-intro p {
  max-width: 56ch;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  transition:
    background 140ms ease,
    color 140ms ease;
}

.button:hover {
  background: rgba(0, 39, 76, 0.04);
}

.button:focus-visible,
.nav a:focus-visible,
.nav-toggle:focus-visible,
.program-tile:focus-visible,
.roadmap-item:focus-visible,
.route-card:focus-visible,
.hero-panel-cta:focus-visible,
.program-back-link:focus-visible,
.hero-mcombinator:focus-visible {
  outline: 2px solid var(--maize);
  outline-offset: 2px;
}

.button.primary {
  color: var(--blue);
  background: var(--maize);
}

.button.primary:hover {
  background: #f5c200;
}

.button.secondary {
  color: var(--blue);
  background: #fff;
}

.button.secondary.dark {
  color: var(--blue);
  background: transparent;
}

.button.primary.dark {
  color: var(--maize);
  background: var(--blue);
  border-color: var(--blue);
}

.button.primary.dark:hover {
  background: #001a33;
}

.button.light {
  border-color: #fff;
}

.button.primary.light {
  color: var(--blue);
  background: #fff;
}

.button.primary.light:hover {
  background: #f0f0f0;
}

.button.secondary.light {
  color: #fff;
  background: transparent;
}

.button.secondary.light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  display: grid;
  gap: 0;
  min-height: 420px;
  background: var(--blue);
  border: 1px solid rgba(0, 39, 76, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel-header {
  display: grid;
  gap: 10px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel-logo {
  display: block;
  width: min(100%, 220px);
  height: auto;
}

.hero-panel-header > span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stats-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stat-chip {
  display: grid;
  gap: 4px;
  padding: 16px 14px;
  background: rgba(0, 0, 0, 0.12);
}

.hero-stat-chip strong {
  color: var(--maize);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1;
  font-weight: 900;
}

.hero-stat-chip span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-pathway {
  display: grid;
  gap: 0;
  padding: 8px 0 0;
}

.hero-path-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 24px;
  border-left: 3px solid transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-path-step:last-of-type {
  border-bottom: 0;
}

.hero-path-step:nth-child(2) {
  border-left-color: var(--maize);
}

.hero-path-num {
  color: var(--maize);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.hero-path-step strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-path-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.hero-panel-cta {
  display: block;
  padding: 16px 24px;
  color: var(--blue);
  background: var(--maize);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 140ms ease;
}

.hero-panel-cta:hover {
  background: #f5c200;
}

.ticker {
  background: var(--maize);
  border-top: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
}

.ticker-inner {
  overflow: hidden;
  padding: 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker span {
  padding: 12px 20px;
  color: var(--blue);
  border-right: 1px solid rgba(0, 39, 76, 0.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-pad {
  padding: var(--section-pad) 0;
}

.pathfinder {
  color: #fff;
  background: var(--blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.pathfinder-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 48px;
  align-items: start;
}

.pathfinder h2,
.pathfinder h3 { color: #fff; }
.pathfinder .eyebrow { color: var(--maize); }
.pathfinder-intro > p:last-child { max-width: 42ch; color: rgba(255, 255, 255, 0.72); }
.pathfinder-tool { display: grid; grid-template-columns: minmax(180px, 0.78fr) minmax(0, 1.22fr); border: 1px solid rgba(255, 255, 255, 0.18); }
.pathfinder-choices { display: grid; align-content: start; background: rgba(0, 0, 0, 0.14); }
.path-choice { min-height: 48px; padding: 11px 16px; color: rgba(255, 255, 255, 0.76); text-align: left; background: transparent; border: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); font-size: 14px; font-weight: 800; cursor: pointer; }
.path-choice:hover,
.path-choice:focus-visible,
.path-choice.is-active { color: var(--blue); background: var(--maize); outline: 0; }
.path-result { display: grid; min-height: 336px; padding: 30px; align-content: center; background: #fff; }
.path-result h3 { margin-bottom: 12px; color: var(--blue); font-size: clamp(26px, 3vw, 36px); }
.path-result > p:not(.path-result-label) { color: var(--muted); }
.path-result-label { margin-bottom: 12px; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.path-result .button { width: fit-content; margin-top: 12px; }

.section-divider {
  border-top: 1px solid var(--line);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 28px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat,
.intro-card,
.program-card,
.roadmap-item,
.person-card,
.contact-panel,
.route-card,
.join-step {
  background: var(--panel);
}

.stat {
  display: flex;
  min-height: 160px;
  padding: 24px;
  flex-direction: column;
  justify-content: end;
}

.stat strong {
  color: var(--blue);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  font-weight: 900;
}

.stat span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 32px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.program-tile {
  display: grid;
  grid-template-rows: 180px auto;
  overflow: hidden;
  background: var(--panel);
  transition: background 140ms ease;
}

.program-tile:hover {
  background: rgba(255, 203, 5, 0.1);
}

.program-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--blue);
}

.program-tile-body {
  display: grid;
  gap: 6px;
  padding: 18px 20px 22px;
}

.program-num {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.program-tile h3 {
  margin-bottom: 0;
  color: var(--blue);
  font-size: 20px;
}

.program-tile p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.program-page-hero {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: start;
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.program-page-copy h1 {
  max-width: 16ch;
}

.program-page-media {
  overflow: hidden;
  background: var(--blue);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.program-page-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.program-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.program-detail-copy p {
  color: var(--muted);
  font-size: 18px;
}

.program-detail-copy p + p {
  margin-top: 16px;
}

.program-detail-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.program-detail-list li {
  padding: 12px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.program-director-card {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.program-directors {
  display: grid;
  gap: 12px;
}

.program-directors > .eyebrow {
  margin-bottom: 0;
}

.program-directors .program-director-card {
  box-shadow: none;
}

.program-directors .initial-photo {
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  font-size: 42px;
}

.program-director-card img {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 16px;
  object-fit: cover;
  background: var(--blue);
  border-radius: var(--radius);
}

.program-director-card h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.program-director-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.program-director-card a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.program-back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.history-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  background: var(--blue);
}

.history-card + .history-card {
  border-left: 1px solid var(--line);
}

.history-card:nth-child(2) {
  background: #fff;
}

.history-card:nth-child(3) {
  background: var(--maize);
}

.history-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--maize);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.history-card:nth-child(2) span,
.history-card:nth-child(3) span {
  color: var(--blue);
}

.history-card:nth-child(1) h3,
.history-card:nth-child(1) p {
  color: #fff;
}

.history-card:nth-child(2) {
  background: #fff;
}

.history-card:nth-child(2) h3,
.history-card:nth-child(2) p,
.history-card:nth-child(2) span {
  color: var(--blue);
}

.history-card:nth-child(3) h3,
.history-card:nth-child(3) p {
  color: var(--blue);
}

.history-card h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.history-card p {
  margin: 0;
  font-size: 15px;
  opacity: 0.88;
}

.mcombinator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.mco-copy {
  padding: 36px;
  color: var(--ink);
  background: #fff;
}

.mco-copy h2 {
  color: var(--blue);
}

.mco-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.mco-copy .eyebrow.dark {
  color: var(--blue);
}

.mco-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mco-panel {
  display: grid;
  gap: 0;
  padding: 0;
  background: var(--blue);
}

.mco-line {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 16px;
  padding: 22px 24px;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mco-line:last-child {
  border-bottom: 0;
}

.mco-line span {
  grid-row: 1 / 3;
  color: var(--maize);
  font-size: 22px;
  font-weight: 900;
}

.mco-line strong {
  color: #fff;
  font-size: 20px;
}

.mco-line p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.roadmap-grid,
.contact-routes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.work-tile {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--blue);
}

.work-tile.large {
  grid-row: span 2;
  min-height: 520px;
}

.work-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 500ms ease;
}

.work-tile:hover img {
  transform: scale(1.03);
}

.work-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 40%, rgba(0, 39, 76, 0.9) 100%);
}

.work-tile figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.roadmap-item,
.route-card {
  min-height: 200px;
  padding: 24px;
  color: var(--ink);
  transition: background 140ms ease;
}

.roadmap-item h3,
.route-card h3 {
  color: var(--blue);
}

.roadmap-item:hover {
  background: rgba(255, 203, 5, 0.1);
}

.roadmap-item span,
.route-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.roadmap-item p,
.route-card p {
  color: var(--muted);
  font-size: 15px;
}

.cta-inner {
  display: grid;
  min-height: 320px;
  align-content: center;
  padding: 40px;
  color: #fff;
  background: var(--blue);
  border: 1px solid rgba(0, 39, 76, 0.2);
  border-radius: var(--radius);
}

.cta-inner h2 {
  max-width: 20ch;
  color: #fff;
}

.cta-inner .eyebrow {
  color: var(--maize);
}

.page-hero {
  display: grid;
  width: min(var(--container), calc(100% - 40px));
  min-height: 420px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 56px) 0 48px;
  align-content: end;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 18ch;
}

.team-section {
  padding: var(--section-pad) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.team-grid.directors {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.person-card {
  overflow: hidden;
  border-top: 3px solid var(--maize);
}

.person-card img,
.initial-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  background: var(--blue);
}

.person-photo-portrait {
  object-fit: cover;
  object-position: center 12%;
}

.initial-photo {
  display: grid;
  place-items: center;
  color: var(--maize);
  font-size: 56px;
  font-weight: 900;
}

.person-card div:last-child {
  padding: 16px;
}

.person-card h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.contact-panel {
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-panel h2 { color: #fff; }
.contact-panel .eyebrow.dark { color: var(--maize); }
.contact-panel p:not(.eyebrow) { color: rgba(255, 255, 255, 0.72); }

.contact-routes {
  grid-template-columns: 1fr;
  gap: 0;
  background: transparent;
  border: 0;
  border-top: 2px solid var(--blue);
  border-radius: 0;
  overflow: visible;
}

.route-card {
  display: grid;
  grid-template-columns: 52px minmax(140px, 0.62fr) minmax(0, 1fr);
  gap: 16px;
  min-height: 0;
  padding: 24px 4px;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.route-card:hover {
  padding-left: 14px;
  background: rgba(255, 203, 5, 0.12);
}

.route-card span,
.route-card h3,
.route-card p { margin: 0; }

.route-card span { color: var(--orange); }

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle span {
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.person-card p {
  min-height: 44px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.person-card a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.person-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 2px;
}

.person-bio summary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 2px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: start;
}

.contact-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.join-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.join-step {
  padding: 28px 24px;
}

.join-step span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.join-step h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.join-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.site-footer {
  position: relative;
  margin-top: 0;
  padding: 0 0 clamp(24px, 4vw, 32px);
  color: rgba(255, 255, 255, 0.84);
  background: #00274c;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer::before {
  display: none;
}

.footer-shell {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  padding-top: clamp(32px, 4vw, 44px);
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.footer-links-row a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-links-row .footer-programs-link {
  display: none;
}

.footer-links-row a:hover,
.footer-links-row a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 203, 5, 0.65);
  text-underline-offset: 3px;
  outline: none;
}

.footer-links-break {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(18px, 3vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
}

.footer-base p {
  margin: 0;
}

.footer-base a {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
  text-decoration: none;
}

.footer-base a:hover,
.footer-base a:focus-visible {
  color: #fff;
  text-decoration: underline;
  outline: none;
}

@media (max-width: 980px) {
  .footer-shell {
    gap: 20px;
    padding-top: 24px;
  }

  .footer-links-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
  }

  .footer-links-row > a:nth-child(-n + 8) {
    display: none;
  }

  .footer-links-row .footer-programs-link {
    display: flex;
  }

  .footer-links-row a {
    justify-content: flex-start;
    min-height: 56px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-links-row a:nth-of-type(even) {
    border-right: 0;
  }

  .footer-links-row a:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .footer-links-row a:hover,
  .footer-links-row a:focus-visible {
    color: var(--blue);
    background: var(--maize);
    text-decoration: none;
  }

  .footer-links-break {
    display: none;
  }

  .footer-base {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Alumni network */
.alumni-hero {
  padding: calc(var(--header-height) + clamp(76px, 10vw, 132px)) 0 clamp(84px, 11vw, 140px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(0, 39, 76, 0.98), rgba(0, 59, 111, 0.95)),
    var(--blue);
  overflow: hidden;
}

.alumni-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}

.alumni-hero-copy .eyebrow {
  color: var(--maize);
}

.alumni-hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(56px, 7.2vw, 102px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.alumni-hero-copy > p:not(.eyebrow) {
  max-width: 61ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.58;
}

.alumni-founder-source {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.alumni-founder-source a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration-color: var(--maize);
  text-underline-offset: 3px;
}

.alumni-founder-portrait {
  width: min(100%, 520px);
  margin: 0 0 0 auto;
  padding: 0;
  color: var(--blue);
  background: var(--maize);
  border-left: 10px solid var(--maize);
  box-shadow: 24px 24px 0 rgba(255, 203, 5, 0.16);
}

.alumni-founder-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d5d7d5;
}

.alumni-founder-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.alumni-founder-portrait figcaption {
  display: grid;
  gap: 3px;
  padding: 22px 24px 24px;
}

.alumni-founder-portrait strong {
  font-size: clamp(23px, 2.5vw, 34px);
  letter-spacing: -0.035em;
}

.alumni-founder-portrait span {
  font-size: 14px;
  font-weight: 800;
}

.alumni-founder-portrait small {
  margin-top: 7px;
  color: rgba(0, 39, 76, 0.62);
  font-size: 11px;
}

.alumni-founder-story {
  background: #fffef8;
}

.alumni-founder-story.section-pad {
  padding-bottom: clamp(44px, 5vw, 68px);
}

.alumni-founder-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.alumni-founder-intro {
  padding: clamp(18px, 2vw, 30px) 0 0;
}

.alumni-founder-intro h2 {
  max-width: 12.5ch;
  margin-bottom: 24px;
  font-size: clamp(44px, 5.2vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.alumni-founder-intro > p:not(.eyebrow) {
  max-width: 49ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.alumni-founder-intro .text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(0, 39, 76, 0.28);
  text-underline-offset: 4px;
}

.alumni-founder-intro .text-link:hover,
.alumni-founder-intro .text-link:focus-visible {
  text-decoration-color: var(--maize);
  outline: none;
}

.alumni-founder-quote {
  margin: 0;
  padding: clamp(42px, 5vw, 64px);
  color: #fff;
  background: var(--blue);
}

.alumni-founder-quote p {
  max-width: 14ch;
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.alumni-founder-quote footer {
  max-width: 45ch;
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
  line-height: 1.55;
}

.alumni-founder-quote cite {
  color: var(--maize);
  font-style: normal;
}

.alumni-founder-milestones {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(16px, 2vw, 28px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.alumni-founder-milestones li {
  padding: 24px 20px 0 0;
  border-right: 1px solid var(--line);
}

.alumni-founder-milestones li + li {
  padding-left: 20px;
}

.alumni-founder-milestones li:last-child {
  padding-right: 0;
  border-right: 0;
}

.alumni-founder-milestones h3 {
  margin-bottom: 7px;
  font-size: clamp(23px, 2.5vw, 32px);
}

.alumni-founder-milestones p {
  margin: 0;
  color: var(--muted);
}

.alumni-founder-bridge {
  background: var(--maize);
}

.alumni-founder-bridge .section-heading {
  display: block;
  max-width: 820px;
}

.alumni-founder-bridge .section-heading .eyebrow {
  margin-bottom: 18px;
}

.alumni-founder-bridge .section-heading h2 {
  max-width: 13ch;
  margin: 0;
}

.alumni-bridge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 3px solid var(--blue);
}

.alumni-bridge-column {
  padding: clamp(30px, 4vw, 52px) clamp(0px, 4vw, 52px) 0 0;
}

.alumni-bridge-column-alumni {
  padding-right: 0;
  padding-left: clamp(30px, 4vw, 52px);
  border-left: 1px solid rgba(0, 39, 76, 0.24);
}

.alumni-bridge-column > span {
  display: block;
  margin-bottom: 30px;
  color: rgba(0, 39, 76, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.alumni-bridge-column ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.alumni-bridge-column li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 39, 76, 0.24);
  color: var(--blue);
  font-size: clamp(21px, 2.5vw, 32px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.alumni-opportunities {
  background: #fffef8;
}

.alumni-opportunities .section-heading {
  max-width: 930px;
}

.alumni-opportunity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(40px, 7vw, 88px);
}

.alumni-opportunity {
  min-height: 0;
  padding: clamp(28px, 3.5vw, 42px) 0;
  border-top: 1px solid rgba(0, 39, 76, 0.24);
}

.alumni-opportunity h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.2vw, 32px);
}

.alumni-opportunity p {
  margin: 0;
  color: rgba(0, 39, 76, 0.72);
}

.alumni-process {
  color: #fff;
  background: #06345f;
}

.alumni-process.section-pad {
  padding-bottom: clamp(56px, 7vw, 84px);
}

.alumni-process .eyebrow {
  color: var(--maize);
}

.alumni-process .section-heading h2 {
  max-width: 17ch;
  color: #fff;
}

.alumni-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.alumni-process-list li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  align-items: start;
}

.alumni-process-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.alumni-process-list li::before {
  width: 14px;
  height: 14px;
  margin-top: 11px;
  background: var(--maize);
  border-radius: 50%;
  content: "";
}

.alumni-process-list h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(29px, 3vw, 42px);
}

.alumni-process-list p {
  max-width: 60ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.alumni-final-invite {
  color: var(--blue);
  background: var(--maize);
}

.alumni-final-invite.section-pad {
  padding-top: clamp(112px, 12vw, 168px);
}

.alumni-final-invite-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(52px, 9vw, 132px);
  align-items: center;
}

.alumni-final-invite-copy h2 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.alumni-final-invite-copy > p:not(.eyebrow) {
  max-width: 52ch;
  margin: 0;
  color: rgba(0, 39, 76, 0.74);
  font-size: 18px;
  line-height: 1.65;
}

.alumni-final-invite-action {
  padding: clamp(30px, 4.5vw, 52px);
  background: #fffef8;
  border-top: 8px solid var(--blue);
  box-shadow: 18px 18px 0 rgba(0, 39, 76, 0.1);
}

.alumni-final-invite-action > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.alumni-final-invite-action .hero-actions {
  margin-top: 30px;
}

@media (max-width: 900px) {
  .alumni-hero-grid,
  .alumni-founder-story-grid,
  .alumni-final-invite-grid {
    grid-template-columns: 1fr;
  }

  .alumni-founder-portrait {
    margin: 0;
  }

  .alumni-founder-intro {
    grid-row: auto;
    margin-bottom: 48px;
  }

  .alumni-founder-milestones {
    grid-column: 1 / -1;
  }

  .alumni-founder-bridge .section-heading {
    max-width: none;
  }

  .alumni-founder-bridge .section-heading .eyebrow {
    margin-bottom: 18px;
  }

  .alumni-opportunity-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  .alumni-hero-copy h1 {
    font-size: clamp(36px, 11vw, 48px);
    max-width: 14ch;
    line-height: 0.98;
  }

  .alumni-opportunity-grid {
    grid-template-columns: 1fr;
  }

  .alumni-bridge-grid {
    grid-template-columns: 1fr;
  }

  .alumni-bridge-column {
    padding-right: 0;
  }

  .alumni-bridge-column-alumni {
    padding-left: 0;
    border-left: 0;
  }

  .alumni-founder-milestones {
    grid-template-columns: 1fr;
  }

  .alumni-founder-milestones li,
  .alumni-founder-milestones li + li {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .alumni-process-list li {
    grid-template-columns: 16px minmax(0, 1fr);
  }
}

/* Legacy selectors - keep for any straggler markup */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(28px, 4vw, 44px);
  margin-bottom: 28px;
}

.footer-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-links strong,
.footer-contact strong {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  display: inline-block;
  position: relative;
  width: fit-content;
  padding: 2px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease;
}

.footer-legal {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-legal p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.route-card {
  display: block;
  color: var(--ink);
  transition: background 140ms ease;
}

.route-card:hover {
  background: rgba(255, 203, 5, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 500ms ease,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 960px) {
  .nav-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(320px, calc(100vw - 40px));
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 48px rgba(0, 39, 76, 0.14);
  }

  .nav-primary {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-primary a {
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    border-radius: 0;
    border-bottom: none;
    border-left: 3px solid transparent;
    font-size: 15px;
  }

  .nav-primary a:hover,
  .nav-primary a:focus-visible {
    border-bottom-color: transparent;
    border-left-color: rgba(255, 203, 5, 0.55);
    background: rgba(255, 203, 5, 0.08);
  }

  .nav-primary a.is-active,
  .nav-primary a[aria-current="page"] {
    border-left-color: var(--maize);
    background: rgba(255, 203, 5, 0.12);
  }

  .nav .nav-cta.button {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    min-height: 44px;
    justify-content: center;
  }

  .nav .nav-cta.button::before {
    display: none;
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .site-header.is-open .header-inner {
    position: relative;
  }

  .hero-grid,
  .program-grid,
  .program-page-hero,
  .program-detail-grid,
  .mcombinator-layout,
  .contact-layout,
  .pathfinder-layout {
    grid-template-columns: 1fr;
  }

  .pathfinder-layout { gap: 28px; }

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

  #programs .program-grid .program-tile:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .hero-panel {
    min-height: 360px;
  }

  .contact-panel {
    position: relative;
    top: auto;
  }

  .stats,
  .history-grid,
  .work-grid,
  .roadmap-grid,
  .contact-routes,
  .team-grid,
  .team-grid.directors {
    grid-template-columns: repeat(2, 1fr);
  }

  .history-card + .history-card {
    border-left: 0;
  }

  .history-card:nth-child(2) {
    border-left: 1px solid var(--line);
  }

  .history-card:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .work-tile.large {
    grid-row: auto;
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-pad: 56px;
  }

  h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .hero-actions,
  .mco-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stats-compact {
    grid-template-columns: 1fr;
  }

  .program-grid,
  .stats,
  .history-grid,
  .work-grid,
  .roadmap-grid,
  .contact-routes,
  .team-grid,
  .team-grid.directors {
    grid-template-columns: 1fr;
  }

  .history-card + .history-card,
  .history-card:nth-child(2),
  .history-card:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .history-card:first-child {
    border-top: 0;
  }

  .pathfinder-tool { grid-template-columns: 1fr; }
  .pathfinder-choices { grid-template-columns: repeat(2, 1fr); }
  .path-choice { min-height: 52px; border-right: 1px solid rgba(255, 255, 255, 0.12); }
  .path-result { min-height: 300px; padding: 24px; }
  .path-result .button { width: 100%; }

  .cta-inner,
  .mco-copy {
    padding: 28px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .join-steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-base {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links-break {
    display: none;
  }

}

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

/* June 19 immersive quality pass: editorial rhythm over repeated card grids. */
:root {
  --paper: #f3f1e8;
  --panel: #fffef8;
  --line: rgba(0, 39, 76, 0.16);
  --radius: 18px;
  --container: 1200px;
  --section-pad: 112px;
  --shadow: 0 28px 80px rgba(0, 27, 52, 0.16);
}

body {
  background: var(--paper);
}

.button {
  min-height: 50px;
  padding-inline: 22px;
  border-width: 1px;
  border-radius: 999px;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.nav-toggle:active,
.program-tile:active,
.route-card:active {
  transform: scale(0.98);
}

.section-divider {
  border-top: 0;
}

.section-heading {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 14px 64px;
  max-width: none;
  margin-bottom: 48px;
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  margin-bottom: 2px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: var(--header-height) 0 0;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
  border-bottom: 0;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
}

.hero::before {
  background: var(--blue);
}

.hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 20, 42, 0.94) 0%, rgba(0, 30, 58, 0.8) 44%, rgba(0, 27, 52, 0.34) 72%, rgba(0, 27, 52, 0.5) 100%),
    linear-gradient(0deg, rgba(0, 25, 50, 0.9) 0%, transparent 42%);
}

@keyframes heroSettle {
  from { transform: scale(1.035); }
  to { transform: scale(1); }
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: min(60vw, 920px);
  height: 100%;
  overflow: hidden;
  animation: heroSettle 1200ms cubic-bezier(0.16, 1, 0.3, 1) both;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.5) 12%, #000 28%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.5) 12%, #000 28%);
}

.hero-media-poster,
.hero-media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media-poster {
  z-index: 0;
}

.hero-media-video {
  z-index: 1;
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  padding-top: 104px;
  padding-bottom: 88px;
  align-items: center;
}

.hero-enter {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 500ms cubic-bezier(0.22, 1, 0.36, 1) 50ms,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1) 50ms;
}

.hero-enter.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-mcombinator {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  width: fit-content;
  max-width: 100%;
  margin-top: 12px;
  padding: 0 18px;
  text-decoration: none;
  transition:
    background 140ms ease,
    border-color 140ms ease,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-mcombinator-label {
  color: var(--maize);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-mcombinator strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-mcombinator-cta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.hero-mcombinator:hover {
  transform: translateY(-2px);
}

.hero-copy {
  width: min(880px, 64%);
  min-width: 0;
  max-width: 100%;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.2);
}

.hero-kicker {
  margin: 0 0 22px;
  max-width: 100%;
  color: var(--maize);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero h1 {
  max-width: none;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(58px, 6.4vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero .hero-lede {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.6vw, 21px);
}

.hero .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 39, 76, 0.18);
  backdrop-filter: blur(12px);
}

.hero .button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero-feature {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 2px 16px;
  margin-top: 30px;
  padding: 13px 18px;
  color: #fff;
  border-left: 3px solid var(--maize);
  background: rgba(0, 27, 52, 0.5);
  backdrop-filter: blur(12px);
  transition: background 180ms ease, transform 180ms ease;
}

.hero-feature:hover {
  background: rgba(0, 27, 52, 0.74);
  transform: translateX(4px);
}

.hero-feature span {
  grid-column: 1 / -1;
  color: var(--maize);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-feature strong {
  font-size: 18px;
}

.hero-feature small {
  align-self: center;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.building-band {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--blue);
  border-top: 1px solid rgba(255, 203, 5, 0.22);
  border-bottom: 1px solid rgba(255, 203, 5, 0.22);
}

.building-band-inner {
  padding: 0;
}

.building-band-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "kicker title cta"
    "copy copy cta";
  gap: 6px 24px;
  align-items: center;
  padding: 22px 0;
  color: #fff;
  transition: background 180ms ease;
}

.building-band-link:hover {
  background: rgba(255, 255, 255, 0.04);
}

.building-band-kicker {
  grid-area: kicker;
  color: var(--maize);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.building-band-title {
  grid-area: title;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.building-band-copy {
  grid-area: copy;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  line-height: 1.45;
}

.building-band-cta {
  grid-area: cta;
  align-self: center;
  color: var(--maize);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.hero-proof {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 0.62fr)) minmax(260px, 1.35fr);
  gap: 0;
  color: #fff;
  background: rgba(0, 31, 61, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.hero-proof > * {
  min-height: 112px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-proof div {
  display: grid;
  align-content: center;
  gap: 6px;
}

.hero-proof strong {
  color: var(--maize);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-proof > p {
  display: flex;
  margin: 0;
  align-items: center;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.hero-scroll { display: none; }

.pathfinder {
  position: relative;
  isolation: isolate;
  padding: 124px 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, #001f3e 0%, var(--blue) 62%, #003565 100%);
  background-size: 56px 56px, 56px 56px, auto;
  border-bottom: 0;
}

.pathfinder::after {
  position: absolute;
  right: -0.04em;
  bottom: -0.28em;
  z-index: -1;
  content: "M";
  color: rgba(255, 203, 5, 0.055);
  font-size: min(58vw, 720px);
  font-weight: 900;
  line-height: 1;
}

.pathfinder-layout {
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 112px);
}

.pathfinder-intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.pathfinder-intro h2 {
  max-width: 10ch;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.98;
}

.pathfinder-tool {
  grid-template-columns: minmax(180px, 0.78fr) minmax(0, 1.22fr);
  gap: 38px;
  border: 0;
}

.pathfinder-choices {
  gap: 0;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.path-choice {
  position: relative;
  min-height: 58px;
  padding: 14px 18px 14px 22px;
  color: rgba(255, 255, 255, 0.67);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15px;
  transition: color 180ms ease, padding 240ms cubic-bezier(0.16, 1, 0.3, 1), background 180ms ease;
}

.path-choice::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--maize);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-8px, -50%);
  transition: opacity 180ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.path-choice:hover,
.path-choice:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.path-choice.is-active {
  padding-left: 34px;
  color: var(--maize);
  background: transparent;
}

.path-choice.is-active::before {
  opacity: 1;
  transform: translate(10px, -50%);
}

.path-result {
  position: relative;
  min-height: 474px;
  padding: 52px 46px 40px;
  overflow: hidden;
  align-content: end;
  color: #fff;
  background: rgba(0, 17, 34, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.22);
  transition: border-color 220ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.path-result::before {
  position: absolute;
  top: 30px;
  right: 34px;
  width: 82px;
  height: 82px;
  content: "";
  border: 1px solid rgba(255, 203, 5, 0.48);
  border-radius: 50%;
  box-shadow: inset 0 0 0 18px rgba(255, 203, 5, 0.08);
}

.path-result.is-updating {
  transform: translateY(5px);
  border-color: rgba(255, 203, 5, 0.5);
}

.path-program-code {
  position: absolute;
  top: 48px;
  left: 46px;
  color: var(--maize);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-result-label {
  color: rgba(255, 255, 255, 0.5);
}

.path-result h3 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 0.98;
}

.path-result > p:not(.path-result-label) {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.72);
}

.path-result-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.path-result-footer > span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#what-is-mpowered {
  padding: 128px 0 118px;
  background: var(--maize);
}

#what-is-mpowered .section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 20px 72px;
  max-width: none;
  margin-bottom: 64px;
}

#what-is-mpowered .section-intro .eyebrow {
  grid-column: 1 / -1;
}

#what-is-mpowered .section-intro h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 0.98;
}

#what-is-mpowered .section-intro > p:last-child {
  align-self: end;
  color: rgba(0, 39, 76, 0.74);
  font-size: 19px;
}

#what-is-mpowered .stats {
  gap: 34px;
  padding-top: 30px;
  background: transparent;
  border: 0;
  border-top: 2px solid var(--blue);
  border-radius: 0;
  overflow: visible;
}

#what-is-mpowered .stat {
  min-height: 0;
  padding: 0;
  background: transparent;
}

#what-is-mpowered .stat strong {
  font-size: clamp(42px, 5vw, 68px);
}

#programs {
  padding: 126px 0;
  background: #fffef8;
}

.program-index {
  border-top: 2px solid var(--blue);
}

.program-row {
  display: grid;
  grid-template-columns: 72px minmax(220px, 0.8fr) minmax(260px, 1fr) 36px;
  gap: 20px;
  min-height: 108px;
  padding: 24px 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease, padding 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.program-row > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-row h3 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
}

.program-row p {
  margin: 0;
  color: var(--muted);
}

.program-row b {
  color: var(--blue);
  font-size: 24px;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.program-row:hover,
.program-row:focus-visible {
  padding-right: 28px;
  padding-left: 28px;
  background: rgba(255, 203, 5, 0.18);
  outline: 0;
}

.program-row:hover b,
.program-row:focus-visible b {
  transform: translate(4px, -4px);
}

.program-row.is-featured {
  margin-top: 14px;
  color: var(--blue);
  background: var(--maize);
  border-bottom: 0;
}

.program-row.is-featured p {
  color: rgba(0, 39, 76, 0.72);
}

#work {
  padding: 126px 0;
  color: #fff;
  background: #001f3e;
}

#work h2 { color: #fff; }
#work .eyebrow { color: var(--maize); }
#work .section-heading > p:last-child { color: rgba(255, 255, 255, 0.65); }

.work-grid {
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 0;
  border-radius: 28px;
}

.work-tile {
  border-radius: 18px;
}

.work-tile figcaption {
  max-width: 28ch;
  font-size: 20px;
}

#mcombinator {
  position: relative;
  padding: 138px 0;
  overflow: hidden;
  background: var(--maize);
}

#mcombinator::before {
  position: absolute;
  top: -0.15em;
  right: -0.03em;
  content: "M";
  color: rgba(0, 39, 76, 0.06);
  font-size: min(48vw, 640px);
  font-weight: 900;
  line-height: 1;
}

.mcombinator-layout {
  position: relative;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.mco-copy {
  padding: 0;
  background: transparent;
}

.mco-copy h2 {
  max-width: 10ch;
  font-size: clamp(52px, 6.6vw, 88px);
  line-height: 0.92;
}

.mco-copy p:not(.eyebrow) {
  max-width: 52ch;
  color: rgba(0, 39, 76, 0.74);
  font-size: 19px;
}

.mco-panel {
  padding: 14px 30px;
  background: var(--blue);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.mco-line {
  padding: 26px 4px;
}

#get-involved {
  padding: 126px 0;
}

.roadmap-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0 42px;
  background: transparent;
  border: 0;
  border-top: 2px solid var(--blue);
  border-radius: 0;
  overflow: visible;
}

.roadmap-item {
  min-height: 188px;
  padding: 28px 0;
  background: transparent;
  border-bottom: 1px solid var(--line);
}

.roadmap-item:hover {
  padding-left: 18px;
  background: transparent;
}

.roadmap-item span {
  margin-bottom: 18px;
  color: var(--orange);
}

.cta-inner {
  position: relative;
  min-height: 440px;
  padding: clamp(46px, 7vw, 84px);
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta-inner::after {
  position: absolute;
  right: -0.05em;
  bottom: -0.32em;
  content: "M";
  color: rgba(255, 203, 5, 0.09);
  font-size: 420px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.team-grid,
.team-grid.directors {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 24px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.person-card {
  display: block;
  min-height: 0;
  padding: 0;
  background: transparent;
  border-bottom: 0;
  border-top: 0;
}

.person-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  object-position: var(--portrait-position, center top);
  transform: scale(var(--portrait-scale, 1));
  transform-origin: center;
}

.person-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e9e7dd;
  border-radius: 22px;
}

.person-marker {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 5;
  place-items: center;
  color: var(--blue);
  background:
    linear-gradient(rgba(0, 39, 76, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 39, 76, 0.045) 1px, transparent 1px),
    #e9e7dd;
  background-size: 32px 32px;
  border: 1px solid rgba(0, 39, 76, 0.14);
  border-radius: 22px;
  overflow: hidden;
}

.person-marker span {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--blue);
  background: var(--maize);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0, 39, 76, 0.12);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.person-card-body {
  padding: 20px 4px 0;
}

.person-card p {
  min-height: 0;
  margin-bottom: 8px;
}

.person-card h3 {
  margin-bottom: 7px;
  font-size: clamp(20px, 2vw, 26px);
}

.person-bio {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.person-bio summary {
  width: fit-content;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  list-style-position: outside;
}

.person-bio p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.team-section-first {
  padding-top: calc(var(--header-height) + clamp(52px, 7vw, 92px));
}

.program-page-hero {
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 56px;
  min-height: 610px;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 72px;
  align-items: center;
}

.program-page-copy h1 {
  font-size: clamp(52px, 6vw, 82px);
  line-height: 0.95;
}

.program-page-media {
  border: 0;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.program-page-media img {
  aspect-ratio: 16 / 10;
}

.program-detail-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 72px;
}

.program-director-card {
  padding: 22px 0;
  background: transparent;
  border: 0;
  border-top: 2px solid var(--blue);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.program-director-card img {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
}

.program-directors .program-director-card {
  padding: 20px 0;
  background: transparent;
}

.program-directors .initial-photo {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
}

.marketing-hero {
  display: flex;
  min-height: 100svh;
  padding: calc(var(--header-height) + clamp(38px, 5vw, 68px)) 0 clamp(52px, 6vw, 80px);
  color: var(--blue);
  background: var(--maize);
  align-items: stretch;
}

.marketing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  grid-template-rows: auto auto minmax(300px, 1fr);
  gap: clamp(24px, 4vw, 48px) clamp(52px, 8vw, 112px);
  align-items: end;
}

.marketing-hero-grid > * {
  min-width: 0;
}

.marketing-hero-back {
  grid-column: 1 / -1;
  align-self: start;
  color: var(--blue);
}

.marketing-hero-heading {
  grid-column: 1 / -1;
}

.marketing-hero-heading .eyebrow,
.marketing-hero-copy .eyebrow {
  color: rgba(0, 39, 76, 0.66);
}

.marketing-hero-copy {
  max-width: 520px;
  padding-bottom: clamp(8px, 2vw, 22px);
  align-self: end;
}

.marketing-hero-copy > p:not(.eyebrow) {
  max-width: 36ch;
  margin: 0;
  color: rgba(0, 39, 76, 0.76);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.025em;
}

.marketing-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: clamp(28px, 4vw, 46px) 0 0;
  border-top: 2px solid rgba(0, 39, 76, 0.7);
  border-bottom: 1px solid rgba(0, 39, 76, 0.24);
}

.marketing-hero-facts > div {
  padding: 16px 14px 15px 0;
}

.marketing-hero-facts > div:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid rgba(0, 39, 76, 0.2);
}

.marketing-hero-facts dt {
  color: var(--blue);
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.marketing-hero-facts dd {
  margin: 5px 0 0;
  color: rgba(0, 39, 76, 0.62);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marketing-hero-media {
  align-self: stretch;
  margin: 0;
  background: var(--blue);
  box-shadow: 0 14px 36px rgba(0, 39, 76, 0.16);
}

.marketing-hero-media img {
  display: block;
  width: 100%;
  height: calc(100% - 52px);
  min-height: 230px;
  object-fit: cover;
}

.marketing-hero-media figcaption {
  padding: 18px 24px;
  color: var(--maize);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.marketing-story {
  overflow: hidden;
  padding: 0 0 clamp(88px, 10vw, 140px);
  background: #fffef8;
}

.marketing-mandate {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  margin-bottom: clamp(72px, 8vw, 108px);
  background: #fff;
}

.marketing-mandate-heading {
  position: relative;
  padding: clamp(62px, 7vw, 96px) clamp(38px, 5vw, 72px);
  color: #fff;
  background: var(--blue);
}

.marketing-mandate-heading::before {
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 100vw;
  background: var(--blue);
  content: "";
}

.marketing-mandate-heading .eyebrow {
  color: var(--maize);
}

.marketing-mandate-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 7vw, 94px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.marketing-mandate-heading h2 span {
  display: block;
}

.marketing-mandate-heading h2 span:last-child {
  color: var(--maize);
}

.marketing-mandate-copy {
  padding: clamp(62px, 7vw, 96px) clamp(38px, 6vw, 88px);
}

.marketing-mandate-copy > p {
  max-width: 55ch;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.marketing-workstreams {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  margin: 42px 0 34px;
}

.marketing-workstreams article {
  padding: 0;
}

.marketing-workstreams article + article {
  padding-right: 0;
  padding-left: 0;
}

.marketing-workstreams strong {
  color: var(--blue);
  font-size: 18px;
}

.marketing-workstreams p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.marketing-lanes-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: clamp(36px, 8vw, 112px);
  margin-bottom: clamp(48px, 6vw, 72px);
  align-items: end;
}

.marketing-lanes-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.marketing-lanes-heading h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(48px, 6.3vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.marketing-lanes-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.marketing-subteam-list {
  border-top: 3px solid var(--blue);
}

.marketing-subteam-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(30px, 6vw, 88px);
  padding: clamp(26px, 3vw, 38px) 0;
  border-bottom: 1px solid rgba(0, 39, 76, 0.24);
  align-items: baseline;
}

.marketing-subteam-list h3 {
  margin: 0;
  font-size: clamp(25px, 2.8vw, 38px);
}

.marketing-subteam-list p {
  max-width: 62ch;
  margin: 0;
  color: rgba(0, 39, 76, 0.72);
  font-size: 17px;
  line-height: 1.6;
}

.marketing-operating-model {
  color: #fff;
  background: #06345f;
}

.marketing-operating-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 9vw, 132px);
  align-items: start;
}

.marketing-operating-model .section-heading {
  display: block;
  margin: 0;
}

.marketing-operating-model .section-heading .eyebrow {
  color: var(--maize);
}

.marketing-operating-model .section-heading h2 {
  max-width: 14ch;
  margin-bottom: 24px;
  color: #fff;
}

.marketing-operating-model .section-heading > p:not(.eyebrow) {
  max-width: 48ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.65;
}

.marketing-workflow {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.marketing-workflow li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 42px);
  padding-bottom: clamp(34px, 4vw, 48px);
}

.marketing-workflow li:not(:last-child)::after {
  position: absolute;
  top: 42px;
  bottom: 0;
  left: 20px;
  width: 1px;
  background: rgba(255, 255, 255, 0.26);
  content: "";
}

.marketing-workflow li:last-child {
  padding-bottom: 0;
}

.marketing-workflow li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--blue);
  background: var(--maize);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  place-items: center;
}

.marketing-workflow h3 {
  margin: -3px 0 8px;
  color: #fff;
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.marketing-workflow p {
  max-width: 54ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
}

.marketing-workflow li:nth-child(2) > span,
.marketing-workflow li:nth-child(4) > span {
  color: #fff;
  background: #1261a0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.marketing-workflow li > div {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.marketing-workflow li:last-child > div {
  border-bottom: 0;
}

.marketing-page-close .close-panel {
  max-width: none;
  padding-right: clamp(42px, 7vw, 92px);
}

.marketing-page-close .close-lede {
  max-width: 50ch;
}

@media (max-width: 960px) {
  :root { --section-pad: 88px; }
  .hero-stage { padding-top: 84px; padding-bottom: 72px; }
  .hero-copy { width: min(760px, 88%); }
  .hero-proof { grid-template-columns: repeat(3, 1fr); }
  .hero-proof > p { grid-column: 1 / -1; min-height: 70px; }
  .pathfinder-layout,
  .mcombinator-layout,
  #what-is-mpowered .section-intro { grid-template-columns: minmax(0, 1fr); }
  .pathfinder-intro { position: static; }
  .pathfinder-tool { grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr); }
  #what-is-mpowered .section-intro { grid-template-columns: 1fr; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; }
  .team-grid, .team-grid.directors { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .program-page-hero,
  .program-detail-grid,
  .marketing-operating-grid,
  .marketing-hero-grid,
  .marketing-mandate,
  .marketing-lanes-heading { grid-template-columns: minmax(0, 1fr); }
  .marketing-hero-grid { grid-template-rows: auto auto auto auto; }
  .marketing-hero-heading,
  .marketing-hero-back { grid-column: auto; }
  .marketing-hero-media { min-height: 360px; }
  .marketing-lanes-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .program-row { grid-template-columns: 56px minmax(190px, 0.9fr) minmax(220px, 1.1fr) 30px; }
}

@media (max-width: 640px) {
  :root { --section-pad: 72px; }
  .hero { min-height: 0; }
  .hero::after {
    background: linear-gradient(0deg, rgba(0, 25, 50, 0.97) 0%, rgba(0, 25, 50, 0.7) 66%, rgba(0, 25, 50, 0.5) 100%);
  }
  .hero-stage { min-height: 0; padding-top: 72px; padding-bottom: 48px; align-items: start; }
  .hero-copy { width: 100%; }
  .hero h1 { max-width: 10ch; font-size: clamp(40px, 11vw, 52px); }
  .hero-lede { font-size: 17px; }
  .hero-feature { width: 100%; }
  .hero-proof { grid-template-columns: repeat(3, 1fr); }
  .hero-proof > * { min-height: 96px; padding: 16px 10px; }
  .hero-proof strong { font-size: 25px; }
  .hero-proof span { font-size: 8px; }
  .hero-proof > p { min-height: 60px; font-size: 13px; }
  .marketing-hero { min-height: auto; padding-top: calc(var(--header-height) + 40px); }
  .marketing-hero-copy { padding: 0 0 10px; }
  .marketing-hero-copy > p:not(.eyebrow) { font-size: 21px; }
  .marketing-hero-media { min-height: 0; }
  .marketing-hero-media img { height: auto; aspect-ratio: 16 / 10; }
  .marketing-mandate { margin-bottom: 88px; }
  .marketing-subteam-list article { grid-template-columns: 1fr; gap: 10px; }
  .marketing-workstreams { grid-template-columns: 1fr; }
  .marketing-workstreams article,
  .marketing-workstreams article + article {
    padding: 24px 0;
    border-left: 0;
  }
  .marketing-page-close .close-panel { padding-right: 0; }
  .pathfinder { padding: 82px 0; }
  .pathfinder-layout { gap: 42px; }
  .pathfinder-tool { grid-template-columns: 1fr; gap: 28px; }
  .pathfinder-tool > *,
  .pathfinder-layout > *,
  .mcombinator-layout > *,
  #what-is-mpowered .section-intro > * { min-width: 0; max-width: 100%; }
  .pathfinder-choices { grid-template-columns: 1fr; }
  .path-choice,
  .path-choice:nth-child(2),
  .path-choice:nth-child(3),
  .path-choice:nth-child(5),
  .path-choice:nth-child(6),
  .path-choice.is-active,
  .path-choice.is-active:nth-child(2),
  .path-choice.is-active:nth-child(3),
  .path-choice.is-active:nth-child(5),
  .path-choice.is-active:nth-child(6) {
    transform: none;
  }
  .path-result { min-height: 390px; padding: 72px 24px 26px; }
  .path-program-code { top: 28px; left: 24px; }
  .path-result::before { top: 24px; right: 24px; width: 58px; height: 58px; box-shadow: inset 0 0 0 12px rgba(255, 203, 5, 0.08); }
  .path-result-footer { align-items: stretch; flex-direction: column; }
  .path-result-footer > span { display: none; }
  #what-is-mpowered { padding: 82px 0; }
  #what-is-mpowered .section-intro { margin-bottom: 44px; }
  #what-is-mpowered .section-intro h2 { font-size: 44px; }
  #what-is-mpowered .stats { grid-template-columns: 1fr; gap: 24px; }
  #what-is-mpowered .stat { padding-bottom: 24px; border-bottom: 1px solid rgba(0, 39, 76, 0.24); }
  #programs, #work, #mcombinator, #get-involved { padding: 82px 0; }
  .program-row { grid-template-columns: 44px 1fr 24px; gap: 10px; padding: 22px 6px; }
  .program-row h3 { font-size: 23px; }
  .program-row p { grid-column: 2 / -1; font-size: 14px; }
  .program-row b { grid-column: 3; grid-row: 1; }
  .program-row:hover, .program-row:focus-visible { padding-right: 10px; padding-left: 10px; }
  .work-grid { padding: 8px; gap: 8px; }
  .mcombinator-layout { gap: 42px; }
  .mco-copy h2 { font-size: 52px; }
  .mco-panel { padding: 8px 22px; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .cta-inner { min-height: 380px; border-radius: 20px; }
  .team-grid, .team-grid.directors { grid-template-columns: 1fr; gap: 0; }
  .team-grid, .team-grid.directors { gap: 42px; }
  .person-card { min-height: 0; }
  .program-page-hero { min-height: 0; gap: 34px; padding-top: calc(var(--header-height) + 54px); }
  .route-card { grid-template-columns: 44px 1fr; }
  .route-card p { grid-column: 2; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-feature:hover,
  .button:hover,
  .program-row:hover b { transform: none !important; }
}

/* June 19 launch pass: programs, partners, and MCombinator. */
.projects-intro,
.partner-preview-head,
.mco-section-intro {
  max-width: 780px;
  margin-bottom: 54px;
}

.projects-intro h2,
.partner-preview-head h2,
.mco-section-intro h2 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.projects-intro > p:last-child,
.partner-preview-head > p:last-child,
.mco-section-intro > p:last-child {
  max-width: 56ch;
  color: var(--muted);
  font-size: 18px;
}

#programs {
  position: relative;
  padding: 132px 0 142px;
  overflow: visible;
  background: #fffef8;
}

#programs::after {
  position: absolute;
  top: 30px;
  right: -0.12em;
  z-index: 0;
  content: "BUILD";
  color: rgba(0, 39, 76, 0.035);
  font-size: clamp(120px, 20vw, 320px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.projects-intro,
.projects-stage {
  position: relative;
  z-index: 1;
}

.projects-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}

.project-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  border-top: 2px solid var(--blue);
}

.project-tab {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 86px;
  padding: 18px 18px 17px;
  align-content: center;
  gap: 5px;
  color: var(--blue);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, padding 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-tab:nth-child(even):not(.project-tab-flagship) {
  border-left: 1px solid var(--line);
}

.project-tab-flagship {
  grid-column: 1 / -1;
  min-height: 126px;
}

.project-tab-heavy {
  min-height: 108px;
}

.project-tab-light {
  min-height: 72px;
}

.project-tab span {
  color: rgba(0, 39, 76, 0.52);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-tab strong {
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.08;
}

.project-tab-flagship strong {
  font-size: clamp(28px, 3vw, 40px);
}

.project-tab::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  content: "";
  background: var(--maize);
  opacity: 0;
  transform: scaleY(0.2);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-tab:hover,
.project-tab:focus-visible {
  background: rgba(255, 203, 5, 0.12);
  outline: 0;
}

.project-tab.is-active {
  padding-left: 26px;
  color: #fff;
  background: var(--blue);
}

.project-tab.is-active span {
  color: var(--maize);
}

.project-tab.is-active::after {
  opacity: 1;
  transform: scaleY(1);
}

.project-feature {
  position: relative;
  isolation: isolate;
  display: grid;
  min-width: 0;
  min-height: 626px;
  padding: clamp(28px, 4.5vw, 58px);
  overflow: hidden;
  align-content: space-between;
  color: #fff;
  background: #001f3e;
  border-radius: 28px;
  box-shadow: 0 36px 90px rgba(0, 27, 52, 0.2);
  transition: opacity 160ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-feature::before,
.project-feature::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), border-radius 500ms ease;
}

.project-feature::before {
  top: 13%;
  right: -10%;
  width: 64%;
  aspect-ratio: 1;
  background: var(--maize);
  border-radius: 50%;
  opacity: 0.94;
}

.project-feature::after {
  right: -22%;
  bottom: -42%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.035), 0 0 0 84px rgba(255, 255, 255, 0.02);
}

.project-feature[data-project-theme="career-fair"]::before {
  top: -10%;
  right: -4%;
  width: 44%;
  border-radius: 0 0 0 80%;
  transform: rotate(8deg);
}

.project-feature[data-project-theme="mtank"]::before {
  top: 8%;
  right: 4%;
  width: 38%;
  border-radius: 100% 0 0;
  transform: rotate(-12deg);
}

.project-feature[data-project-theme="trailblaze"]::before {
  top: -18%;
  right: -18%;
  width: 72%;
  border-radius: 28% 72% 44% 56%;
}

.project-feature[data-project-theme="innovation"]::before {
  top: 8%;
  right: 7%;
  width: 38%;
  border-radius: 0;
  transform: rotate(45deg);
}

.project-feature[data-project-theme="marketing"]::before {
  top: 17%;
  right: -3%;
  width: 56%;
  aspect-ratio: 1.8;
  border-radius: 999px 0 0 999px;
}

.project-feature[data-project-theme="pitches"]::before {
  top: -15%;
  right: 5%;
  width: 32%;
  border-radius: 0;
  box-shadow: 86px 86px 0 rgba(255, 203, 5, 0.58), -86px 172px 0 rgba(255, 203, 5, 0.26);
}

.project-feature.is-changing {
  opacity: 0.78;
  transform: translateY(6px);
}

.project-feature-head {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-feature-head span:first-child {
  color: var(--maize);
}

.project-feature-signal {
  position: absolute;
  top: 19%;
  right: clamp(24px, 5vw, 58px);
  z-index: 1;
  display: grid;
  max-width: 52%;
  justify-items: end;
  color: var(--blue);
  text-align: right;
}

.project-feature-signal strong {
  max-width: 7ch;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.82;
  letter-spacing: -0.065em;
  overflow-wrap: anywhere;
}

.project-feature-signal span {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-feature-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.project-feature-copy h3 {
  max-width: 11ch;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.project-feature-copy p {
  max-width: 39ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.8vw, 21px);
}

.project-feature-copy .button {
  margin-top: 12px;
}

/* Homepage MCombinator treatment */
.mco-deadline {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 39, 76, 0.25);
  font-size: 14px !important;
}

.mco-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  background: var(--blue);
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mco-benefit {
  display: grid;
  min-height: 174px;
  padding: 28px;
  align-content: end;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.mco-benefit:nth-child(even) { border-right: 0; }
.mco-benefit:nth-last-child(-n + 2) { border-bottom: 0; }

.mco-benefit strong {
  color: var(--maize);
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1;
}

.mco-benefit span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.mco-benefit-lead {
  background: rgba(255, 203, 5, 0.08);
}

/* Partner relationship preview */
#partners {
  padding: 132px 0;
  color: var(--blue);
  background: #eef2f5;
}

.partner-map {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 92px;
}

.partner-map::before {
  position: absolute;
  top: 64px;
  bottom: 48px;
  left: 39px;
  width: 2px;
  content: "";
  background: var(--blue);
}

.partner-map-core {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 12px;
  width: fit-content;
  margin: 0 0 28px -92px;
  align-items: center;
}

.partner-map-core .brand-mark {
  grid-row: 1 / 3;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  font-size: 30px;
}

.partner-map-core strong {
  font-size: 26px;
  line-height: 1;
}

.partner-map-core small {
  color: var(--muted);
  font-weight: 800;
}

.partner-lane {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.62fr) repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 30px 0 32px;
  border-top: 1px solid rgba(0, 39, 76, 0.18);
}

.partner-lane::before {
  position: absolute;
  top: -1px;
  left: -53px;
  width: 53px;
  height: 1px;
  content: "";
  background: var(--blue);
}

.partner-lane-label {
  display: grid;
  align-content: start;
  gap: 7px;
}

.partner-lane-label strong {
  font-size: 19px;
}

.partner-lane-label span {
  max-width: 20ch;
  color: var(--muted);
  font-size: 13px;
}

.partner-lane article {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 20px;
  min-width: 0;
  align-items: center;
}

.partner-lane article img {
  display: block;
  width: 100%;
  max-width: 108px;
  max-height: 64px;
  object-fit: contain;
}

.partner-lane-brand article:last-child img {
  width: 58px;
}

.partner-lane article p {
  margin: 0;
  color: rgba(0, 39, 76, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.partner-preview-cta {
  display: flex;
  gap: 12px;
  margin-top: 46px;
  justify-content: flex-end;
}

/* Partner detail page */
.partner-page-hero {
  min-height: 0;
  padding: calc(var(--header-height) + 72px) 0 88px;
  color: #fff;
  background: var(--blue);
}

.partner-page-hero-inner {
  max-width: 720px;
}

.partner-page-wordmark {
  display: block;
  box-sizing: border-box;
  width: min(420px, 84vw);
  height: auto;
  margin-bottom: 28px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
}

.partner-page-copy .eyebrow {
  color: var(--maize);
  margin-bottom: 12px;
}

.partner-page-copy h1 {
  max-width: none;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.partner-page-copy > p:not(.eyebrow) {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.partner-page-copy .button {
  margin-top: 22px;
}

.partner-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(52px, 8vw, 110px);
  min-height: 545px;
  align-items: center;
}

.partner-tier-section { overflow: hidden; }
.partner-tier-institutional { background: #fffef8; }
.partner-tier-brand { background: var(--maize); }
.partner-tier-ecosystem { background: #eef2f5; }

.partner-tier-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 0 clamp(56px, 8vw, 120px);
}

.partner-tier-heading {
  grid-row: 1 / 4;
  padding-right: 20px;
}

.partner-tier-heading > span {
  display: block;
  margin-bottom: 20px;
  color: rgba(0, 39, 76, 0.54);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-tier-heading h2 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.partner-tier-heading p {
  color: var(--muted);
}

.partner-story {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 0.62fr);
  gap: 34px;
  min-height: 210px;
  padding: 32px 0;
  align-items: center;
  border-top: 1px solid rgba(0, 39, 76, 0.18);
}

.partner-story img {
  display: block;
  width: 100%;
  max-width: 190px;
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
}

.partner-tier-brand .partner-story {
  grid-template-columns: minmax(132px, 0.34fr) minmax(0, 0.66fr);
}

.partner-tier-brand .partner-story img {
  width: clamp(112px, 10vw, 144px);
  height: clamp(112px, 10vw, 144px);
  max-width: none;
  max-height: none;
}

.partner-story img[alt*="Ross"],
.partner-story img[alt*="Zell"] {
  box-sizing: border-box;
  padding: 18px;
  background: var(--blue);
  border-radius: 6px;
}

.partner-story img[alt*="Zell"] {
  justify-self: center;
  object-position: center;
}

.partner-story h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.6vw, 34px);
}

.partner-story p {
  margin: 0;
  color: rgba(0, 39, 76, 0.7);
}

.partner-story-feature {
  min-height: 270px;
}

.partner-tier-layout-reverse .partner-story-feature {
  margin-left: -72px;
  padding-left: 72px;
}

.partner-page-cta { background: #fffef8; }
.partner-page-cta .cta-inner > p:not(.eyebrow) { max-width: 48ch; color: rgba(255, 255, 255, 0.72); }

/* MCombinator detail page */
.mcombinator-page { background: #fffef8; }

.mco-page-hero {
  min-height: 760px;
  padding: calc(var(--header-height) + 76px) 0 76px;
  color: #fff;
  background: #001f3e;
}

.mco-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(54px, 8vw, 108px);
  min-height: 620px;
  align-items: center;
}

.mco-page-hero .program-back-link,
.mco-page-hero .eyebrow { color: var(--maize); }

.mco-page-hero-copy h1 {
  max-width: 11ch;
  margin: 24px 0;
  color: #fff;
  font-size: clamp(56px, 6.2vw, 86px);
  line-height: 0.91;
  letter-spacing: -0.06em;
}

.mco-page-hero-copy > p:not(.eyebrow) {
  max-width: 50ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.mco-page-hero-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  color: var(--blue);
  background: var(--maize);
  border-radius: 28px;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.25);
}

.mco-hero-monogram {
  position: absolute;
  top: -0.17em;
  right: -0.05em;
  color: rgba(0, 39, 76, 0.09);
  font-size: 480px;
  font-weight: 900;
  line-height: 1;
}

.mco-hero-facts {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: auto;
}

.mco-hero-facts > div {
  display: grid;
  grid-template-columns: minmax(140px, 0.6fr) minmax(0, 1fr);
  gap: 20px;
  padding: 24px 30px;
  align-items: baseline;
  border-top: 1px solid rgba(0, 39, 76, 0.22);
}

.mco-hero-facts strong { font-size: clamp(21px, 2.6vw, 32px); }
.mco-hero-facts span { color: rgba(0, 39, 76, 0.68); font-weight: 700; }

.mco-benefit-section { background: #fffef8; }

.mco-benefit-ledger {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  border-top: 2px solid var(--blue);
}

.mco-ledger-lead {
  grid-row: 1 / 4;
  display: grid;
  min-height: 520px;
  padding: 38px 38px 42px 0;
  align-content: end;
  border-right: 1px solid var(--line);
}

.mco-ledger-lead > span {
  font-size: 18px;
  font-weight: 900;
}

.mco-ledger-lead > strong {
  margin: 16px 0;
  color: var(--blue);
  font-size: clamp(100px, 15vw, 190px);
  line-height: 0.78;
  letter-spacing: -0.09em;
}

.mco-ledger-lead p { max-width: 36ch; color: var(--muted); }

.mco-ledger-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  min-height: 173px;
  padding: 30px 0 30px 42px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.mco-ledger-row strong { font-size: clamp(22px, 2.4vw, 32px); }
.mco-ledger-row p { margin: 0; color: var(--muted); }

.mco-curriculum {
  color: #fff;
  background: var(--blue);
}

.mco-curriculum .mco-section-intro h2 { color: #fff; }
.mco-curriculum .mco-section-intro > p:last-child { color: rgba(255, 255, 255, 0.68); }
.mco-curriculum .eyebrow { color: var(--maize); }

.mco-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--maize);
}

.mco-timeline-step {
  position: relative;
  display: grid;
  min-height: 390px;
  padding: 34px 26px 30px;
  align-content: start;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.mco-timeline-step:last-child { border-right: 0; }

.mco-timeline-step::before {
  position: absolute;
  top: -8px;
  left: 24px;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--maize);
  border-radius: 50%;
}

.mco-timeline-step > span {
  margin-bottom: 46px;
  color: var(--maize);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mco-timeline-step h3 {
  min-height: 2.1em;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1;
}

.mco-timeline-step p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.mco-timeline-step > strong {
  margin-top: auto;
  color: #fff;
  font-size: 13px;
}

.mco-culture { background: var(--maize); }

.mco-culture-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(54px, 8vw, 120px);
}

.mco-culture-lines { border-top: 2px solid var(--blue); }

.mco-culture-lines article {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 39, 76, 0.22);
}

.mco-culture-lines strong { font-size: clamp(23px, 2.8vw, 36px); }
.mco-culture-lines p { margin: 0; color: rgba(0, 39, 76, 0.7); }

.mco-partnerships { background: #eef2f5; }

.mco-partner-pair {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px 76px;
  padding-top: 34px;
  border-top: 2px solid var(--blue);
}

.mco-partner-pair article:last-child { padding-top: 72px; }

.mco-partner-pair img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: 94px;
  margin-bottom: 30px;
  object-fit: contain;
  object-position: left center;
}

.mco-partner-pair h3 { font-size: clamp(28px, 3.4vw, 44px); }
.mco-partner-pair p { max-width: 54ch; color: var(--muted); }

.mco-close {
  color: #fff;
  background: #001f3e;
}

.mco-close-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(56px, 8vw, 120px);
}

.mco-leadership .eyebrow { color: var(--maize); }

.mco-apply {
  display: grid;
  min-height: 480px;
  padding: clamp(34px, 5vw, 64px);
  align-content: center;
  color: var(--blue);
  background: var(--maize);
  border-radius: 28px;
}

.mco-apply p { margin: 0; font-weight: 800; }
.mco-apply > strong { max-width: 8ch; margin: 10px 0 16px; font-size: clamp(48px, 6vw, 76px); line-height: 0.92; letter-spacing: -0.055em; }
.mco-apply > span { margin-bottom: 28px; color: rgba(0, 39, 76, 0.7); font-weight: 700; }
.mco-apply .button { width: fit-content; }
.mco-apply > small { max-width: 46ch; margin-top: 18px; color: rgba(0, 39, 76, 0.62); }

@media (max-width: 1060px) {
  .partner-lane { grid-template-columns: minmax(160px, 0.5fr) repeat(2, minmax(0, 1fr)); gap: 20px; }
  .partner-lane article { grid-template-columns: 82px 1fr; gap: 14px; }
  .partner-lane article img { max-width: 82px; }
}

@media (max-width: 960px) {
  .projects-stage { grid-template-columns: 1fr; }
  .project-feature { grid-row: 1; min-height: 560px; }
  .project-selector { grid-row: 2; }
  .partner-map { padding-left: 76px; }
  .partner-map-core { margin-left: -76px; }
  .partner-lane { grid-template-columns: 1fr 1fr; }
  .partner-lane-label { grid-column: 1 / -1; }
  .partner-page-hero-grid,
  .partner-tier-layout,
  .mco-page-hero-grid,
  .mco-culture-grid,
  .mco-close-grid { grid-template-columns: 1fr; }
  .partner-page-hero-grid { padding-top: 34px; }
  .partner-orbit { width: min(520px, 100%); margin: 0 auto; }
  .partner-tier-heading { grid-row: auto; margin-bottom: 42px; }
  .partner-tier-layout-reverse .partner-story-feature { margin-left: 0; padding-left: 0; }
  .mco-page-hero-grid { padding-top: 30px; }
  .mco-page-hero-visual { min-height: 500px; }
  .mco-timeline { grid-template-columns: repeat(2, 1fr); }
  .mco-timeline-step:nth-child(2) { border-right: 0; }
  .mco-timeline-step:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
}

@media (max-width: 640px) {
  .hero {
    min-height: 0;
  }

  .hero-stage {
    min-height: 0;
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 52px);
  }

  .hero-kicker { margin-bottom: 14px; font-size: 10px; letter-spacing: 0.08em; }
  .hero .hero-lede { margin-bottom: 22px; font-size: 15px; line-height: 1.48; }
  .hero-actions { gap: 10px; }
  .hero-feature { margin-top: 18px; padding-block: 10px; }
  .building-band-link {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "copy"
      "cta";
    gap: 8px;
    padding: 22px 0;
  }
  .building-band-cta { justify-self: start; }
  .hero-proof > p { display: none; }
  .hero-proof > * { min-height: 82px; }

  #programs,
  #partners { padding: 88px 0; }

  .projects-intro,
  .partner-preview-head,
  .mco-section-intro { margin-bottom: 38px; }

  .projects-intro h2,
  .partner-preview-head h2,
  .mco-section-intro h2 { font-size: 44px; }

  .projects-stage { gap: 28px; }
  .project-feature { min-height: 500px; padding: 24px; border-radius: 20px; }
  .project-feature-head span:last-child { display: none; }
  .project-feature-signal { top: 22%; right: 22px; max-width: 58%; }
  .project-feature-signal strong { font-size: clamp(48px, 19vw, 78px); }
  .project-feature-copy h3 { font-size: clamp(38px, 10.8vw, 46px); }
  .project-feature-copy p { font-size: 16px; }
  .project-selector { grid-template-columns: 1fr; }
  .project-tab,
  .project-tab-heavy,
  .project-tab-light,
  .project-tab-flagship { grid-column: auto; min-height: 76px; }
  .project-tab:nth-child(even):not(.project-tab-flagship) { border-left: 0; }
  .project-tab-flagship { min-height: 104px; }
  .project-tab-flagship strong { font-size: 28px; }

  .mco-benefits { grid-template-columns: 1fr; border-radius: 20px; }
  .mco-benefit { min-height: 126px; border-right: 0; }
  .mco-benefit:nth-last-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.13); }
  .mco-benefit:last-child { border-bottom: 0; }

  .partner-map { padding-left: 0; }
  .partner-map::before,
  .partner-lane::before { display: none; }
  .partner-map-core { margin-left: 0; }
  .partner-map-core .brand-mark { width: 64px; height: 64px; }
  .partner-lane { grid-template-columns: 1fr; gap: 28px; padding: 30px 0; }
  .partner-lane-label { grid-column: auto; }
  .partner-lane article { grid-template-columns: 94px 1fr; }
  .partner-preview-cta { align-items: stretch; flex-direction: column; }
  .partner-preview-cta .button { width: 100%; }

  .partner-page-hero { min-height: 0; padding: calc(var(--header-height) + 54px) 0 72px; }
  .partner-page-hero-grid { min-height: 0; gap: 54px; }
  .partner-page-copy h1 { font-size: 48px; }
  .partner-orbit { width: 100%; }
  .partner-story { grid-template-columns: 1fr; gap: 24px; min-height: 0; padding: 36px 0; }
  .partner-story-feature { min-height: 0; }
  .partner-story img { max-width: 180px; max-height: 76px; }
  .partner-tier-brand .partner-story { grid-template-columns: 1fr; }
  .partner-tier-brand .partner-story img {
    width: 104px;
    height: 104px;
    max-width: none;
    max-height: none;
  }

  .mco-page-hero { min-height: 0; padding: calc(var(--header-height) + 44px) 0 62px; }
  .mco-page-hero-grid { min-height: 0; gap: 44px; }
  .mco-page-hero-copy h1 { font-size: 50px; }
  .mco-page-hero-visual { min-height: 430px; border-radius: 20px; }
  .mco-hero-monogram { font-size: 340px; }
  .mco-hero-facts > div { grid-template-columns: 1fr; gap: 3px; padding: 18px 22px; }
  .mco-benefit-ledger { grid-template-columns: 1fr; }
  .mco-ledger-lead { grid-row: auto; min-height: 370px; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .mco-ledger-lead > strong { font-size: 120px; }
  .mco-ledger-row { grid-template-columns: 1fr; gap: 10px; min-height: 0; padding: 28px 0; }
  .mco-timeline { grid-template-columns: 1fr; border-top: 0; }
  .mco-timeline-step { min-height: 300px; padding: 28px 0 30px 24px; border-top: 1px solid rgba(255, 255, 255, 0.16); border-right: 0; }
  .mco-timeline-step::before { top: -7px; left: 0; }
  .mco-timeline-step > span { margin-bottom: 28px; }
  .mco-timeline-step:nth-child(-n + 2) { border-bottom: 0; }
  .mco-culture-lines article { grid-template-columns: 1fr; gap: 8px; }
  .mco-partner-pair { grid-template-columns: 1fr; gap: 56px; }
  .mco-partner-pair article:last-child { padding-top: 0; }
  .mco-close-grid { gap: 56px; }
  .mco-apply { min-height: 410px; padding: 34px 26px; border-radius: 20px; }
  .mco-apply > strong { font-size: 50px; }
}

@media (prefers-reduced-motion: reduce) {
  .project-feature,
  .project-feature::before,
  .project-feature::after,
  .project-tab,
  .project-tab::after {
    transition: none !important;
  }

  .project-feature.is-changing {
    opacity: 1;
    transform: none;
  }
}

/* June 19 MPowered-first pathfinder pass. */
.pathfinder {
  padding: clamp(92px, 10vw, 142px) 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 203, 5, 0.18), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(138deg, #00172e 0%, #00274c 56%, #063b6b 100%);
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.pathfinder::before {
  position: absolute;
  top: 0;
  left: max(20px, calc((100vw - var(--container)) / 2));
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(var(--maize), rgba(255, 255, 255, 0.1), transparent);
  opacity: 0.82;
}

.pathfinder::after {
  right: -0.08em;
  bottom: -0.22em;
  content: "MP";
  color: rgba(255, 255, 255, 0.045);
  font-size: min(44vw, 560px);
  letter-spacing: -0.15em;
}

.pathfinder-layout {
  grid-template-columns: minmax(230px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(32px, 4.8vw, 82px);
  align-items: stretch;
}

#pathfinder {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.pathfinder-intro {
  top: calc(var(--header-height) + 44px);
  align-self: start;
}

.pathfinder-intro h2 {
  max-width: 9.5ch;
  margin-bottom: 24px;
  letter-spacing: -0.07em;
}

.pathfinder-intro > p:last-of-type {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.pathfinder-note {
  display: grid;
  gap: 12px;
  max-width: 310px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.pathfinder-note span {
  width: fit-content;
  padding: 8px 11px;
  color: var(--blue);
  background: var(--maize);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pathfinder-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.pathfinder-tool {
  display: grid;
  grid-template-columns: minmax(220px, 0.84fr) minmax(300px, 1.16fr);
  gap: clamp(20px, 2.8vw, 38px);
  align-items: stretch;
}

.pathfinder-choices {
  position: relative;
  display: grid;
  gap: 11px;
  align-content: center;
  padding: 10px 0 10px 28px;
  border-top: 0;
}

.pathfinder-choices::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 7px;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, rgba(255, 203, 5, 0.72), rgba(255, 255, 255, 0.16), transparent);
}

.path-choice {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  min-height: 76px;
  padding: 14px 18px 14px 0;
  align-items: center;
  color: rgba(255, 255, 255, 0.66);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018));
  border: 0;
  border-radius: 999px 8px 8px 999px;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.12);
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.path-choice:nth-child(2),
.path-choice:nth-child(5) {
  transform: translateX(8px);
}

.path-choice:nth-child(3),
.path-choice:nth-child(6) {
  transform: translateX(16px);
}

.path-choice::before {
  left: -25px;
  width: 11px;
  height: 11px;
  background: #062f5c;
  border: 1px solid rgba(255, 203, 5, 0.7);
  opacity: 1;
  transform: translateY(-50%);
}

.path-choice-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: rgba(255, 203, 5, 0.9);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 203, 5, 0.28);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.path-choice-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.path-choice-copy strong {
  color: inherit;
  font-size: 15px;
  line-height: 1.1;
}

.path-choice-copy small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.path-choice:hover,
.path-choice:focus-visible {
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.036));
  outline: 0;
  box-shadow: inset 2px 0 0 rgba(255, 203, 5, 0.72), 0 16px 44px rgba(0, 0, 0, 0.18);
}

.path-choice.is-active,
.path-choice.is-active:nth-child(2),
.path-choice.is-active:nth-child(3),
.path-choice.is-active:nth-child(5),
.path-choice.is-active:nth-child(6) {
  color: var(--blue);
  background: linear-gradient(90deg, var(--maize), #ffe16c);
  box-shadow: 0 18px 48px rgba(255, 203, 5, 0.18);
  transform: translateX(18px);
}

.path-choice.is-active::before {
  background: var(--maize);
  box-shadow: 0 0 0 6px rgba(255, 203, 5, 0.12);
  transform: translate(0, -50%);
}

.path-choice.is-active .path-choice-number {
  color: var(--maize);
  background: var(--blue);
  border-color: var(--blue);
}

.path-choice.is-active .path-choice-copy small {
  color: rgba(0, 39, 76, 0.68);
}

.path-result {
  display: grid;
  grid-template-columns: minmax(132px, 0.54fr) minmax(0, 1fr);
  min-height: 520px;
  padding: 0;
  align-content: stretch;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(0, 18, 36, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 34px;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.26);
}

.path-result::before {
  display: none;
}

.path-result::after {
  position: absolute;
  right: -0.28em;
  bottom: -0.22em;
  content: "M";
  color: rgba(255, 203, 5, 0.055);
  font-size: 360px;
  font-weight: 950;
  line-height: 0.8;
}

.path-result-visual {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 40%, rgba(255, 203, 5, 0.24), transparent 38%),
    linear-gradient(180deg, rgba(255, 203, 5, 0.12), rgba(255, 255, 255, 0.025));
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.path-result-visual::before {
  position: absolute;
  inset: 30px;
  content: "";
  border: 1px solid rgba(255, 203, 5, 0.36);
  border-radius: 999px;
}

.path-result-visual strong {
  z-index: 1;
  color: var(--maize);
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.85;
  text-align: center;
}

.path-result-visual small {
  position: absolute;
  right: 22px;
  bottom: 24px;
  left: 22px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.path-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  transform: rotate(-16deg);
}

.path-orbit-one {
  width: 138%;
  height: 46%;
}

.path-orbit-two {
  width: 72%;
  height: 118%;
  transform: rotate(22deg);
}

.path-result-copy {
  position: relative;
  z-index: 1;
  display: grid;
  padding: clamp(34px, 4vw, 54px);
  align-content: end;
}

.path-program-code {
  position: static;
  width: fit-content;
  margin-bottom: auto;
  padding: 9px 11px;
  color: var(--maize);
  background: rgba(255, 203, 5, 0.08);
  border: 1px solid rgba(255, 203, 5, 0.2);
  border-radius: 999px;
}

.path-result-label {
  margin: 46px 0 14px;
  color: rgba(255, 255, 255, 0.52);
}

.path-result h3 {
  max-width: 100%;
  margin-bottom: 16px;
  font-size: clamp(38px, 4vw, 60px);
  letter-spacing: -0.08em;
}

.path-result > p:not(.path-result-label),
.path-result-copy > p:not(.path-result-label) {
  max-width: 45ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.path-fit {
  margin-top: 18px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.64) !important;
  border-left: 3px solid rgba(255, 203, 5, 0.7);
  font-size: 14px !important;
}

.path-result-footer {
  position: relative;
  z-index: 1;
}

.path-result[data-path-theme="career"] .path-result-visual,
.path-result[data-path-theme="connect"] .path-result-visual {
  background:
    radial-gradient(circle at 48% 40%, rgba(55, 215, 255, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(55, 215, 255, 0.11), rgba(255, 255, 255, 0.025));
}

.path-result[data-path-theme="career"] .path-result-visual strong,
.path-result[data-path-theme="connect"] .path-result-visual strong {
  color: #7ee7ff;
}

.path-result[data-path-theme="pitch"] .path-result-visual,
.path-result[data-path-theme="prototype"] .path-result-visual {
  background:
    radial-gradient(circle at 48% 40%, rgba(255, 122, 47, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(255, 122, 47, 0.12), rgba(255, 255, 255, 0.025));
}

.path-result[data-path-theme="pitch"] .path-result-visual strong,
.path-result[data-path-theme="prototype"] .path-result-visual strong {
  color: #ffb178;
}

.path-result[data-path-theme="community"] .path-result-visual,
.path-result[data-path-theme="brand"] .path-result-visual {
  background:
    radial-gradient(circle at 48% 40%, rgba(255, 79, 154, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(255, 79, 154, 0.1), rgba(255, 255, 255, 0.025));
}

.path-result[data-path-theme="community"] .path-result-visual strong,
.path-result[data-path-theme="brand"] .path-result-visual strong {
  color: #ff9ccc;
}

.path-result.is-updating {
  opacity: 0.82;
  transform: translateY(6px) scale(0.992);
}

@media (max-width: 1060px) {
  .pathfinder-layout {
    grid-template-columns: minmax(230px, 0.46fr) minmax(0, 1.54fr);
    gap: 34px;
  }

  .path-result {
    grid-template-columns: 1fr;
  }

  .path-result-visual {
    min-height: 156px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .path-result-visual::before {
    inset: 22px;
  }

  .path-result-visual strong {
    font-size: 62px;
  }

  .path-result-visual small {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .path-result-copy {
    padding: 30px 28px 28px;
  }

  .path-result-label {
    margin-top: 30px;
  }

  .path-result h3 {
    font-size: clamp(38px, 4.6vw, 52px);
  }
}

@media (max-width: 860px) {
  .pathfinder-tool {
    grid-template-columns: 1fr;
  }

  .pathfinder-choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: stretch;
    padding-left: 0;
  }

  .pathfinder-choices::before {
    display: none;
  }

  .path-choice,
  .path-choice:nth-child(2),
  .path-choice:nth-child(3),
  .path-choice:nth-child(5),
  .path-choice:nth-child(6),
  .path-choice.is-active,
  .path-choice.is-active:nth-child(2),
  .path-choice.is-active:nth-child(3),
  .path-choice.is-active:nth-child(5),
  .path-choice.is-active:nth-child(6) {
    transform: none;
  }
}

@media (max-width: 860px) {
  .pathfinder-layout {
    grid-template-columns: 1fr;
  }

  .pathfinder-intro h2 {
    max-width: 12ch;
  }

  .pathfinder-note {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .pathfinder {
    padding: 78px 0;
  }

  .pathfinder::before {
    left: 20px;
  }

  .pathfinder-layout {
    gap: 36px;
  }

  .pathfinder-intro h2 {
    max-width: 9ch;
    font-size: clamp(46px, 13vw, 58px);
  }

  .pathfinder-intro > p:last-of-type {
    font-size: 16px;
  }

  .pathfinder-tool {
    gap: 22px;
  }

  .pathfinder-choices {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .path-choice {
    min-height: 70px;
    padding-right: 14px;
  }

  .path-result {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 24px;
  }

  .path-result-visual {
    min-height: 186px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .path-result-visual strong {
    font-size: 64px;
  }

  .path-result-copy {
    padding: 28px 22px 24px;
  }

  .path-result-label {
    margin-top: 34px;
  }

  .path-result h3 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .path-result-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .path-result-footer .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .path-choice,
  .path-choice::before,
  .path-result,
  .path-orbit {
    transition: none !important;
  }

  .path-result.is-updating {
    opacity: 1;
    transform: none;
  }
}

/* Homepage streamlining - clear MPowered-first layout */
.section-maize,
#about {
  padding: 128px 0 118px;
  background: var(--maize);
}

.section-maize .section-intro,
#about .section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 20px 72px;
  max-width: none;
  margin-bottom: 64px;
}

#about .section-intro .eyebrow,
.section-maize .section-intro .eyebrow {
  grid-column: 1 / -1;
}

#about .section-intro h2,
.section-maize .section-intro h2 {
  max-width: 16ch;
  margin-bottom: 0;
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 0.98;
}

#about .section-intro > p:last-child,
.section-maize .section-intro > p:last-child {
  align-self: end;
  color: rgba(0, 39, 76, 0.74);
  font-size: 19px;
}

#about .stats,
.section-maize .stats {
  gap: 34px;
  padding-top: 30px;
  background: transparent;
  border: 0;
  border-top: 2px solid var(--blue);
  border-radius: 0;
  overflow: visible;
}

#about .stat {
  min-height: 0;
  padding: 0;
  background: transparent;
}

#about .stat strong {
  font-size: clamp(42px, 5vw, 68px);
}

.impact-note {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(0, 39, 76, 0.68);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

#history .section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

#history .section-heading h2 {
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.04em;
}

.mco-teaser {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.mco-teaser-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding: 16px 0;
}

.mco-teaser-inner p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.mco-teaser-inner p strong {
  color: var(--blue);
}

.mco-teaser-inner a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.mco-teaser-inner a:hover {
  color: #001f3e;
}

#history {
  background: #fff;
}

#history.history-band {
  color: var(--blue);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 28%),
    var(--maize);
  border-top: 0;
  border-bottom: 0;
}

#history.history-band .section-heading > p:last-child {
  color: rgba(0, 39, 76, 0.78);
}

#history .section-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

#programs {
  background: #fffef8;
  border-top: 1px solid var(--line);
  overflow: visible;
}

#programs .section-heading {
  max-width: none;
  margin-bottom: 42px;
}

#programs .section-heading h2 {
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.04em;
}

#programs .section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

#programs .container {
  position: relative;
  z-index: 1;
}

.partner-strip-logos .reveal {
  transform: translateY(10px);
}

.partner-strip-logos .reveal.is-visible {
  transform: translateY(0);
}

.hero-proof {
  display: none;
}

#programs .program-grid {
  gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

#programs .program-tile {
  grid-template-rows: minmax(210px, 22vw) auto;
  color: var(--blue);
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 4px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 160ms ease, background 140ms ease;
}

#programs .program-tile:hover,
#programs .program-tile:focus-visible {
  border-color: #001f3e;
  box-shadow: 0 16px 40px rgba(0, 39, 76, 0.14);
  background: #fff;
}

@media (hover: hover) and (pointer: fine) {
  #programs .program-tile:hover,
  #programs .program-tile:focus-visible {
    transform: translateY(-4px);
  }
}

#programs .program-tile img {
  min-height: 210px;
}

#programs .program-tile-body {
  gap: 8px;
  padding: 20px 22px 24px;
  border-top: 3px solid var(--maize);
}

#programs .program-num {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#programs .program-num::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  vertical-align: 1px;
  background: var(--maize);
}

#programs .program-tile h3 {
  font-size: clamp(20px, 2vw, 26px);
}

.program-tile-link {
  margin-top: 4px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

#programs .program-tile:hover .program-tile-link {
  color: #001f3e;
}

#programs .program-tile:hover .program-tile-link,
#programs .program-tile:focus-visible .program-tile-link {
  text-decoration: underline;
  text-decoration-color: var(--maize);
  text-underline-offset: 3px;
}

#programs .section-intro {
  max-width: 720px;
  margin-bottom: 42px;
}

#programs .section-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.04em;
}

#programs .section-intro > p:last-child {
  margin: 0;
  color: var(--muted);
}

.partner-strip {
  display: grid;
  gap: 28px;
  max-width: 920px;
}

.partner-strip h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 3.6vw, 48px);
  letter-spacing: -0.04em;
}

.partner-strip-copy > p:last-child {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
}

.partner-strip-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-top: 2px solid var(--blue);
  border-bottom: 1px solid var(--line);
}

.partner-strip-logos img {
  display: block;
  width: 100%;
  max-height: 42px;
  object-fit: contain;
}

.home-close,
.page-close {
  color: #fff;
  background: var(--blue);
  border-top: 4px solid var(--maize);
}

.page-close.section-pad,
.home-close.section-pad {
  padding-bottom: 0;
}

.close-panel {
  position: relative;
  max-width: 720px;
  padding: clamp(36px, 5vw, 56px) 0 clamp(24px, 4vw, 36px);
  color: #fff;
  background: transparent;
}

.close-panel .eyebrow {
  color: var(--maize);
}

.close-panel h2 {
  max-width: 16ch;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.04em;
}

.close-lede,
.home-close .cta-lede {
  max-width: 48ch;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 1.5vw, 18px);
}

.close-note,
.cta-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.close-note a,
.cta-note a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 203, 5, 0.45);
  text-underline-offset: 3px;
}

.home-close {
  background: var(--paper);
  color: #fff;
}

.home-close .eyebrow {
  color: var(--maize);
}

.home-close h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(36px, 4.4vw, 58px);
  letter-spacing: -0.04em;
}

@media (max-width: 900px) {
  #about .section-intro {
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 44px;
  }

  #about .section-intro h2 {
    font-size: clamp(32px, 10vw, 44px);
    overflow-wrap: break-word;
  }

  #about .stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #about .stat {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 39, 76, 0.24);
  }

  .close-panel h2 {
    max-width: none;
  }

  .partner-strip-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 16px;
  }

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

@media (max-width: 640px) {
  #programs .program-grid {
    grid-template-columns: 1fr;
  }

  #programs .program-tile {
    grid-template-rows: auto auto;
  }

  .hero-stage {
    padding-top: 72px;
  }
}

@media (max-width: 560px) {
  .partner-strip-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-enter {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-mcombinator:hover {
    transform: none;
  }
}

/* MCombinator page polish - clean layout, confirmed copy only */
.mcombinator-page {
  background: #fff;
}

.mco-page-hero {
  min-height: 0;
  padding: calc(var(--header-height) + 48px) 0 64px;
  color: #fff;
  background: var(--blue);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mco-page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
  max-width: none;
}

.mco-page-hero-logo {
  display: grid;
  min-height: clamp(250px, 28vw, 340px);
  margin: 0;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 203, 5, 0.22), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #eef8fc 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.mco-page-hero-logo .mco-page-hero-wordmark {
  display: block;
  width: min(82%, 420px);
  height: auto;
  margin: 0;
  filter: drop-shadow(0 8px 20px rgba(0, 39, 76, 0.08));
}

.mco-page-hero .program-back-link,
.mco-page-hero .eyebrow {
  color: var(--maize);
}

.mco-page-hero-copy h1 {
  max-width: none;
  margin: 16px 0 18px;
  color: #fff;
  font-size: clamp(48px, 6.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.mco-hero-lede {
  max-width: 54ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
}

.mco-hero-lede strong {
  color: #fff;
  font-weight: 800;
}

.mco-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 26px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.mco-hero-stats > div {
  margin: 0;
  padding: 14px 16px;
  background: rgba(0, 39, 76, 0.35);
}

.mco-hero-stats dt {
  margin: 0 0 4px;
  color: rgba(255, 203, 5, 0.92);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mco-hero-stats dd {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.mco-benefit-section {
  background: #fffef8;
}

.mco-section-intro {
  max-width: 640px;
  margin-bottom: 36px;
}

.mco-section-intro h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.04em;
}

.mco-section-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.mco-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mco-benefit-card {
  padding: 24px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.mco-benefit-card h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.03em;
}

.mco-benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.mco-benefit-card-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 20px;
  align-items: end;
  background: var(--maize);
  border: 2px solid var(--blue);
}

.mco-benefit-card-lead h3,
.mco-benefit-card-lead p {
  grid-column: 1;
}

.mco-benefit-num {
  grid-row: 1 / 3;
  grid-column: 2;
  color: var(--blue);
  font-size: clamp(48px, 8vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.mco-curriculum {
  color: #fff;
  background: #001f3e;
}

.mco-curriculum .mco-section-intro h2 {
  color: #fff;
}

.mco-curriculum .mco-section-intro > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.mco-curriculum .eyebrow {
  color: var(--maize);
}

.mco-phase-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--maize);
}

.mco-phase {
  display: grid;
  gap: 10px;
  padding: 26px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mco-phase:last-child {
  border-bottom: 0;
}

.mco-phase-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: baseline;
}

.mco-phase-head span {
  color: var(--maize);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mco-phase-head h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.03em;
}

.mco-phase > p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.55;
}

.mco-phase > strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
}

.mco-culture {
  background: var(--maize);
}

.mco-culture-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--blue);
}

.mco-culture-list li {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: 16px 28px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 39, 76, 0.18);
}

.mco-culture-list li:last-child {
  border-bottom: 0;
}

.mco-culture-list strong {
  color: var(--blue);
  font-size: clamp(18px, 2.2vw, 24px);
}

.mco-culture-list span {
  color: rgba(0, 39, 76, 0.72);
  font-size: 15px;
  line-height: 1.5;
}

.mco-partnerships {
  background: #eef2f5;
}

.mco-partner-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mco-partner-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.mco-partner-card img {
  display: block;
  width: auto;
  max-width: 160px;
  max-height: 72px;
  margin-bottom: 20px;
  object-fit: contain;
}

.mco-partner-card h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.03em;
}

.mco-partner-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.mco-close {
  color: #fff;
  background: var(--blue);
}

.mco-close-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.mco-leadership .eyebrow {
  color: var(--maize);
}

.mco-leadership h2 {
  max-width: none;
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.04em;
}

.mco-leaders {
  display: grid;
  gap: 14px;
}

.mco-leader {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition: background 160ms ease, border-color 160ms ease;
}

.mco-leader:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 203, 5, 0.35);
}

.mco-leader img {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 203, 5, 0.5);
}

.mco-leader img[alt="Sophia Figueroa"] {
  object-position: center 16%;
}

.mco-leader img[alt="Ivana Vera Sanchez"] {
  object-position: center 20%;
}

.mco-leader > span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.mco-leader strong {
  font-size: 16px;
}

.mco-leader small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.mco-team-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--maize) !important;
  font-size: 14px;
  font-weight: 800;
}

.mco-apply {
  padding: 28px 30px;
  color: var(--blue);
  background: var(--maize);
  border: 2px solid var(--blue);
  border-radius: 6px;
}

.mco-apply .eyebrow {
  margin-bottom: 8px;
}

.mco-apply > p:not(.eyebrow) {
  margin: 0;
  font-weight: 800;
}

.mco-apply > strong {
  display: block;
  max-width: none;
  margin: 8px 0 12px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.mco-apply > span {
  display: block;
  margin-bottom: 22px;
  color: rgba(0, 39, 76, 0.72);
  font-weight: 700;
}

.mco-apply > small {
  display: block;
  max-width: 42ch;
  margin-top: 14px;
  color: rgba(0, 39, 76, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .mco-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mco-benefit-grid,
  .mco-partner-cards,
  .mco-close-grid {
    grid-template-columns: 1fr;
  }

  .mco-benefit-card-lead {
    grid-template-columns: 1fr;
  }

  .mco-benefit-num {
    grid-row: auto;
    grid-column: 1;
    justify-self: start;
  }

  .mco-culture-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 900px) {
  .mco-page-hero-inner {
    grid-template-columns: 1fr;
  }

  .mco-page-hero-logo {
    min-height: clamp(160px, 42vw, 280px);
  }
}

@media (max-width: 560px) {
  .mco-page-hero-copy h1 {
    font-size: 42px;
  }

  .mco-hero-stats {
    grid-template-columns: 1fr;
  }

  .mco-page-hero-logo {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .mco-page-hero-logo .mco-page-hero-wordmark {
    width: 78%;
    margin-right: 5%;
  }
}

/* Launch pass - audit execution overrides */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 40;
  padding: 10px 14px;
  color: var(--blue);
  background: var(--maize);
  border-radius: 6px;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.cta-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.cta-note a {
  color: #fff;
  font-weight: 800;
}

.pathfinder-layout {
  display: grid;
}

#history .section-heading {
  display: block;
  max-width: 720px;
}

#history .section-heading h2 {
  max-width: none;
  margin-bottom: 12px;
}

#programs .program-tile-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  grid-template-rows: auto;
  min-height: 0;
  color: #fff;
  background: var(--blue);
  border: 2px solid var(--blue);
  box-shadow: 0 18px 44px rgba(0, 39, 76, 0.18);
}

#programs .program-tile-featured:hover,
#programs .program-tile-featured:focus-visible {
  border-color: var(--maize);
  background: var(--blue);
  box-shadow: 0 22px 48px rgba(0, 39, 76, 0.24);
}

#programs .program-tile-featured img {
  min-height: 200px;
  height: 100%;
}

#programs .program-tile-featured .program-tile-body {
  border-top: 0;
  border-left: 3px solid var(--maize);
}

#programs .program-tile-featured .program-num {
  color: var(--maize);
}

#programs .program-tile-featured .program-num::before {
  background: var(--maize);
}

#programs .program-tile-featured h3,
#programs .program-tile-featured p {
  color: #fff;
}

#programs .program-tile-featured p {
  color: rgba(255, 255, 255, 0.76);
}

#programs .program-tile-featured .program-tile-link {
  color: var(--maize);
}

#programs .program-tile-featured:hover .program-tile-link {
  color: #fff;
  text-decoration-color: var(--maize);
}

#programs .program-tile img {
  object-fit: cover;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

#programs .program-tile img.program-tile-logo {
  object-fit: contain;
  background: #fff;
}

#programs .program-tile-brand img {
  object-fit: contain;
  padding: clamp(34px, 5vw, 58px);
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 203, 5, 0.22), transparent 42%),
    linear-gradient(145deg, #001a33, #00274c 58%, #003a66);
}

.program-tile-visual {
  display: grid;
  min-height: 210px;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 28px;
  color: var(--blue);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 203, 5, 0.22), transparent 52%),
    linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
  border-bottom: 1px solid var(--line);
}

.program-tile-visual span {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.program-tile-visual small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-tile-visual--mco {
  color: var(--blue);
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 203, 5, 0.28), transparent 48%),
    linear-gradient(180deg, #fffef8 0%, #f2f6fb 100%);
}

.pitches-program-photo img {
  object-position: center;
}

#programs .program-tile:hover img,
#programs .program-tile:focus-within img {
  transform: scale(1.04);
}

#programs .program-tile-featured .program-tile-visual {
  min-height: 200px;
  height: 100%;
  border-bottom: 0;
  border-right: 1px solid var(--line);
}

@media (max-width: 640px) {
  #programs .program-tile-featured .program-tile-visual {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  #programs .program-tile-featured .program-tile-body {
    border-left: 0;
    border-top: 3px solid var(--maize);
  }
}

.program-page-media--logo img {
  object-fit: contain;
  padding: 28px;
  background: #f4f6f8;
}

.partner-strip-logos img[alt*="Ross"] {
  padding: 8px 10px;
  background: var(--blue);
  border-radius: 6px;
}

.partner-strip-logos img[alt*="Zell"] {
  padding: 8px 10px;
  background: var(--blue);
  border-radius: 6px;
}

.path-choice:focus-visible,
.project-tab:focus-visible {
  outline: 3px solid var(--maize);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .hero-stage {
    min-height: calc(100svh - var(--header-height));
    padding-bottom: 88px;
  }
}

@media (max-width: 640px) {
  .hero,
  .hero-stage {
    min-height: 0;
    padding-bottom: 120px;
  }

  .team-grid,
  .team-grid.directors {
    gap: 42px;
  }

  #programs .program-tile-featured {
    grid-template-columns: 1fr;
  }

  .program-tile-visual {
    min-height: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0ms !important;
  }

  .hero-media {
    display: block !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero::before {
    background: var(--blue);
  }

  #programs .program-tile:hover img,
  #programs .program-tile:focus-within img {
    transform: none;
  }

  .path-result.is-updating {
    opacity: 1;
    transform: none;
  }
}

.program-director-portrait {
  width: 88px;
  height: 88px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid var(--blue);
}

.program-director-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--portrait-position, center top);
}

.mco-phase.is-active {
  padding-left: 18px;
  border-left: 3px solid var(--maize);
  background: rgba(255, 203, 5, 0.08);
}

.mco-phase.is-active .mco-phase-head h3 {
  color: var(--maize);
}

.contact-layout .contact-panel {
  padding: 28px;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

@media (min-width: 961px) {
  .contact-layout .contact-panel {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }
}

.contact-layout .contact-panel h2 {
  color: #fff;
}

.contact-layout .contact-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-routes .route-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px 16px;
  padding: 22px 0;
  align-items: start;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-routes .route-card:last-child {
  border-bottom: 0;
}

.contact-routes .route-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.contact-routes .route-card h3,
.contact-routes .route-card p {
  margin: 0;
}

.contact-routes .route-card p {
  grid-column: 2;
  color: var(--muted);
}

.contact-routes .route-card:hover,
.contact-routes .route-card:focus-visible {
  padding-left: 12px;
  background: rgba(255, 203, 5, 0.12);
  border-color: rgba(0, 39, 76, 0.2);
  outline: none;
}

/* July 2026 design audit - flow, anti-slop, and layout fixes */
.hero {
  min-height: clamp(620px, 86vh, 860px);
}

.hero-stage {
  min-height: clamp(540px, calc(86vh - var(--header-height)), 760px);
  padding-top: clamp(56px, 9vh, 96px);
  padding-bottom: clamp(56px, 7vh, 88px);
}

#programs::after {
  display: none;
}

.pathfinder::after {
  display: none;
}

.cta-inner::after {
  display: none;
}

#programs .program-tile-brand img,
#programs .program-tile-featured img {
  object-fit: contain;
  object-position: center;
  padding: clamp(34px, 5vw, 58px);
  background: #f4f6f8;
}

#programs .program-tile-brand:hover img,
#programs .program-tile-brand:focus-within img,
#programs .program-tile-featured:hover img,
#programs .program-tile-featured:focus-within img {
  transform: none;
}

.program-page-media img.program-media-brand {
  object-fit: contain;
  padding: 28px;
  background: #f4f6f8;
}

@media (max-width: 640px) {
  .hero,
  .hero-stage {
    min-height: 0;
    padding-bottom: 48px;
  }
}

/* Pathfinder — editorial selector (no white widget) */
.pathfinder {
  position: relative;
  isolation: isolate;
  padding: clamp(88px, 10vw, 128px) 0;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 20, 42, 0.2), transparent 40%),
    linear-gradient(135deg, #00172e 0%, var(--blue) 55%, #003565 100%);
  border-bottom: 0;
}

.pathfinder::before,
.pathfinder::after {
  display: none !important;
}

.pathfinder-header {
  max-width: 46rem;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.pathfinder-header .eyebrow {
  color: var(--maize);
}

.pathfinder-header h2 {
  max-width: 14ch;
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(42px, 5.6vw, 72px);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.pathfinder-header > p {
  max-width: 38ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.45;
}

.pathfinder-tool {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
}

.pathfinder-choices {
  display: grid;
  gap: 0;
  padding: 0;
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.pathfinder-choices::before {
  display: none !important;
}

.path-choice {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 8px 14px 0 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  text-align: left;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
  transform: none !important;
  transition: color 160ms ease, border-color 160ms ease, padding 180ms ease;
}

.path-choice::before,
.path-choice-number,
.path-choice-copy,
.path-choice-copy small {
  display: none !important;
}

.path-choice-index {
  display: inline-block;
  color: rgba(255, 203, 5, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.path-choice-label {
  min-width: 0;
}

.path-choice:hover,
.path-choice:focus-visible {
  color: #fff !important;
  background: transparent !important;
  outline: 0;
  box-shadow: none !important;
}

.path-choice:focus-visible {
  outline: 2px solid var(--maize);
  outline-offset: 3px;
}

.path-choice.is-active,
.path-choice.is-active:nth-child(2),
.path-choice.is-active:nth-child(3),
.path-choice.is-active:nth-child(5),
.path-choice.is-active:nth-child(6) {
  padding-left: 8px !important;
  color: #fff !important;
  background: transparent !important;
  border-bottom-color: rgba(255, 203, 5, 0.55) !important;
  box-shadow: inset 3px 0 0 var(--maize) !important;
  transform: none !important;
}

.path-choice.is-active .path-choice-index {
  color: var(--maize);
}

.path-choice.is-active::before {
  display: none !important;
}

.path-result {
  position: relative;
  display: grid !important;
  grid-template-columns: 1fr !important;
  min-height: 0 !important;
  padding: 8px 0 0 !important;
  align-content: start;
  gap: 0;
  color: #fff !important;
  background: transparent !important;
  border: 0 !important;
  border-left: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: opacity 180ms ease;
}

.path-result::before,
.path-result::after,
.path-result-visual,
.path-orbit {
  display: none !important;
}

.path-result.is-updating {
  opacity: 0.55;
  transform: none;
}

.path-result-label,
.path-program-code {
  margin: 0 0 14px !important;
  color: var(--maize) !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-result h3 {
  max-width: 12ch;
  margin: 0 0 18px !important;
  color: #fff !important;
  font-size: clamp(40px, 5vw, 64px) !important;
  letter-spacing: -0.06em !important;
  line-height: 0.95 !important;
}

.path-result-body,
.path-result > p:not(.path-result-label):not(.path-fit) {
  max-width: 38ch;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
}

.path-fit {
  max-width: 38ch;
  margin: 20px 0 0 !important;
  padding-left: 16px !important;
  color: rgba(255, 255, 255, 0.66) !important;
  border-left: 3px solid var(--maize) !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

.path-result-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

.path-result-footer > span {
  display: none;
}

.path-result .button {
  width: fit-content;
  margin-top: 0;
}

.path-result .button.secondary.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 900px) {
  .pathfinder-tool {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .path-result {
    padding-top: 8px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  .path-result h3 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .path-choice {
    min-height: 52px;
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .path-result-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .path-result .button {
    width: 100%;
    justify-content: center;
  }
}

/* MTank editorial program page */
.mtank-page {
  background: #f7f5ee;
}

.mtank-hero {
  min-height: 100svh;
  padding: calc(var(--header-height) + clamp(44px, 6vw, 82px)) 0 clamp(64px, 8vw, 104px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 203, 5, 0.05), transparent 42%),
    #001f3e;
}

.mtank-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  grid-template-rows: auto minmax(560px, 1fr);
  gap: clamp(34px, 5vw, 68px) clamp(54px, 8vw, 112px);
  align-items: center;
}

.mtank-back-link {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--maize);
  align-self: start;
}

.mtank-hero-copy .eyebrow {
  color: var(--maize);
}

.mtank-hero-copy h1 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(88px, 11vw, 164px);
  line-height: 0.76;
  letter-spacing: -0.085em;
}

.mtank-hero-lede {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.mtank-hero-copy .hero-actions {
  margin-top: 34px;
}

.mtank-hero-copy .button.primary {
  color: var(--blue);
  background: var(--maize);
}

.mtank-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: clamp(42px, 6vw, 70px) 0 0;
  border-top: 2px solid rgba(255, 203, 5, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mtank-hero-facts > div {
  padding: 18px 14px 17px 0;
}

.mtank-hero-facts > div:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.mtank-hero-facts dt {
  color: #fff;
  font-size: clamp(23px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.mtank-hero-facts dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mtank-hero-media {
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: var(--maize);
  box-shadow: 26px 26px 0 rgba(255, 203, 5, 0.16);
}

.mtank-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.mtank-hero-media figcaption {
  padding: 17px 22px;
  color: var(--blue);
  background: var(--maize);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mtank-competition {
  background: #fffef8;
}

.mtank-competition-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 9vw, 138px);
  align-items: end;
}

.mtank-competition-heading h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(52px, 6.8vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.mtank-competition-copy > p {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.mtank-competition-copy .button {
  margin-top: 30px;
}

.mtank-founder-value {
  margin-top: clamp(70px, 9vw, 118px);
  border-top: 3px solid var(--blue);
}

.mtank-founder-value article {
  display: grid;
  grid-template-columns: 52px minmax(180px, 0.48fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 72px);
  padding: clamp(24px, 3vw, 38px) 0;
  border-bottom: 1px solid rgba(0, 39, 76, 0.2);
  align-items: baseline;
}

.mtank-founder-value article > span {
  color: rgba(0, 39, 76, 0.42);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.mtank-founder-value h3 {
  margin: 0;
  font-size: clamp(27px, 3vw, 40px);
}

.mtank-founder-value p {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.mtank-awards {
  color: var(--blue);
  background: var(--maize);
}

.mtank-awards-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 0 clamp(54px, 9vw, 138px);
}

.mtank-awards header {
  grid-row: 1 / 3;
}

.mtank-awards h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.mtank-award-list {
  border-top: 3px solid var(--blue);
}

.mtank-award-list article {
  display: grid;
  grid-template-columns: minmax(170px, 0.45fr) minmax(0, 0.55fr);
  gap: 34px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(0, 39, 76, 0.26);
}

.mtank-award-list span {
  font-weight: 900;
}

.mtank-award-list p {
  margin: 0;
  color: rgba(0, 39, 76, 0.72);
}

.mtank-awards-note {
  grid-column: 2;
  margin: 24px 0 0;
  color: rgba(0, 39, 76, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.mtank-timeline {
  color: #fff;
  background: #06345f;
}

.mtank-timeline-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(54px, 9vw, 138px);
}

.mtank-timeline .eyebrow {
  color: var(--maize);
}

.mtank-timeline h2 {
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.8vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.mtank-dates {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 3px solid var(--maize);
}

.mtank-dates li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 26px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  align-items: baseline;
}

.mtank-dates li > span {
  color: var(--maize);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.mtank-dates strong {
  color: #fff;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.mtank-dates p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mtank-team {
  background: #fffef8;
}

.mtank-team .section-heading > p:last-child {
  max-width: 48ch;
  color: var(--muted);
}

.mtank-team-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, 0.78fr);
  gap: clamp(54px, 9vw, 120px);
  margin-top: clamp(56px, 7vw, 88px);
  align-items: start;
}

.mtank-role-list {
  border-top: 3px solid var(--blue);
}

.mtank-role-list article {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 0.58fr);
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 39, 76, 0.2);
}

.mtank-role-list article > span {
  color: var(--blue);
  font-size: 20px;
  font-weight: 900;
}

.mtank-role-list article > p {
  margin: 0;
  color: var(--muted);
}

.mtank-role-list > .button {
  margin-top: 32px;
}

.mtank-director {
  padding: 0;
  background: transparent;
  border: 0;
}

.mtank-director .program-director-portrait {
  margin-bottom: 24px;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
}

.program-director-bio {
  margin: 18px 0;
  padding-top: 16px;
  color: var(--muted) !important;
  border-top: 1px solid var(--line);
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.65;
}

.mtank-close {
  border-top-width: 10px;
}

@media (max-width: 960px) {
  .mtank-hero-grid,
  .mtank-competition-grid,
  .mtank-awards-grid,
  .mtank-timeline-grid,
  .mtank-team-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .mtank-hero-grid {
    grid-template-rows: auto auto auto;
  }

  .mtank-back-link,
  .mtank-awards-note {
    grid-column: auto;
  }

  .mtank-awards header {
    grid-row: auto;
    margin-bottom: 48px;
  }

  .mtank-hero-media {
    min-height: 480px;
  }

  .mtank-director {
    max-width: 480px;
  }
}

@media (max-width: 640px) {
  .mtank-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 42px);
  }

  .mtank-hero-grid {
    gap: 30px;
  }

  .mtank-hero-copy h1 {
    font-size: clamp(70px, 24vw, 98px);
  }

  .mtank-hero-lede {
    font-size: 19px;
  }

  .mtank-hero-media {
    min-height: 0;
    box-shadow: 12px 12px 0 rgba(255, 203, 5, 0.16);
  }

  .mtank-hero-media img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .mtank-founder-value article,
  .mtank-award-list article,
  .mtank-role-list article {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
  }

  .mtank-founder-value article {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .mtank-founder-value article p {
    grid-column: 2;
  }

  .mtank-dates li {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }
}

/* Homepage cinematic hero test */
@media (max-width: 960px) {
  .hero-media {
    width: 76vw;
    opacity: 0.86;
  }

  .hero-copy {
    width: min(680px, 78%);
  }
}

@media (max-width: 640px) {
  .hero,
  .hero-stage {
    min-height: 0;
  }

  .hero {
    display: block;
    min-height: 0;
    padding-bottom: 0;
  }

  .hero-stage {
    position: relative;
    z-index: 2;
    order: unset;
    padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 8px);
    /* Leave room so the faded M sits under the CTAs like desktop's side fade. */
    padding-bottom: clamp(168px, 46vw, 260px);
    align-items: start;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-media {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    max-width: 100%;
    height: clamp(200px, 54vw, 320px);
    margin: 0;
    opacity: 0.9;
    /* Soft vertical dissolve into navy — mobile equivalent of desktop's side mask. */
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 14%,
      rgba(0, 0, 0, 0.45) 34%,
      rgba(0, 0, 0, 0.82) 58%,
      #000 80%,
      rgba(0, 0, 0, 0.75) 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 14%,
      rgba(0, 0, 0, 0.45) 34%,
      rgba(0, 0, 0, 0.82) 58%,
      #000 80%,
      rgba(0, 0, 0, 0.75) 100%
    );
  }

  .hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(0, 25, 50, 0.98) 0%,
        rgba(0, 25, 50, 0.93) 38%,
        rgba(0, 25, 50, 0.55) 60%,
        rgba(0, 25, 50, 0.28) 78%,
        rgba(0, 25, 50, 0.4) 100%
      );
  }

  .hero .button.secondary {
    color: #fff;
    background: rgba(0, 31, 61, 0.88);
    border-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media-video {
    display: none;
  }

  .hero-media-poster {
    display: block;
  }
}

/* ADA pass — Jul 2026 */
.loader {
  position: fixed;
}

/* Do not lock document scroll on iOS — overflow:hidden on body fights touch scrolling. */
body.nav-open {
  overflow: visible;
}

.skip-link {
  z-index: 1100;
}

.skip-link:focus {
  top: 12px;
}

@media (max-width: 640px) {
  .hero-media {
    right: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* Mobile program cards: artwork on top, copy below.
   Avoid overflow+transform on tiles — iOS Safari clips/repaints mid-card
   text while scrolling when both are present. */
@media (max-width: 640px) {
  #programs .program-tile,
  #programs .program-tile-featured {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    color: var(--blue);
    background: #fff;
    box-shadow: none;
    overflow: visible;
    opacity: 1 !important;
    transform: none !important;
    transition: border-color 160ms ease, background 140ms ease, box-shadow 180ms ease !important;
  }

  #programs .program-tile:hover,
  #programs .program-tile:focus-visible,
  #programs .program-tile:focus-within {
    transform: none !important;
  }

  #programs .program-tile > img,
  #programs .program-tile-featured > img,
  #programs .program-tile .program-tile-visual {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 9;
    padding: 0;
    object-fit: cover;
    background: #f4f6f8;
    border: 0;
    transform: none !important;
  }

  #programs .program-tile-brand > img {
    padding: 28px;
    object-fit: contain;
    background:
      radial-gradient(circle at 30% 40%, rgba(255, 203, 5, 0.22), transparent 42%),
      linear-gradient(145deg, #001a33, #00274c 58%, #003a66);
  }

  #programs .program-tile-body,
  #programs .program-tile-featured .program-tile-body {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 18px 18px 22px;
    color: var(--blue);
    background: #fff;
    border: 0;
    border-top: 3px solid var(--maize);
    opacity: 1;
    transform: none;
  }

  #programs .program-tile-body .program-num,
  #programs .program-tile-body h3,
  #programs .program-tile-body p,
  #programs .program-tile-body .program-tile-link {
    opacity: 1;
    transform: none;
  }

  #programs .program-tile-featured h3,
  #programs .program-tile-featured p,
  #programs .program-tile-featured .program-num,
  #programs .program-tile-featured .program-tile-link {
    color: var(--blue);
  }

  #programs .program-tile-featured .program-num::before {
    background: var(--maize);
  }

  #programs .program-tile-featured .program-tile-link {
    color: #9a7200;
  }

  #programs .program-tile-featured {
    grid-template-rows: auto;
  }

  #programs .program-tile-featured > img {
    display: none;
  }

  #programs .program-tile-featured .program-tile-body {
    grid-row: 1;
    min-height: 0;
    padding: 24px 20px 26px;
    border-top: 0;
  }

  #programs .program-tile.reveal,
  #programs .program-tile.reveal:not(.is-visible),
  #programs .program-tile.reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Pathfinder + history visual pass — Jul 2026 */
.history-band {
  color: var(--blue);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 28%),
    var(--maize);
  border-top: 0;
  border-bottom: 0;
}

.history-band .section-heading {
  max-width: 40rem;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.history-band .section-heading .eyebrow {
  color: var(--blue);
}

.history-band .section-heading h2 {
  color: var(--blue);
  font-size: clamp(36px, 4.6vw, 58px);
  letter-spacing: -0.05em;
}

.history-band .section-heading > p:last-child {
  max-width: 46ch;
  color: rgba(0, 39, 76, 0.78);
  font-size: 17px;
}

.history-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--blue);
}

.history-milestone {
  position: relative;
  padding: 24px 24px 0 0;
}

.history-milestone + .history-milestone {
  padding-left: 28px;
  border-left: 1px solid rgba(0, 39, 76, 0.18);
}

.history-marker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.history-marker::before {
  width: 12px;
  height: 12px;
  content: "";
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 39, 76, 0.12);
}

.history-milestone:nth-child(2) .history-marker::before {
  background: #fff;
}

.history-milestone h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.history-milestone p {
  margin: 0;
  color: rgba(0, 39, 76, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.pathfinder-choices .path-choice {
  min-height: 56px;
}

@media (max-width: 900px) {
  .history-timeline {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 2px solid var(--blue);
  }

  .history-milestone,
  .history-milestone + .history-milestone {
    padding: 0 0 28px 24px;
    border-left: 0;
  }
}

/* Program template — text-first Michigan layout (no hero media) */
.program-template {
  background:
    linear-gradient(180deg, #f3f6fa 0%, #fff 28%, #f7f8fa 100%);
}

.program-template .program-back-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.program-template .program-back-link:hover,
.program-template .program-back-link:focus-visible {
  color: var(--maize);
}

.program-hero {
  padding: calc(var(--header-height) + 36px) 0 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 203, 5, 0.16), transparent 42%),
    linear-gradient(180deg, #001a33 0%, #00274c 58%, #003366 100%);
  border-bottom: 4px solid var(--maize);
}

.program-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  max-width: 760px;
  padding-bottom: clamp(28px, 4vw, 40px);
}

.program-hero-copy {
  display: grid;
  gap: 14px;
}

.program-hero-copy .eyebrow.dark {
  color: var(--maize);
}

.program-hero-copy h1 {
  margin: 0;
  max-width: 14ch;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.program-hero-lede {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
}

.program-hero-copy .hero-actions {
  margin-top: 4px;
}

.program-hero-copy .button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.program-hero-copy .button.secondary:hover,
.program-hero-copy .button.secondary:focus-visible {
  color: var(--blue);
  border-color: var(--maize);
  background: var(--maize);
}

.program-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 10px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 203, 5, 0.35);
}

.program-hero-facts > div {
  display: grid;
  gap: 4px;
  padding: 14px 16px 0 0;
}

.program-hero-facts > div + div {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.program-hero-facts dt {
  color: var(--maize);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.program-hero-facts dd {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.program-about {
  background: #fff;
  border-bottom: 1px solid rgba(0, 39, 76, 0.1);
}

.program-about.section-pad,
.program-how.section-pad,
.program-leadership.section-pad {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}

.program-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  max-width: 720px;
}

.program-about-copy h2 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.program-about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.program-about-copy p + p {
  margin-top: 12px;
}

.program-about-list {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  border-top: 3px solid var(--blue);
}

.program-about-list li {
  position: relative;
  padding: 12px 0 12px 18px;
  color: var(--blue);
  border-bottom: 1px solid rgba(0, 39, 76, 0.12);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.program-about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15em;
  width: 8px;
  height: 8px;
  background: var(--maize);
  transform: translateY(-50%);
}

.program-how {
  color: #fff;
  background:
    linear-gradient(180deg, #001a33 0%, #00274c 100%);
}

.program-how .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  max-width: none;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.program-how .section-heading .eyebrow {
  color: var(--maize);
  grid-column: auto;
}

.program-how .section-heading h2 {
  max-width: 28ch;
  color: #fff;
  white-space: normal;
}

.program-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.program-steps > li {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 100%;
  padding: 20px 18px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 203, 5, 0.28);
  border-top: 3px solid var(--maize);
}

.program-steps > li > span {
  color: var(--maize);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.program-steps > li > span::after {
  display: none;
}

.program-steps h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.program-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
}

.program-how-note {
  max-width: 56ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.45;
}

.program-dates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.program-dates > li {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  color: var(--blue);
  background: var(--maize);
}

.program-dates > li span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.program-dates > li strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.program-dates > li p {
  margin: 0;
  color: rgba(0, 39, 76, 0.78);
  font-size: 14px;
}

.program-leadership {
  background: #fffef8;
  border-top: 1px solid rgba(0, 39, 76, 0.1);
}

.program-leadership-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

.program-leadership-copy .eyebrow {
  color: var(--blue);
}

.program-leadership-copy h2 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.program-leadership-copy p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.program-template .program-director-card,
.program-leadership-card {
  padding: 22px;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-top: 4px solid var(--maize);
  border-radius: 0;
  box-shadow: none;
}

.program-template .program-director-card .eyebrow,
.program-leadership-card .eyebrow {
  color: var(--maize);
}

.program-template .program-director-card h3,
.program-leadership-card h3 {
  margin: 8px 0;
  color: #fff;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.program-template .program-director-card p,
.program-leadership-card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.program-template .program-director-card a,
.program-leadership-card a:not(.button) {
  color: var(--maize);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.program-template .program-director-portrait {
  width: 112px;
  height: 112px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 203, 5, 0.45);
  border-radius: 20px;
}

.program-template .program-director-portrait img,
.program-template .program-director-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
}

.program-template .program-director-bio {
  margin: 10px 0 14px;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.72) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px !important;
  line-height: 1.45;
}

.program-template .page-close {
  border-top: 4px solid var(--maize);
}

@media (max-width: 900px) {
  .program-leadership-grid,
  .program-steps,
  .program-dates,
  .program-hero-facts {
    grid-template-columns: 1fr;
  }

  .program-hero-copy h1 {
    max-width: none;
  }

  .program-hero-facts > div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 12px;
  }
}

@media (max-width: 640px) {
  .program-hero {
    padding-top: calc(var(--header-height) + 24px);
  }

  .program-hero-copy .hero-actions,
  .program-template .page-close .hero-actions {
    display: grid;
  }

  .program-hero-copy .hero-actions .button,
  .program-template .page-close .hero-actions .button {
    width: 100%;
    justify-content: center;
  }
}

/* Team page — Michigan navy/maize roster layout */
.team-page {
  background:
    linear-gradient(180deg, #f3f6fa 0%, #fff 24%, #f7f8fa 100%);
}

.team-leadership-flow {
  background: #fff;
}

.team-hero {
  padding: calc(var(--header-height) + 36px) 0 clamp(36px, 5vw, 56px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 203, 5, 0.14), transparent 42%),
    linear-gradient(180deg, #001a33 0%, #00274c 62%, #003366 100%);
}

.team-hero-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.team-hero-copy .eyebrow.dark {
  color: var(--maize);
}

.team-hero-copy h1 {
  margin: 0;
  max-width: 16ch;
  color: #fff;
  font-size: clamp(42px, 6vw, 68px);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.team-hero-lede {
  max-width: 46ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
}

.team-hero-leadership {
  margin: clamp(18px, 3vw, 28px) 0 0;
}

.team-hero .team-hero-leadership .eyebrow {
  color: var(--maize);
}

.team-hero .team-hero-leadership h2,
.team-hero .team-section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.team-page .team-section {
  padding-top: clamp(40px, 5vw, 72px);
  padding-bottom: clamp(40px, 5vw, 72px);
}

.team-section-heading {
  display: grid;
  gap: 10px;
  max-width: none;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.team-section-heading .eyebrow {
  margin: 0;
  color: var(--blue);
}

.team-section-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.team-executives {
  background: #fff;
  padding: clamp(28px, 4vw, 44px) 0 clamp(40px, 5vw, 72px);
  border-bottom: 1px solid rgba(0, 39, 76, 0.08);
}

.team-executives .team-section-heading {
  text-align: center;
  justify-items: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.team-directors {
  color: #fff;
  background:
    linear-gradient(180deg, #001a33 0%, #00274c 100%);
  border-top: 0;
}

.team-directors .team-section-heading {
  text-align: center;
  justify-items: center;
}

.team-directors .team-section-heading .eyebrow {
  color: var(--maize);
}

.team-directors .team-section-heading h2 {
  color: #fff;
}

.team-page .team-grid {
  display: grid;
  align-items: start;
  gap: clamp(28px, 3.5vw, 48px) clamp(16px, 2vw, 24px);
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.team-page .team-grid-presidents {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(880px, 100%);
  margin: 0 auto clamp(28px, 4vw, 48px);
}

.team-page .team-grid-officers,
.team-page .team-grid-directors {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.team-advisors {
  background: #fffef8;
  border-top: 1px solid rgba(0, 39, 76, 0.1);
}

.team-advisors .team-section-heading {
  text-align: center;
  justify-items: center;
}

.team-page .team-grid-advisors {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(880px, 100%);
  margin-inline: auto;
}

.team-page .person-card {
  display: flex;
  flex-direction: column;
  align-self: start;
  height: auto;
  min-width: 0;
  text-align: left;
}

.team-page .person-portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0;
  border-top: 4px solid var(--maize);
  background: #001a33;
}

.team-page .person-marker {
  border-radius: 0;
  border-top: 4px solid var(--maize);
}

.team-page .person-photo-portrait {
  object-position: var(--portrait-position, center top);
  transform: scale(var(--portrait-scale, 1));
  transform-origin: center top;
}

.team-page .person-card-body {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  padding: 14px 0 0 !important;
  text-align: left;
}

.team-page .person-card-copy {
  display: grid;
  gap: 4px;
  justify-items: start;
  width: 100%;
  text-align: left;
}

.team-page .person-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(17px, 1.5vw, 21px);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.team-page .person-card-copy > p {
  margin: 0;
  min-height: 2.7em;
  color: rgba(0, 39, 76, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.team-page .person-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: flex-start;
  justify-content: flex-start;
  gap: 6px 8px;
  width: 100%;
  min-height: 24px;
  margin-top: 14px;
  padding: 0 !important;
  color: rgba(0, 39, 76, 0.62);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
}

.team-page .person-meta-sep {
  color: rgba(0, 39, 76, 0.28);
  font-weight: 700;
}

.team-page .person-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 0 !important;
  color: rgba(0, 39, 76, 0.72);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: color 140ms ease;
}

.team-page .person-linkedin:hover,
.team-page .person-linkedin:focus-visible {
  color: var(--blue);
  outline: none;
  text-decoration: underline;
  text-decoration-color: rgba(10, 102, 194, 0.45);
  text-underline-offset: 3px;
}

.team-page .person-linkedin-icon {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  flex: 0 0 auto;
}

.team-page .person-bio {
  margin: 0;
  padding: 0;
  border: 0;
}

.team-page .person-bio summary {
  display: inline-flex;
  align-items: center;
  list-style: none;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 0;
  color: rgba(0, 39, 76, 0.72);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.team-page .person-bio summary::-webkit-details-marker {
  display: none;
}

.team-page .person-bio summary:hover,
.team-page .person-bio summary:focus-visible {
  color: var(--blue);
  outline: none;
  text-decoration: underline;
  text-decoration-color: rgba(255, 203, 5, 0.7);
  text-underline-offset: 3px;
}

.team-page .person-bio[open] {
  flex: 1 1 100%;
  width: 100%;
  margin-top: 2px;
}

.team-page .person-bio[open] summary {
  display: inline-block;
  margin-bottom: 6px;
}

.team-page .person-bio p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.team-page .person-card-actions,
.team-page .person-link-empty,
.team-page .person-bio-empty,
.team-page .person-linkedin-label {
  display: none;
}

.team-directors .person-card h3 {
  color: #fff;
}

.team-directors .person-card-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.team-directors .person-meta {
  margin-top: 16px;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.7);
}

.team-directors .person-meta-sep {
  color: rgba(255, 255, 255, 0.35);
}

.team-directors .person-linkedin,
.team-directors .person-bio summary {
  color: rgba(255, 255, 255, 0.78);
}

.team-directors .person-linkedin:hover,
.team-directors .person-linkedin:focus-visible,
.team-directors .person-bio summary:hover,
.team-directors .person-bio summary:focus-visible {
  color: var(--maize);
  text-decoration-color: rgba(255, 203, 5, 0.7);
}

.team-directors .person-bio p {
  color: rgba(255, 255, 255, 0.78);
}

.team-page .team-close {
  border-top: 0;
}

@media (max-width: 1100px) {
  .team-page .team-grid-officers,
  .team-page .team-grid-directors {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .team-hero-copy h1 {
    max-width: none;
  }

  .team-page .team-grid-presidents,
  .team-page .team-grid-officers,
  .team-page .team-grid-directors,
  .team-page .team-grid-advisors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 560px) {
  .team-page .team-grid-presidents,
  .team-page .team-grid-officers,
  .team-page .team-grid-directors,
  .team-page .team-grid-advisors {
    grid-template-columns: 1fr;
  }

  /* Taller frames on mobile so headshots keep face + shoulders (4/3 was too short). */
  .team-page .person-portrait,
  .team-page .person-marker {
    aspect-ratio: 3 / 4;
  }

  .team-page .person-photo-portrait {
    object-position: var(--portrait-position, center 12%);
    transform-origin: center 20%;
  }
}
/* Get Involved hub - contact.html and homepage #get-involved */
.involve-hero {
  border-bottom: 4px solid var(--maize);
  background:
    linear-gradient(135deg, rgba(255, 203, 5, 0.12) 0%, transparent 42%),
    linear-gradient(180deg, #fffef8 0%, var(--paper) 100%);
}

.involve-hero h1 {
  max-width: 16ch;
}

.involve-hero > p:last-child {
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
}

.involve-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px 48px;
  align-items: end;
  max-width: none;
  margin-bottom: 48px;
}

.involve-intro h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 52px);
  letter-spacing: -0.04em;
}

.involve-intro > p {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
}

.involve-action-list {
  display: grid;
  border-top: 2px solid var(--blue);
}

.involve-action {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 18px 28px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease, border-color 180ms ease;
}

.involve-action:hover,
.involve-action:focus-visible {
  padding-left: 18px;
  background: rgba(255, 203, 5, 0.12);
  border-color: rgba(0, 39, 76, 0.22);
  outline: none;
}

.involve-action-index {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.involve-action-copy h3 {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.03em;
}

.involve-action-copy p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 15px;
}

.involve-action-cta {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.involve-action:hover .involve-action-cta,
.involve-action:focus-visible .involve-action-cta {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(255, 203, 5, 0.7);
  text-underline-offset: 3px;
}

.involve-routes {
  background: #fffef8;
  border-top: 1px solid var(--line);
}

.involve-explore {
  background: var(--paper);
}

.involve-explore-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  border-top: 2px solid var(--blue);
}

.involve-explore-link {
  display: grid;
  gap: 8px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease;
}

.involve-explore-link:hover,
.involve-explore-link:focus-visible {
  padding-left: 14px;
  background: rgba(255, 203, 5, 0.1);
  outline: none;
}

.involve-explore-link strong {
  color: var(--blue);
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.03em;
}

.involve-explore-link span {
  color: var(--muted);
  font-size: 15px;
}

.home-involve {
  color: #fff;
  background:
    linear-gradient(160deg, rgba(255, 203, 5, 0.12) 0%, transparent 38%),
    var(--blue);
  border-top: 4px solid var(--maize);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.home-involve + .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-involve-intro {
  max-width: 720px;
  margin-bottom: 42px;
}

.home-involve-intro .eyebrow {
  color: var(--maize);
}

.home-involve-intro h2 {
  max-width: 14ch;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(34px, 4.4vw, 56px);
  letter-spacing: -0.04em;
}

.home-involve-intro > p {
  margin: 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 1.5vw, 18px);
}

.home-involve-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.home-involve-action {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 220px;
  padding: 28px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 180ms ease, transform 180ms ease;
}

.home-involve-action:last-child {
  border-right: 0;
}

.home-involve-action:hover,
.home-involve-action:focus-visible {
  background: rgba(255, 203, 5, 0.12);
  outline: none;
}

.home-involve-action span {
  color: var(--maize);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.home-involve-action strong {
  color: #fff;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.03em;
}

.home-involve-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.home-involve-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  margin-top: 36px;
  padding-bottom: 8px;
}

.home-involve-foot p {
  margin: 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

@media (max-width: 960px) {
  .involve-intro {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .involve-action {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px 16px;
    padding: 24px 4px;
  }

  .involve-action-cta {
    grid-column: 2;
    white-space: normal;
  }

  .involve-explore-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-involve-actions {
    grid-template-columns: 1fr 1fr;
  }

  .home-involve-action {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-involve-action:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-involve-action:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .home-involve-foot {
    align-items: stretch;
    flex-direction: column;
  }

  .home-involve-foot .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .home-involve-actions {
    grid-template-columns: 1fr;
  }

  .home-involve-action:nth-child(odd) {
    border-right: 0;
  }

  .home-involve-action:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-involve-action:last-child {
    border-bottom: 0;
  }

  .involve-action:hover,
  .involve-action:focus-visible,
  .involve-explore-link:hover,
  .involve-explore-link:focus-visible {
    padding-left: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .involve-action,
  .involve-explore-link,
  .home-involve-action {
    transition: none;
  }
}

/* Simplified Get Involved page */
.involve-page {
  background: #fffef8;
}

.involve-simple-hero {
  padding: calc(var(--header-height) + 56px) 0 36px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 203, 5, 0.16) 0%, transparent 42%),
    var(--blue);
  border-bottom: 4px solid var(--maize);
}

.involve-simple-hero-inner {
  max-width: 720px;
}

.involve-simple-hero .eyebrow {
  color: var(--maize);
}

.involve-simple-hero h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(48px, 8vw, 84px);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.involve-simple-lede {
  margin: 0;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 20px);
}

.involve-simple {
  padding-top: 48px;
  padding-bottom: 72px;
}

.involve-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.involve-simple-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 280px;
  padding: 28px 24px;
  color: var(--blue);
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 4px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 160ms ease, border-color 160ms ease;
}

.involve-simple-card:hover,
.involve-simple-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 39, 76, 0.14);
  outline: none;
}

.involve-simple-card--apply {
  color: var(--blue);
  background: var(--maize);
  border-color: var(--maize);
}

.involve-simple-card--apply:hover,
.involve-simple-card--apply:focus-visible {
  background: #ffd433;
  border-color: #ffd433;
}

.involve-simple-card--newsletter {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.involve-simple-card--newsletter:hover,
.involve-simple-card--newsletter:focus-visible {
  border-color: var(--maize);
}

.involve-simple-card--instagram {
  color: var(--blue);
  background: #fff;
}

.involve-simple-card--linkedin {
  color: #fff;
  background: #0a66c2;
  border-color: #0a66c2;
}

.involve-simple-card--linkedin:hover,
.involve-simple-card--linkedin:focus-visible {
  border-color: var(--maize);
}

.involve-simple-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.involve-simple-card--newsletter .involve-simple-kicker {
  color: var(--maize);
}

.involve-simple-card h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.involve-simple-card--newsletter h3,
.involve-simple-card--newsletter .involve-simple-cta {
  color: #fff;
}

.involve-simple-card p {
  margin: 0;
  max-width: 28ch;
  color: inherit;
  opacity: 0.78;
  font-size: 15px;
  line-height: 1.5;
}

.involve-simple-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.involve-simple-card--apply .involve-simple-cta,
.involve-simple-card--newsletter .involve-simple-cta {
  text-decoration: underline;
  text-decoration-color: rgba(0, 39, 76, 0.35);
  text-underline-offset: 3px;
}

.involve-simple-card--newsletter .involve-simple-cta {
  text-decoration-color: rgba(255, 203, 5, 0.55);
}

.involve-ig-icon {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.involve-ig-icon--inline {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}

.involve-linkedin-icon {
  display: block;
  width: 28px;
  height: 28px;
}

.involve-linkedin-icon--inline {
  width: 18px;
  height: 18px;
}

.involve-simple-email {
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.involve-simple-email a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 203, 5, 0.7);
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .involve-simple-grid {
    grid-template-columns: 1fr;
  }

  .involve-simple-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .involve-simple-card,
  .involve-simple-card:hover,
  .involve-simple-card:focus-visible {
    transition: none;
    transform: none;
  }
}

.home-involve-actions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-involve-ig,
.home-involve-social {
  display: inline-flex;
  align-items: center;
}

.home-involve-ig img,
.home-involve-social img {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}

.home-involve-social img {
  border-radius: 0;
}

.home-involve-foot a[href^="mailto"] {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 203, 5, 0.55);
  text-underline-offset: 3px;
}

@media (max-width: 960px) {
  .home-involve-actions {
    grid-template-columns: 1fr;
  }

  .home-involve-action {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .home-involve-action:last-child {
    border-bottom: 0;
  }
}

/* Performance polish */
.hero-media-video {
  content-visibility: visible;
}

#get-involved,
.partner-strip,
.team-directors,
.involve-simple,
.page-close {
  content-visibility: auto;
  contain-intrinsic-size: 1px 480px;
}

#programs {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

@media (prefers-reduced-motion: reduce) {
  .loader-skip,
  .hero-panel-cta,
  .path-choice,
  .button {
    backdrop-filter: none !important;
  }
}

@media (max-width: 900px) {
  .hero-media-video {
    /* Prefer poster on smaller devices to cut decode cost */
  }
}

/* July 30 mobile launch polish */
html {
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }
}

@media (hover: none), (max-width: 960px) {
  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 960px) {
  .nav {
    max-height: calc(100svh - var(--header-height) - 24px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-primary a,
  .nav .nav-cta.button {
    min-height: 48px;
  }
}

@media (max-width: 640px) {
  .program-hero-facts > div {
    padding-right: 0;
  }

  .program-steps > li,
  .program-dates > li {
    padding-inline: 16px;
  }

  .home-involve-action {
    padding: 24px 18px;
  }

  .footer-links-row a {
    min-height: 44px;
  }
}

@media (max-width: 380px) {
  .involve-page .involve-simple > .container {
    width: calc(100vw - 40px);
  }

  .involve-page .involve-simple-grid,
  .involve-page .involve-simple-card {
    min-width: 0;
    max-width: 100%;
  }

  .team-page .team-grid {
    column-gap: 12px;
    row-gap: 30px;
  }

  .team-page .person-card h3 {
    font-size: 16px;
  }

  .team-page .person-card-copy > p,
  .team-page .person-meta,
  .team-page .person-linkedin {
    font-size: 12px;
  }
}

/* Build official mark: solid white plate (asset has no transparency grid) */
.mpowered-build-logo-current {
  background: #fff !important;
}

@media (min-width: 721px) {
  .team-page .team-grid-officers,
  .team-page .team-grid-directors {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(1040px, 100%);
    margin-inline: auto;
  }
}

/* August 7 mobile launch pass */
img,
video {
  max-width: 100%;
  height: auto;
}

.loader-video,
.hero-media-video,
.hero-media-poster,
.alumni-founder-image img,
.person-portrait img {
  max-width: none;
  height: 100%;
}

.loader-video {
  height: 100%;
}

html {
  scroll-padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 20px);
}

/* Keep the menu open state visual only — never freeze page scroll. */
body.nav-open {
  overflow: visible;
  overscroll-behavior: auto;
}

.site-footer {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.marketing-mandate-heading::before {
  left: 50%;
  right: auto;
  width: 100vw;
  transform: translateX(-50%);
}

@media (max-width: 960px) {
  .nav {
    width: min(320px, calc(100% - 40px));
    max-height: calc(100dvh - var(--header-height) - env(safe-area-inset-top, 0px) - 24px);
  }

  .hero-stage {
    min-height: 0;
    padding-bottom: 64px;
  }
}

@media (max-width: 640px) {
  .container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 20px;
    box-sizing: border-box;
  }

  .hero,
  .hero-stage,
  .hero-copy,
  .alumni-hero,
  .alumni-hero-grid,
  .alumni-hero-copy,
  .mco-page-hero,
  .mco-page-hero-inner,
  .mco-page-hero-copy,
  .program-hero-copy,
  .build-hero-copy,
  .involve-hero,
  .page-hero,
  .marketing-hero-copy {
    min-width: 0;
    max-width: 100%;
  }

  .hero {
    display: block;
  }

  .hero-stage {
    position: relative;
    z-index: 2;
    order: unset;
    padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 8px);
    padding-bottom: clamp(168px, 46vw, 260px);
  }

  .hero-media {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    max-width: 100%;
    height: clamp(200px, 54vw, 320px);
    opacity: 0.9;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 14%,
      rgba(0, 0, 0, 0.45) 34%,
      rgba(0, 0, 0, 0.82) 58%,
      #000 80%,
      rgba(0, 0, 0, 0.75) 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 14%,
      rgba(0, 0, 0, 0.45) 34%,
      rgba(0, 0, 0, 0.82) 58%,
      #000 80%,
      rgba(0, 0, 0, 0.75) 100%
    );
  }

  .hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(0, 25, 50, 0.98) 0%,
        rgba(0, 25, 50, 0.93) 38%,
        rgba(0, 25, 50, 0.55) 60%,
        rgba(0, 25, 50, 0.28) 78%,
        rgba(0, 25, 50, 0.4) 100%
      );
  }

  .hero .button.secondary {
    color: #fff;
    background: rgba(0, 31, 61, 0.88);
    border-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: none;
  }

  .hero-kicker {
    font-size: 10px;
    letter-spacing: 0.08em;
    white-space: normal;
  }

  .hero h1,
  .alumni-hero-copy h1,
  .mco-page-hero-copy h1,
  .build-hero-copy h1,
  .program-hero-copy h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    font-size: clamp(38px, 10.5vw, 48px);
    line-height: 0.96;
  }

  .hero .hero-lede,
  .mco-hero-lede,
  .alumni-hero-copy > p,
  .program-hero-lede {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-actions,
  .alumni-hero .hero-actions,
  .mco-page-hero .hero-actions,
  .program-hero-copy .hero-actions,
  .build-hero-copy .hero-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-actions .button,
  .alumni-hero .hero-actions .button,
  .mco-page-hero .hero-actions .button,
  .program-hero-copy .hero-actions .button,
  .build-hero-copy .hero-actions .button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  #programs,
  #get-involved,
  .partner-strip,
  .team-directors,
  .involve-simple,
  .page-close,
  .hero-media-video {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }

  #programs .program-tile.reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }

  .pathfinder-choices {
    grid-template-columns: 1fr;
  }

  .alumni-hero {
    padding-bottom: 64px;
  }

  .alumni-hero .hero-actions {
    margin-top: 28px;
  }

  .alumni-hero-copy h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .mco-page-hero {
    padding-bottom: 48px;
  }
}

@media (max-width: 420px) {
  .build-hero-copy .hero-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .involve-page .involve-simple > .container {
    width: 100%;
    padding-inline: 16px;
  }

  .container {
    padding-inline: 16px;
  }

  .hero-kicker {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .hero h1 {
    font-size: clamp(32px, 9.2vw, 40px);
    letter-spacing: -0.04em;
  }

  .hero .hero-lede {
    font-size: 14px;
  }

  .alumni-hero-copy h1 {
    font-size: clamp(30px, 9vw, 38px);
  }
}
