:root {
  --navy: #09273c;
  --navy-2: #0f344b;
  --portal-blue: #092949;
  --portal-blue-deep: #07203c;
  --river: #86d6f4;
  --river-2: #37a6d4;
  --green: #087b55;
  --paper: #f5f9fa;
  --ink: #082437;
  --muted: #5d7280;
  --line: rgba(9, 39, 60, 0.16);
  --white-line: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 70px rgba(6, 31, 48, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.public-site {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

body.public-site a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 74px;
  padding: 12px clamp(18px, 3.4vw, 42px);
  color: #fff;
  background: linear-gradient(180deg, var(--portal-blue), var(--portal-blue-deep));
  border-bottom: 1px solid rgba(43, 87, 124, 0.72);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, background 220ms ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.focus-strip {
  display: none;
}

.focus-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid var(--white-line);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  font-size: 0.86rem;
  line-height: 1.1;
}

.main-nav a {
  text-decoration: none;
  opacity: 0.88;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active {
  opacity: 1;
  color: var(--river);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transition: border-color 180ms ease;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.nav-open .menu-icon {
  border-color: transparent;
}

.site-header.nav-open .menu-icon::before {
  transform: rotate(45deg);
}

.site-header.nav-open .menu-icon::after {
  transform: rotate(-45deg);
}

.menu-toggle:hover {
  color: var(--river);
  background: transparent;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  text-align: center;
  text-decoration: none;
  line-height: 1.08;
  font-weight: 520;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.river {
  color: #06283b;
  background: linear-gradient(135deg, var(--river), var(--river-2));
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 14px 28px rgba(44, 163, 207, 0.22);
}

.site-header .portal-entry {
  min-width: 78px;
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  justify-self: end;
}

.header-actions .button {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.88rem;
  white-space: nowrap;
  box-shadow: none;
}

.header-actions .portal-create {
  min-width: 0;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(134, 214, 244, 0.34);
}

.button.light {
  color: var(--ink);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.68);
}

.button.dark {
  color: #fff;
  background: var(--navy);
  border-color: rgba(9, 39, 60, 0.2);
}

.site-header .header-actions .portal-create {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(134, 214, 244, 0.34);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 17, 27, 0.9), rgba(7, 38, 53, 0.68), rgba(7, 42, 52, 0.32)),
    var(--hero-image, url("/assets/photos/interview-wide.png")) center / cover;
}

.hero::after,
.page-hero::after {
  content: none;
  display: none;
  background: none;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 4vw, 48px) clamp(96px, 11vw, 140px);
}

.hero-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(310px, 0.84fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.35rem, 4.9vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 390;
}

.belief-line {
  max-width: 720px;
  margin-top: 24px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
  border-left: 3px solid var(--river);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.48;
}

.hero-copy p,
.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero-tagline {
  max-width: 760px;
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #ffd34f;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.25;
  text-shadow: 0 0 18px rgba(255, 211, 79, 0.28);
}

.hero-tagline span {
  position: relative;
  white-space: nowrap;
}

.hero-tagline span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.2em;
  right: -10px;
  width: 1px;
  height: 0.9em;
  background: rgba(255, 211, 79, 0.48);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-actions .button {
  min-width: 168px;
  min-height: 52px;
  padding: 0 24px;
}

.hero-actions .button.light {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.72);
}

.mission-pulse {
  display: none !important;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.45;
}

.brand-stage {
  position: relative;
  min-height: clamp(220px, 28vw, 360px);
  display: grid;
  place-items: center;
}

.hero .brand-stage {
  align-self: start;
  justify-self: start;
  width: min(520px, 100%);
  min-height: clamp(168px, 23vw, 300px);
  place-items: start center;
  transform: translate(
    clamp(-110px, -7vw, -54px),
    clamp(-94px, -6vw, -42px)
  );
}

.brand-stage::before,
.brand-stage::after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.brand-stage::after {
  inset: 14%;
  border-color: rgba(247, 184, 35, 0.45);
  transform: rotate(14deg);
}

.hero .brand-stage::before {
  inset: -4% 5% 14%;
}

.hero .brand-stage::after {
  inset: 4% 13% 22%;
}

.brand-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: min(390px, 66%);
  height: auto;
  padding: clamp(10px, 1.4vw, 16px);
  background:
    radial-gradient(circle at 18% 4%, rgba(255, 255, 255, 0.98), transparent 46%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 250, 254, 0.88) 58%, rgba(200, 233, 247, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -18px 34px rgba(134, 214, 244, 0.14),
    0 24px 54px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px) saturate(1.18);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
}

.announcement {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  margin: -70px auto 70px;
  display: grid;
  grid-template-columns: minmax(560px, 1.35fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 3.4vw, 38px);
  background: rgba(247, 252, 254, 0.96);
  border: 1px solid rgba(134, 214, 244, 0.52);
  box-shadow: var(--shadow);
}

.announcement-logos {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.announcement > div:not(.announcement-logos) {
  grid-column: 2;
}

.announcement > .button {
  grid-column: 2;
  justify-self: start;
  width: auto;
}

.announcement-logo {
  min-height: auto;
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  overflow: hidden;
}

.announcement-logo img {
  width: 100%;
  max-width: 100%;
  max-height: clamp(90px, 9vw, 140px);
  object-fit: contain;
  transform: none;
}

.announcement h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  line-height: 1.05;
  font-weight: 450;
}

.announcement p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1.02rem;
}

.route-deck,
.page-content {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}

.route-deck {
  padding: 0 0 78px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading.research-heading {
  margin-top: clamp(34px, 5vw, 64px);
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(7, 39, 61, 0.12);
}

.section-heading h2,
.page-card h2,
.feature-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.08;
  font-weight: 420;
}

.section-heading p,
.page-card p,
.feature-panel p,
.route-card p,
.data-card p {
  color: var(--muted);
  line-height: 1.62;
}

.route-grid,
.page-grid,
.partner-logo-grid,
.involve-grid {
  display: grid;
  gap: 16px;
}

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

.route-grid.ecosystem {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-grid.three,
.involve-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-card,
.page-card,
.data-card,
.feature-panel,
.logo-tile,
.involve-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(9, 39, 60, 0.08);
}

.route-card,
.involve-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  text-decoration: none;
}

.route-card h3,
.page-card h3,
.data-card h3,
.involve-card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 520;
}

.route-card span,
.involve-card span {
  margin-top: 18px;
  color: var(--green);
  font-weight: 520;
}

.site-map {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 68px) 0 82px;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: start;
}

.site-map-intro {
  padding-top: 8px;
}

.site-map-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  font-weight: 390;
  letter-spacing: 0;
}

.site-map-intro p {
  margin: 18px 0 26px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.62;
}

.site-map-intro .button {
  width: min(100%, 290px);
}

.site-map-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.site-map-link {
  position: relative;
  min-height: 112px;
  padding: 20px 50px 18px 0;
  display: grid;
  align-content: center;
  gap: 7px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease, padding 180ms ease;
}

.site-map-link:nth-child(2n) {
  padding-left: 24px;
}

.site-map-link::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.44;
}

.site-map-link span {
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.2;
  font-weight: 480;
}

.site-map-link small {
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.site-map-link:hover {
  color: var(--river-2);
  background: linear-gradient(90deg, rgba(134, 214, 244, 0.13), transparent);
  padding-right: 42px;
}

.site-map-link.featured {
  grid-column: 1 / -1;
  min-height: 132px;
  padding: 28px 62px 28px 28px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 39, 60, 0.96), rgba(11, 75, 92, 0.9)),
    radial-gradient(circle at 85% 0%, rgba(134, 214, 244, 0.25), transparent 34%);
  border-bottom: 0;
}

.site-map-link.featured span,
.site-map-link.featured small {
  color: #fff;
}

.site-map-link.featured small {
  opacity: 0.82;
}

.page-hero {
  min-height: 390px;
  display: grid;
  align-items: end;
  padding: 96px clamp(18px, 4vw, 48px) 54px;
}

.page-hero-inner {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.crumb {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
}

.page-content {
  padding: 56px 0 78px;
}

.feature-panel,
.page-card,
.data-card {
  padding: clamp(24px, 3.2vw, 34px);
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.76fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  margin-bottom: 18px;
}

.feature-panel img {
  width: 100%;
  min-height: 310px;
  object-fit: cover;
}

.feature-panel img.contain-media {
  min-height: 260px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  object-fit: contain;
}

.about-founder {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.48fr);
  align-items: start;
}

.founder-profile {
  margin: 0;
  display: grid;
  gap: 14px;
}

.founder-profile figcaption {
  display: grid;
  gap: 3px;
  color: var(--navy);
}

.founder-profile strong {
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.15;
}

.founder-profile span {
  color: var(--river-2);
  font-size: 1.02rem;
  line-height: 1.35;
}

.feature-panel img.about-headshot {
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}

.timeline {
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.timeline article {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.timeline article::before {
  content: counter(step);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #06283b;
  background: var(--river);
}

.timeline h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 520;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.participant-path {
  width: min(1180px, calc(100% - 48px));
  margin: clamp(44px, 7vw, 86px) auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
}

.path-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1.04;
  font-weight: 390;
  letter-spacing: 0;
}

.path-copy p {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.path-board {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(18px, 2.7vw, 28px);
  background:
    radial-gradient(circle at 17% 78%, rgba(134, 214, 244, 0.38), transparent 20%),
    radial-gradient(circle at 86% 17%, rgba(255, 211, 79, 0.28), transparent 22%),
    linear-gradient(135deg, #ffffff, #eef8fb 58%, #f8fbfc);
  border: 1px solid rgba(55, 166, 212, 0.24);
  box-shadow: 0 26px 58px rgba(6, 31, 48, 0.12);
}

.path-route {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  pointer-events: none;
}

.path-route path {
  fill: none;
  stroke: rgba(8, 123, 85, 0.52);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-dasharray: 12 24;
}

.path-stop {
  position: absolute;
  z-index: 2;
  width: clamp(198px, 31%, 230px);
  padding: 16px 16px 16px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(9, 39, 60, 0.14);
  box-shadow: 0 18px 38px rgba(6, 31, 48, 0.12);
}

.path-stop span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  color: #052840;
  background: linear-gradient(135deg, var(--river), var(--river-2));
  font-weight: 520;
  box-shadow: 0 10px 24px rgba(55, 166, 212, 0.28);
}

.path-stop h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.22;
  font-weight: 520;
}

.path-stop p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.46;
}

.stop-one {
  left: 4%;
  bottom: 8%;
}

.stop-two {
  left: 23%;
  top: 6%;
}

.stop-three {
  left: 45%;
  bottom: 6%;
}

.stop-four {
  right: 3%;
  top: 8%;
}

.path-traveler {
  position: absolute;
  z-index: 3;
  left: 49%;
  top: 48%;
  width: 46px;
  height: 54px;
  transform: translate(-50%, -50%);
}

.path-traveler::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffd34f;
  border: 3px solid #fff;
  transform: translateX(-50%);
  box-shadow: 0 8px 20px rgba(6, 31, 48, 0.18);
}

.path-traveler span {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 30px;
  height: 32px;
  border-radius: 16px 16px 8px 8px;
  background: var(--green);
  border: 3px solid #fff;
  transform: translateX(-50%);
  box-shadow: 0 12px 22px rgba(6, 31, 48, 0.16);
}

.participant-bottom-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
  padding-top: 10px;
}

.participant-bottom-cta .button {
  min-width: min(100%, 280px);
}

.participant-mission {
  align-items: stretch;
}

.free-account-panel {
  display: grid;
  width: min(100%, 620px);
  gap: 16px;
  align-content: start;
  justify-self: start;
  padding: clamp(26px, 4vw, 40px);
  color: var(--navy);
  background:
    radial-gradient(circle at 88% 10%, rgba(134, 214, 244, 0.36), transparent 36%),
    linear-gradient(135deg, rgba(134, 214, 244, 0.34), rgba(235, 247, 252, 0.96));
  border: 1px solid rgba(44, 163, 207, 0.28);
  box-shadow: 0 18px 44px rgba(6, 31, 48, 0.12);
}

.free-account-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.3vw, 1.95rem);
  line-height: 1.12;
  font-weight: 520;
}

.free-account-panel ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 1.25rem;
  color: var(--navy);
  line-height: 1.4;
}

.free-account-panel .button {
  justify-self: start;
  min-width: min(100%, 232px);
  margin-top: 8px;
}

.participant-section-heading {
  margin-top: clamp(30px, 5vw, 56px);
}

.data-card {
  min-height: 210px;
}

.data-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--river-2);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 430;
}

.source-note {
  margin-top: 18px;
  padding: 18px 20px;
  color: #466171;
  background: #eaf5f8;
  border: 1px solid rgba(55, 166, 212, 0.26);
  line-height: 1.58;
}

.anchor-section {
  scroll-margin-top: 96px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.support-card-grid .page-card {
  display: flex;
  flex-direction: column;
}

.support-card-grid .action-row {
  margin-top: auto;
  padding-top: 22px;
}

.events-content {
  display: grid;
  gap: 24px;
}

.events-portal-panel {
  align-items: stretch;
}

.opportunity-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 34px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(134, 214, 244, 0.28), transparent 32%),
    linear-gradient(135deg, var(--portal-blue), var(--portal-blue-deep));
  border: 1px solid rgba(134, 214, 244, 0.32);
  box-shadow: var(--shadow);
}

.opportunity-card span {
  margin-bottom: auto;
  color: var(--river);
  font-size: 0.92rem;
  line-height: 1.2;
}

.opportunity-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  font-weight: 390;
}

.opportunity-card p {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
}

.opportunity-card a {
  margin-top: 24px;
  color: #fff;
  text-decoration-color: rgba(134, 214, 244, 0.64);
  text-underline-offset: 4px;
}

.events-route-grid .page-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
}

.events-route-grid .action-row {
  margin-top: auto;
  padding-top: 20px;
}

.community-voice-head {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}

.community-voice-head img {
  width: 140px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 0;
  border: 1px solid rgba(7, 39, 61, 0.14);
  box-shadow: 0 16px 28px rgba(7, 39, 61, 0.12);
}

.community-voice-head h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.client-testimonials-card h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.18;
}

.evidence-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.evidence-card{min-height:330px;display:flex;flex-direction:column;padding:clamp(22px,3vw,30px);background:#fff;border:1px solid var(--line);box-shadow:0 18px 48px rgba(9,39,60,.08)}
.evidence-card strong{display:block;color:var(--river-2);font-size:clamp(1.75rem,3vw,2.8rem);line-height:1;font-weight:430}
.evidence-card h3{margin:18px 0 0;color:var(--navy);font-size:1.25rem;line-height:1.2;font-weight:480}
.evidence-card p{margin:14px 0 20px;color:var(--muted);line-height:1.58}
.evidence-card a{margin-top:auto;color:var(--green);font-weight:700;line-height:1.4}
.evidence-note{margin-top:18px}
@media(max-width:1000px){.evidence-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.evidence-grid{grid-template-columns:1fr}.evidence-card{min-height:0}}

.partner-logo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-logo-grid.dense {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.logo-tile {
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 22px;
}

.logo-tile.featured {
  min-height: 230px;
}

.logo-tile img {
  width: 100%;
  max-height: 125px;
  object-fit: contain;
}

.logo-tile.featured img {
  max-height: 170px;
}

.partner-logo-showcase {
  position: relative;
  overflow: hidden;
  margin-top: 26px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  padding: 22px 0;
}

.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(12vw, 120px);
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ice), rgba(247, 252, 254, 0));
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--ice), rgba(247, 252, 254, 0));
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  animation: partnerLogoMarquee var(--logo-speed, 34s) linear infinite;
  will-change: transform;
}

.partner-logo-showcase:hover .logo-marquee-track,
.partner-logo-showcase:focus-within .logo-marquee-track {
  animation-play-state: paused;
}

.partner-logo-slide {
  flex: 0 0 clamp(220px, 22vw, 320px);
  height: clamp(126px, 15vw, 178px);
  display: grid;
  place-items: center;
  padding: clamp(18px, 2.4vw, 28px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 39, 61, 0.12);
  box-shadow: 0 18px 34px rgba(7, 39, 61, 0.08);
}

.partner-logo-slide img {
  display: block;
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
}

.partner-logo-slide.is-wide img {
  max-width: 88%;
  max-height: 74%;
}

.partner-logo-slide.is-seal img,
.partner-logo-slide.is-square img {
  max-width: 72%;
  max-height: 82%;
}

.partner-logo-slide.is-tall img {
  width: auto;
  height: clamp(86px, 9vw, 118px);
  max-width: 46%;
  max-height: none;
}

@keyframes partnerLogoMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - clamp(8px, 1vw, 14px)));
  }
}

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

  .logo-marquee::before,
  .logo-marquee::after {
    display: none;
  }
}

.programs-hero {
  min-height: min(680px, calc(100vh - 74px));
  align-items: center;
  padding-bottom: 82px;
}

.programs-hero .page-hero-inner {
  width: min(1180px, 100%);
}

.programs-hero .hero-actions {
  margin-top: 30px;
}

.program-announcement {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 44px));
  margin: -62px auto 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(22px, 3.4vw, 36px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(134, 214, 244, 0.22), transparent 34%),
    linear-gradient(135deg, var(--portal-blue), var(--portal-blue-deep));
  border: 1px solid rgba(134, 214, 244, 0.34);
  box-shadow: var(--shadow);
}

.program-announcement-logo {
  display: grid;
  place-items: center;
  min-height: 130px;
  background: transparent;
  border: 0;
}

.program-announcement-logo img {
  width: min(320px, 94%);
  max-height: 140px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

.program-label {
  margin: 0 0 12px;
  color: var(--river);
  font-size: 0.92rem;
  line-height: 1.2;
}

.program-announcement h2,
.program-cta h2,
.program-section-heading h2 {
  margin: 0;
  letter-spacing: 0;
  font-weight: 390;
}

.program-announcement h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 3.35rem);
  line-height: 1.02;
}

.program-announcement p:not(.program-label) {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: 1.03rem;
  line-height: 1.58;
}

.programs-hero-redesign {
  min-height: min(620px, calc(100vh - 74px));
  background:
    linear-gradient(90deg, rgba(2, 17, 27, 0.92), rgba(7, 38, 53, 0.74), rgba(7, 42, 52, 0.36)),
    var(--hero-image, url("/assets/photos/community-room.jpg")) center / cover;
}

.program-launch {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 44px));
  margin: -72px auto 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 8%, rgba(134, 214, 244, 0.24), transparent 34%),
    linear-gradient(135deg, var(--portal-blue), var(--portal-blue-deep));
  border: 1px solid rgba(134, 214, 244, 0.34);
  box-shadow: var(--shadow);
}

.program-launch-logos {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(16px, 2.6vw, 30px);
  align-items: center;
  padding: clamp(16px, 2.6vw, 28px);
  background: #fff;
  border: 1px solid rgba(134, 214, 244, 0.28);
}

.program-launch-logos span {
  color: var(--muted);
  font-size: 0.96rem;
}

.program-launch-logos img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
}

.program-launch-rise {
  transform: scale(1.18);
  transform-origin: center;
}

.program-launch-leaven {
  max-width: 320px;
}

.program-launch-copy h1,
.program-launch-copy h2,
.program-types h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
  font-weight: 390;
}

.program-launch-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.62;
}

.program-experience {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(62px, 8vw, 104px) 0 28px;
}

.program-stage {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  min-height: 470px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 8%, rgba(134, 214, 244, 0.24), transparent 34%),
    linear-gradient(135deg, var(--portal-blue), var(--portal-blue-deep));
  border: 1px solid rgba(134, 214, 244, 0.28);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.program-stage img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.program-stage-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(30px, 5vw, 60px);
}

.program-stage-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.02;
  font-weight: 390;
}

.program-stage-copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.64;
}

.program-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.program-pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--river);
  border: 1px solid rgba(134, 214, 244, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.program-rhythm {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.program-rhythm article {
  min-height: 260px;
  padding: clamp(22px, 2.8vw, 30px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(9, 39, 60, 0.08);
}

.program-rhythm span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: #06283b;
  background: linear-gradient(135deg, var(--river), var(--river-2));
  font-size: 1.08rem;
}

.program-rhythm h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
  font-weight: 430;
}

.program-rhythm p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.program-types {
  width: min(1180px, calc(100% - 44px));
  margin: clamp(34px, 5vw, 62px) auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 20, 34, 0.88), rgba(9, 41, 73, 0.72)),
    url("/assets/photos/three-person-panel.jpg") center / cover;
  border: 1px solid rgba(134, 214, 244, 0.24);
  box-shadow: var(--shadow);
}

.program-types > div > p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.62;
}

.program-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.program-type-grid article {
  min-height: 184px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.program-type-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 1.22rem;
  line-height: 1.18;
  font-weight: 430;
}

.program-type-grid p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

.programs-page {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0 82px;
}

.program-section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.program-section-heading.compact {
  margin: 0;
}

.program-section-heading h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.02;
}

.program-section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.62;
}

.program-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  min-height: 440px;
  margin-bottom: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 41, 73, 0.98), rgba(7, 32, 60, 0.94)),
    radial-gradient(circle at 80% 14%, rgba(134, 214, 244, 0.22), transparent 34%);
  border: 1px solid rgba(134, 214, 244, 0.28);
  box-shadow: var(--shadow);
}

.program-showcase img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.program-showcase-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(28px, 5vw, 58px);
}

.program-showcase h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  line-height: 1.04;
  font-weight: 390;
}

.program-showcase p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.62;
}

.program-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.program-metrics span {
  min-height: 92px;
  display: grid;
  align-content: center;
  padding: 16px;
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  line-height: 1.3;
}

.program-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--river);
  font-weight: 430;
}

.program-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.program-card {
  min-height: 260px;
  padding: clamp(24px, 3vw, 32px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(9, 39, 60, 0.08);
}

.program-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--river-2);
  font-size: 0.95rem;
}

.program-card h3,
.program-flow-list h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.15;
  font-weight: 430;
}

.program-card p,
.program-flow-list p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.program-flow {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
  margin: clamp(44px, 6vw, 72px) 0;
}

.program-flow-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.program-flow-list article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.program-flow-list span {
  color: var(--river-2);
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 390;
}

.program-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(134, 214, 244, 0.24), transparent 30%),
    linear-gradient(135deg, var(--portal-blue), var(--portal-blue-deep));
  border: 1px solid rgba(134, 214, 244, 0.32);
  box-shadow: var(--shadow);
}

.program-cta h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.06;
}

.program-cta p {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.program-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.8);
  background: var(--navy);
}

.site-footer img {
  width: 146px;
  height: auto;
  padding: 12px 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.98), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 255, 0.9) 58%, rgba(225, 246, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -18px 32px rgba(134, 214, 244, 0.1),
    0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.site-footer p {
  max-width: 760px;
  margin: 0;
  line-height: 1.55;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer .footer-contact {
  justify-self: end;
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
}

.site-footer .footer-contact a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.donate-content {
  padding-bottom: 88px;
}

.donate-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
  gap: 18px;
  align-items: start;
}

.donate-story p + p {
  margin-top: 14px;
}

.donate-frame-card {
  padding: clamp(18px, 2.4vw, 24px);
}

.donate-frame-card iframe {
  width: 100%;
  min-height: 560px;
  display: block;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 1;
    justify-self: start;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(134, 214, 244, 0.28);
    background: linear-gradient(180deg, var(--portal-blue), var(--portal-blue-deep));
    box-shadow: 0 22px 48px rgba(5, 25, 39, 0.28);
    overflow: visible;
  }

  .site-header.nav-open .main-nav {
    display: grid;
  }

  .main-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
  }

  .main-nav a:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .main-nav a:hover,
  .main-nav a.is-active {
    background: rgba(134, 214, 244, 0.12);
  }

  .site-header > .button,
  .header-actions {
    order: 2;
    width: auto;
    justify-self: end;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .hero-grid,
  .feature-panel,
  .announcement {
    grid-template-columns: 1fr;
  }

  .about-founder .founder-profile {
    order: -1;
    width: min(360px, 100%);
    justify-self: start;
  }

  .brand-stage {
    min-height: clamp(190px, 24vw, 280px);
  }

  .hero .brand-stage {
    order: -1;
    width: min(420px, 72%);
    min-height: clamp(96px, 16vw, 150px);
    margin: 0 0 clamp(10px, 3vw, 24px);
    place-items: start start;
    transform: none;
  }

  .brand-logo {
    width: min(310px, 100%);
  }

  .announcement-logos,
  .announcement > div:not(.announcement-logos),
  .announcement > .button {
    grid-column: auto;
    grid-row: auto;
  }

  .announcement {
    margin-top: -42px;
  }

  .donate-grid {
    grid-template-columns: 1fr;
  }

  .program-announcement,
  .program-showcase,
  .program-flow,
  .program-cta,
  .program-launch,
  .program-stage,
  .program-types {
    grid-template-columns: 1fr;
  }

  .program-announcement,
  .program-launch {
    margin-top: -48px;
  }

  .program-announcement > .button,
  .program-cta-actions {
    justify-self: start;
  }

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

  .program-type-grid {
    grid-template-columns: 1fr;
  }

  .program-showcase img,
  .program-stage img {
    min-height: 320px;
  }

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

  .path-copy {
    max-width: 760px;
  }

  .path-copy p {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    padding: 10px clamp(14px, 4vw, 24px);
  }

  .focus-strip {
    display: none;
  }

  .mission-pulse {
    display: grid;
    gap: 4px;
  }

  .site-header .button {
    width: auto;
    min-height: 38px;
    padding: 0 12px;
  }

  .site-header .portal-entry {
    min-width: 0;
    white-space: nowrap;
  }

  .header-actions {
    display: flex;
    justify-content: flex-end;
    width: auto;
    gap: 7px;
  }

  .header-actions .button {
    min-width: 0;
    font-size: 0.82rem;
  }

  .header-actions .portal-create {
    padding-inline: 10px;
  }

  .program-announcement,
  .program-launch,
  .programs-page {
    width: min(100% - 28px, 1180px);
  }

  .programs-hero {
    min-height: auto;
    padding-bottom: 72px;
  }

  .program-announcement-logo {
    min-height: 112px;
  }

  .program-announcement-logo img {
    max-height: 112px;
  }

  .program-metrics {
    grid-template-columns: 1fr;
  }

  .program-experience,
  .program-types {
    width: min(100% - 28px, 1180px);
  }

  .program-launch {
    margin-top: -28px;
    padding: 20px;
  }

  .program-launch-logos {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
  }

  .program-launch-logos span {
    order: 2;
  }

  .program-launch-rise {
    max-width: 360px;
    transform: none;
  }

  .program-launch-leaven {
    max-width: 320px;
  }

  .program-stage img {
    min-height: 260px;
  }

  .program-rhythm,
  .program-type-grid {
    grid-template-columns: 1fr;
  }

  .program-rhythm article,
  .program-type-grid article {
    min-height: auto;
  }

  .program-flow-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .program-cta-actions,
  .program-cta-actions .button {
    width: 100%;
  }

  .main-nav {
    grid-template-columns: 1fr;
  }

  .main-nav a:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    min-height: 44px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-copy p {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-tagline {
    margin-top: 18px;
    gap: 7px 14px;
    font-size: 0.98rem;
  }

  .hero-actions {
    width: auto;
    max-width: 520px;
    margin-top: 24px;
  }

  .hero-actions .button {
    flex: 0 1 auto;
    width: auto;
    min-width: min(180px, 100%);
    min-height: 48px;
    padding: 0 18px;
  }

  .brand-stage {
    min-height: 138px;
    margin-top: 2px;
  }

  .hero .brand-stage {
    width: min(300px, 74%);
    min-height: 82px;
    margin-bottom: 12px;
  }

  .brand-logo {
    width: min(245px, 100%);
  }

  .announcement {
    width: calc(100% - 28px);
    margin-top: -18px;
    padding: 18px;
  }

  .announcement-logos {
    grid-template-columns: 1fr;
  }

  .announcement-logo {
    min-height: auto;
  }

  .announcement-logo img {
    max-height: 112px;
  }

  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .route-grid.ecosystem {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-card {
    min-height: 118px;
    padding: 16px;
  }

  .route-card p {
    display: none;
  }

  .route-card h3 {
    font-size: 1.02rem;
  }

  .route-card span {
    margin-top: 10px;
  }

  .site-map {
    width: min(100% - 28px, 1160px);
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 0 58px;
  }

  .site-map-intro h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .site-map-intro .button {
    width: 100%;
  }

  .site-map-nav {
    grid-template-columns: 1fr;
  }

  .participant-path {
    width: calc(100% - 28px);
  }

  .path-board {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 16px;
  }

  .path-route,
  .path-traveler {
    display: none;
  }

  .path-stop {
    position: relative;
    inset: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px 14px;
    align-items: start;
  }

  .path-stop span {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .path-stop h3 {
    margin-top: 2px;
  }

  .community-voice-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .community-voice-head img {
    width: min(180px, 70vw);
  }

  .site-map-link,
  .site-map-link:nth-child(2n) {
    min-height: auto;
    padding: 16px 42px 16px 0;
  }

  .site-map-link.featured {
    min-height: auto;
    padding: 20px 46px 20px 18px;
  }

  .site-map-link::after {
    top: 22px;
    right: 16px;
  }

  .page-grid.two,
  .page-grid.three,
  .partner-logo-grid,
  .involve-grid {
    grid-template-columns: 1fr;
  }

  .page-content {
    width: min(100% - 28px, 1160px);
    padding: 36px 0 54px;
  }

  .page-hero {
    min-height: 330px;
    padding-top: 82px;
  }

  .feature-panel img {
    min-height: 220px;
  }

  .about-founder .founder-profile {
    width: min(320px, 100%);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .menu-toggle,
  .header-actions {
    justify-self: auto;
  }

  .menu-toggle {
    width: 44px;
    min-width: 44px;
  }

  .header-actions {
    justify-self: end;
  }

  .header-actions .button {
    min-height: 36px;
    padding-inline: 10px;
  }

  .header-actions .portal-create {
    max-width: 116px;
  }
}

@media (max-width: 430px) {
  .route-grid {
    grid-template-columns: 1fr;
  }
}
/* Events calendar */
.events-section{padding:64px clamp(20px,5vw,72px);background:#f4f7f6}
.events-heading{max-width:1180px;margin:0 auto 24px}
.events-heading h2{margin:0 0 8px}
.events-heading p{margin:0;max-width:680px}
.events-view-toggle{max-width:1180px;margin:0 auto 18px;display:flex;width:max-content;padding:3px;border:1px solid rgba(18,73,70,.2);border-radius:6px;background:#e8efee}
.events-view-toggle button{min-width:112px;min-height:42px;padding:0 18px;border:0;border-radius:4px;background:transparent;color:#174f4b;font:inherit;font-weight:700;cursor:pointer}
.events-view-toggle button[aria-pressed="true"]{background:#174f4b;color:#fff;box-shadow:0 4px 12px rgba(20,47,44,.18)}
.events-view-toggle button:focus-visible{outline:3px solid rgba(55,166,212,.35);outline-offset:2px}
.events-calendar-card[hidden],.events-list-card[hidden]{display:none!important}
.events-layout{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:1fr;gap:20px;align-items:start}
.events-calendar-card,.events-list-card{background:#fff;border:1px solid rgba(18,73,70,.16);border-radius:8px;padding:24px;box-shadow:0 12px 30px rgba(20,47,44,.08)}
.events-calendar-card{overflow-x:visible}
.calendar-head{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-bottom:18px}
.calendar-head h2,.events-list-card>h2{margin:0;font-size:1.35rem}
.calendar-date-selectors{display:flex;align-items:center;gap:8px;flex-wrap:wrap}
.calendar-date-selectors select{min-height:44px;padding:9px 38px 9px 12px;border:1px solid rgba(18,73,70,.28);border-radius:4px;background:#fff;color:var(--navy);font:inherit;font-size:1.05rem;font-weight:700;cursor:pointer}
.calendar-date-selectors select:focus-visible{outline:3px solid rgba(55,166,212,.35);outline-offset:2px}
.calendar-controls{display:flex;gap:8px;flex-wrap:wrap}
.calendar-controls .button{color:#174f4b;border-color:rgba(18,73,70,.25);padding:9px 12px}
.calendar-grid{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:2px;min-width:0}
.calendar-weekday{font-size:.75rem;font-weight:700;text-align:center;text-transform:uppercase;color:#526b68;padding:6px 2px}
.calendar-day{min-height:112px;border:1px solid rgba(18,73,70,.14);border-radius:3px;padding:6px;background:#fff;overflow:hidden}
.calendar-day.empty{background:#f3f6f5}
.calendar-day strong{display:block;margin-bottom:5px;color:#174f4b}
.calendar-day a{display:block;font-size:.7rem;line-height:1.25;color:#174f4b;font-weight:700;overflow-wrap:normal;word-break:normal;hyphens:none}
.calendar-event-full{display:block;font-size:.7rem;line-height:1.25;color:#8b2f2f;font-weight:700;overflow-wrap:normal;word-break:normal;hyphens:none}
.calendar-event-title,.calendar-event-time,.calendar-event-capacity{display:block}
.calendar-event-title{font-size:.62rem;line-height:1.28;letter-spacing:0}
.calendar-event-time{margin-top:4px;color:#526b68;font-size:.92em;font-weight:600;text-decoration:none}
.calendar-event-capacity{margin-top:4px;text-transform:uppercase}
.calendar-day.has-event{background:#eef7f4;border-color:#71a89d}
.events-list{display:grid;gap:12px;margin-top:18px}
.event-list-item{padding:16px;border-left:4px solid #d9653b;background:#f5f8f7}
.event-list-item span{font-size:.78rem;font-weight:700;color:#526b68;text-transform:uppercase}
.event-list-item h3{margin:5px 0;font-size:1.05rem}
.event-list-item p{margin:5px 0;font-size:.9rem}
.event-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:9px}
.event-actions a{font-weight:700;color:#174f4b}
.event-status-full{font-weight:700;color:#8b2f2f;text-transform:uppercase}
.events-note{margin:18px 0 0;font-size:.85rem;color:#526b68}
@media (max-width:900px){.events-layout{grid-template-columns:1fr}.calendar-head{align-items:flex-start;flex-direction:column}}
@media (min-width:1000px){.calendar-event-title{font-size:.75rem}}
@media (max-width:620px){.events-section{padding:44px 6px}.events-calendar-card{padding:12px 6px}.events-list-card{padding:14px}.calendar-head{align-items:flex-start;flex-direction:column}.calendar-date-selectors{width:100%}.calendar-date-selectors select{flex:1;min-width:0}.calendar-grid{gap:1px}.calendar-day{min-height:104px;padding:4px}.calendar-day a,.calendar-event-full{font-size:.62rem}.calendar-weekday{font-size:.62rem}.calendar-controls .button{padding:8px 9px}}
/* Contact request */
.header-actions .contact-trigger{min-width:0;color:rgba(255,255,255,.92);background:transparent;border-color:rgba(134,214,244,.34)}
.contact-dialog{width:min(680px,calc(100% - 28px));max-height:calc(100vh - 28px);padding:0;border:1px solid rgba(9,39,60,.2);border-radius:8px;color:var(--ink);background:#fff;box-shadow:0 24px 70px rgba(6,31,48,.35)}
.contact-dialog::backdrop{background:rgba(2,17,27,.72);backdrop-filter:blur(3px)}
.contact-form{padding:clamp(20px,4vw,34px)}
.contact-form-head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;margin-bottom:24px}
.contact-form-head h2{margin:0;color:var(--navy);font-size:clamp(1.55rem,3vw,2.2rem);font-weight:450}
.contact-form-head p{margin:8px 0 0;color:var(--muted)}
.contact-form-head .contact-phone{color:var(--navy);font-weight:600}
.contact-phone a{color:#12627c;text-decoration:underline;text-underline-offset:3px}
.contact-close{width:40px;height:40px;flex:0 0 40px;border:0;background:#eef6f7;color:var(--navy);font-size:1.7rem;line-height:1;cursor:pointer}
.contact-fields{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.contact-fields label{display:grid;gap:7px;color:var(--navy);font-size:.88rem;font-weight:700}
.contact-fields label span{color:var(--muted);font-weight:400}
.contact-fields input,.contact-fields textarea{width:100%;padding:11px 12px;border:1px solid rgba(9,39,60,.25);border-radius:4px;background:#fff;color:var(--ink);font:inherit;resize:vertical}
.contact-fields input:focus,.contact-fields textarea:focus{outline:3px solid rgba(55,166,212,.22);border-color:var(--river-2)}
.contact-message-field{grid-column:1/-1}
.contact-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.contact-status{min-height:24px;margin:16px 0 0;color:#087b55;font-weight:700;line-height:1.4}
.contact-actions{display:flex;justify-content:flex-end;gap:12px;margin-top:18px}
.contact-actions .button{min-height:44px}
@media(max-width:760px){.contact-fields{grid-template-columns:1fr}.contact-message-field{grid-column:auto}.header-actions .contact-trigger{display:none}.contact-actions{flex-direction:column-reverse}.contact-actions .button{width:100%}.site-footer .footer-contact{justify-self:start;white-space:normal}}
/* Workshop host locations */
.venue-support{margin-top:28px;display:grid;grid-template-columns:minmax(0,1.25fr) minmax(280px,.75fr);gap:clamp(24px,4vw,52px);padding:clamp(28px,5vw,54px);color:#fff;background:linear-gradient(135deg,var(--portal-blue),var(--portal-blue-deep));border:1px solid rgba(134,214,244,.3);box-shadow:var(--shadow)}
.venue-support-label{display:block;margin-bottom:16px;color:var(--river);font-size:.82rem;font-weight:700;text-transform:uppercase}
.venue-support h2{margin:0;color:#fff;font-size:clamp(2rem,4vw,3.4rem);line-height:1.04;font-weight:390}
.venue-support h3{margin:0;color:#fff;font-size:1.45rem;font-weight:450}
.venue-support p{color:rgba(255,255,255,.82);line-height:1.65}
.venue-support-action{align-self:center;padding:24px;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.07)}
.venue-support-action .button{margin-top:10px}
.location-request-section{width:min(920px,calc(100% - 32px));margin:0 auto;padding:clamp(48px,7vw,82px) 0}
.location-request-intro{max-width:760px;margin-bottom:28px}
.location-request-intro h2{margin:0;color:var(--navy);font-size:clamp(2rem,4vw,3.2rem);font-weight:400}
.location-request-intro p{color:var(--muted);line-height:1.65}
.location-request-form{padding:clamp(22px,4vw,38px);background:#fff;border:1px solid var(--line);box-shadow:0 18px 48px rgba(9,39,60,.1)}
.location-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.location-form-grid>label{display:grid;gap:7px;color:var(--navy);font-size:.9rem;font-weight:700}
.location-form-grid input,.location-form-grid textarea{width:100%;padding:12px;border:1px solid rgba(9,39,60,.25);border-radius:4px;color:var(--ink);background:#fff;font:inherit}
.location-form-grid textarea{resize:vertical}
.location-form-grid input:focus,.location-form-grid textarea:focus{outline:3px solid rgba(55,166,212,.22);border-color:var(--river-2)}
.location-wide{grid-column:1/-1}
.location-form-grid fieldset{margin:0;padding:18px;border:1px solid rgba(9,39,60,.18)}
.location-form-grid legend{padding:0 7px;color:var(--navy);font-weight:700}
.location-options{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.location-options label{display:flex;align-items:flex-start;gap:9px;color:var(--ink);font-size:.9rem;line-height:1.4}
.location-options input{width:17px;height:17px;flex:0 0 17px;margin-top:2px}
.location-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.location-form-status{min-height:24px;margin:18px 0 0;color:#087b55;font-weight:700}
.location-form-actions{display:flex;justify-content:flex-end;gap:12px;margin-top:18px}
@media(max-width:760px){.venue-support{grid-template-columns:1fr}.location-form-grid,.location-options{grid-template-columns:1fr}.location-wide{grid-column:auto}.location-form-actions{flex-direction:column-reverse}.location-form-actions .button{width:100%}}
/* Five-step participant path */
.participant-path .path-board{min-height:0;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;overflow:visible}
.participant-path .path-route,.participant-path .path-traveler{display:none}
.participant-path .path-stop{position:relative;inset:auto;width:auto;min-height:220px}
@media(max-width:900px){.participant-path .path-board{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:600px){.participant-path .path-board{grid-template-columns:1fr}.participant-path .path-stop{min-height:0}}
.site-footer .footer-legal{grid-column:1/-1;max-width:none;padding-top:18px;border-top:1px solid rgba(255,255,255,.18);color:rgba(255,255,255,.68);font-size:.82rem;line-height:1.5}
.program-launch:first-child{margin:clamp(24px,4vw,48px) auto 0}
.partner-logo-carousel{display:grid;gap:12px;padding:clamp(18px,3vw,26px);background:#fff;border:1px solid var(--line);box-shadow:0 18px 48px rgba(9,39,60,.08)}
.partner-carousel-heading{margin:0;text-align:center;color:#126a70;font-family:"Segoe Script","Brush Script MT",cursive;font-size:clamp(1.5rem,2.5vw,2rem);font-weight:600;line-height:1.15}
.partner-logo-stage{min-height:250px;display:grid;grid-template-rows:minmax(165px,1fr) auto;place-items:center;gap:10px;text-align:center}
.partner-logo-stage.has-dark-background{padding:18px;background:var(--navy)}
.partner-logo-stage.has-dark-background h3{color:#fff}
.partner-logo-stage img{display:block;width:auto;height:auto;max-width:min(620px,90%);max-height:180px;object-fit:contain}
.partner-logo-stage img.is-seal,.partner-logo-stage img.is-square{max-width:180px;max-height:180px}
.partner-logo-stage img.is-tall{max-width:155px;max-height:185px}
.partner-logo-stage h3{margin:0;color:var(--navy);font-size:clamp(1rem,1.5vw,1.25rem);font-weight:600}
.partner-logo-stage h3 a{color:inherit;text-decoration-thickness:1px;text-underline-offset:5px}
.partner-logo-stage h3 a:hover,.partner-logo-stage h3 a:focus-visible{color:#117a83}
.leaven-partnership-panel{margin-top:24px;padding:clamp(24px,4vw,38px)}
.leaven-partnership-panel h2{margin:0;color:var(--navy);font-size:clamp(1.65rem,3vw,2.5rem);line-height:1.12;font-weight:420}
.leaven-partnership-panel p{color:var(--muted);line-height:1.65}
.partner-carousel-controls{display:flex;align-items:center;justify-content:center;gap:12px;padding-top:18px;border-top:1px solid var(--line)}
.partner-carousel-controls button{min-width:44px;min-height:42px;padding:0 14px;border:1px solid rgba(9,39,60,.2);border-radius:4px;background:#fff;color:var(--navy);font:inherit;font-weight:700;cursor:pointer}
.partner-carousel-controls button:hover{background:#eef8fb}
.partner-carousel-controls span{min-width:64px;text-align:center;color:var(--muted);font-size:.9rem;font-weight:700}
@media(max-width:620px){.partner-logo-carousel{padding:16px}.partner-logo-stage{min-height:220px;grid-template-rows:minmax(145px,1fr) auto}.partner-logo-stage img{max-height:155px}.partner-logo-stage img.is-seal,.partner-logo-stage img.is-square{max-width:150px;max-height:150px}.partner-carousel-controls{gap:7px}.partner-carousel-controls button{padding:0 10px}}
.site-footer .footer-disclaimer{grid-column:1/-1;max-width:none;padding-top:18px;border-top:1px solid rgba(255,255,255,.18);color:rgba(255,255,255,.82);font-size:.9rem;line-height:1.55}

/* RISE Center */
.rise-center-hero{min-height:min(620px,72vh);background-position:center 44%}
.rise-center-hero .page-hero-inner{max-width:980px}
.rise-center-hero .page-hero-inner p{max-width:850px}
.center-partnership,.center-roles,.center-support,.center-pathway{padding:clamp(54px,7vw,88px) 28px}
.center-inner{width:min(1180px,100%);margin:0 auto}
.center-partnership{background:#fff}
.center-partnership .center-inner{display:grid;grid-template-columns:minmax(280px,.82fr) minmax(0,1.18fr);gap:clamp(36px,6vw,76px);align-items:center}
.center-brand-lockup{display:grid;grid-template-columns:minmax(0,1fr) auto minmax(0,.72fr);gap:20px;align-items:center;padding:24px;border-left:5px solid #d9188f}
.center-brand-lockup img{display:block;width:100%;max-height:180px;object-fit:contain}
.center-brand-lockup span{color:var(--muted);font-size:1rem}
.center-partnership-copy h2,.center-pathway h2{margin:0 0 18px;color:var(--navy);font-size:clamp(2rem,4vw,3.2rem);line-height:1.08;font-weight:420}
.center-partnership-copy p,.center-pathway p{margin:0 0 16px;color:var(--muted);font-size:1.08rem;line-height:1.7}
.center-roles{background:#eef5f6}
.center-roles .section-heading,.center-support .section-heading{max-width:820px;margin:0 0 34px}
.center-roles .section-heading h2,.center-support .section-heading h2{margin:0 0 12px;color:var(--navy);font-size:clamp(1.8rem,3.4vw,2.7rem);font-weight:430}
.center-roles .section-heading p,.center-support .section-heading p{margin:0;color:var(--muted);font-size:1.05rem;line-height:1.65}
.center-role-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
.center-role-grid article{min-height:100%;padding:30px;background:#fff;border:1px solid rgba(18,73,70,.16);border-radius:6px}
.center-role-grid img{width:auto;max-width:190px;height:92px;object-fit:contain;object-position:left center;margin-bottom:24px}
.center-role-grid h3,.center-support-grid h3{margin:0 0 12px;color:var(--navy);font-size:1.35rem}
.center-role-grid p,.center-support-grid p{margin:0;color:var(--muted);line-height:1.65}
.center-support{background:#fff}
.center-small-group-callout{display:grid;grid-template-columns:minmax(220px,.65fr) minmax(0,1.35fr);gap:28px;align-items:center;margin:0 0 26px;padding:24px 28px;border-left:5px solid #d9188f;background:#eef8f8}
.center-small-group-callout strong{color:var(--navy);font-size:clamp(1.35rem,2.5vw,2rem);line-height:1.15}
.center-small-group-callout p{margin:0;color:var(--muted);line-height:1.65}
.center-public-access{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:18px;align-items:center;margin:0 0 26px;padding:18px 22px;border:1px solid rgba(18,73,70,.22);border-left:5px solid #22a8ad;background:#fff}
.center-public-access strong{color:var(--navy);font-size:1.1rem;white-space:nowrap}
.center-public-access p{margin:0;color:var(--muted);line-height:1.55}
.center-public-access a{color:#126a70;font-weight:700;white-space:nowrap}
.center-support-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.center-support-grid article{position:relative;padding:28px 24px;border:1px solid rgba(18,73,70,.18);border-radius:6px;background:#fff}
.center-support-grid article::before{content:"";display:block;width:42px;height:4px;margin-bottom:22px;background:#22a8ad}
.center-support-grid article:nth-child(2)::before,.center-support-grid article:nth-child(4)::before{background:#d9188f}
.center-pathway{background:#092e4d;color:#fff}
.center-pathway .center-inner{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(260px,.65fr);gap:clamp(32px,7vw,84px);align-items:center}
.center-pathway h2{color:#fff}
.center-pathway p{color:rgba(255,255,255,.78)}
.center-pathway-actions{display:flex;flex-direction:column;align-items:stretch;gap:12px}
.center-pathway-actions .button{text-align:center}
.center-pathway-actions .text-link{padding:10px 0;color:#8ddcf2;text-align:center;font-weight:700}
@media(max-width:900px){.center-partnership .center-inner,.center-pathway .center-inner{grid-template-columns:1fr}.center-brand-lockup{max-width:700px}.center-support-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:620px){.center-partnership,.center-roles,.center-support,.center-pathway{padding:46px 18px}.center-brand-lockup{grid-template-columns:1fr;justify-items:center;border-left:0;border-top:5px solid #d9188f}.center-brand-lockup img{max-width:240px;max-height:130px}.center-role-grid,.center-support-grid,.center-small-group-callout,.center-public-access{grid-template-columns:1fr}.center-small-group-callout{gap:12px;padding:22px 20px}.center-public-access{gap:8px}.center-public-access strong,.center-public-access a{white-space:normal}.center-role-grid article,.center-support-grid article{padding:24px 20px}}

/* Home header mission and wide-screen scale */
.home-page .site-header{row-gap:7px;padding-top:9px;padding-bottom:8px}
.header-mission{grid-column:1/-1;display:flex;justify-content:center;align-items:center;gap:10px 20px;width:100%;margin:0;padding-top:7px;border-top:1px solid rgba(134,214,244,.2);color:#ffd34f;font-size:.78rem;line-height:1.2;text-align:center}
.header-mission span{white-space:nowrap}
.header-mission span:not(:last-child)::after{content:"";display:inline-block;width:18px;height:1px;margin:0 0 3px 20px;background:rgba(134,214,244,.48)}

@media(min-width:761px) and (max-width:1180px){
  .home-page .hero#top{min-height:auto;padding:clamp(42px,6vw,64px) clamp(24px,4vw,44px) clamp(72px,8vw,92px)}
  .home-page .hero#top .hero-grid{gap:16px}
  .home-page .hero#top .brand-stage{width:min(320px,52%);min-height:108px;margin-bottom:8px}
  .home-page .hero#top .brand-logo{width:min(260px,100%)}
  .home-page .hero#top .hero-copy h1{max-width:720px;font-size:clamp(2.35rem,5vw,3.35rem);line-height:1.06}
  .home-page .hero#top .hero-copy p{max-width:760px;font-size:1.05rem}
}

@media(min-width:1181px){
  .home-page .hero#top{min-height:min(720px,calc(100vh - 102px));padding:60px clamp(32px,4vw,56px) 88px}
  .home-page .hero#top .hero-grid{width:min(1120px,100%);grid-template-columns:minmax(0,1.18fr) minmax(280px,.62fr);gap:44px}
  .home-page .hero#top .hero-copy h1{max-width:700px;font-size:clamp(2.7rem,3.2vw,3.65rem);line-height:1.05}
  .home-page .hero#top .hero-copy p{max-width:680px;font-size:1.1rem}
  .home-page .hero#top .brand-stage{width:min(390px,100%);min-height:220px;transform:translate(-30px,-22px)}
  .home-page .hero#top .brand-logo{width:min(300px,78%)}
}

@media(max-width:760px){
  .header-mission{flex-wrap:wrap;gap:4px 10px;padding-top:6px;font-size:.7rem}
  .header-mission span:not(:last-child)::after{display:none}
}
