:root {
  --blue: #2d56bd;
  --blue-deep: #173375;
  --blue-ink: #0e1b3d;
  --blue-soft: #e8efff;
  --coral: #f26a4f;
  --coral-deep: #db4e35;
  --cream: #f8f3e8;
  --lime: #d9ee76;
  --white: #fff;
  --ink: #111936;
  --muted: #5f6780;
  --line: #dce1ec;
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 24px 70px rgba(18, 38, 86, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 6px;
  background: var(--white);
  color: var(--blue-deep);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  position: relative;
  z-index: 30;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 13px;
}

.announcement__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announcement p {
  margin: 0;
}

.announcement a {
  margin-left: 8px;
  color: var(--lime);
  font-weight: 700;
}

.announcement__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(217, 238, 118, 0.17);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 225, 236, 0);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(17, 25, 54, 0.07);
}

.header__inner {
  position: relative;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  order: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.primary-nav {
  order: 2;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.primary-nav.is-open {
  position: absolute;
  z-index: 30;
  top: calc(100% + 12px);
  right: 0;
  width: min(320px, calc(100vw - 48px));
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 16px;
  transform: translateY(0);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(17, 25, 54, 0.14);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 750;
}

.primary-nav a {
  align-items: center;
  display: flex;
  min-height: 0;
  padding: 0;
  border-radius: 12px;
}

.primary-nav.is-open a {
  min-height: 46px;
  padding: 10px 14px;
}

.primary-nav > a:not(.button) {
  position: relative;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--coral);
  content: "";
  transition: transform 180ms ease;
}

.primary-nav:not(.is-open) > a:hover::after,
.primary-nav:not(.is-open) > a:focus-visible::after,
.primary-nav:not(.is-open) .is-current::after {
  transform: scaleX(1);
}

.primary-nav.is-open > a::after {
  display: none;
}

.primary-nav.is-open > a:hover,
.primary-nav.is-open > a:focus-visible,
.primary-nav.is-open .is-current {
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.primary-nav .nav-donate {
  padding: 11px 18px;
  border: 1px solid rgba(246, 100, 79, 0.35);
  border-radius: 999px;
  background: rgba(246, 100, 79, 0.1);
  color: var(--coral-deep);
}

.primary-nav .nav-donate::after {
  display: none;
}

.primary-nav .nav-donate:hover,
.primary-nav .nav-donate:focus-visible,
.primary-nav .nav-donate.is-current {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--white);
}

.menu-toggle {
  order: 3;
  position: relative;
  z-index: 31;
  margin-left: 22px;
  width: 56px;
  height: 56px;
  display: grid;
  place-content: center;
  gap: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--blue-soft);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 26px;
  height: 3px;
  display: block;
  background: var(--blue-deep);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 21px;
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 9px 22px rgba(45, 86, 189, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  box-shadow: 0 13px 28px rgba(45, 86, 189, 0.25);
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
}

.button--light {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue-deep);
  box-shadow: none;
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--blue-deep);
}

.button--soft {
  background: rgba(45, 86, 189, 0.09);
  border-color: rgba(45, 86, 189, 0.11);
  color: var(--blue-deep);
  box-shadow: none;
}

.button--soft:hover,
.button--soft:focus-visible {
  background: rgba(45, 86, 189, 0.14);
  border-color: rgba(45, 86, 189, 0.18);
  color: var(--blue-deep);
  box-shadow: none;
}

.button--outline {
  background: transparent;
  color: var(--blue);
  box-shadow: none;
}

.button--coral {
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 9px 22px rgba(242, 106, 79, 0.2);
}

.button--coral:hover,
.button--coral:focus-visible {
  background: var(--coral-deep);
  border-color: var(--coral-deep);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-deep);
  font-weight: 700;
}

.text-link--button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -2px);
}

.text-link--light {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(45, 86, 189, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, #eef3ff 58%, #ffffff 100%);
  background-size: 72px 72px, auto;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: 58px;
  padding-block: 34px 38px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero-audience {
  max-width: 760px;
  margin: 0 0 16px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--lime);
}

.hero h1,
.section h2,
.newsletter h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(24px, 2.55vw, 34px);
  font-weight: 600;
}

.hero-title span {
  display: block;
}

.hero__copy .button-row {
  margin-top: 24px;
}

.hero h1 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: -3px;
  bottom: -5px;
  left: -3px;
  height: 10px;
  border-top: 3px solid var(--coral);
  border-radius: 50%;
  content: "";
  transform: rotate(-1deg);
}

.hero__lede {
  max-width: 650px;
  margin: 22px 0 30px;
  color: #424c69;
  font-size: 17px;
  line-height: 1.45;
}

.hero__lede span {
  display: block;
  white-space: nowrap;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero__note span {
  color: var(--coral);
}

.hero-photo-stack {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
  height: 385px;
  min-height: 0;
}

.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 9px solid var(--white);
  border-radius: 23px;
  background: var(--blue-soft);
  box-shadow: 0 30px 70px rgba(18, 38, 86, 0.18);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo figcaption {
  display: none;
}

.hero-photo--primary {
  z-index: 2;
  top: 20px;
  left: 0;
  width: 54%;
  height: 330px;
  transform: rotate(-2.4deg);
}

.hero-photo--secondary {
  z-index: 3;
  top: 0;
  right: 0;
  width: 55%;
  height: 350px;
  transform: rotate(3deg);
}

.hero-photo--primary img {
  object-position: 52% 50%;
}

.hero-photo--secondary img {
  object-position: 50% 30%;
}

.hero-group-photo {
  width: min(100%, 560px);
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 28px;
  background: var(--blue-soft);
  box-shadow: var(--shadow);
}

.hero-group-photo img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center 48%;
}

.hero__shape {
  position: absolute;
  border: 2px solid rgba(45, 86, 189, 0.12);
  border-radius: 50%;
}

.hero__shape--one {
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -280px;
}

.hero__shape--two {
  width: 260px;
  height: 260px;
  top: 60px;
  left: -170px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.section {
  padding-block: 70px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 56px;
}

.section-heading h2,
.grant-copy h2,
.community h2,
.donate h2 {
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 800;
}

.section-heading > p,
.section-heading div > p:not(.eyebrow) {
  max-width: 460px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
}

.section-heading div > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 22px;
}

.mission-subheader {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.section-heading--center {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.section-heading--center > p {
  max-width: 620px;
}

.pathways .section-heading h2,
.impact-home .section-heading h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}

.pathways {
  padding-block: 48px 46px;
  background: #fbfcff;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pathway-card {
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 28px;
  overflow: hidden;
  border: 1px solid rgba(45, 86, 189, 0.13);
  border-top: 6px solid var(--blue);
  border-radius: 22px;
  background: #f4f7ff;
  color: var(--blue-ink);
  box-shadow: 0 16px 44px rgba(18, 38, 86, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.pathway-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.pathway-card--coral {
  border-top-color: #7f96d6;
  background: #eef3ff;
}

.pathway-card--cream {
  border-top-color: #c9d7ff;
  background: #f8fbff;
}

.pathway-card--lime {
  border-top-color: #f2a08d;
  background: #fff7f3;
}

.pathway-card__number {
  position: absolute;
  top: 24px;
  right: 25px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.68;
}

.pathway-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.pathway-card__icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.pathway-card__icon--image {
  width: 84px;
  height: 84px;
  border: 0;
  border-radius: 18px;
  background: rgba(45, 86, 189, 0.08);
}

.pathway-card__icon--image img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: saturate(0.65) opacity(0.58);
}

.pathway-card--coral .pathway-card__icon--image {
  background: rgba(45, 86, 189, 0.08);
}

.pathway-card--coral .pathway-card__icon--image img {
  filter: saturate(0.65) opacity(0.58);
}

.pathway-card--cream .pathway-card__icon--image {
  background: rgba(45, 86, 189, 0.06);
}

.pathway-card--cream .pathway-card__icon--image img {
  filter: saturate(0.55) opacity(0.52);
}

.pathway-card--lime .pathway-card__icon--image {
  background: rgba(242, 106, 79, 0.08);
}

.pathway-card--lime .pathway-card__icon--image img {
  filter: sepia(0.18) saturate(0.75) hue-rotate(330deg) opacity(0.56);
}

.pathway-card h3 {
  margin: 28px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.pathway-card p {
  min-height: 0;
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.pathway-card a {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
}

.pathway-card a span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 180ms ease;
}

.pathway-card a:hover span {
  transform: translateX(4px);
}

.impact-home {
  padding-block: 48px 46px;
}

.grant-section {
  position: relative;
  overflow: hidden;
  background: var(--blue-deep);
  color: var(--white);
}

.grant-section__orb {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -260px;
  left: -200px;
  border: 110px solid rgba(45, 86, 189, 0.3);
  border-radius: 50%;
}

.grant-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 0.8fr;
  align-items: center;
  gap: 100px;
}

.grant-copy h2 {
  max-width: 650px;
}

.grant-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 34px;
  color: #d4dcf5;
  font-size: 18px;
}

.grant-panel {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(3, 10, 29, 0.25);
  backdrop-filter: blur(10px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(217, 238, 118, 0.35);
  border-radius: 99px;
  background: rgba(217, 238, 118, 0.1);
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.grant-panel dl {
  margin: 28px 0 30px;
}

.grant-panel dl > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: baseline;
  gap: 8px 16px;
  padding-block: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.grant-panel dt {
  grid-row: 1 / span 2;
  color: #aab7dc;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.grant-panel dd {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.grant-panel dl span {
  color: #bac5e5;
  font-size: 13px;
}

.interest-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
}

.interest-form > div {
  display: flex;
  padding: 5px;
  border-radius: 8px;
  background: var(--white);
}

.interest-form input {
  min-width: 0;
  flex: 1;
  padding: 11px 12px;
  border: 0;
  outline: 0;
  color: var(--ink);
}

.interest-form button {
  width: 46px;
  border: 0;
  border-radius: 6px;
  background: var(--coral);
  color: var(--white);
  cursor: pointer;
  font-size: 21px;
}

.form-message {
  min-height: 20px;
  margin: 8px 0 0;
  font-size: 12px;
}

.leaders {
  background: #f7f9ff;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.leader-card__image {
  position: relative;
  aspect-ratio: 0.85;
  overflow: hidden;
  border-radius: 14px;
  background: var(--blue-soft);
}

.leader-card__image::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(14, 27, 61, 0.45));
  content: "";
}

.leader-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.leader-card:hover img {
  transform: scale(1.04);
}

.leader-card__image span {
  position: absolute;
  z-index: 2;
  bottom: 14px;
  left: 14px;
  padding: 6px 9px;
  border-radius: 5px;
  background: var(--lime);
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.leader-card h3 {
  margin: 18px 0 3px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  letter-spacing: -0.03em;
}

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

.center {
  margin-top: 48px;
  text-align: center;
}

.story-section {
  padding-block: 38px;
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 100px;
}

.story-grid--text-only {
  grid-template-columns: minmax(0, 1120px);
  justify-content: center;
  text-align: left;
}

.story-grid--text-only .story-copy {
  padding: 34px clamp(28px, 5vw, 64px);
  border: 1px solid rgba(45, 86, 189, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(18, 38, 86, 0.08);
}

.story-image {
  position: relative;
}

.story-image img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.story-image__caption {
  position: absolute;
  right: -35px;
  bottom: -28px;
  max-width: 200px;
  padding: 20px;
  transform: rotate(-2deg);
  border-radius: 10px;
  background: var(--coral);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.story-copy blockquote {
  position: relative;
  max-width: 1080px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 2.35vw, 31px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.28;
}

.story-copy blockquote::before {
  position: absolute;
  top: -48px;
  left: -8px;
  color: var(--coral);
  content: "“";
  font-size: 100px;
  line-height: 1;
  opacity: 0.18;
}

.story-grid--text-only .story-copy blockquote::before {
  left: -18px;
  transform: none;
}

.story-attribution {
  max-width: 980px;
  margin: 16px 0 18px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.impact-home {
  background: var(--white);
}

.impact-home__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.impact-home__grid--featured {
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  grid-auto-rows: min-content;
  align-items: stretch;
}

.impact-card {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(45, 86, 189, 0.12);
  border-top: 5px solid var(--blue);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 50px rgba(18, 38, 86, 0.08);
}

.impact-card blockquote {
  flex: 1;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.impact-card .text-link {
  margin-top: 18px;
}

.impact-card .eyebrow {
  color: var(--blue);
  font-size: 13px;
}

.impact-card--coaching {
  align-self: start;
  min-height: 170px;
  height: fit-content;
  padding-block: 20px;
  border-top-color: var(--blue-deep);
  background: linear-gradient(135deg, var(--white), #f7f9ff);
}

.impact-card--coaching blockquote {
  flex: 0;
  max-width: 260px;
}

.impact-card--coaching .text-link {
  margin-top: 24px;
}

.impact-card--quote {
  background: linear-gradient(135deg, var(--white), #f4f7ff);
}

.impact-home__grid--featured > .impact-card:nth-child(2) {
  align-self: start;
  min-height: 0;
  height: fit-content;
  padding-block: 20px;
  border-top-color: var(--blue-deep);
  background: linear-gradient(135deg, var(--white), #f7f9ff);
}

.impact-home__grid--featured > .impact-card:nth-child(2) blockquote {
  flex: 0;
}

.impact-home__grid--featured > .impact-card:nth-child(2) .text-link {
  margin-top: 24px;
}

.impact-highlights {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  align-items: stretch;
  gap: 18px;
  margin-top: 24px;
}

.impact-stat,
.impact-map {
  padding: 28px;
  border: 1px solid rgba(45, 86, 189, 0.12);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(18, 38, 86, 0.06);
}

.impact-stat strong {
  display: block;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.impact-stat span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
}

.impact-map {
  min-height: 235px;
}

.impact-map--reach {
  margin-top: -82px;
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(280px, 1fr);
  align-items: center;
  gap: 20px;
  border-top: 5px solid var(--blue);
}

.impact-map__join {
  grid-column: 1;
  justify-self: start;
  margin-top: -4px;
}

.impact-map__copy strong {
  display: block;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.impact-map__copy span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.impact-map__copy span strong {
  display: inline;
  color: var(--blue-ink);
  font-family: inherit;
  font-size: inherit;
  font-weight: 800;
  letter-spacing: 0;
  line-height: inherit;
  text-transform: none;
}

.usa-map-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  min-height: 118px;
  padding: 0;
  border-radius: 18px;
  background: var(--white);
}

.usa-map-visual img {
  width: 100%;
  height: 100%;
  max-height: 190px;
  min-height: 118px;
  object-fit: contain;
  border-radius: 14px;
  filter: saturate(1.02) contrast(0.99) brightness(1.02);
}

.join-cta {
  padding-block: 32px 58px;
  text-align: center;
  background: var(--white);
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 27, 61, 0.55);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 36px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(3, 10, 29, 0.28);
}

.modal__panel h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.modal__panel > p:not(.eyebrow) {
  margin: 16px 0 24px;
  color: var(--muted);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-deep);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.join-form--modal {
  padding: 0;
  background: transparent;
}

.community {
  padding-block: 54px;
  background: var(--blue);
  color: var(--white);
}

.community__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.7fr;
  gap: 100px;
  padding-block: 0;
}

.community__inner > div:nth-child(2) {
  align-self: end;
}

.community__inner > div:nth-child(2) p {
  margin: 0 0 26px;
  color: #dce5ff;
  font-size: 17px;
}

.community__words {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.18);
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.donate {
  background: var(--white);
}

.donate__grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 100px;
}

.donate__copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 25px 0 32px;
  color: var(--muted);
  font-size: 18px;
}

.donate__figures {
  border-top: 2px solid var(--blue-deep);
}

.donate__figures > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 20px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
}

.donate__figures strong {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 31px;
}

.donate__figures span {
  color: var(--muted);
}

.newsletter {
  padding-block: 52px;
  background: var(--lime);
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: 80px;
}

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

.newsletter h2 {
  max-width: 650px;
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter input {
  min-width: 0;
  padding: 14px 16px;
  border: 2px solid transparent;
  border-radius: 8px;
  outline: 0;
}

.newsletter input:focus {
  border-color: var(--blue);
}

.newsletter .form-message {
  grid-column: 1 / -1;
  color: var(--blue-deep);
}

.site-footer {
  padding-block: 58px 24px;
  background: var(--blue-ink);
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.6fr);
  gap: 60px;
}

.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer__brand img {
  width: 70px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 25px;
}

.footer__brand p {
  max-width: 330px;
  margin: 7px 0 0;
  color: #aeb8d2;
  font-size: 14px;
}

.footer__grid h2 {
  margin: 4px 0 16px;
  color: #8897bb;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer__grid > div:not(.footer__brand) a {
  display: block;
  margin-block: 9px;
  color: #dce3f4;
  font-size: 14px;
}

.footer__grid > div:not(.footer__brand) .footer-action-button {
  display: block;
  margin-block: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #dce3f4;
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}

.footer__grid a:hover,
.footer__grid .footer-action-button:hover {
  color: var(--lime);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8995b3;
  font-size: 12px;
}

.footer__bottom p {
  margin: 0;
}

/* Interior pages */
.subpage-header {
  top: 0;
}

.primary-nav .is-current {
  color: var(--blue);
}

.primary-nav .is-current::after {
  transform: scaleX(1) !important;
}

.page-hero {
  padding-block: 84px 76px;
  overflow: hidden;
}

.page-hero--cream {
  background:
    radial-gradient(circle at 80% 0%, rgba(242, 106, 79, 0.12), transparent 28%),
    var(--cream);
}

.page-hero--blue {
  background:
    radial-gradient(circle at 90% 10%, rgba(217, 238, 118, 0.2), transparent 25%),
    var(--blue);
  color: var(--white);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr;
  align-items: end;
  gap: 90px;
}

.page-hero h1,
.grant-hero h1,
.community-hero h1,
.cohort-hero h1,
.donate-hero h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(50px, 6.2vw, 82px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.page-hero h1 em,
.grant-hero h1 em,
.community-hero h1 em,
.cohort-hero h1 em,
.donate-hero h1 em {
  color: var(--coral);
  font-style: normal;
}

.page-hero--blue h1 em,
.grant-hero h1 em,
.cohort-hero h1 em {
  color: var(--lime);
}

.page-hero__aside {
  padding-left: 28px;
  border-left: 3px solid var(--coral);
}

.page-hero__aside p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.page-hero--blue .page-hero__aside p {
  color: #e4eaff;
}

.intro-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 34px;
}

.intro-story {
  padding-top: 28px;
  padding-bottom: 18px;
  background: #f6f8fb;
}

.intro-story h2,
.grant-purpose h2,
.eligibility-title h2,
.join-section h2,
.donation-embed h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 4.4vw, 59px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.intro-story h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--blue);
  text-align: center;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.05em;
}

.intro-story .eyebrow,
.team-section .eyebrow {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.intro-story__video .eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800;
  letter-spacing: -0.05em;
  text-align: center;
  text-transform: none;
}

.story-video-section {
  padding-top: 18px;
  padding-bottom: 38px;
  background: var(--white);
}

.story-video-section .intro-story__video {
  display: grid;
  justify-items: center;
  padding: 0 0 6px;
}

.intro-story__copy {
  max-width: 920px;
  text-align: center;
}

.mission-copy {
  max-width: 920px;
  margin: 22px auto 0;
}

.mission-copy p {
  margin: 0;
  color: var(--blue-ink);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.5;
}

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

.intro-story__copy > p:not(.eyebrow),
.grant-purpose__copy p,
.join-section__grid > div:first-child > p:not(.eyebrow),
.donation-embed__grid > div:first-child > p:not(.eyebrow) {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.video-embed {
  position: relative;
  width: 100%;
  max-width: 840px;
  justify-self: center;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 14px solid var(--white);
  border-radius: 22px;
  background: var(--blue-soft);
  box-shadow: 0 24px 80px rgba(18, 38, 86, 0.16);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.values-section {
  background: #f7f9ff;
}

.value-list {
  border-top: 2px solid var(--blue-deep);
}

.value-row {
  display: grid;
  grid-template-columns: 56px 78px 0.55fr 1fr;
  align-items: center;
  gap: 30px;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}

.value-row > span {
  color: var(--coral);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.value-row img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.value-row h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  letter-spacing: -0.035em;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.team-section {
  margin-top: 0;
  padding-top: 18px;
  padding-bottom: 44px;
  background: #f6f8fb;
}

.team-section .section-heading {
  display: block;
  justify-content: center;
  text-align: center;
  margin-bottom: 18px;
}

.team-section .section-heading .eyebrow {
  margin-bottom: 0;
  color: var(--blue);
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.05em;
  text-transform: none;
}

.team-section .section-heading div > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.42;
}

.team-section .section-heading h2 {
  max-width: 520px;
  margin-inline: auto;
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.team-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 22px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-card img {
  width: 160px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  background: var(--blue-soft);
}

.team-card__image--asma {
  object-position: center 6%;
}

.team-card h3 {
  margin: 0 0 7px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.team-title {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.page-cta,
.story-next {
  padding-block: 78px;
  background: var(--blue);
  color: var(--white);
}

.page-cta__inner,
.story-next__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.page-cta h2,
.story-next h2 {
  max-width: 750px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4.3vw, 55px);
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.grant-hero {
  padding-block: 24px 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 30%, rgba(45, 86, 189, 0.42), transparent 30%),
    var(--blue-deep);
  color: var(--white);
}

.grant-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: center;
  gap: 90px;
}

.grant-hero__grid--simple {
  grid-template-columns: minmax(0, 1120px);
  justify-content: center;
  text-align: center;
}

.grant-hero .status-pill {
  margin-bottom: 12px;
}

.grant-hero .eyebrow {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(24px, 2.65vw, 34px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grant-hero .eyebrow::after {
  width: 54px;
  height: 3px;
  display: block;
  margin: 12px auto 0;
  border-radius: 99px;
  background: var(--white);
  content: "";
}

.grant-hero__grid > div:first-child > p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 18px;
  color: #d8e1fb;
  font-size: 19px;
}

.grant-hero__grid--simple > div:first-child > p:not(.eyebrow) {
  max-width: 920px;
  margin-inline: auto;
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.grant-hero__grid--simple .button-row {
  justify-content: center;
  margin-top: 8px;
}

.grant-hero__cycle-link {
  color: var(--coral);
}

.grant-hero__cycle-link:hover,
.grant-hero__cycle-link:focus-visible {
  color: var(--coral);
}

.grant-hero__figures {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.grant-hero__figures > div {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.grant-hero__figures > div:last-child {
  border-bottom: 0;
}

.grant-hero__figures strong {
  min-width: 90px;
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 43px;
  line-height: 1;
}

.grant-hero__figures span {
  color: #c8d3f1;
  font-size: 14px;
}

.grant-hero__spotlight {
  position: relative;
  min-height: 430px;
}

.grant-hero__spotlight figure {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 7px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  background: var(--blue-soft);
  box-shadow: 0 28px 70px rgba(3, 10, 29, 0.28);
}

.grant-hero__spotlight figure:nth-child(1) {
  z-index: 2;
  top: 12px;
  left: 10px;
  width: 46%;
  height: 250px;
  transform: rotate(-3deg);
}

.grant-hero__spotlight figure:nth-child(2) {
  z-index: 3;
  top: 0;
  right: 8px;
  width: 52%;
  height: 290px;
  transform: rotate(3deg);
}

.grant-hero__spotlight figure:nth-child(3) {
  z-index: 1;
  left: 28%;
  bottom: 0;
  width: 48%;
  height: 220px;
  transform: rotate(-1deg);
}

.grant-hero__spotlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.grant-hero__spotlight > div {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 24px;
  max-width: 260px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(3, 10, 29, 0.2);
  backdrop-filter: blur(12px);
}

.grant-hero__spotlight strong,
.grant-hero__spotlight span {
  display: block;
}

.grant-hero__spotlight strong {
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.grant-hero__spotlight span {
  margin-top: 6px;
  color: #d8e1fb;
  font-size: 14px;
}

.grant-winners {
  padding-top: 38px;
  padding-bottom: 48px;
  background: #f7f9ff;
}

.section-heading--grant-winners {
  display: block;
  text-align: center;
}

.section-heading--grant-winners h2 {
  white-space: nowrap;
  font-size: clamp(25px, 3vw, 42px);
  letter-spacing: -0.045em;
}

.grant-winner-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -22px 0 34px;
  border: 1px solid rgba(45, 86, 189, 0.14);
  border-radius: 16px;
  background: #eef3ff;
  color: var(--blue-deep);
  overflow: hidden;
}

.grant-winner-stats > div {
  min-height: 56px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-right: 1px solid rgba(45, 86, 189, 0.12);
}

.grant-winner-stats > div:last-child {
  border-right: 0;
}

.grant-winner-stats strong {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.grant-winner-stats em {
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grant-winner-stats span em {
  display: inline;
}

.grant-winner-stats span {
  margin-top: 0;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.winner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.winner-card {
  overflow: hidden;
  border: 1px solid rgba(45, 86, 189, 0.13);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(18, 38, 86, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.winner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.winner-card img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  object-position: top;
  background: var(--blue-soft);
}

.winner-card div {
  min-height: 132px;
  padding: 16px;
}

.winner-card h3 {
  margin: 0 0 6px;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.winner-card p {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.winner-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.grant-purpose__grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 100px;
}

.grant-purpose__copy p:first-child {
  margin-top: 42px;
}

.eligibility-section {
  padding-top: 30px;
  padding-bottom: 32px;
  background: var(--cream);
}

.eligibility-grid {
  display: block;
}

.eligibility-title {
  max-width: 780px;
  margin-bottom: 16px;
}

.eligibility-title .eyebrow {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-transform: none;
}

.eligibility-title h2 {
  font-size: clamp(12px, 1.15vw, 15px);
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ink);
}

.eligibility-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.eligibility-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding-block: 13px;
  border-bottom: 1px solid #d9d2c3;
}

.eligibility-list span {
  color: var(--coral);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.eligibility-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.42;
}

.grant-impact-section {
  padding-top: 34px;
  padding-bottom: 38px;
  background: #f7f9ff;
}

.grant-impact-heading h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}

.grant-impact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.grant-impact-card {
  grid-column: span 2;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(45, 86, 189, 0.12);
  border-top: 4px solid var(--blue);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(18, 38, 86, 0.07);
  text-align: center;
}

.grant-impact-card--feature {
  background: var(--white);
  color: var(--blue-ink);
}

.grant-impact-card:nth-child(4),
.grant-impact-card:nth-child(5) {
  grid-column: span 3;
  min-height: 160px;
}

.grant-impact-card:nth-child(5) {
  background: var(--white);
}

.grant-impact-card blockquote {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.grant-impact-card--feature blockquote {
  font-size: clamp(14px, 1.05vw, 17px);
}

.grant-impact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.grant-impact-card--feature p {
  color: var(--muted);
}

.funding-section {
  background: var(--white);
}

.funding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.funding-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f9faff;
}

.funding-card > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 22px;
}

.funding-card h3 {
  margin: 42px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

.funding-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process-section {
  background: #f7f9ff;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-line::before {
  position: absolute;
  top: 22px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: var(--line);
  content: "";
}

.process-line article {
  position: relative;
  text-align: center;
}

.process-line article > span {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  border: 4px solid #f7f9ff;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.process-line h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.process-line p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.notify-section {
  padding-block: 66px;
  background: var(--blue);
  color: var(--white);
}

.notify-section__inner {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: center;
  gap: 90px;
}

.notify-section .eyebrow--light {
  color: var(--coral);
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-transform: none;
}

.notify-section h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(35px, 4.2vw, 52px);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.notify-section__inner > div > p:last-child {
  margin: 18px 0 0;
  color: #dbe4ff;
}

.notify-section .interest-form > div {
  background: var(--white);
}

.community-hero {
  padding-block: 52px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 0%, rgba(36, 77, 183, 0.12), transparent 26%),
    linear-gradient(135deg, #f8fbff 0%, #eef3ff 100%);
  color: var(--blue-ink);
}

.community-hero__grid {
  display: block;
  max-width: 980px;
}

.community-hero h1 {
  max-width: 900px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.04;
}

.community-hero__grid > div:first-child > p:not(.eyebrow) {
  max-width: 820px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.community-hero .eyebrow--light {
  color: var(--blue);
}

.community-hero .button--light {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.community-hero__image {
  position: relative;
}

.community-hero__image > img {
  width: 100%;
  min-height: 530px;
  object-fit: cover;
  border: 9px solid var(--white);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(12, 25, 63, 0.3);
}

.community-hero__image > div {
  position: absolute;
  right: -20px;
  bottom: -25px;
  max-width: 190px;
  padding: 20px;
  transform: rotate(3deg);
  border-radius: 9px;
  background: var(--lime);
  color: var(--blue-deep);
}

.community-hero__image strong,
.community-hero__image span {
  display: block;
}

.community-hero__image strong {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.community-hero__image span {
  margin-top: 3px;
  font-size: 12px;
  font-weight: 600;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px;
  border-radius: 14px;
  background: var(--cream);
}

.benefit-card:nth-child(2) {
  background: var(--blue-soft);
}

.benefit-card:nth-child(3) {
  background: var(--lime);
}

.benefit-card > span {
  color: var(--coral);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.benefit-card p {
  margin: 0;
  color: #4e566e;
}

.career-support-intro {
  padding-block: 28px 30px;
  background:
    radial-gradient(circle at 84% 0%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  color: var(--white);
  text-align: center;
}

.career-support-intro .eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(24px, 2.65vw, 34px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-support-intro .eyebrow::after {
  width: 54px;
  height: 3px;
  display: block;
  margin: 12px auto 0;
  border-radius: 99px;
  background: var(--white);
  content: "";
}

.career-support-intro h1 {
  max-width: 920px;
  margin: 0 auto;
  font-family: "Manrope", sans-serif;
  color: var(--white);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.career-support-intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.career-coach-section {
  padding-block: 30px 50px;
  background: var(--white);
}

.career-coach-panel {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  align-items: center;
  gap: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.career-coach-main h1 {
  max-width: 480px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 2.35vw, 32px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.career-coach-heading,
.career-coach-main .eyebrow {
  font-size: 16px;
  letter-spacing: 0.1em;
}

.career-coach-heading {
  grid-column: 1 / -1;
  margin: 0 0 -12px;
  text-align: center;
}

.career-coach-main > p:not(.eyebrow),
.career-coach-details > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.coach-network-strip {
  padding: 18px 0 20px;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.coach-network-strip > strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.coach-network-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coach-network-strip li {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(45, 86, 189, 0.08);
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.coach-network-strip li:not(:last-child)::after {
  content: none;
}

.career-coach-details .text-link {
  margin-top: 14px;
  color: var(--coral-deep);
}

.speakers-section {
  padding-top: 42px;
  padding-bottom: 34px;
  background: var(--white);
}

.speakers-section .section-heading {
  display: block;
  text-align: center;
  margin-bottom: 34px;
}

.speakers-section .eyebrow {
  font-size: 16px;
  letter-spacing: 0.1em;
}

.speakers-section .section-heading h2 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(28px, 3.2vw, 44px);
}

.speakers-section .section-heading div > p:not(.eyebrow) {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 16px;
}

.speaker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 330px));
  justify-content: center;
  gap: 18px;
}

.speaker-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.speaker-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
}

.speaker-card > div {
  padding: 16px;
}

.speaker-card .eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
}

.speaker-card h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.speaker-card > div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
}

.community-quotes {
  padding-block: 52px;
  background: var(--coral);
  color: var(--white);
}

.community-quotes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px;
}

.community-quotes__label {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.community-quotes blockquote {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(23px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.28;
}

.community-quotes blockquote > span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.community-quotes cite {
  display: block;
  margin-top: 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  opacity: 0.8;
}

.speaker-quote-banner {
  padding-block: 26px;
  border-top: 0;
  background: #f1f3f7;
  color: var(--blue-ink);
}

.speaker-quote-banner .shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 34px;
}

.speaker-quote-banner .community-quotes__label {
  margin: 4px 0 0;
  color: var(--ink);
}

.speaker-quote-banner cite {
  color: var(--muted);
  opacity: 1;
}

.speaker-quote-banner .community-quotes__grid {
  gap: 28px;
}

.speaker-quote-banner blockquote {
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 500;
  line-height: 1.35;
}

.speaker-quote-banner cite {
  margin-top: 14px;
}

.join-section {
  background: var(--white);
}

.join-section__grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 100px;
}

.join-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 34px;
  border-radius: 15px;
  background: #f7f9ff;
}

.field-row {
  display: grid;
  gap: 7px;
}

.field-row--full,
.join-form .button,
.join-form .form-message {
  grid-column: 1 / -1;
}

.field-row label {
  font-size: 13px;
  font-weight: 700;
}

.field-row label span {
  color: var(--muted);
  font-weight: 400;
}

.field-row input {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: 0;
  background: var(--white);
}

.field-row input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45, 86, 189, 0.12);
}

.page-hero--blue .eyebrow {
  color: var(--lime);
}

.impact-hero {
  padding-block: 46px 42px;
}

.impact-hero h1 {
  max-width: 820px;
  font-size: clamp(38px, 4.6vw, 58px);
  letter-spacing: -0.05em;
  line-height: 1.06;
}

.impact-stories {
  padding-top: 42px;
}

.impact-story-list {
  border-top: 2px solid var(--blue-deep);
}

.impact-story {
  display: grid;
  grid-template-columns: 70px 1fr 0.42fr;
  align-items: start;
  gap: 35px;
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
}

.impact-story > span {
  color: var(--coral);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.impact-story blockquote {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 3vw, 37px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.28;
}

.impact-story > p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.donate-hero {
  padding-block: 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 238, 118, 0.25), transparent 24%),
    var(--cream);
}

.donate-hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  gap: 90px;
}

.donate-hero__grid > div:first-child > p:not(.eyebrow) {
  max-width: 650px;
  margin: 27px 0 32px;
  color: var(--muted);
  font-size: 19px;
}

.donate-hero__visual {
  position: relative;
}

.donate-hero__visual img {
  width: 100%;
  min-height: 550px;
  object-fit: cover;
  border: 9px solid var(--white);
  border-radius: 50% 50% 15px 15px;
  box-shadow: var(--shadow);
}

.donate-hero__visual > div {
  position: absolute;
  bottom: -25px;
  left: -35px;
  width: 145px;
  height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-6deg);
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.donate-hero__visual strong {
  font-family: "Manrope", sans-serif;
  font-size: 39px;
  line-height: 1;
}

.donate-hero__visual span {
  max-width: 100px;
  margin-top: 5px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.giving-impact {
  padding-top: 46px;
  padding-bottom: 48px;
  background: var(--white);
}

.giving-impact .section-heading {
  display: block;
  max-width: 1120px;
  margin: 0 auto 30px;
  text-align: center;
}

.giving-impact .section-heading h2 {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.1;
  white-space: nowrap;
}

.giving-impact .section-heading > p,
.giving-impact .section-heading div > p:not(.eyebrow) {
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.giving-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.giving-grid article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 13px;
  background: #f7f9ff;
}

.giving-grid article:nth-child(even) {
  background: var(--blue-soft);
}

.giving-grid strong {
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 37px;
}

.giving-grid h3 {
  margin: auto 0 6px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

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

.donation-embed {
  padding-block: 46px;
  background: var(--blue-deep);
  color: var(--white);
}

.donation-embed__grid {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
}

.donation-legal-note {
  max-width: 640px;
  margin: 0 auto;
  color: #c7d2ef;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.donation-panel {
  position: relative;
  overflow: hidden;
  width: min(100%, 560px);
  padding: 34px;
  border: 1px solid rgba(246, 100, 79, 0.2);
  border-radius: 22px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(3, 10, 29, 0.22);
}

.donation-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--coral);
  content: "";
}

.donation-panel__label {
  margin: 0 0 19px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.donation-step {
  display: none;
}

.donation-step.is-active {
  display: block;
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.donation-amounts button {
  padding: 11px 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7f9ff;
  color: var(--blue-deep);
  cursor: pointer;
  font-weight: 700;
}

.donation-amounts button:hover,
.donation-amounts button:focus-visible,
.donation-amounts button.is-selected {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.donation-panel .button {
  width: 100%;
}

.donation-info-form {
  display: none;
}

.donation-info-form.is-active {
  display: grid;
  gap: 13px;
}

.donation-info-form label {
  display: grid;
  gap: 6px;
  color: var(--blue-ink);
  font-size: 12px;
  font-weight: 800;
}

.donation-info-form input,
.donation-info-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f7f9ff;
  color: var(--ink);
  font: inherit;
}

.donation-info-form textarea {
  resize: vertical;
}

.donation-panel__actions {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 10px;
}

.donation-panel__actions .button--light {
  border-color: var(--line);
  background: #f7f9ff;
  color: var(--blue-deep);
}

.donation-panel__note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.giving-contact {
  padding-block: 28px 34px;
  background: #f7f9ff;
}

.giving-contact__box {
  max-width: 980px;
  padding: 28px;
  border: 1px solid rgba(45, 86, 189, 0.14);
  border-radius: 18px;
  background: var(--white);
  text-align: center;
  box-shadow: 0 16px 44px rgba(18, 38, 86, 0.07);
}

.giving-contact__box h2 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.04em;
}

.giving-contact__box p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.giving-contact__box a {
  color: var(--blue);
  font-weight: 800;
}

.cohort-hero {
  padding-block: 38px;
  background:
    radial-gradient(circle at 85% 0%, rgba(217, 238, 118, 0.22), transparent 24%),
    var(--blue-deep);
  color: var(--white);
}

.cohort-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cohort-hero .cohort-hero__title {
  max-width: 980px;
  width: 100%;
  margin: 0 auto 38px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.05;
  text-align: center;
}

.cohort-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 900px);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.cohort-hero__stats > div {
  padding: 18px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.cohort-hero__stats > div:last-child {
  border-right: 0;
}

.cohort-hero__stats strong,
.cohort-hero__stats span {
  display: block;
}

.cohort-hero__stats strong {
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 3vw, 38px);
}

.cohort-hero__stats span {
  color: #bdc9e7;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.cohort-intro {
  padding-top: 48px;
  background: #f7f9ff;
}

.cohort-intro .section-heading {
  margin-bottom: 34px;
}

.cohort-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 18px;
}

.cohort-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cohort-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.cohort-card img {
  width: 100%;
  aspect-ratio: 0.94;
  object-fit: cover;
  object-position: top;
  background: var(--blue-soft);
}

.cohort-card > div {
  min-height: 150px;
  padding: 20px;
}

.cohort-card h3 {
  margin: 0 0 4px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.cohort-card p {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.cohort-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 238, 118, 0.25), transparent 24%),
    linear-gradient(135deg, #f7f9ff, var(--cream));
}

.not-found > div {
  max-width: 750px;
  text-align: center;
}

.not-found .brand {
  justify-content: center;
  margin-bottom: 60px;
}

.not-found h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(45px, 7vw, 78px);
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.not-found > div > p:not(.eyebrow) {
  max-width: 600px;
  margin: 24px auto 30px;
  color: var(--muted);
  font-size: 18px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal--delay {
  transition-delay: 120ms;
}

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

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .hero__grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 32px;
  }

  .hero-photo-stack {
    width: min(100%, 430px);
    height: 350px;
  }

  .hero-photo--primary {
    height: 295px;
  }

  .hero-photo--secondary {
    height: 310px;
  }

  .hero__lede span {
    white-space: normal;
  }

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

  .impact-home__grid,
  .impact-highlights,
  .grant-impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-map--reach {
    margin-top: 0;
    grid-template-columns: 1fr;
  }

  .grant-impact-card--feature {
    grid-row: auto;
  }

  .winner-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .grant-winner-stats {
    grid-template-columns: 1fr;
  }

  .grant-winner-stats > div {
    min-height: 70px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(45, 86, 189, 0.12);
  }

  .grant-winner-stats > div:last-child {
    border-bottom: 0;
  }

  .story-grid {
    gap: 55px;
  }

  .team-card {
    grid-template-columns: 130px 1fr;
  }

  .team-card img {
    width: 130px;
  }

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

@media (max-width: 1020px) {
  .announcement__inner {
    justify-content: flex-start;
  }

  .announcement p strong {
    display: none;
  }

  .header__inner {
    min-height: 68px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
  }

  .menu-toggle span:not(.sr-only) {
    width: 23px;
    height: 3px;
  }

  .primary-nav {
    position: absolute;
    z-index: 30;
    top: calc(100% + 12px);
    right: 0;
    width: min(310px, calc(100vw - 40px));
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    transform: translateY(-8px);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 22px 60px rgba(17, 25, 54, 0.14);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    font-weight: 750;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .primary-nav a {
    min-height: 46px;
    padding: 10px 14px;
  }

  .primary-nav > a::after {
    display: none;
  }

  .primary-nav > a:hover,
  .primary-nav > a:focus-visible,
  .primary-nav .is-current {
    background: var(--blue-soft);
    color: var(--blue-deep);
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding-block: 48px 58px;
  }

  .hero__copy {
    max-width: 680px;
  }

  .hero-photo-stack {
    width: min(100%, 620px);
    margin: 10px auto 0;
  }

  .hero-group-photo {
    justify-self: start;
    width: min(100%, 680px);
  }

  .section,
  .story-section {
    padding-block: 58px;
  }

  .section-heading,
  .story-grid,
  .community__inner,
  .donate__grid,
  .newsletter__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .story-image img {
    min-height: 420px;
  }

  .story-image__caption {
    right: 18px;
  }

  .community__words {
    grid-column: auto;
    margin-top: 25px;
    font-size: clamp(45px, 14vw, 88px);
  }

  .newsletter form {
    max-width: 620px;
  }

  .footer__grid {
    grid-template-columns: 1.4fr repeat(2, 0.6fr);
  }

  .footer__grid > div:last-child {
    grid-column: 2;
  }

  .page-hero__grid,
  .intro-story__grid,
  .grant-hero__grid,
  .grant-purpose__grid,
  .eligibility-grid,
  .notify-section__inner,
  .community-hero__grid,
  .join-section__grid,
  .donate-hero__grid,
  .donation-embed__grid,
  .cohort-hero__inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .page-hero__aside {
    max-width: 620px;
  }

  .eligibility-title {
    position: static;
  }

  .team-grid,
  .community-quotes__grid {
    grid-template-columns: 1fr;
  }

  .speaker-quote-banner .shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .career-coach-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 20px;
  }

  .process-line::before {
    display: none;
  }

  .impact-story {
    grid-template-columns: 45px 1fr;
  }

  .impact-story > p {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .announcement {
    display: none;
  }

  .brand span {
    font-size: 20px;
  }

  .hero__grid {
    padding-top: 50px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero__lede {
    margin-block: 23px 27px;
    font-size: 16px;
    white-space: normal;
  }

  .hero__copy .button-row {
    margin-top: 24px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .hero-photo-stack {
    height: 345px;
    min-height: 0;
  }

  .hero-photo--primary {
    width: 54%;
    height: 292px;
  }

  .hero-photo--secondary {
    width: 55%;
    height: 308px;
  }

  .hero-group-photo img {
    height: 320px;
  }

  .impact-card,
  .impact-stat,
  .impact-map,
  .modal__panel {
    padding: 24px 20px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .pathway-grid,
  .winner-grid,
  .leader-grid {
    grid-template-columns: 1fr;
  }

  .pathway-card {
    min-height: 330px;
  }

  .grant-panel {
    padding: 24px 19px;
  }

  .grant-panel dl > div {
    grid-template-columns: 68px 1fr;
  }

  .leader-card__image {
    aspect-ratio: 0.95;
  }

  .story-image img {
    min-height: 360px;
  }

  .community__words {
    flex-direction: column;
    gap: 12px;
  }

  .donate__figures > div {
    grid-template-columns: 86px 1fr;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 24px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__grid > div:last-child {
    grid-column: auto;
  }

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

  .page-hero,
  .grant-hero,
  .community-hero,
  .cohort-hero,
  .donate-hero {
    padding-block: 48px;
  }

  .page-hero h1,
  .grant-hero h1,
  .community-hero h1,
  .cohort-hero h1,
  .donate-hero h1 {
    font-size: 45px;
  }

  .page-hero__aside {
    padding-left: 18px;
  }

  .page-cta__inner,
  .story-next__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .value-row {
    grid-template-columns: 38px 58px 1fr;
    gap: 10px 15px;
  }

  .value-row p {
    grid-column: 3;
  }

  .value-row img {
    width: 50px;
    height: 50px;
  }

  .team-card {
    grid-template-columns: 105px 1fr;
    gap: 17px;
    padding: 12px;
  }

  .team-card img {
    width: 105px;
  }

  .funding-grid,
  .giving-grid,
  .benefit-grid,
  .speaker-grid,
  .cohort-grid {
    grid-template-columns: 1fr;
  }

  .process-line {
    grid-template-columns: 1fr;
  }

  .process-line article {
    text-align: left;
  }

  .process-line article > span {
    margin: 0 0 15px;
  }

  .grant-hero__figures strong {
    min-width: 75px;
    font-size: 35px;
  }

  .community-hero__image > img,
  .donate-hero__visual img {
    min-height: 420px;
  }

  .join-form {
    grid-template-columns: 1fr;
    padding: 25px 20px;
  }

  .field-row {
    grid-column: 1;
  }

  .impact-story {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .impact-story > p {
    grid-column: 1;
  }

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

  .cohort-hero__stats {
    grid-template-columns: 1fr;
  }

  .cohort-hero__stats > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .cohort-hero__stats > div:last-child {
    border-bottom: 0;
  }
}
