:root {
  --navy-950: #071629;
  --navy-900: #0a1a33;
  --navy-800: #0d2747;
  --blue-700: #145ea8;
  --blue-500: #2d8acb;
  --teal-600: #148f8b;
  --teal-500: #1fa7a1;
  --green-500: #3cc58f;
  --green-200: #b9ead4;
  --gold-500: #f2b233;
  --ink: #142338;
  --slate: #526174;
  --mist: #edf4f5;
  --paper: #f8faf8;
  --white: #ffffff;
  /* Verso brand standard: labels on solid primary buttons remain white. */
  --primary-button-label: #ffffff;
  --line: #dce6e7;
  --background: #ffffff;
  --foreground: #142338;
  --card: #ffffff;
  --card-foreground: #142338;
  --popover: #ffffff;
  --popover-foreground: #142338;
  --primary: #0a1a33;
  --primary-foreground: #ffffff;
  --secondary: #edf4f5;
  --secondary-foreground: #0a1a33;
  --muted: #edf4f5;
  --muted-foreground: #526174;
  --accent: #e0f6ee;
  --accent-foreground: #0a1a33;
  --destructive: #c92137;
  --border: #dce6e7;
  --input: #dce6e7;
  --ring: #1fa7a1;
  --radius: 0.75rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 6px);
  --font-sans: "Avenir Next", "Montserrat", Inter, ui-sans-serif, system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.button-base {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.button-base svg {
  width: 1rem;
  height: 1rem;
}

.header-cta.button-base {
  color: var(--primary-button-label) !important;
}

.secondary-cta.button-base {
  border: 1px solid rgba(10, 26, 51, 0.18);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 22, 41, 0.55);
}

.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(86vw, 390px);
  height: 100%;
  background: var(--paper);
  padding: 1.25rem;
  box-shadow: -20px 0 60px rgba(7, 22, 41, 0.2);
}

.mobile-drawer-close {
  align-self: flex-end;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 1.4rem;
}

.mobile-drawer-panel > h2 {
  margin: 1rem 0 0;
  color: var(--navy-900);
  font-size: 1.4rem;
}

.mobile-drawer-panel > p {
  margin: 0.4rem 0 0;
  color: var(--slate);
  font-size: 0.8rem;
}

.mobile-menu-button.button-base {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: white;
  color: var(--navy-900);
  font-size: 1.2rem;
}

.dual-icon {
  color: var(--green-500);
  font-size: 1.5rem;
}

.program-card li > span,
.school-benefits li > span,
.host-details li > span {
  flex: 0 0 auto;
  color: var(--teal-600);
  font-weight: 800;
}

.host-details li > span {
  color: var(--green-500);
}

.program-card li b,
.school-benefits li b,
.host-details li b {
  font-weight: 500;
}

.host-detail-icon {
  font-weight: 850;
}

.network-symbol {
  color: var(--green-500);
  font-size: 1.6rem;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(31, 167, 161, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  border-radius: 0.5rem;
  background: var(--navy-900);
  color: white;
  padding: 0.75rem 1rem;
  font-weight: 700;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-shell {
  width: min(100% - 3rem, 1240px);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(220, 230, 231, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 101px;
  gap: 2rem;
}

.brand-lockup {
  position: relative;
  display: grid;
  grid-template-columns: 38px auto;
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
  align-items: center;
  width: max-content;
}

.brand-image-lockup {
  display: block;
  width: 327px;
  height: 87px;
}

.verso-logo-asset {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  grid-row: 1 / 3;
  position: relative;
  display: block;
  width: 36px;
  height: 34px;
}

.brand-mark span {
  position: absolute;
  top: 1px;
  width: 12px;
  height: 34px;
  border-radius: 2px 2px 8px 8px;
}

.brand-mark span:first-child {
  left: 7px;
  background: linear-gradient(180deg, var(--blue-500), var(--teal-500));
  transform: rotate(-30deg);
  transform-origin: bottom;
}

.brand-mark span:last-child {
  right: 7px;
  background: linear-gradient(180deg, var(--green-500), var(--teal-600));
  transform: rotate(30deg);
  transform-origin: bottom;
}

.brand-name {
  align-self: end;
  color: var(--navy-900);
  font-size: 1.32rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1;
}

.brand-tagline {
  align-self: start;
  margin-top: 0.2rem;
  color: var(--teal-600);
  font-size: 0.49rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.desktop-nav a {
  position: relative;
  color: #33465c;
  font-size: 0.78rem;
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 2px;
  background: var(--teal-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
}

.language-toggle svg {
  width: 1rem;
  height: 1rem;
  color: var(--teal-600);
}

.header-cta {
  height: 42px;
  border-radius: 999px;
  background: var(--navy-900);
  padding-inline: 1.25rem;
  font-size: 0.78rem;
  color: var(--primary-button-label) !important;
}

.header-cta:hover {
  background: var(--blue-700);
}

.mobile-menu-button {
  display: none;
}

.mobile-sheet {
  background: var(--paper);
  padding: 1rem;
}

.mobile-sheet [data-slot="sheet-title"] {
  color: var(--navy-900);
  font-size: 1.4rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0.25rem;
  color: var(--navy-900);
  font-size: 1.08rem;
  font-weight: 700;
}

.mobile-nav a span {
  color: var(--teal-600);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.mobile-language {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  border: 0;
  border-radius: 999px;
  background: var(--navy-900);
  color: white;
  padding: 0.9rem 1rem;
  font: inherit;
  font-weight: 700;
}

.mobile-language svg {
  width: 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(60, 197, 143, 0.18), transparent 24rem),
    radial-gradient(circle at 4% 84%, rgba(45, 138, 203, 0.11), transparent 20rem),
    linear-gradient(180deg, #fbfdfc 0%, #f3f8f7 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 26, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 26, 51, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: center;
  min-height: min(740px, calc(100vh - 101px));
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(5rem, 9vw, 8rem) 4rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--teal-600);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow span {
  display: inline-block;
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--green-500), var(--blue-500));
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(3.5rem, 7vw, 6.7rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero h1 span {
  display: block;
  margin-top: 0.15em;
  color: transparent;
  background: linear-gradient(93deg, var(--teal-600) 0%, var(--blue-700) 72%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lede {
  max-width: 650px;
  margin: 2rem 0 0;
  color: #43556b;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.primary-cta,
.secondary-cta {
  min-height: 52px;
  border-radius: 999px;
  padding-inline: 1.5rem;
  font-size: 0.86rem;
  font-weight: 750;
}

.primary-cta {
  background: var(--navy-900);
  color: var(--primary-button-label) !important;
  box-shadow: 0 14px 30px rgba(10, 26, 51, 0.16);
}

.primary-cta:hover {
  background: var(--blue-700);
}

.primary-cta svg {
  transition: transform 180ms ease;
}

.primary-cta:hover svg {
  transform: translateX(4px);
}

.secondary-cta {
  border-color: rgba(10, 26, 51, 0.18);
  background: rgba(255, 255, 255, 0.6);
  color: var(--navy-900);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1.12;
  min-height: 470px;
  border: 1px solid rgba(10, 26, 51, 0.09);
  border-radius: 48% 48% 1.5rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 244, 245, 0.7)),
    white;
  box-shadow: 0 35px 90px rgba(10, 26, 51, 0.12);
}

.hero-visual::before {
  position: absolute;
  inset: 1.5rem;
  border: 1px dashed rgba(20, 94, 168, 0.13);
  border-radius: inherit;
  content: "";
}

.bridge-orbit {
  position: absolute;
  inset: 7% 3% 4%;
}

.bridge-orbit svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.bridge-orbit path,
.bridge-orbit circle {
  vector-effect: non-scaling-stroke;
}

.bridge-glow {
  fill: none;
  stroke: rgba(31, 167, 161, 0.1);
  stroke-linecap: round;
  stroke-width: 24;
}

.bridge-path {
  fill: none;
  stroke: url(#bridgeGradient);
  stroke-linecap: round;
  stroke-width: 5;
}

.bridge-deck {
  fill: none;
  stroke: rgba(10, 26, 51, 0.18);
  stroke-dasharray: 4 8;
  stroke-width: 1.5;
}

.bridge-orbit circle {
  fill: white;
  stroke: var(--teal-500);
  stroke-width: 4;
}

.journey-point {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 128px;
  text-align: center;
}

.journey-point > span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(10, 26, 51, 0.08);
  border-radius: 50%;
  background: white;
  color: var(--navy-900);
  box-shadow: 0 16px 38px rgba(10, 26, 51, 0.12);
  font-size: 2.25rem;
  font-weight: 800;
}

.journey-point strong {
  margin-top: 0.85rem;
  color: var(--navy-900);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.journey-point small {
  margin-top: 0.3rem;
  color: var(--slate);
  font-size: 0.65rem;
}

.point-q {
  left: -1.5%;
  bottom: 7%;
}

.point-2 {
  left: 50%;
  top: 4%;
  transform: translateX(-50%);
}

.point-2 > span {
  background: var(--navy-900);
  color: white;
}

.point-v {
  right: -1.5%;
  bottom: 7%;
}

.point-q > span {
  border-color: rgba(60, 197, 143, 0.3);
  color: var(--teal-600);
}

.point-v > span {
  border-color: rgba(20, 94, 168, 0.24);
  color: var(--blue-700);
}

.visual-caption {
  position: absolute;
  left: 50%;
  bottom: 8%;
  margin: 0;
  color: rgba(10, 26, 51, 0.24);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  transform: translateX(-50%);
}

.proof-bar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  border-top: 1px solid rgba(10, 26, 51, 0.1);
  padding-block: 1.7rem;
}

.proof-item {
  display: flex;
  gap: 0.8rem;
  padding-inline: 1.5rem;
  border-right: 1px solid rgba(10, 26, 51, 0.1);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item > span {
  color: var(--teal-600);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.proof-item strong {
  color: var(--navy-900);
  font-size: 0.84rem;
}

.proof-item p {
  margin: 0.28rem 0 0;
  color: var(--slate);
  font-size: 0.68rem;
  line-height: 1.45;
}

.scroll-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-left: 1.5rem;
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 750;
}

.scroll-link svg {
  width: 1rem;
  color: var(--teal-600);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  margin-bottom: 3.5rem;
}

.section-heading h2,
.q2v-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.45rem, 5vw, 4.9rem);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 1;
}

.section-heading > p,
.split-heading > p {
  margin: 0;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.78;
}

.intro-section {
  background: white;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.audience-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--paper);
  padding: 1.6rem;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.audience-card::after {
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgba(31, 167, 161, 0.15);
  border-radius: 50%;
  content: "";
}

.audience-card:hover {
  border-color: rgba(31, 167, 161, 0.45);
  box-shadow: 0 18px 45px rgba(10, 26, 51, 0.08);
  transform: translateY(-5px);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 0.8rem;
  background: var(--navy-900);
  color: white;
}

.icon-box svg {
  width: 1.25rem;
}

.audience-card > span {
  position: absolute;
  right: 1.5rem;
  top: 1.6rem;
  color: var(--teal-600);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.audience-card h3 {
  margin: 3rem 0 0;
  color: var(--navy-900);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.audience-card p {
  position: relative;
  z-index: 1;
  max-width: 25rem;
  margin: 0.9rem 0 0;
  color: var(--slate);
  font-size: 0.91rem;
  line-height: 1.7;
}

.q2v-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 18%, rgba(60, 197, 143, 0.15), transparent 24rem),
    var(--navy-900);
  color: white;
}

.q2v-section::after {
  position: absolute;
  right: -12rem;
  bottom: -22rem;
  width: 48rem;
  height: 48rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.02), 0 0 0 10rem rgba(255, 255, 255, 0.014);
  content: "";
}

.q2v-section .site-shell {
  position: relative;
  z-index: 1;
}

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

.q2v-heading {
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1.1fr);
  align-items: end;
  gap: clamp(3rem, 5vw, 6rem);
}

.q2v-heading h2 {
  color: white;
}

.q2v-heading > div:last-child > p {
  max-width: 720px;
  margin: 1.5rem 0 0;
  color: #b6c5d4;
  font-size: 1rem;
  line-height: 1.75;
}

.q2v-wordmark {
  position: relative;
  /* Verso brand standard: keep the full Q2V lockup large enough for its tagline to read. */
  width: min(100%, 518px);
  margin-top: 1.2rem;
  border-radius: 1rem;
  background: white;
  padding: 1rem 1.35rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.q2v-wordmark img {
  display: block;
  width: 100%;
  height: 162px;
  object-fit: contain;
}

.movement-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1rem;
}

.movement-header > p {
  margin: 0;
  color: #93a7bb;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.movement-header > div {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.movement-header span {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.movement-header svg {
  width: 1rem;
  color: var(--green-500);
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(140px, 1fr));
  margin: 2.2rem 0 0;
  padding: 0 0 1rem;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: thin;
}

.stage-grid li {
  min-height: 185px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem 1rem 1rem;
}

.stage-grid li:first-child {
  border-left: 0;
  padding-left: 0;
}

.stage-grid li > span {
  color: var(--green-500);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.stage-grid h3 {
  margin: 2.8rem 0 0;
  color: white;
  font-size: 1rem;
  line-height: 1.25;
}

.stage-grid p {
  margin: 0.75rem 0 0;
  color: #92a6ba;
  font-size: 0.72rem;
  line-height: 1.5;
}

.dual-outcome {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.dual-outcome article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.045);
  padding: 1.6rem;
}

.dual-outcome article > svg {
  width: 1.5rem;
  color: var(--green-500);
}

.dual-outcome article p {
  margin: 0;
  color: var(--green-500);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.dual-outcome h3 {
  margin: 2rem 0 0.75rem;
  color: white;
  font-size: 1.55rem;
}

.dual-outcome article span {
  display: block;
  max-width: 34rem;
  color: #aebfd0;
  font-size: 0.88rem;
  line-height: 1.65;
}

.programs-section {
  background: var(--paper);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 530px;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: white;
  padding: 1.6rem;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.program-card:hover {
  box-shadow: 0 20px 55px rgba(10, 26, 51, 0.08);
  transform: translateY(-5px);
}

.program-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.program-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--teal-600);
}

.program-icon svg {
  width: 1.35rem;
}

.program-card-top > span {
  color: #8c9cac;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.program-tag {
  margin: 2.25rem 0 0;
  color: var(--teal-600);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.45;
}

.program-card h3 {
  margin: 0.85rem 0 0;
  color: var(--navy-900);
  font-size: 1.55rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.program-description {
  margin: 1rem 0 0;
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.7;
}

.program-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: auto 0 0;
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 0;
  list-style: none;
}

.program-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #35475b;
  font-size: 0.77rem;
  line-height: 1.45;
}

.program-card li svg {
  flex: 0 0 auto;
  width: 0.95rem;
  color: var(--teal-600);
}

.program-note {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-top: 1.5rem;
  border-left: 3px solid var(--teal-500);
  background: white;
  padding: 1.1rem 1.25rem;
}

.program-note svg {
  flex: 0 0 auto;
  width: 1.1rem;
  color: var(--teal-600);
}

.program-note p {
  margin: 0;
  color: var(--slate);
  font-size: 0.78rem;
  line-height: 1.55;
}

.schools-section {
  background: white;
}

.schools-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.schools-copy h2,
.hosts-heading h2,
.platform-copy h2,
.story-copy h2,
.contact-heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(2.55rem, 5.3vw, 5rem);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 1;
}

.schools-lede {
  max-width: 650px;
  margin: 1.5rem 0 0;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.78;
}

.school-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  border: 1px solid rgba(31, 167, 161, 0.24);
  border-radius: 999px;
  background: #f0faf6;
  color: var(--navy-900);
  padding: 0.7rem 1rem;
  font-size: 0.76rem;
  font-weight: 750;
}

.school-badge svg {
  width: 1.05rem;
  color: var(--teal-600);
}

.school-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.school-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: #35475b;
  font-size: 0.86rem;
  line-height: 1.55;
}

.school-benefits svg {
  flex: 0 0 auto;
  width: 1rem;
  color: var(--teal-600);
}

.school-note {
  max-width: 650px;
  margin: 1.1rem 0 0;
  color: #7b8998;
  font-size: 0.68rem;
  line-height: 1.55;
}

.roles-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(60, 197, 143, 0.13), transparent 16rem),
    var(--paper);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: 0 28px 70px rgba(10, 26, 51, 0.08);
}

.roles-panel-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.roles-panel-heading svg {
  width: 1.35rem;
  color: var(--teal-600);
}

.roles-panel-heading h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.25rem;
}

.turnkey-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(60, 197, 143, 0.24), transparent 14rem),
    linear-gradient(145deg, var(--navy-900), var(--navy-800));
  color: white;
  padding: 1.4rem;
}

.turnkey-card::after {
  position: absolute;
  right: -2.5rem;
  bottom: -4rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.turnkey-card-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.turnkey-icon {
  flex: 0 0 auto;
  color: var(--green-500);
  font-size: 1.35rem;
}

.turnkey-card-heading div > span {
  display: block;
  color: var(--green-200);
  font-size: 0.57rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.turnkey-card h4 {
  margin: 0.35rem 0 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.turnkey-card > p {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0;
  color: #c9d7e2;
  font-size: 0.76rem;
  line-height: 1.6;
}

.turnkey-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.turnkey-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #e7eef2;
  font-size: 0.68rem;
  line-height: 1.45;
}

.turnkey-card li > span {
  flex: 0 0 auto;
  color: var(--green-500);
}

.turnkey-card li b {
  font-weight: 500;
}

.role-path {
  position: absolute;
  left: calc(clamp(1.4rem, 4vw, 2.4rem) + 18px);
  top: 6.6rem;
  bottom: 8.3rem;
  width: 1px;
  background: linear-gradient(var(--green-500), var(--blue-700));
}

.role-card {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 1rem;
  margin-top: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.15rem;
}

.role-card > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-900);
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
}

.role-card h4 {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.role-card p {
  margin: 0.35rem 0 0;
  color: var(--slate);
  font-size: 0.75rem;
  line-height: 1.55;
}

.evidence-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
  border-radius: 0.9rem;
  background: var(--navy-900);
  color: white;
  padding: 1rem;
}

.evidence-card svg {
  flex: 0 0 auto;
  width: 1.35rem;
  color: var(--green-500);
}

.evidence-card div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.evidence-card span {
  color: var(--green-500);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.evidence-card strong {
  font-size: 0.78rem;
}

.hosts-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(20, 94, 168, 0.17), transparent 50%),
    var(--navy-950);
  color: white;
}

.hosts-section::before {
  position: absolute;
  left: 54%;
  top: -18rem;
  width: 52rem;
  height: 52rem;
  border: 1px solid rgba(60, 197, 143, 0.09);
  border-radius: 50%;
  content: "";
}

.hosts-section .site-shell {
  position: relative;
  z-index: 1;
}

.hosts-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 8rem);
}

.hosts-heading h2 {
  color: white;
}

.hosts-heading > div:last-child > p {
  margin: 0;
  color: #afc0d0;
  font-size: 0.98rem;
  line-height: 1.75;
}

.host-cta {
  min-height: 50px;
  margin-top: 1.8rem;
  border-radius: 999px;
  background: var(--green-500);
  color: var(--navy-900);
  padding-inline: 1.4rem;
  font-weight: 800;
}

.host-cta:hover {
  background: #71d6aa;
}

.host-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.host-stats article {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 130px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
}

.host-stats article:first-child {
  border-left: 0;
  padding-left: 0;
}

.host-stats strong {
  color: var(--green-500);
  font-size: 2.3rem;
  letter-spacing: -0.04em;
}

.host-stats span {
  color: #a7bacb;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.host-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.host-details article {
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.045);
  padding: 1.6rem;
}

.host-detail-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(60, 197, 143, 0.12);
  color: var(--green-500);
}

.host-detail-icon svg {
  width: 1.2rem;
}

.host-details h3 {
  margin: 1.5rem 0 0;
  color: white;
  font-size: 1.45rem;
}

.host-details ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.host-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #aebfd0;
  font-size: 0.8rem;
  line-height: 1.5;
}

.host-details li svg {
  flex: 0 0 auto;
  width: 0.95rem;
  color: var(--green-500);
}

.host-ask > p {
  max-width: 34rem;
  margin: 1.2rem 0 0;
  color: #aebfd0;
  font-size: 0.95rem;
  line-height: 1.75;
}

.host-boundary {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.2rem;
  color: var(--green-200);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.host-boundary svg {
  width: 1rem;
  color: var(--green-500);
}

.platform-section {
  background: var(--mist);
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.platform-identity {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(60, 197, 143, 0.2), transparent 20rem),
    var(--navy-900);
  color: white;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  box-shadow: 0 28px 80px rgba(10, 26, 51, 0.17);
}

.platform-identity::after {
  position: absolute;
  left: 50%;
  bottom: -20rem;
  width: 40rem;
  height: 40rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 255, 255, 0.025), 0 0 0 8rem rgba(255, 255, 255, 0.015);
  content: "";
  transform: translateX(-50%);
}

.platform-status {
  position: relative;
  z-index: 2;
  display: inline-block;
  border: 1px solid rgba(60, 197, 143, 0.35);
  border-radius: 999px;
  background: rgba(60, 197, 143, 0.08);
  color: var(--green-500);
  padding: 0.5rem 0.75rem;
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.platform-logo-wrap {
  position: relative;
  z-index: 2;
  min-height: 125px;
  margin-top: 7rem;
}

.q2v-logo-asset {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  display: block;
  width: min(100%, 340px);
  height: 125px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0.8rem;
  background: white;
  padding: 0.45rem 0.65rem;
  object-position: center;
}

.platform-logo-fallback {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  display: flex;
  align-items: baseline;
}

.platform-logo-fallback span {
  margin-right: 0.8rem;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.platform-logo-fallback strong {
  color: var(--green-500);
  font-size: 5.5rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.platform-logo-fallback sup {
  margin-left: 0.3rem;
  color: var(--green-200);
  font-size: 0.7rem;
}

.platform-identity > p {
  position: relative;
  z-index: 2;
  max-width: 310px;
  margin: 1rem 0 0;
  color: #a8bbcc;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.55;
}

.platform-route {
  position: absolute;
  z-index: 2;
  left: clamp(1.5rem, 4vw, 2.4rem);
  right: clamp(1.5rem, 4vw, 2.4rem);
  bottom: 3rem;
  display: flex;
  align-items: center;
}

.platform-route span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(60, 197, 143, 0.45);
  border-radius: 50%;
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
}

.platform-route span:nth-of-type(2) {
  background: var(--green-500);
  color: var(--navy-900);
}

.platform-route i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--green-500), var(--blue-500));
}

.platform-copy h2 {
  max-width: 760px;
}

.platform-lede {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.78;
}

.platform-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(10, 26, 51, 0.13);
}

.platform-features article {
  min-height: 185px;
  border-bottom: 1px solid rgba(10, 26, 51, 0.13);
  padding: 1.4rem 1.4rem 1.4rem 0;
}

.platform-features article:nth-child(even) {
  border-left: 1px solid rgba(10, 26, 51, 0.13);
  padding-left: 1.4rem;
}

.platform-features article > span {
  color: var(--teal-600);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.platform-features h3 {
  margin: 1.6rem 0 0;
  color: var(--navy-900);
  font-size: 1rem;
}

.platform-features p {
  margin: 0.55rem 0 0;
  color: var(--slate);
  font-size: 0.75rem;
  line-height: 1.55;
}

.partners-section {
  background: white;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.partner-card,
.partner-growth-card {
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.6rem;
}

.partner-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 2.5rem;
  background: var(--paper);
}

.partner-logo-box {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 595 / 236;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: white;
}

.partner-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-seal {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.4rem;
  width: 82%;
  border-top: 2px solid var(--teal-600);
  border-bottom: 2px solid var(--teal-600);
  padding-block: 1rem;
  text-align: center;
}

.partner-seal strong {
  color: var(--navy-900);
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}

.partner-seal small {
  color: var(--teal-600);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.partner-card-copy > p {
  margin: 0;
  color: var(--teal-600);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.partner-card-copy h3 {
  max-width: 500px;
  margin: 1rem 0 0;
  color: var(--navy-900);
  font-size: 1.8rem;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.partner-card-copy > span,
.partner-growth-card > span {
  display: block;
  max-width: 500px;
  margin-top: 1rem;
  color: var(--slate);
  font-size: 0.86rem;
  line-height: 1.68;
}

.partner-growth-card {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: white;
}

.partner-growth-card::after {
  position: absolute;
  right: -7rem;
  bottom: -8rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(60, 197, 143, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(60, 197, 143, 0.04), 0 0 0 6rem rgba(60, 197, 143, 0.02);
  content: "";
}

.partner-growth-card > svg {
  width: 1.6rem;
  color: var(--green-500);
}

.partner-growth-card > p {
  margin: 2rem 0 0;
  color: var(--green-500);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.partner-growth-card h3 {
  max-width: 360px;
  margin: 0.8rem 0 0;
  color: white;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.partner-growth-card > span {
  position: relative;
  z-index: 1;
  color: #acbdcd;
}

.partner-cta {
  position: absolute;
  z-index: 2;
  left: 1.6rem;
  bottom: 1.6rem;
  border-color: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: transparent;
  color: white;
}

.partner-cta:hover {
  background: white;
  color: var(--navy-900);
}

.verso-story {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 100%, rgba(60, 197, 143, 0.15), transparent 26rem),
    var(--navy-900);
  color: white;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
}

.story-mark {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(255, 255, 255, 0.025), 0 0 0 6rem rgba(255, 255, 255, 0.015);
}

.story-mark::before,
.story-mark::after {
  position: absolute;
  top: 24%;
  width: 13%;
  height: 52%;
  border-radius: 0.35rem 0.35rem 1rem 1rem;
  content: "";
}

.story-mark::before {
  left: 40%;
  background: linear-gradient(var(--blue-500), var(--teal-500));
  transform: rotate(-30deg);
  transform-origin: bottom;
}

.story-mark::after {
  right: 40%;
  background: linear-gradient(var(--green-500), var(--teal-600));
  transform: rotate(30deg);
  transform-origin: bottom;
}

.story-mark span {
  color: transparent;
  font-size: 1px;
}

.story-copy h2 {
  color: white;
}

.story-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: #b2c2d1;
  font-size: 1.03rem;
  line-height: 1.8;
}

.story-copy blockquote {
  max-width: 760px;
  margin: 2.5rem 0 0;
  border-left: 3px solid var(--green-500);
  padding-left: 1.4rem;
  color: white;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.4;
}

.trait-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2.4rem;
}

.trait-list span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #bdccd9;
  padding: 0.55rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section {
  background: linear-gradient(180deg, #f8faf8, #edf4f5);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-heading > p:not(.eyebrow, .contact-location) {
  max-width: 690px;
  margin: 1.5rem 0 0;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.78;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.direct-contact a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 230px;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: white;
  padding: 0.9rem 1rem;
  transition: border-color 180ms ease, transform 180ms ease;
}

.direct-contact a:hover {
  border-color: rgba(31, 167, 161, 0.5);
  transform: translateY(-2px);
}

.direct-contact svg {
  width: 1.1rem;
  color: var(--teal-600);
}

.direct-contact span {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.direct-contact small {
  color: var(--slate);
  font-size: 0.62rem;
}

.direct-contact strong {
  color: var(--navy-900);
  font-size: 0.76rem;
}

.contact-location {
  margin: 1.2rem 0 0;
  color: #7b8998;
  font-size: 0.7rem;
  font-weight: 650;
}

.contact-form {
  border: 1px solid rgba(10, 26, 51, 0.12);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 60px rgba(10, 26, 51, 0.08);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label,
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field {
  margin-top: 1rem;
}

.contact-form label > span {
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea,
.contact-select {
  width: 100%;
  border: 1px solid #cddbdd;
  border-radius: 0.75rem;
  background: white;
  color: var(--navy-900);
  font: inherit;
  font-size: 0.86rem;
}

.contact-form input,
.contact-select {
  min-height: 48px;
  padding-inline: 0.9rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  padding: 0.85rem 0.9rem;
  line-height: 1.55;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-select:focus {
  border-color: var(--teal-600);
  outline: 3px solid rgba(31, 167, 161, 0.16);
  outline-offset: 1px;
}

.contact-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 1.25rem;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--primary-button-label) !important;
  font-weight: 750;
}

.contact-submit:hover {
  background: var(--blue-700);
}

.form-note,
.form-status {
  margin: 0.8rem 0 0;
  color: var(--slate);
  font-size: 0.68rem;
  line-height: 1.5;
}

.form-status {
  border-left: 3px solid var(--teal-500);
  color: var(--navy-900);
  padding-left: 0.7rem;
  font-weight: 700;
}

.site-footer {
  background: var(--navy-950);
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 2rem;
}

.footer-brand .brand-name {
  color: white;
}

.footer-top > p {
  margin: 0;
  color: #aabccb;
  font-size: 0.8rem;
  text-align: center;
}

.footer-top > a:last-child {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--green-500);
  font-size: 0.75rem;
  font-weight: 750;
}

.footer-top > a:last-child svg {
  width: 1rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.3rem;
  color: #71869b;
  font-size: 0.6rem;
  line-height: 1.5;
}

.footer-bottom button {
  border: 0;
  background: transparent;
  color: var(--green-500);
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

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

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero-layout {
    grid-template-columns: 1fr 420px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 6.8vw, 5.5rem);
  }

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

  .scroll-link {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .proof-bar {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:first-child {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 26, 51, 0.1);
    padding: 1rem 0;
  }

  .section-heading,
  .q2v-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
  }

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

  .audience-card {
    min-height: 260px;
  }

  .program-card {
    min-height: 440px;
  }

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

  .dual-outcome {
    grid-template-columns: 1fr;
  }

  .schools-layout,
  .platform-layout,
  .story-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .roles-panel,
  .platform-identity {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .hosts-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
  }

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

  .host-stats article:nth-child(3) {
    border-left: 0;
  }

  .host-details {
    grid-template-columns: 1fr;
  }

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

  .partner-card,
  .partner-growth-card {
    min-height: 360px;
  }

  .story-mark {
    width: min(72vw, 380px);
    margin-inline: auto;
  }

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

  .footer-top > p {
    text-align: right;
  }

  .footer-top > a:last-child {
    grid-column: 1 / -1;
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .turnkey-card ul {
    grid-template-columns: 1fr;
  }

  .site-shell {
    width: min(100% - 2rem, 1240px);
  }

  .header-inner {
    min-height: 88px;
  }

  .brand-lockup {
    grid-template-columns: 31px auto;
    column-gap: 0.45rem;
  }

  .brand-image-lockup {
    display: block;
    width: 270px;
    height: 75px;
  }

  .brand-mark {
    width: 30px;
    height: 29px;
  }

  .brand-mark span {
    width: 10px;
    height: 28px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-tagline {
    font-size: 0.4rem;
  }

  .language-toggle,
  .header-cta {
    display: none;
  }

  .hero-layout {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 4.45rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
    border-radius: 45% 45% 1.2rem 1.2rem;
  }

  .journey-point {
    width: 105px;
  }

  .journey-point > span {
    width: 58px;
    height: 58px;
    font-size: 1.75rem;
  }

  .journey-point strong {
    font-size: 0.56rem;
  }

  .journey-point small {
    max-width: 88px;
    font-size: 0.55rem;
  }

  .visual-caption {
    bottom: 6%;
  }

  .section-heading h2,
  .q2v-heading h2 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .movement-header > div {
    width: 100%;
    justify-content: space-between;
    gap: 0.4rem;
  }

  .movement-header span {
    gap: 0.4rem;
    font-size: 0.55rem;
  }

  .movement-header svg {
    width: 0.75rem;
  }

  .dual-outcome article {
    min-height: 250px;
  }

  .schools-copy h2,
  .hosts-heading h2,
  .platform-copy h2,
  .story-copy h2,
  .contact-heading h2 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .school-badge {
    align-items: flex-start;
    border-radius: 1rem;
  }

  .roles-panel {
    padding: 1.15rem;
  }

  .role-path {
    left: calc(1.15rem + 18px);
  }

  .host-stats article,
  .host-stats article:first-child {
    min-height: 115px;
    padding: 1.15rem;
  }

  .host-stats article:nth-child(odd) {
    border-left: 0;
  }

  .host-stats strong {
    font-size: 1.8rem;
  }

  .platform-identity {
    min-height: 500px;
    padding: 1.25rem;
  }

  .platform-logo-wrap {
    margin-top: 5rem;
  }

  .platform-logo-fallback strong {
    font-size: 4.5rem;
  }

  .platform-route {
    left: 1.25rem;
    right: 1.25rem;
  }

  .platform-features {
    grid-template-columns: 1fr;
  }

  .platform-features article,
  .platform-features article:nth-child(even) {
    min-height: 155px;
    border-left: 0;
    padding: 1.25rem 0;
  }

  .partner-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .partner-logo-box {
    width: 150px;
  }

  .partner-growth-card {
    min-height: 430px;
  }

  .direct-contact {
    flex-direction: column;
  }

  .direct-contact a {
    width: 100%;
  }

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

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

  .footer-top > p {
    text-align: left;
  }

  .footer-top > a:last-child {
    grid-column: auto;
    justify-self: start;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
