* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  font-weight: var(--weight-body-main);
}

a {
  color: var(--color-accent);
  text-underline-offset: 0.16em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  text-decoration-thickness: 0.12em;
}

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

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl {
  margin: 0;
}

ul,
ol {
  padding-left: 1.2em;
}

h1,
h2,
h3,
h4 {
  color: var(--color-text);
  font-family: var(--font-heading);
}

h1 {
  font-size: 60px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: var(--weight-heading-main);
}

h2 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: var(--weight-heading-main);
}

h3 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: var(--weight-heading-sub);
  color: var(--color-text);
}

main p + p {
  margin-top: var(--stack-24);
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-space);
}

.page-header {
  padding-top: var(--section-space);
  padding-bottom: var(--stack-40);
}

.page-header h1 {
  margin-bottom: var(--stack-24);
}

.page-header p {
  max-width: 74ch;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-line);
}

.site-header.is-sticky {
  border-bottom-color: var(--color-line-strong);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header .logo-link {
  min-height: 40px;
  padding: 16px;
  margin-left: -16px;
}

.logo-link img {
  width: clamp(156px, 15vw, 194px);
  height: auto;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
}

.nav-link {
  font-family: var(--font-heading);
  color: var(--color-text);
  text-decoration: none;
  font-size: 17px;
  font-weight: var(--weight-heading-nav);
}

.nav-link[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-underline-offset: 0.18em;
}

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

.locale-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding-inline: 10px;
  border: 1px solid var(--color-line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.locale-switch__link {
  color: var(--color-muted);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.06em;
}

.locale-switch__link:hover,
.locale-switch__link:focus-visible {
  color: var(--color-accent);
}

.locale-switch__link.is-active {
  color: var(--color-text);
}

.locale-switch__link[aria-current="page"] {
  text-decoration: none;
}

.locale-switch__sep {
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-6);
  padding: 9px 16px;
  min-height: 40px;
  font: 600 16px/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
}

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

.button-primary:hover {
  background: var(--color-text);
}

.button-secondary {
  border-color: var(--color-line-strong);
  color: var(--color-text);
  background: transparent;
}

.button-secondary:hover {
  border-color: var(--color-accent);
}

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

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: #fff;
}

.button-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  min-height: 40px;
  padding-inline: 17px;
  border-radius: 6px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-4);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-text);
}

.home-shell {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 96px;
}

.home-page .home-header .home-shell {
  max-width: var(--container-max);
  padding-inline: var(--container-pad);
}

.home-page .home-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-line);
  box-shadow: none;
  backdrop-filter: saturate(140%) blur(6px);
}

.home-page .home-header.is-sticky {
  border-bottom-color: var(--color-line-strong);
  box-shadow: 0 8px 20px rgba(0, 31, 84, 0.08);
}

.home-header-inner {
  min-height: 82px;
  gap: 28px;
}

.home-page .home-header .home-logo-link {
  min-height: 64px;
  padding: 8px 0;
  margin-left: 0;
}

.home-page .home-header .home-logo-link img {
  width: auto;
  height: 64px;
  max-width: none;
}

.home-nav {
  margin-left: auto;
}

.home-nav ul {
  gap: 24px;
}

.home-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: var(--weight-heading-nav);
  font-size: 17px;
  line-height: 1;
  color: var(--color-text);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
}

.home-nav .nav-link:hover {
  color: var(--color-accent);
}

.home-cta {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 6px;
  border: 0;
  background: var(--color-accent);
  color: var(--color-surface);
  box-shadow: none;
  font-family: var(--font-heading);
  font-weight: var(--weight-heading-nav);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.home-cta:hover {
  background: var(--color-text);
}

.home-page .home-hero {
  min-height: 0;
  padding: 0;
  margin: 0;
  display: block;
}

.home-page .home-hero-media {
  height: 42vh;
  min-height: 380px;
  max-height: 500px;
  background: var(--color-text);
}

.home-page .home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.home-page .home-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 31, 84, 0.08) 0%, rgba(0, 31, 84, 0.16) 100%);
  pointer-events: none;
}

.home-page .home-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}

.home-page .home-hero-copy {
  position: relative;
  max-width: 980px;
  width: 100%;
  padding: 24px 28px;
  margin-inline: auto;
  text-align: center;
}

.home-page .home-hero-copy::before {
  content: none;
}

.home-page .home-hero-brand {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: var(--weight-heading-sub);
  font-size: 78px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--color-surface);
  white-space: nowrap;
}

.home-page .home-hero-title {
  max-width: 100%;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: var(--weight-heading-main);
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--color-surface);
  text-align: center;
}

.contact-hero {
  padding-bottom: 0;
}

.contact-hero-media {
  background: #0a1a61;
}

.contact-hero .home-hero-media::after {
  background: linear-gradient(180deg, rgba(4, 15, 52, 0.22) 0%, rgba(4, 15, 52, 0.52) 100%);
}

.brand-gradient-banner {
  --banner-base: #0a1a61;
  --banner-mid: #15297c;
  --banner-edge: #203ba0;
  --banner-glow-primary: rgba(128, 170, 255, 0.38);
  --banner-glow-secondary: rgba(83, 137, 255, 0.32);
  --banner-grid-color: rgba(197, 221, 255, 0.2);
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(130deg, var(--banner-base) 0%, var(--banner-mid) 48%, var(--banner-edge) 100%);
}

.brand-gradient-banner::before {
  content: "";
  position: absolute;
  inset: -22% -10% -18%;
  background:
    radial-gradient(circle at 12% 18%, var(--banner-glow-primary) 0%, rgba(128, 170, 255, 0) 56%),
    radial-gradient(circle at 86% 76%, var(--banner-glow-secondary) 0%, rgba(83, 137, 255, 0) 58%),
    radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0) 34%);
}

.brand-gradient-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--banner-grid-color) 0.9px, transparent 0.9px);
  background-size: 18px 18px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.68) 40%, rgba(0, 0, 0, 0.32) 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.68) 40%, rgba(0, 0, 0, 0.32) 100%);
  opacity: 0.65;
}

.brand-gradient-banner--contact {
  --banner-base: #0a1a61;
  --banner-mid: #162b81;
  --banner-edge: #263ca0;
  --banner-glow-primary: rgba(127, 182, 255, 0.42);
  --banner-glow-secondary: rgba(87, 118, 255, 0.33);
}

.brand-gradient-banner--programs {
  --banner-base: #08174f;
  --banner-mid: #12337f;
  --banner-edge: #4f61d2;
  --banner-glow-primary: rgba(118, 160, 255, 0.22);
  --banner-glow-secondary: rgba(82, 114, 242, 0.18);
  --banner-grid-color: rgba(214, 225, 255, 0.14);
}

.brand-gradient-logo-outline,
.brand-gradient-logo-solid {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.brand-gradient-logo-outline {
  background-image: url("../assets/logo-mark-outline.svg");
  opacity: 0.38;
  filter: drop-shadow(0 0 24px rgba(180, 208, 255, 0.16));
}

.brand-gradient-logo-outline-main {
  width: min(52vw, 680px);
  height: min(40vh, 280px);
  right: -4%;
  bottom: -2%;
  transform: rotate(-6deg);
}

.brand-gradient-logo-outline-side {
  width: min(42vw, 520px);
  height: min(30vh, 220px);
  left: -6%;
  top: 10%;
  opacity: 0.26;
  transform: rotate(9deg);
}

.brand-gradient-logo-solid {
  background-image: url("../assets/favicon.svg");
  filter: brightness(0) invert(1);
  mix-blend-mode: screen;
  opacity: 0.16;
}

.brand-gradient-logo-solid-main {
  width: min(36vw, 380px);
  height: min(26vh, 190px);
  left: 6%;
  bottom: 12%;
  transform: rotate(-4deg);
}

.brand-gradient-logo-solid-accent {
  width: min(26vw, 260px);
  height: min(20vh, 150px);
  right: 18%;
  top: 14%;
  opacity: 0.1;
  transform: rotate(8deg);
}

.internal-hero {
  padding-bottom: 0;
}

.internal-hero .home-hero-media {
  min-height: 360px;
  max-height: 460px;
  height: 38vh;
  background: #0a1a61;
}

.internal-hero .home-hero-media::after {
  background: linear-gradient(180deg, rgba(4, 15, 52, 0.18) 0%, rgba(4, 15, 52, 0.42) 100%);
}

.internal-hero .home-hero-content {
  align-items: center;
  justify-content: center;
  padding: 0;
}

.internal-hero .home-hero-copy {
  max-width: 1020px;
  width: 100%;
  margin-inline: auto;
  padding: 24px 28px;
  text-align: center;
}

.internal-hero .home-hero-title {
  max-width: 15ch;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(40px, 4.8vw, 58px);
}

.internal-hero-lead {
  max-width: 38ch;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.5;
}

.internal-hero-statement {
  max-width: 27ch;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.22;
  letter-spacing: -0.025em;
  font-weight: 400;
  text-wrap: balance;
}

.internal-hero-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.internal-hero--programs .brand-gradient-banner {
  --banner-base: #07164f;
  --banner-mid: #17358f;
  --banner-edge: #6a75df;
}

.brand-gradient-banner--programs::before {
  inset: -18% -8% -12%;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 78% 78%, rgba(189, 213, 255, 0.14) 0%, rgba(189, 213, 255, 0) 38%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 38%);
}

.brand-gradient-banner--programs::after {
  background-image:
    repeating-linear-gradient(112deg, rgba(214, 225, 255, 0.12) 0 1px, transparent 1px 26px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.06) 52%, rgba(255, 255, 255, 0) 76%, rgba(255, 255, 255, 0.08) 100%);
  background-size: auto, 100% 100%;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.92) 30%, rgba(0, 0, 0, 0.92) 70%, rgba(0, 0, 0, 0.18) 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.92) 30%, rgba(0, 0, 0, 0.92) 70%, rgba(0, 0, 0, 0.18) 100%);
  opacity: 0.42;
}

.brand-gradient-banner--programs .brand-gradient-logo-outline-main {
  width: min(62vw, 820px);
  height: min(44vh, 340px);
  right: -14%;
  top: 12%;
  bottom: auto;
  opacity: 0.18;
  transform: rotate(-10deg);
}

.brand-gradient-banner--programs .brand-gradient-logo-outline-side {
  width: min(46vw, 560px);
  height: min(32vh, 250px);
  left: -8%;
  bottom: -8%;
  top: auto;
  opacity: 0.26;
  transform: rotate(8deg);
}

.brand-gradient-banner--programs .brand-gradient-logo-solid-main {
  width: min(32vw, 320px);
  height: min(22vh, 160px);
  left: 14%;
  top: 8%;
  bottom: auto;
  opacity: 0.08;
  transform: rotate(-4deg);
}

.brand-gradient-banner--programs .brand-gradient-logo-solid-accent {
  width: min(30vw, 290px);
  height: min(20vh, 150px);
  right: 10%;
  bottom: 10%;
  top: auto;
  opacity: 0.07;
  transform: rotate(11deg);
}

.internal-hero--programs .home-hero-title {
  max-width: 17ch;
}

.internal-hero--programs .home-hero-copy {
  max-width: 1160px;
}

.internal-hero--programs .internal-hero-lead {
  max-width: 62ch;
  font-size: 22px;
  line-height: 1.55;
}

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

.internal-hero--programs .internal-hero-actions .button {
  min-height: 48px;
  padding-inline: 22px;
  box-shadow: 0 14px 30px rgba(8, 23, 79, 0.16);
}

#programs-selection {
  scroll-margin-top: 108px;
}

.internal-hero--product .brand-gradient-banner {
  --banner-base: #08174d;
  --banner-mid: #0f256d;
  --banner-edge: #183893;
}

.internal-hero--about .brand-gradient-banner {
  --banner-base: #091a55;
  --banner-mid: #10256b;
  --banner-edge: #1b3a86;
}

.internal-hero--partners .brand-gradient-banner {
  --banner-base: #07164f;
  --banner-mid: #17266f;
  --banner-edge: #2028ce;
  --banner-glow-primary: rgba(160, 228, 241, 0.32);
  --banner-glow-secondary: rgba(74, 77, 231, 0.28);
}

.brand-gradient-banner--partners::before {
  inset: -18% -10% -16%;
  background:
    radial-gradient(circle at 20% 26%, rgba(160, 228, 241, 0.2) 0%, rgba(160, 228, 241, 0) 36%),
    radial-gradient(circle at 78% 72%, rgba(74, 77, 231, 0.28) 0%, rgba(74, 77, 231, 0) 44%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 42%);
}

.brand-gradient-banner--partners .brand-gradient-logo-outline-main {
  width: min(58vw, 760px);
  height: min(42vh, 320px);
  right: -10%;
  bottom: -6%;
  opacity: 0.22;
  transform: rotate(-8deg);
}

.brand-gradient-banner--partners .brand-gradient-logo-outline-side {
  width: min(38vw, 520px);
  height: min(30vh, 220px);
  left: -8%;
  top: 4%;
  opacity: 0.22;
  transform: rotate(10deg);
}

.brand-gradient-banner--partners .brand-gradient-logo-solid-main {
  left: 10%;
  bottom: 10%;
  opacity: 0.08;
}

.brand-gradient-banner--partners .brand-gradient-logo-solid-accent {
  right: 18%;
  top: 16%;
  opacity: 0.08;
}

.internal-hero--partners .home-hero-media {
  height: auto;
  min-height: clamp(460px, 50vh, 580px);
  max-height: none;
}

.internal-hero--partners .home-hero-content {
  width: min(var(--container-max), calc(100% - (var(--container-pad) * 2)));
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 5vw, 72px);
  justify-content: stretch;
  padding-block: clamp(46px, 5.2vw, 68px);
}

.internal-hero--partners .home-hero-copy {
  max-width: 820px;
  margin: 0;
  padding: 0;
  text-align: left;
}

.internal-hero--partners .cohort-hero-kicker {
  justify-content: flex-start;
}

.internal-hero--partners .home-hero-title {
  max-width: 20ch;
  margin: 0;
  text-align: left;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.032em;
}

.internal-hero--partners .internal-hero-lead {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: clamp(19px, 1.25vw, 22px);
  line-height: 1.48;
}

.internal-hero--partners .internal-hero-actions {
  justify-content: flex-start;
  margin-top: 34px;
}

.partners-hero-proof {
  position: relative;
  overflow: hidden;
  align-self: center;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 96% 8%, rgba(160, 228, 241, 0.2) 0%, rgba(160, 228, 241, 0) 44%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(0, 12, 48, 0.22);
  backdrop-filter: blur(18px);
}

.partners-hero-proof::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -48px;
  width: 240px;
  height: 170px;
  background: url("../assets/logo-mark-outline.svg") center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.partners-hero-proof p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: var(--weight-heading-main);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partners-hero-proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.partners-hero-proof-grid span {
  display: block;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.14;
  font-weight: var(--weight-heading-sub);
  background: rgba(255, 255, 255, 0.08);
}

.partners-proof-section {
  padding-top: clamp(56px, 6vw, 76px);
}

.partners-proof-section .container {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  column-gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.partners-proof-section .why-subtitle {
  grid-column: 1;
  margin-bottom: 18px;
}

.partners-proof-section .why-title {
  grid-column: 1;
  max-width: 18ch;
  margin: 0;
  font-size: clamp(30px, 2.65vw, 40px);
  line-height: 1.12;
}

.partners-proof-section .partners-academic-grid,
.partners-proof-section .why-stats-grid {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
}

.partners-proof-section .partners-academic-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partners-proof-section .why-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.partners-v2-hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  color: var(--color-text);
}

.partners-v2-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  padding-block: clamp(72px, 8vw, 112px);
}

.partners-v2-mark {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.partners-v2-mark--outline {
  width: min(38vw, 520px);
  height: min(28vw, 360px);
  right: -8%;
  top: 34px;
  background-image: url("../assets/logo-mark-outline.svg");
  opacity: 0.075;
  transform: rotate(-7deg);
}

.partners-v2-mark--solid {
  width: min(22vw, 280px);
  height: min(18vw, 210px);
  right: 18%;
  bottom: 18px;
  background-image: url("../assets/favicon.svg");
  opacity: 0.045;
  filter: brightness(0) saturate(100%) invert(11%) sepia(45%) saturate(3393%) hue-rotate(205deg) brightness(82%) contrast(103%);
  transform: rotate(8deg);
}

.partners-v2-kicker {
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-heading-main);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.partners-v2-kicker span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-accent);
}

.partners-v2-hero h1 {
  max-width: 1100px;
  margin: 0;
  color: var(--color-text);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.018em;
}

.partners-v2-hero p:not(.partners-v2-kicker) {
  max-width: 760px;
  margin: clamp(30px, 3.2vw, 44px) 0 0;
  color: rgba(0, 31, 84, 0.68);
  font-size: clamp(19px, 1.55vw, 22px);
  line-height: 1.5;
}

.partners-v2-cta {
  min-height: 58px;
  margin-top: 32px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 6px;
  background: var(--color-accent);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1;
  font-weight: var(--weight-heading-sub);
  text-decoration: none;
}

.partners-v2-cta:hover {
  background: var(--color-text);
  text-decoration: none;
}

.partners-v2-faq-section {
  width: min(var(--container-max), calc(100% - (var(--container-pad) * 2)));
  margin-inline: auto;
  padding-block: clamp(72px, 8vw, 96px);
  background: #ffffff;
}

.partners-v2-section-head {
  margin-bottom: 40px;
}

.partners-v2-section-head h2 {
  max-width: 880px;
  margin: 14px 0 0;
  color: var(--color-text);
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.partners-v2-faq {
  border-top: 1px solid rgba(0, 31, 84, 0.1);
}

.partners-v2-faq-item {
  border-bottom: 1px solid rgba(0, 31, 84, 0.1);
}

.partners-v2-faq-question {
  width: 100%;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.3;
  font-weight: var(--weight-heading-sub);
  text-align: left;
  cursor: pointer;
}

.partners-v2-faq-icon {
  min-width: 24px;
  display: inline-block;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.partners-v2-faq-item.is-open .partners-v2-faq-icon {
  transform: rotate(45deg);
}

.partners-v2-faq-answer {
  max-width: 760px;
  max-height: 0;
  overflow: hidden;
  color: rgba(0, 31, 84, 0.78);
  font-size: 16px;
  line-height: 1.55;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.partners-v2-faq-item.is-open .partners-v2-faq-answer {
  max-height: 500px;
  padding: 0 0 26px;
}

@media (max-width: 1100px) {
  .internal-hero--partners .home-hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .internal-hero--partners .home-hero-title {
    max-width: 18ch;
  }

  .partners-hero-proof {
    width: min(100%, 720px);
  }

  .internal-hero .home-hero-title {
    max-width: 17ch;
  }

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

  .mission-quote-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mission-quote-mark {
    font-size: 52px;
  }

  .mission-quote-panel::before {
    left: 0;
    right: 0;
    top: 22%;
  }

  .mission-quote-author {
    margin-left: 22px;
  }

  .mission-founder-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mission-founder-quote {
    max-width: 100%;
  }

  .mission-founder-media {
    justify-content: center;
  }

  .mission-founder-portrait-shell {
    width: min(100%, 300px);
    margin-left: 0;
  }

  .mission-founder-portrait-shell::before {
    right: -10px;
    top: 8px;
  }

  .mission-founder-portrait-shell::after {
    right: 0;
    bottom: -8px;
  }

  .about-footprint-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-footprint-map {
    justify-content: flex-start;
  }

  .about-footprint-map img {
    width: min(100%, 680px);
    transform: none;
  }

  .internal-hero .home-hero-media {
    min-height: 320px;
    max-height: 400px;
  }

  .internal-hero--partners .home-hero-media {
    min-height: 0;
    max-height: none;
  }
}

@media (max-width: 980px) {
  .partners-proof-section .container {
    grid-template-columns: 1fr;
  }

  .partners-proof-section .why-title {
    max-width: 18ch;
    margin-bottom: var(--stack-32);
  }

  .partners-proof-section .partners-academic-grid,
  .partners-proof-section .why-stats-grid {
    grid-column: 1;
    grid-row: auto;
  }

  .partners-proof-section .why-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .partners-v2-hero-inner {
    padding-block: 48px 56px;
  }

  .partners-v2-kicker {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .partners-v2-hero h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.06;
  }

  .partners-v2-hero p:not(.partners-v2-kicker) {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.5;
  }

  .partners-v2-cta {
    width: 100%;
    min-height: 52px;
    margin-top: 26px;
    font-size: 18px;
  }

  .partners-v2-mark--outline {
    right: -42%;
    top: 18px;
    width: 360px;
    height: 240px;
    opacity: 0.055;
  }

  .partners-v2-mark--solid {
    display: none;
  }

  .partners-v2-faq-section {
    padding-block: 56px;
  }

  .partners-v2-section-head {
    margin-bottom: 28px;
  }

  .partners-v2-section-head h2 {
    font-size: 28px;
  }

  .partners-v2-faq-question {
    padding: 18px 0;
    font-size: 16px;
  }

  .partners-v2-faq-answer {
    font-size: 15px;
  }

  .partners-v2-faq-item.is-open .partners-v2-faq-answer {
    padding: 0 0 22px;
  }

  .internal-hero--partners .home-hero-content {
    padding-block: 40px;
  }

  .internal-hero--partners .home-hero-title {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1;
  }

  .internal-hero--partners .internal-hero-lead {
    font-size: 18px;
    line-height: 1.5;
  }

  .partners-hero-proof {
    display: none;
  }

  .partners-proof-section .why-title {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: clamp(28px, 7.2vw, 36px);
    line-height: 1.08;
  }

  .partners-proof-section .why-stats-grid {
    grid-template-columns: 1fr;
  }

  .internal-hero .home-hero-media {
    min-height: 250px;
    max-height: 300px;
  }

  .internal-hero--partners .home-hero-media {
    min-height: 0;
    max-height: none;
  }

  .internal-hero .home-hero-title {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 46px);
  }

  .internal-hero-lead {
    font-size: 18px;
  }

  .internal-hero-statement {
    max-width: 100%;
    font-size: clamp(18px, 5.2vw, 23px);
    line-height: 1.24;
  }

  .mission-quote-card {
    margin-bottom: 22px;
    padding: 18px;
  }

  .mission-quote-layout {
    gap: 8px;
  }

  .mission-quote-mark {
    font-size: 40px;
    line-height: 0.8;
  }

  .mission-quote-text {
    font-size: clamp(20px, 6.8vw, 28px);
    line-height: 1.08;
    max-width: 100%;
  }

  .mission-quote-panel {
    padding-bottom: 74px;
  }

  .mission-quote-panel::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    border-radius: 10px;
  }

  .mission-quote-author {
    margin-top: 14px;
    margin-left: 14px;
    max-width: 10ch;
    font-size: 16px;
    line-height: 1.1;
  }

  .about-footprint-map img {
    width: 100%;
  }

  .about-footprint-map-panel {
    display: none;
  }

  .about-footprint-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-footprint-formats {
    gap: 6px;
  }

  .about-format-block {
    padding-top: 0;
  }

  .mission-quote-support {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.6;
  }

  .mission-founder-card {
    display: none;
  }

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

  .story-card {
    padding: 22px;
  }

  .story-card-title-soft {
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.08;
  }

  .story-card h3 {
    font-size: 20px;
    line-height: 1.16;
  }

  .mission-founder-layout {
    gap: 18px;
  }

  .mission-founder-quote {
    font-size: clamp(24px, 6.8vw, 32px);
    line-height: 1.12;
  }

  .mission-founder-author {
    font-size: 18px;
  }

  .mission-founder-media {
    display: none;
  }

  .mission-founder-portrait-shell {
    width: min(100%, 270px);
    max-width: 270px;
    margin-left: 0;
    aspect-ratio: auto;
  }

  .mission-founder-portrait-shell::before {
    width: 88px;
    height: 24px;
    right: -4px;
    top: 8px;
  }

  .mission-founder-portrait-shell::after {
    width: 82px;
    height: 40px;
    right: 2px;
    bottom: -6px;
  }
}

.contact-hero-copy {
  max-width: 1020px;
}

.home-page .contact-hero-title {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(40px, 4.6vw, 64px);
}

.contact-hero-title-line {
  display: block;
}

.contact-hero-title-brand {
  white-space: nowrap;
}

@media (min-width: 1101px) {
  .contact-hero-title-line:first-child {
    white-space: nowrap;
  }
}

@media (min-width: 1600px) {
  .home-page .home-hero-media {
    height: 52vh;
    min-height: 460px;
    max-height: 680px;
  }
}

@media (min-width: 1920px) {
  .home-page .home-hero-media {
    height: 56vh;
    min-height: 520px;
    max-height: 780px;
  }
}

.hero {
  min-height: 0;
  display: flex;
  align-items: flex-end;
  padding-top: 0;
  padding-bottom: 36px;
}

.hero-media {
  position: relative;
  width: 100%;
  height: 44vh;
  min-height: 360px;
  overflow: hidden;
  background: var(--color-text);
}

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

.hero-poster-fallback {
  opacity: 0;
  pointer-events: none;
}

.hero-media.is-video-fallback .hero-poster-fallback {
  opacity: 1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 31, 84, 0.72) 0%,
    rgba(0, 31, 84, 0.38) 46%,
    rgba(0, 31, 84, 0.12) 72%,
    rgba(0, 31, 84, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 36px;
}

.hero h1 {
  color: var(--color-surface);
  max-width: 25ch;
}

.hero-break {
  display: inline;
}

.capability-section {
  padding-top: 48px;
}

.capability-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 2.8vw, 48px);
  align-items: stretch;
}

.capability-media {
  margin: 0;
  border: 1px solid rgba(0, 31, 84, 0.14);
  border-radius: 12px;
  overflow: hidden;
  background: #dce3f5;
}

.capability-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
}

.capability-intro {
  padding-right: 0;
  margin-bottom: 32px;
}

.capability-intro h2 {
  margin-bottom: 16px;
}

.capability-text {
  color: rgba(0, 31, 84, 0.78);
}

.capability-panel {
  border: 1px solid rgba(0, 31, 84, 0.14);
  border-radius: 12px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.94);
}

@media (min-width: 1101px) {
  .capability-panel {
    order: 1;
  }

  .capability-media {
    order: 2;
  }
}

.capability-compare {
  display: grid;
  gap: 16px;
}

.capability-compare-head {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(0, 31, 84, 0.14);
  border-radius: 999px;
  background: rgba(0, 31, 84, 0.05);
}

.capability-compare-pill {
  border: 0;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  color: rgba(0, 31, 84, 0.5);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.capability-compare-pill.is-active {
  color: #ffffff;
  background: var(--color-accent);
  box-shadow: 0 4px 10px rgba(0, 31, 84, 0.2);
}

.capability-compare-panel {
  display: none;
}

.capability-compare-panel.is-active {
  display: block;
  animation: capability-fade 200ms ease;
}

@keyframes capability-fade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.capability-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.capability-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.capability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 9px;
  height: 1px;
  background: var(--color-accent);
}

.trust-section h3 {
  margin-bottom: var(--stack-24);
  max-width: 920px;
  font-weight: var(--weight-heading-sub);
}

.trust-section h2 {
  color: var(--color-text);
}

.trust-section {
  padding-top: 56px;
  padding-bottom: 28px;
  background: #ffffff;
}

.trust-section .marquee {
  margin-top: 24px;
  width: 100%;
}

.trust-section .marquee-track {
  padding-inline: var(--container-pad);
}

.trust-strip--top {
  position: relative;
  z-index: 4;
  margin-top: 12px;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.98);
}

.trust-strip--top .container {
  display: none;
}

.trust-strip--top .marquee {
  margin-top: 0;
  padding-block: 18px;
}

.marquee {
  position: relative;
  overflow: hidden;
  padding-block: var(--stack-24);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 88px;
  z-index: 3;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.marquee-track {
  display: flex;
  position: relative;
  z-index: 1;
  width: max-content;
  gap: 44px;
  animation: marquee-scroll 40s linear infinite;
}

.marquee.is-paused .marquee-track {
  animation-play-state: paused;
}

.why-section {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 84px;
  background:
    radial-gradient(circle at 10% 18%, rgba(32, 40, 206, 0.12) 0%, rgba(32, 40, 206, 0) 44%),
    radial-gradient(circle at 88% 74%, rgba(0, 31, 84, 0.1) 0%, rgba(0, 31, 84, 0) 42%),
    #ffffff;
}

.why-section::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 760px;
  height: 430px;
  border-radius: 56px;
  background: repeating-linear-gradient(
    -30deg,
    rgba(32, 40, 206, 0.12) 0 2px,
    rgba(32, 40, 206, 0) 2px 12px
  );
  opacity: 0.5;
  transform: skewY(-8deg);
  pointer-events: none;
}

.why-section::after {
  content: "";
  position: absolute;
  top: -120px;
  left: -110px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 40, 206, 0.16) 0%, rgba(32, 40, 206, 0) 70%);
  pointer-events: none;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.why-subtitle::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--color-accent);
}

.why-title {
  max-width: 30ch;
  margin-bottom: 36px;
  color: var(--color-text);
}

.why-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.why-stat-card {
  padding: 22px 20px 24px;
  background: #ffffff;
  border: 1px solid var(--color-line-strong);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 31, 84, 0.06);
}

.why-stat-value {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
  font-weight: var(--weight-heading-main);
  letter-spacing: -0.02em;
  color: var(--color-accent);
}

.why-stat-description {
  color: var(--color-muted);
  line-height: 1.35;
}

.logo-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
}

.logo-tile img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--marquee-shift, 50%)));
  }
}

.challenges-section h2 {
  margin-bottom: 32px;
}

.challenges-intro {
  max-width: 100%;
}

.challenges-qualifier {
  display: block;
  margin: 20px 0 36px;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(0, 31, 84, 0.66);
}

.challenges-qualifier::before {
  content: none;
}

.challenges-section {
  padding-top: 104px;
  padding-bottom: 120px;
}

.challenges-layout {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 0;
  align-items: stretch;
}

.challenge-panel {
  max-width: 100%;
  padding: 0 34px;
  border: 0;
}

.challenges-layout .challenge-panel:first-child {
  padding-left: 0;
}

.challenges-layout .challenge-panel:last-child {
  padding-right: 0;
}

.challenges-layout .challenge-panel + .challenge-panel {
  border-left: 1px solid rgba(0, 31, 84, 0.1);
}

.role-title {
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.2;
  font-weight: var(--weight-heading-main);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
}

.role-title::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-bottom: 10px;
  background: var(--color-accent);
}

.challenge-value {
  margin-bottom: 0;
  max-width: 66ch;
  line-height: 1.6;
  font-weight: 500;
}

.qualifier,
.subtle,
.footer-note,
.pair-item dt {
  color: var(--color-muted);
}

.qualifier {
  margin-top: var(--stack-24);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--stack-40);
}

.role-block {
  border-top: 1px solid var(--color-line-strong);
  padding-top: var(--stack-24);
  background: transparent;
}

.role-block h3 {
  border-left: 2px solid var(--color-accent);
  padding-left: 12px;
  margin-bottom: var(--stack-24);
}

.value-line {
  font-weight: var(--weight-body-accent);
  margin-bottom: var(--stack-24);
}

.pair-list {
  margin: 0;
  display: grid;
  gap: var(--stack-24);
}

.pair-item {
  margin: 0;
}

.pair-item dd {
  margin: 8px 0 0;
  font-weight: var(--weight-body-accent);
}

.talent-note {
  margin-top: var(--stack-24);
  padding-top: var(--stack-24);
  border-top: 1px solid var(--color-line);
}

.simulation-section h2,
.company-formats-section > h2 {
  margin-bottom: var(--stack-24);
}

.company-formats-section .formats-grid {
  margin-top: 0;
  margin-bottom: var(--stack-32);
}

.company-formats-section > h3 {
  margin-bottom: var(--stack-24);
}

.company-formats-section .geo-list {
  margin-top: 0;
}

.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--stack-32);
}

.steps li {
  border-left: 2px solid var(--color-accent);
  padding-left: 16px;
}

.step-number {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading-main);
  margin-right: 4px;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--stack-32);
  margin-bottom: var(--stack-40);
}

.format-block {
  border-top: 1px solid var(--color-line-strong);
  padding-top: var(--stack-24);
}

.geo-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--stack-24);
}

.geo-list li {
  padding-bottom: var(--stack-24);
  border-bottom: 1px solid var(--color-line);
}

.teaser-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--stack-24);
}

.teaser-list li {
  padding-bottom: var(--stack-24);
  border-bottom: 1px solid var(--color-line);
}

.facts-grid,
.program-card-grid,
.selection-grid,
.quote-grid,
.outcome-grid {
  display: grid;
  gap: var(--stack-32);
}

.facts-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: var(--stack-32);
}

.fact-card,
.program-card,
.selection-card,
.outcome-card,
.quote-card {
  border: 1px solid var(--color-line-strong);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 31, 84, 0.05);
}

.fact-card {
  padding: 24px;
}

.fact-card p {
  margin: 0;
}

.fact-label {
  margin-bottom: 10px;
  color: var(--color-muted);
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fact-value {
  margin-bottom: 10px;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.05;
  font-weight: var(--weight-heading-main);
}

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

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

.program-card-grid--portfolio .program-card--featured {
  grid-column: 1 / -1;
}

.program-card {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.program-card--featured {
  background:
    radial-gradient(circle at 12% 16%, rgba(32, 40, 206, 0.08) 0%, rgba(32, 40, 206, 0) 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.program-card-tag {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-card h2,
.program-card h3 {
  margin-bottom: 0;
}

.program-card-lead {
  margin: 0;
  max-width: 42ch;
}

.program-card--featured .program-card-lead {
  max-width: 54ch;
}

.program-card-specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.program-card-specs li {
  padding-top: 14px;
  border-top: 1px solid var(--color-line);
}

.program-card-specs strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.25;
  font-weight: var(--weight-heading-sub);
}

.program-card-actions,
.resource-links,
.cohort-hero-actions,
.cta-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.selection-card {
  padding: 24px;
}

.selection-card h3 {
  margin-bottom: 14px;
}

.selection-card ul {
  margin: 0;
  display: grid;
  gap: 10px;
}

.about-footprint-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(32, 40, 206, 0.08) 0%, rgba(32, 40, 206, 0) 34%),
    linear-gradient(180deg, #f9fbff 0%, #f4f7ff 100%);
}

.about-footprint-lead {
  max-width: 72ch;
}

.about-footprint-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.about-footprint-map-panel {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: center;
}

.about-footprint-map {
  margin: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-footprint-map img {
  width: min(100%, 760px);
  height: auto;
  max-width: none;
  transform: translateX(-4%);
  filter: drop-shadow(0 18px 42px rgba(32, 40, 206, 0.08));
}

.about-footprint-formats {
  display: grid;
  gap: 0;
}

.about-footprint-formats .program-card-tag {
  margin-bottom: 18px;
}

.about-format-block {
  padding-top: 22px;
  border-top: 0;
}

.partners-proof-section .why-stat-value {
  font-size: clamp(28px, 3.5vw, 44px);
}

.partners-academic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: var(--stack-40);
}

.partners-academic-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 26px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(32, 40, 206, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(160, 228, 241, 0.18) 0%, rgba(160, 228, 241, 0) 42%),
    #ffffff;
  box-shadow: 0 18px 46px rgba(0, 31, 84, 0.06);
}

.partners-academic-card::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -44px;
  width: 180px;
  height: 130px;
  background: url("../assets/logo-mark-outline.svg") center / contain no-repeat;
  opacity: 0.045;
  pointer-events: none;
}

.partners-academic-card span {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: var(--weight-heading-main);
  letter-spacing: 0.08em;
}

.partners-academic-card h3 {
  margin: 26px 0 14px;
  font-size: clamp(22px, 1.75vw, 29px);
  line-height: 1.08;
}

.partners-academic-card p {
  margin: 0;
}

.partners-story-grid {
  align-items: stretch;
}

.partners-story-card {
  min-height: 100%;
}

.partners-model-section {
  background:
    radial-gradient(circle at 80% 18%, rgba(160, 228, 241, 0.22) 0%, rgba(160, 228, 241, 0) 36%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.partners-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: var(--stack-40);
}

.partners-model-step {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 26px;
  border: 1px solid rgba(32, 40, 206, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(32, 40, 206, 0.08) 0%, rgba(32, 40, 206, 0) 48%),
    #ffffff;
  box-shadow: 0 18px 42px rgba(0, 31, 84, 0.06);
}

.partners-model-step::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -28px;
  width: 170px;
  height: 110px;
  background: url("../assets/logo-mark-outline.svg") center / contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.partners-model-step span {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1;
  font-weight: var(--weight-heading-main);
  letter-spacing: 0.08em;
}

.partners-model-step h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.08;
}

.partners-model-step p {
  margin: 0;
}

.partners-criteria-grid .selection-card {
  min-height: 270px;
  padding: 28px;
  display: grid;
  align-content: space-between;
}

.partners-criteria-grid .selection-card h3 {
  max-width: 12ch;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.06;
}

.partners-footprint-section {
  overflow: hidden;
}

.partners-footprint-layout {
  align-items: center;
}

.partners-footprint-map img {
  opacity: 0.78;
  filter: drop-shadow(0 20px 48px rgba(32, 40, 206, 0.12));
}

.partners-opportunity-list {
  gap: 12px;
}

.partners-opportunity-list .about-format-block {
  padding: 24px 0;
}

.partners-logo-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(160, 228, 241, 0.26) 0%, rgba(160, 228, 241, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.partners-logo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.partners-logo-copy h2 {
  margin-bottom: 18px;
  max-width: 12ch;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 0.98;
}

.partners-logo-copy p:not(.program-card-tag) {
  max-width: 58ch;
  font-size: 20px;
  line-height: 1.55;
}

.partners-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.partners-logo-card {
  min-height: 156px;
  padding: 26px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(32, 40, 206, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 46px rgba(0, 31, 84, 0.08);
}

.partners-logo-card--accent {
  grid-column: 1 / -1;
  min-height: 132px;
  background:
    radial-gradient(circle at 90% 10%, rgba(160, 228, 241, 0.34) 0%, rgba(160, 228, 241, 0) 46%),
    linear-gradient(135deg, rgba(32, 40, 206, 0.98), #161c91);
  color: #ffffff;
}

.partners-logo-card span {
  color: var(--color-secondary-02);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: var(--weight-heading-main);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partners-logo-card--accent span {
  color: rgba(255, 255, 255, 0.72);
}

.partners-logo-card strong {
  display: block;
  color: inherit;
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.08;
}

.partners-tier-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.partners-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: var(--stack-40);
}

.partners-tier-card {
  min-height: 330px;
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 18px;
  border: 1px solid rgba(32, 40, 206, 0.14);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 31, 84, 0.07);
}

.partners-tier-card--featured {
  background:
    radial-gradient(circle at 100% 0%, rgba(160, 228, 241, 0.24) 0%, rgba(160, 228, 241, 0) 44%),
    linear-gradient(180deg, #ffffff 0%, #edf3ff 100%);
}

.partners-tier-card h3 {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.04;
}

.partners-tier-card p:not(.program-card-tag) {
  margin: 0;
}

.partners-tier-card ul,
.partners-check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.partners-tier-card li,
.partners-check-list li {
  position: relative;
  padding-left: 28px;
}

.partners-tier-card li::before,
.partners-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(32, 40, 206, 0.1);
}

.partners-voice-grid {
  display: grid;
  gap: 16px;
}

.partners-voice-card {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(32, 40, 206, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(32, 40, 206, 0.08) 0%, rgba(32, 40, 206, 0) 42%),
    #ffffff;
}

.partners-voice-card blockquote {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.28;
  font-weight: var(--weight-heading-sub);
}

.partners-benefits-section {
  background:
    radial-gradient(circle at 86% 14%, rgba(160, 228, 241, 0.26) 0%, rgba(160, 228, 241, 0) 36%),
    #ffffff;
}

.partners-benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
}

.partners-benefits-copy {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(32, 40, 206, 0.12);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 31, 84, 0.06);
}

.partners-benefits-copy h2 {
  margin-bottom: 24px;
  max-width: 14ch;
  font-size: clamp(34px, 4.3vw, 60px);
  line-height: 1;
}

.partners-case-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  align-content: space-between;
  gap: 28px;
  border-radius: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 0%, rgba(160, 228, 241, 0.28) 0%, rgba(160, 228, 241, 0) 40%),
    linear-gradient(145deg, #001f54 0%, #161c91 58%, #2028ce 100%);
  box-shadow: 0 24px 70px rgba(0, 31, 84, 0.22);
}

.partners-case-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 260px;
  height: 180px;
  background: url("../assets/logo-mark-outline.svg") center / contain no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.partners-case-card .program-card-tag {
  color: rgba(255, 255, 255, 0.72);
}

.partners-case-card h3 {
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.02;
}

.partners-case-card p {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.82);
}

.partners-case-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.partners-case-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.partners-case-stats strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1;
}

.partners-case-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.25;
}

.partners-process-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 10%, rgba(160, 228, 241, 0.18) 0%, rgba(160, 228, 241, 0) 36%),
    linear-gradient(135deg, #001f54 0%, #161c91 62%, #2028ce 100%);
}

.partners-process-head {
  max-width: 820px;
  margin-bottom: var(--stack-40);
}

.partners-process-head .program-card-tag {
  color: rgba(255, 255, 255, 0.72);
}

.partners-process-head h2 {
  color: #ffffff;
  font-size: clamp(38px, 5.5vw, 74px);
  line-height: 0.98;
}

.partners-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.partners-process-step {
  min-height: 300px;
  padding: 28px;
  display: grid;
  align-content: space-between;
  background: rgba(0, 31, 84, 0.34);
}

.partners-process-step span {
  color: var(--color-secondary-04);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading-main);
  letter-spacing: 0.08em;
}

.partners-process-step h3 {
  margin: 38px 0 14px;
  color: #ffffff;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.06;
}

.partners-process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.partners-faq-section {
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.partners-faq-list {
  max-width: 960px;
  margin: var(--stack-40) auto 0;
}

.partners-faq-list details {
  border-bottom: 1px solid rgba(0, 31, 84, 0.16);
}

.partners-faq-list summary {
  list-style: none;
  position: relative;
  padding: 26px 54px 26px 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  cursor: pointer;
}

.partners-faq-list summary::-webkit-details-marker {
  display: none;
}

.partners-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
}

.partners-faq-list details[open] summary::after {
  content: "−";
}

.partners-faq-list p {
  max-width: 72ch;
  margin: -8px 0 28px;
  color: rgba(0, 31, 84, 0.74);
  font-size: 19px;
  line-height: 1.55;
}

.partners-announcement-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(32, 40, 206, 0.08) 0%, rgba(32, 40, 206, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.partners-announcement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: var(--stack-40);
}

.partners-announcement-card {
  min-height: 300px;
  padding: 28px;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(32, 40, 206, 0.14);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(0, 31, 84, 0.06);
}

.partners-announcement-card--accent {
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 10%, rgba(160, 228, 241, 0.32) 0%, rgba(160, 228, 241, 0) 44%),
    linear-gradient(135deg, #001f54 0%, #2028ce 100%);
}

.partners-announcement-card span {
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: var(--weight-heading-main);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partners-announcement-card--accent span {
  color: rgba(255, 255, 255, 0.7);
}

.partners-announcement-card h3 {
  margin: 42px 0 16px;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.08;
}

.partners-announcement-card--accent h3 {
  color: #ffffff;
}

.partners-announcement-card p {
  margin: 0;
}

.partners-announcement-card--accent p {
  color: rgba(255, 255, 255, 0.78);
}

.formats-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: var(--stack-32);
  align-items: stretch;
}

.story-stack {
  display: grid;
  gap: var(--stack-32);
}

.story-card {
  padding: 28px;
  border: 1px solid var(--color-line-strong);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 31, 84, 0.05);
}

.story-card--accent {
  background:
    radial-gradient(circle at 12% 14%, rgba(32, 40, 206, 0.1) 0%, rgba(32, 40, 206, 0) 36%),
    linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
}

.story-card h2,
.story-card h3 {
  margin-bottom: 16px;
}

.story-card > .program-card-tag {
  margin-bottom: 8px;
}

.story-card-title-soft {
  margin-bottom: 16px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: var(--weight-heading-sub);
}

.story-card p:last-child {
  margin-bottom: 0;
}

.story-card .simple-list {
  margin-top: 20px;
}

.mission-quote-card {
  overflow: hidden;
  margin-bottom: var(--stack-32);
  border-color: rgba(70, 95, 186, 0.12);
  background:
    radial-gradient(circle at 10% 14%, rgba(122, 118, 255, 0.06) 0%, rgba(122, 118, 255, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.mission-quote-card--standalone {
  padding: clamp(28px, 3.8vw, 40px);
}

.mission-quote-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(18px, 2.6vw, 32px);
  align-items: start;
}

.mission-quote-mark {
  margin-top: 2px;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.78;
  font-weight: var(--weight-heading-main);
  letter-spacing: -0.08em;
  transform: skewX(-14deg);
}

.mission-quote-panel {
  position: relative;
  margin: 0;
  padding: 0 0 26px;
}

.mission-quote-panel::before {
  content: "";
  position: absolute;
  left: clamp(28px, 9%, 92px);
  right: -8px;
  top: clamp(22px, 16%, 74px);
  bottom: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(151, 156, 255, 0.72) 0%, rgba(175, 178, 255, 0.92) 100%);
}

.mission-quote-text,
.mission-quote-author {
  position: relative;
  z-index: 1;
}

.mission-quote-text {
  margin: 0;
  max-width: 27ch;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.2vw, 36px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: var(--weight-heading-main);
}

.mission-quote-author {
  display: block;
  margin-top: 24px;
  margin-left: clamp(28px, 9%, 92px);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.1;
  font-style: normal;
  font-weight: var(--weight-heading-sub);
}

.mission-quote-support {
  margin: 20px 0 0;
  max-width: 72ch;
  color: var(--color-muted);
}

.mission-founder-card {
  overflow: hidden;
  margin-bottom: var(--stack-32);
  padding: clamp(34px, 4.8vw, 52px);
  border-color: rgba(93, 109, 201, 0.08);
  background: linear-gradient(180deg, #f5f8ff 0%, #eef3ff 100%);
  box-shadow: none;
}

.mission-founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.26fr) minmax(220px, 340px);
  gap: clamp(10px, 1.4vw, 18px);
  align-items: end;
}

.mission-founder-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  align-self: center;
}

.mission-founder-copy .program-card-tag {
  margin-bottom: 4px;
}

.mission-founder-quote {
  margin: 0;
  max-width: 28ch;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: var(--weight-heading-sub);
  background-image: linear-gradient(92deg, #2028ce 0%, #c98e93 33%, #8d63f3 64%, #2028ce 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.mission-founder-author {
  margin: 0;
  color: rgba(16, 20, 29, 0.96);
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.15;
  font-weight: 600;
}

.mission-founder-media {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  overflow: visible;
}

.mission-founder-media::before,
.mission-founder-media::after {
  display: none;
}

.mission-founder-portrait-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 324px);
  aspect-ratio: auto;
  margin-left: clamp(-98px, -7vw, -42px);
  border-radius: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.mission-founder-portrait-shell::before,
.mission-founder-portrait-shell::after {
  content: "";
  position: absolute;
  z-index: 0;
  background-image: radial-gradient(rgba(103, 91, 244, 0.8) 1.2px, transparent 1.2px);
  background-size: 12px 12px;
}

.mission-founder-portrait-shell::before {
  width: 132px;
  height: 30px;
  right: -28px;
  top: 8px;
  opacity: 0.5;
}

.mission-founder-portrait-shell::after {
  width: 148px;
  height: 40px;
  right: -16px;
  bottom: -10px;
  opacity: 0.78;
}

.mission-founder-portrait-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 20px rgba(10, 24, 68, 0.08));
}

.program-testimonials-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 6vw, 80px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.program-testimonials-section::after {
  content: "";
  position: absolute;
  right: clamp(24px, 4vw, 56px);
  top: 18px;
  width: 132px;
  height: 30px;
  background-image: radial-gradient(rgba(102, 112, 243, 0.72) 1.4px, transparent 1.4px);
  background-size: 12px 12px;
  opacity: 0.72;
}

.program-testimonials-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 24px;
  margin-bottom: 28px;
}

.program-testimonials-kicker {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(0, 31, 84, 0.82);
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-testimonials-kicker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6a6ef1;
}

.program-testimonials-head h2 {
  margin: 0;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.program-testimonials-arrows {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
  margin-top: 10px;
}

.program-testimonials-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(93, 109, 201, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: rgba(93, 109, 201, 0.9);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.program-testimonials-arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.program-testimonials-arrow[data-testimonials-prev]::before {
  transform: translateX(2px) rotate(-135deg);
}

.program-testimonials-arrow[data-testimonials-next]::before {
  transform: translateX(-2px) rotate(45deg);
}

.program-testimonials-arrow:hover:not(:disabled),
.program-testimonials-arrow:focus-visible:not(:disabled) {
  border-color: rgba(93, 109, 201, 0.36);
  color: rgba(46, 63, 184, 1);
  transform: translateY(-1px);
}

.program-testimonials-arrow:disabled {
  opacity: 0.38;
  cursor: default;
}

.program-testimonials-carousel {
  position: relative;
}

.program-testimonials-viewport {
  overflow: hidden;
  margin-bottom: 26px;
}

.program-testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 320ms ease;
  will-change: transform;
}

.program-testimonial-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  flex: 0 0 calc((100% - 48px) / 3);
  min-height: 276px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(0, 31, 84, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 20px 36px rgba(0, 31, 84, 0.06);
  overflow: hidden;
}

.program-testimonial-card::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(32, 40, 206, 0.96) 0%, rgba(116, 102, 225, 0.66) 100%);
}

.program-testimonial-mark {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 46px;
  line-height: 0.72;
}

.program-testimonial-quote {
  margin: 0;
  max-width: 21ch;
  color: #17213f;
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.2vw, 21px);
  line-height: 1.42;
  letter-spacing: -0.015em;
  font-weight: 600;
  text-wrap: balance;
}

.program-testimonial-person {
  display: block;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 31, 84, 0.1);
}

.program-testimonial-meta {
  display: grid;
  gap: 4px;
}

.program-testimonial-name {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
}

.program-testimonial-role {
  margin: 0;
  color: rgba(0, 31, 84, 0.78);
  font-size: 16px;
  line-height: 1.35;
}

.program-testimonial-company {
  margin: 0;
  color: rgba(0, 31, 84, 0.58);
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 600;
}

.program-testimonials-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.program-testimonials-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(93, 109, 201, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.program-testimonials-dot.is-active {
  background: rgba(93, 109, 201, 0.9);
  transform: scale(1.18);
}

@media (max-width: 1100px) {
  .program-testimonials-head {
    align-items: start;
  }

  .program-testimonials-head h2 {
    max-width: 12ch;
  }

  .program-testimonials-track {
    gap: 22px;
  }

  .program-testimonial-card {
    flex-basis: calc((100% - 22px) / 2);
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .program-testimonials-section {
    padding-top: 60px;
    padding-bottom: 64px;
  }

  .program-testimonials-section::after {
    width: 92px;
    height: 24px;
    right: 18px;
    top: 18px;
    background-size: 10px 10px;
  }

  .program-testimonials-head {
    margin-bottom: 24px;
  }

  .program-testimonials-head h2 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 40px);
  }

  .program-testimonials-arrows {
    display: none;
  }

  .program-testimonials-track {
    gap: 16px;
  }

  .program-testimonial-card {
    flex-basis: 100%;
    min-height: 0;
    padding: 22px 20px 24px;
  }

  .program-testimonial-quote {
    max-width: 100%;
    font-size: 19px;
    line-height: 1.5;
  }

  .program-testimonial-name {
    font-size: 17px;
  }

  .program-testimonial-role {
    font-size: 15px;
  }

  .program-testimonial-company {
    font-size: 16px;
  }
}

.institutional-statement {
  padding: 28px;
  border-top: 2px solid var(--color-accent);
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.institutional-statement p {
  max-width: 68ch;
}

.resource-links {
  margin-top: var(--stack-32);
}

.proof-quotes {
  margin-top: var(--stack-32);
}

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

.quote-card {
  padding: 22px 24px;
}

.quote-card blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.45;
  color: var(--color-text);
}

.quote-card cite {
  display: block;
  margin-top: 14px;
  color: var(--color-muted);
  font-style: normal;
}

.cohort-hero .home-hero-media {
  position: relative;
  min-height: 520px;
  max-height: none;
  height: auto;
}

.cohort-hero .home-hero-media::after {
  background: linear-gradient(180deg, rgba(4, 15, 52, 0.26) 0%, rgba(4, 15, 52, 0.62) 100%);
}

.cohort-hero-content {
  padding-block: 80px 96px;
}

.cohort-hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.cohort-hero-copy {
  max-width: 760px;
  color: #fff;
}

.cohort-hero-kicker {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cohort-hero-lead {
  margin-top: 20px;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
  line-height: 1.45;
}

.cohort-summary-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.cohort-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(160, 228, 241, 0.18);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cohort-facts {
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
}

.cohort-facts div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cohort-facts dt {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cohort-facts dd {
  margin: 8px 0 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
}

.cohort-note {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
}

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

.outcome-card {
  padding: 22px 24px;
}

.outcome-card h3 {
  margin-bottom: 12px;
}

.faq-list {
  display: grid;
  gap: 18px;
}

.faq-item {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 18px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.25;
  font-weight: var(--weight-heading-sub);
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  flex: none;
  color: var(--color-accent);
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 48px 18px 0;
}

.faq-answer p {
  margin: 0;
}

.program-faq-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 6vw, 80px);
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.program-faq-section::after {
  content: none;
}

.program-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 4.8vw, 72px);
  align-items: start;
}

.program-faq-intro {
  margin: 0;
  width: auto;
  max-width: 420px;
  text-align: left;
}

.program-faq-kicker {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(0, 31, 84, 0.82);
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-faq-kicker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6a6ef1;
}

.program-faq-intro h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.program-faq-note {
  margin: 14px 0 0;
  max-width: 34ch;
  color: rgba(0, 31, 84, 0.72);
  font-size: 17px;
  line-height: 1.58;
}

.program-faq-list {
  max-width: none;
  margin: 0;
  gap: 0;
}

.program-faq-section .faq-item {
  padding-bottom: 0;
  border-bottom: 1px solid rgba(0, 31, 84, 0.18);
}

.program-faq-section .faq-question {
  padding: 24px 0;
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1.28;
  font-weight: 600;
}

.program-faq-section .faq-question::after {
  content: "";
  width: 14px;
  height: 14px;
  flex: none;
  border-right: 3px solid rgba(0, 31, 84, 0.9);
  border-bottom: 3px solid rgba(0, 31, 84, 0.9);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.program-faq-section .faq-item.is-open .faq-question::after {
  content: "";
  transform: rotate(-135deg);
}

.program-faq-section .faq-answer {
  padding: 0 36px 22px 0;
  max-width: 68ch;
}

.program-faq-section .faq-answer p {
  color: rgba(0, 31, 84, 0.8);
  font-size: 16px;
  line-height: 1.6;
}

.program-audience-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 100%, rgba(106, 110, 241, 0.12) 0%, rgba(106, 110, 241, 0) 34%),
    linear-gradient(180deg, #f4f8ff 0%, #eef3ff 100%);
}

.program-audience-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.program-audience-media {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 9 / 16;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #001f54 0%, #2028CE 100%);
  box-shadow: 0 30px 70px rgba(0, 31, 84, 0.18);
}

.program-audience-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.program-audience-content {
  display: grid;
  gap: clamp(28px, 3.5vw, 44px);
  align-content: start;
}

.program-audience-intro {
  display: grid;
  gap: 18px;
  align-content: start;
  padding-top: 0;
}

.program-audience-kicker {
  margin: 0 0 clamp(28px, 3.5vw, 44px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(0, 31, 84, 0.82);
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-audience-kicker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6a6ef1;
}

.program-audience-intro h2 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.program-audience-note {
  margin: 0;
  max-width: 36ch;
  color: rgba(0, 31, 84, 0.76);
  font-size: 17px;
  line-height: 1.58;
}

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

.program-audience-item {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 228px;
  padding: 24px 24px 26px;
  border: 1px solid rgba(0, 31, 84, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(0, 31, 84, 0.045);
}

.program-audience-label {
  margin: 0;
  color: var(--color-secondary-02);
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-audience-item h3 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(24px, 2.05vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.program-audience-item p:not(.program-audience-label) {
  margin: 0;
  max-width: 100%;
  color: rgba(0, 31, 84, 0.82);
  font-size: 17px;
  line-height: 1.55;
}

.simulation-variants-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(106, 110, 241, 0.08) 0%, rgba(106, 110, 241, 0) 34%),
    #ffffff;
}

.simulation-variants-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  grid-template-areas:
    "kicker kicker"
    "title note";
  column-gap: clamp(28px, 4vw, 56px);
  row-gap: 16px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.simulation-variants-head .program-audience-kicker {
  grid-area: kicker;
}

.simulation-variants-head h2 {
  grid-area: title;
  margin: 0;
  max-width: 13ch;
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: pretty;
}

.simulation-variants-head h2 br {
  display: block;
}

.simulation-variants-note {
  grid-area: note;
  align-self: end;
  margin: 0;
  max-width: 30ch;
  color: rgba(0, 31, 84, 0.7);
  font-size: 18px;
  line-height: 1.58;
  text-wrap: pretty;
}

.simulation-variant {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(0, 31, 84, 0.1);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(0, 31, 84, 0.045);
}

.simulation-variant + .simulation-variant {
  margin-top: 28px;
}

.simulation-variant-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(32, 40, 206, 0.07);
  color: rgba(0, 31, 84, 0.78);
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.simulation-flow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.simulation-flow-intro {
  display: grid;
  gap: 14px;
}

.simulation-flow-intro h3,
.simulation-variant--timeline h3,
.simulation-editorial-copy h3 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.simulation-flow-intro p,
.simulation-variant--timeline > p,
.simulation-editorial-copy p {
  margin: 0;
  max-width: 34ch;
  color: rgba(0, 31, 84, 0.72);
  font-size: 17px;
  line-height: 1.58;
}

.simulation-flow-grid {
  list-style: none;
  margin: 0;
  padding: 6px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.simulation-flow-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 220px;
  padding: 24px 24px 28px;
  border: 1px solid rgba(0, 31, 84, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.simulation-flow-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 auto;
  width: 56px;
  height: 56px;
  border-right: 1px dashed rgba(32, 40, 206, 0.22);
  border-bottom: 1px dashed rgba(32, 40, 206, 0.22);
  transform: translate(18px, 18px);
  pointer-events: none;
}

.simulation-flow-card:nth-child(2)::after,
.simulation-flow-card:nth-child(4)::after {
  display: none;
}

.simulation-flow-card--accent {
  background: linear-gradient(180deg, rgba(32, 40, 206, 0.06) 0%, rgba(106, 110, 241, 0.1) 100%);
}

.simulation-flow-number,
.simulation-editorial-index {
  color: rgba(32, 40, 206, 0.92);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1;
  font-weight: var(--weight-heading-sub);
  letter-spacing: -0.02em;
}

.simulation-flow-card h4,
.simulation-cycle-step h4,
.simulation-editorial-card h4 {
  margin: 0;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.simulation-flow-card p,
.simulation-cycle-step p,
.simulation-editorial-card p {
  margin: 0;
  color: rgba(0, 31, 84, 0.78);
  font-size: 17px;
  line-height: 1.56;
}

.simulation-variant--cycle {
  position: relative;
}

.simulation-cycle-layout {
  position: relative;
  padding: 20px 0;
  min-height: 620px;
}

.simulation-cycle-layout::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(38vw, 420px);
  height: min(38vw, 420px);
  border: 1px solid rgba(32, 40, 206, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.simulation-cycle-layout::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(30vw, 320px);
  height: min(30vw, 320px);
  border: 1px dashed rgba(32, 40, 206, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.simulation-cycle-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px minmax(0, 1fr);
  grid-template-areas:
    "step1 . step2"
    ". . ."
    "step4 . step3";
  gap: 28px 36px;
  align-items: start;
}

.simulation-cycle-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 182px;
  padding: 24px 24px 28px;
  border: 1px solid rgba(0, 31, 84, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(0, 31, 84, 0.045);
}

.simulation-cycle-step--1 {
  grid-area: step1;
}

.simulation-cycle-step--2 {
  grid-area: step2;
}

.simulation-cycle-step--3 {
  grid-area: step3;
}

.simulation-cycle-step--4 {
  grid-area: step4;
}

.simulation-cycle-point {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(32, 40, 206, 0.16);
  box-shadow: 0 10px 22px rgba(0, 31, 84, 0.05);
  color: rgba(32, 40, 206, 0.92);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}

.simulation-cycle-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  gap: 14px;
  place-items: center;
  width: 240px;
  padding: 22px 20px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.96) 100%);
  border: 1px solid rgba(0, 31, 84, 0.08);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 42px rgba(0, 31, 84, 0.05);
  text-align: center;
}

.simulation-cycle-center-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(32, 40, 206, 0.08);
  color: rgba(32, 40, 206, 0.92);
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.simulation-cycle-center strong {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.simulation-editorial-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.simulation-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.simulation-editorial-card {
  display: grid;
  gap: 14px;
  min-height: 208px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(244, 248, 255, 0.96);
  border: 1px solid rgba(0, 31, 84, 0.08);
}

.simulation-editorial-card--accent {
  background: linear-gradient(180deg, rgba(32, 40, 206, 0.05) 0%, rgba(106, 110, 241, 0.12) 100%);
}

.program-benefits-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 6vw, 80px);
  background:
    radial-gradient(circle at 100% 0%, rgba(106, 110, 241, 0.08) 0%, rgba(106, 110, 241, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.program-benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.08fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
}

.program-benefits-copy {
  display: grid;
  gap: 16px;
  align-content: start;
  align-self: start;
  min-height: 0;
  padding-top: 0;
}

.program-benefits-intro {
  display: grid;
  gap: 12px;
  align-content: start;
}

.program-benefits-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(0, 31, 84, 0.82);
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-benefits-kicker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6a6ef1;
}

.program-benefits-intro h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(32px, 2.8vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.program-benefits-lead {
  margin: 0;
  max-width: 52ch;
  color: rgba(0, 31, 84, 0.76);
  font-size: 16px;
  line-height: 1.5;
}

.program-benefits-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  align-items: start;
  align-content: start;
}

.program-benefit-item {
  display: grid;
  gap: 4px;
  max-width: none;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 31, 84, 0.12);
}

.program-benefit-item h3 {
  margin: 0;
  max-width: none;
  color: var(--color-primary-04);
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.program-benefit-index {
  margin: 0;
  color: var(--color-secondary-02);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1;
  font-weight: var(--weight-heading-sub);
  letter-spacing: -0.02em;
}

.program-benefit-item p {
  margin: 0;
  max-width: 34ch;
  color: rgba(0, 31, 84, 0.84);
  font-size: 14px;
  line-height: 1.42;
}

.program-benefits-media {
  position: relative;
  margin: 0;
  align-self: start;
  width: 100%;
  max-width: 960px;
  margin-left: auto;
}

.program-benefits-media::before {
  content: none;
}

.program-benefits-collage {
  display: grid;
  position: relative;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.08fr);
  grid-template-rows: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  min-height: 0;
  padding: 24px 24px 24px 28px;
  isolation: isolate;
}

.program-benefits-collage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  background:
    radial-gradient(circle at 10% 12%, rgba(126, 166, 244, 0.18) 0%, rgba(126, 166, 244, 0) 28%),
    radial-gradient(circle at 92% 88%, rgba(160, 228, 241, 0.18) 0%, rgba(160, 228, 241, 0) 32%),
    linear-gradient(135deg, rgba(32, 40, 206, 0.12) 0%, rgba(126, 166, 244, 0.14) 46%, rgba(255, 255, 255, 0.94) 100%);
  border: 1px solid rgba(32, 40, 206, 0.1);
  box-shadow: 0 20px 44px rgba(0, 31, 84, 0.1);
  z-index: 0;
}

.program-benefits-collage::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 10%;
  width: min(34vw, 340px);
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(32, 40, 206, 0.22) 0%, rgba(74, 77, 231, 0.1) 100%);
  -webkit-mask: url("../assets/logo-mark-outline.svg") center / contain no-repeat;
  mask: url("../assets/logo-mark-outline.svg") center / contain no-repeat;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

.program-benefits-shot {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 36px rgba(0, 31, 84, 0.14);
}

.program-benefits-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.program-benefits-shot--main {
  grid-column: 2;
  grid-row: 1 / span 2;
  z-index: 2;
  aspect-ratio: 0.68;
  align-self: center;
  margin-top: 6px;
  margin-bottom: 6px;
}

.program-benefits-shot--room {
  grid-column: 1;
  grid-row: 1;
  z-index: 3;
  aspect-ratio: 1.04;
  margin-top: 4px;
}

.program-benefits-shot--cert {
  grid-column: 1;
  grid-row: 2;
  z-index: 4;
  aspect-ratio: 1.04;
  margin-left: 12px;
  align-self: end;
}

.program-certificate-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 6vw, 80px);
  background:
    radial-gradient(circle at 10% 18%, rgba(32, 40, 206, 0.08) 0%, rgba(32, 40, 206, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.program-certificate-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
}

.program-certificate-copy {
  display: grid;
  gap: 18px;
}

.program-certificate-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(0, 31, 84, 0.78);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-certificate-kicker-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #7466e1;
  flex: 0 0 auto;
}

.program-certificate-copy h2 {
  margin: 0;
  max-width: 11.5ch;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.program-certificate-lead {
  margin: 0;
  max-width: 40ch;
  color: rgba(0, 31, 84, 0.82);
  font-size: 17px;
  line-height: 1.58;
}

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

.program-certificate-notes p {
  margin: 0;
  max-width: 38ch;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 31, 84, 0.12);
  color: rgba(0, 31, 84, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.program-certificate-photo {
  position: relative;
  margin: 0;
  max-width: 620px;
  margin-left: auto;
  aspect-ratio: 1.18;
  border-radius: 28px;
  overflow: hidden;
  background: #eaf0ff;
  box-shadow: 0 24px 52px rgba(0, 31, 84, 0.1);
}

.program-certificate-photo::before {
  content: "";
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: clamp(180px, 22vw, 300px);
  height: clamp(96px, 12vw, 160px);
  opacity: 0.12;
  transform: rotate(-7deg);
  background: url("../assets/logo-mark-outline.svg") center / contain no-repeat;
  pointer-events: none;
}

.program-certificate-photo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.program-certificate-photo-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 28px rgba(0, 31, 84, 0.12);
}

.program-certificate-photo-caption strong {
  color: var(--color-primary-04);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
}

.program-certificate-photo-caption span {
  color: rgba(0, 31, 84, 0.74);
  font-size: 15px;
  line-height: 1.45;
}

.cohort-request {
  padding-block: clamp(56px, 6vw, 80px);
  background: linear-gradient(180deg, #fbfcff 0%, #ffffff 100%);
}

.cohort-request .container {
  max-width: var(--container-max);
  padding-inline: var(--container-pad);
}

.program-request-shell {
  display: grid;
  gap: 0;
}

.program-request-overview {
  display: grid;
  gap: 0;
  padding: clamp(18px, 2.2vw, 24px);
  border-radius: 28px;
  border: 1px solid rgba(0, 31, 84, 0.1);
  background:
    radial-gradient(circle at 88% 18%, rgba(157, 190, 255, 0.1) 0%, rgba(157, 190, 255, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow: 0 16px 34px rgba(0, 31, 84, 0.06);
}

.program-request-overview-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: clamp(14px, 1.8vw, 20px);
  align-items: stretch;
}

.program-request-overview-copy {
  display: grid;
  align-content: center;
  max-width: 64ch;
  width: 100%;
  padding: clamp(10px, 1.4vw, 18px) clamp(12px, 1vw, 16px);
}

.program-request-title {
  margin: 0;
  max-width: 18ch;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(32px, 2.5vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.program-request-lead {
  margin: 10px 0 0;
  max-width: 54ch;
  color: rgba(0, 31, 84, 0.72);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
}

.program-request-side {
  display: grid;
  gap: 16px;
  align-self: stretch;
  padding: 22px 22px 20px;
  border-radius: 22px;
  border: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(135deg, #15366f 0%, #10306a 100%);
  color: #ffffff;
  align-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.program-request-facts {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.program-request-facts div {
  min-width: 0;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.program-request-facts div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.program-request-facts dt {
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-request-facts dd {
  margin: 6px 0 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.24;
  font-weight: var(--weight-heading-sub);
}

.program-request-cta {
  min-height: 52px;
  width: 100%;
  padding-inline: 26px;
  border-radius: 999px;
  white-space: nowrap;
  justify-content: center;
  background: var(--color-accent);
  box-shadow: 0 10px 24px rgba(32, 40, 206, 0.28);
}

.contact-program-caption {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f4f7ff;
  color: var(--color-primary-04);
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.4;
  font-weight: var(--weight-heading-sub);
}

.programs-teaser-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 10% 12%, rgba(32, 40, 206, 0.08) 0%, rgba(32, 40, 206, 0) 40%),
    linear-gradient(180deg, #f9fbff 0%, #f1f5ff 100%);
}

.programs-teaser-section-home {
  background: #ffffff;
}

.programs-teaser-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.programs-teaser-lead {
  margin: 0;
  max-width: 64ch;
  color: rgba(0, 31, 84, 0.68);
  line-height: 1.55;
}

.about-history-lead {
  max-width: 78ch;
}

.programs-teaser-program {
  margin: 2px 0 0;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  color: var(--color-text);
}

.programs-teaser-description {
  margin: 0;
  max-width: 72ch;
  color: rgba(0, 31, 84, 0.74);
  line-height: 1.5;
}

.programs-teaser-table-wrap {
  border: 1px solid rgba(0, 31, 84, 0.2);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  box-shadow: 0 24px 56px rgba(0, 31, 84, 0.14);
  overflow: hidden;
}

.programs-teaser-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
}

.programs-teaser-table th {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0, 31, 84, 0.2);
  text-align: left;
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 31, 84, 0.64);
  background: rgba(0, 31, 84, 0.065);
}

.programs-teaser-table th:nth-child(1) {
  width: 30%;
}

.programs-teaser-table th:nth-child(2) {
  width: 30%;
}

.programs-teaser-table th:nth-child(3) {
  width: 16%;
}

.programs-teaser-table th:nth-child(4) {
  width: 24%;
}

.programs-teaser-table td {
  padding: 14px 24px;
  border-bottom: 1px solid rgba(0, 31, 84, 0.12);
  color: var(--color-text);
  line-height: 1.4;
  font-size: 18px;
  font-weight: 600;
  vertical-align: middle;
}

.programs-teaser-table th:last-child,
.programs-teaser-table td:last-child {
  white-space: nowrap;
}

.programs-teaser-table tbody tr:last-child td {
  border-bottom: 0;
}

.programs-teaser-table tbody tr {
  height: 92px;
  transition: background-color 0.2s ease;
}

.programs-teaser-table tbody tr:hover {
  background: rgba(32, 40, 206, 0.06);
}

.programs-teaser-table tbody.is-ready tr td {
  animation: schedule-table-row-in 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--row-index, 0) * 70ms);
}

@keyframes schedule-table-row-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.programs-location {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: start;
  align-items: baseline;
  column-gap: 10px;
}

.programs-location-city {
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.012em;
  white-space: nowrap;
}

.programs-location-country {
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 31, 84, 0.5);
}

.programs-place-meta {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  white-space: nowrap;
}

.programs-format-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(0, 31, 84, 0.46);
}

.programs-format-glyph {
  display: inline-block;
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border: 1.5px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
}

.programs-format-pill.is-online {
  color: rgba(20, 35, 156, 0.64);
}

.programs-format-glyph::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
  top: 2px;
  left: 2px;
}

.programs-format-pill.is-online .programs-format-glyph {
  border-radius: 50%;
  transform: none;
}

.programs-format-pill.is-online .programs-format-glyph::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 1.5px;
  left: 1.5px;
}

.programs-date-value {
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--color-text);
  white-space: nowrap;
}

.programs-price {
  display: grid;
  gap: 1px;
}

.programs-price-value {
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(0, 31, 84, 0.86);
}

.programs-price-note {
  font-size: 11px;
  line-height: 1.2;
  color: rgba(0, 31, 84, 0.5);
}

.programs-table-row {
  transition: background-color 0.2s ease;
}

.programs-table-row:hover {
  background: rgba(32, 40, 206, 0.06);
}

.programs-table-row.is-active {
  background: rgba(32, 40, 206, 0.08);
}

.programs-table-row[tabindex] {
  cursor: pointer;
  outline: none;
}

.programs-table-row[tabindex]:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(32, 40, 206, 0.34);
}

.programs-teaser-cta-cell {
  padding-left: 24px;
  border-left: 0;
  text-align: left;
  width: auto;
}

.programs-teaser-cta-cell .agenda-row-button {
  min-height: 44px;
  padding-inline: 12px;
  width: 100%;
  justify-content: center;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.programs-teaser-cta-cell .agenda-row-button::after {
  content: none;
}

.programs-teaser-cta {
  margin-top: 26px;
}

.programs-teaser-cta .button {
  min-height: 48px;
  padding-inline: 22px;
  font-size: 17px;
  font-weight: var(--weight-heading-sub);
}

[data-schedule-page] .programs-teaser-section {
  padding-bottom: var(--section-space);
}


.testimonials-section {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 80px;
  background:
    radial-gradient(circle at 8% 18%, rgba(32, 40, 206, 0.07) 0%, rgba(32, 40, 206, 0) 42%),
    #f8faff;
}

.testimonials-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: stretch;
}

.testimonials-intro {
  display: grid;
  align-content: start;
  gap: 24px;
}

.testimonials-subtitle {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.05em;
  text-transform: none;
  color: rgba(0, 31, 84, 0.85);
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5f6cf0;
}

.testimonials-intro h2 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.testimonials-cta {
  width: fit-content;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 28px;
  background: var(--color-accent);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1;
  font-weight: var(--weight-heading-sub);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.testimonials-cta::after {
  content: "\203A";
  font-size: 22px;
  line-height: 1;
}

.testimonials-cta:hover {
  background: var(--color-text);
}

.testimonials-slider {
  position: relative;
  border-left: 1px solid rgba(0, 31, 84, 0.18);
  padding-left: 46px;
  padding-right: 248px;
}

.testimonials-slider::after {
  content: "";
  position: absolute;
  right: 0;
  top: 34px;
  width: 246px;
  height: 180px;
  background: url("../assets/favicon.svg") center / contain no-repeat;
  opacity: 0.16;
  transform: rotate(-8deg);
  pointer-events: none;
}

.testimonials-surface {
  position: relative;
  z-index: 1;
  min-height: 268px;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.is-active {
  display: block;
  animation: testimonial-fade 280ms ease;
}

@keyframes testimonial-fade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-mark {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 54px;
  line-height: 0.7;
  color: var(--color-accent);
}

.testimonial-quote {
  margin: 0 0 28px;
  max-width: 34ch;
  font-size: clamp(20px, 1.5vw, 26px);
  line-height: 1.45;
  color: #1a202a;
}

.testimonial-author {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  color: #4d61df;
}

.testimonial-position {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: rgba(0, 31, 84, 0.54);
}

.testimonials-controls {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonials-nav {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 31, 84, 0.18);
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.testimonials-nav:hover {
  border-color: rgba(32, 40, 206, 0.44);
  color: var(--color-accent);
}

.testimonials-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.testimonials-dot-button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(0, 31, 84, 0.24);
  cursor: pointer;
}

.testimonials-dot-button.is-active {
  background: var(--color-accent);
}

.moments-section {
  padding-top: 40px;
  padding-bottom: 56px;
  background: var(--color-surface);
}

.moments-shell {
  display: grid;
  gap: 28px;
}

.moments-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--stack-24);
}

.moments-head h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.moments-head p {
  max-width: 48ch;
  color: var(--color-muted);
}

.moments-slider {
  position: relative;
}

.moments-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.moments-track::-webkit-scrollbar {
  display: none;
}

.moments-slide {
  margin: 0;
  min-width: 0;
  flex: 0 0 calc((100% - 20px) / 3);
  border: 1px solid var(--color-line-strong);
  border-radius: 2px;
  overflow: hidden;
  background: var(--color-surface);
  scroll-snap-align: start;
}

.moments-slide img {
  width: 100%;
  height: clamp(320px, 40vw, 520px);
  object-fit: cover;
  transition: transform 0.4s ease;
}

.moments-slide:hover img {
  transform: scale(1.03);
}

.moments-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 56px;
  border: 0;
  border-radius: 4px;
  background: var(--color-accent);
  color: var(--color-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 31, 84, 0.18);
}

.moments-nav:hover {
  background: var(--color-text);
}

.moments-nav-prev {
  left: 10px;
}

.moments-nav-next {
  right: 10px;
}

.moments-nav[disabled] {
  opacity: 0.4;
  cursor: default;
}

.moments-nav.is-hidden {
  display: none;
}

.cta-loop-section {
  width: 100%;
  margin-top: 0;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--color-text) 0%, var(--color-accent) 100%);
  overflow: hidden;
}

.capability-section--cta-end {
  padding-bottom: 28px;
}

.why-section--after-loop {
  padding-top: 0;
}

.cta-loop-link {
  display: block;
  color: #fff;
  text-decoration: none;
}

.cta-loop-track {
  display: flex;
  width: max-content;
  animation: cta-loop-scroll 22s linear infinite;
  will-change: transform;
}

.cta-loop-group {
  --cta-loop-gap: 22px;
  display: flex;
  align-items: center;
  gap: var(--cta-loop-gap);
  padding: 12px 0;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: var(--weight-heading-main);
  line-height: 1.1;
  letter-spacing: -0.01em;
  padding-inline: calc(var(--cta-loop-gap) / 2);
}

.cta-loop-sep {
  opacity: 0.8;
}

@keyframes cta-loop-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--cta-loop-shift, 50%)));
  }
}

.cta-wide {
  background: var(--color-text);
  color: var(--color-surface);
  padding-block: 56px;
}

.cta-wide .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--stack-24);
}

.cta-wide p {
  margin: 0;
  max-width: 26ch;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: var(--weight-heading-sub);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.cta-offer-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(118, 196, 255, 0.25) 0%, rgba(118, 196, 255, 0) 56%),
    radial-gradient(circle at 82% 72%, rgba(136, 159, 255, 0.2) 0%, rgba(136, 159, 255, 0) 62%),
    linear-gradient(124deg, #051941 0%, #0b2a75 52%, #1b47ac 100%);
  padding-top: 32px;
  padding-bottom: 0;
}

.cta-offer-section .container {
  position: relative;
  z-index: 1;
}

.cta-offer-layout {
  position: relative;
  border-radius: 0;
  padding: clamp(24px, 3vw, 38px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(20px, 2.4vw, 42px);
  align-items: stretch;
  color: #ffffff;
}

.cta-offer-section::before,
.cta-offer-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
}

.cta-offer-section::before {
  width: clamp(220px, 30vw, 460px);
  height: clamp(120px, 16vw, 240px);
  right: -8%;
  bottom: -4%;
  opacity: 0.28;
  transform: rotate(-8deg);
  background-image: url("../assets/logo-mark-outline.svg");
}

.cta-offer-section::after {
  width: clamp(130px, 14vw, 220px);
  height: clamp(70px, 8vw, 120px);
  left: clamp(18px, 4vw, 50px);
  top: clamp(16px, 2vw, 26px);
  opacity: 0.12;
  filter: brightness(0) invert(1);
  background-image: url("../assets/favicon.svg");
}

.cta-offer-main,
.cta-offer-card {
  position: relative;
  z-index: 1;
}

.cta-offer-main {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 4px;
}

.cta-offer-kicker {
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  color: rgba(179, 255, 213, 0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-offer-main h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 18ch;
}

.cta-offer-lead {
  max-width: 56ch;
  margin: 0;
  color: rgba(233, 240, 255, 0.9);
  font-size: clamp(17px, 1.1vw, 20px);
  line-height: 1.5;
}

.cta-offer-stats {
  margin-top: 6px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 620px;
}

.cta-offer-stat {
  padding-right: 18px;
}

.cta-offer-stat + .cta-offer-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  padding-left: 18px;
  padding-right: 0;
}

.cta-offer-stat p {
  margin: 0;
}

.cta-offer-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(23px, 1.8vw, 32px);
  line-height: 1.16;
  font-weight: var(--weight-heading-sub);
  color: #ffffff;
}

.cta-offer-stat-text {
  margin-top: 8px;
  color: rgba(197, 255, 224, 0.9);
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1.46;
}

.cta-offer-link {
  margin-top: 10px;
  width: fit-content;
  color: rgba(206, 252, 228, 0.96);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: var(--weight-heading-sub);
  text-decoration: underline;
  text-decoration-color: rgba(168, 236, 207, 0.55);
  text-underline-offset: 0.24em;
}

.cta-offer-link:hover,
.cta-offer-link:focus-visible {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.75);
}

.cta-offer-card {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-text);
  padding: clamp(16px, 1.8vw, 24px);
  display: grid;
  align-content: start;
  gap: 16px;
  box-shadow: 0 14px 30px rgba(0, 31, 84, 0.16);
}

.cta-offer-meta {
  margin: 0;
}

.cta-offer-meta-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-block: 10px;
}

.cta-offer-meta-row + .cta-offer-meta-row {
  border-top: 1px solid var(--color-line);
}

.cta-offer-meta-row dt,
.cta-offer-meta-row dd {
  margin: 0;
}

.cta-offer-meta-row dt {
  color: rgba(0, 31, 84, 0.65);
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.25;
}

.cta-offer-meta-row dd {
  justify-self: end;
  text-align: right;
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.5vw, 30px);
  line-height: 1.1;
  font-weight: var(--weight-heading-sub);
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.cta-offer-cta {
  width: 100%;
  min-height: 52px;
  border-radius: var(--radius-6);
  font-family: var(--font-body);
  font-size: 23px;
  font-weight: var(--weight-body-accent);
}

.cta-offer-secondary-link {
  width: fit-content;
  margin-inline: auto;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: var(--weight-heading-sub);
  text-decoration: underline;
  text-decoration-color: rgba(0, 31, 84, 0.28);
  text-underline-offset: 0.22em;
}

.cta-offer-secondary-link:hover,
.cta-offer-secondary-link:focus-visible {
  color: var(--color-accent);
  text-decoration-color: rgba(32, 40, 206, 0.35);
}

.is-under-construction main > :not(.under-construction-banner) {
  display: none;
}

.under-construction-banner {
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 56px);
  padding-block: clamp(42px, 8vh, 96px);
}

.under-construction-banner__panel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: clamp(26px, 3vw, 42px);
  background:
    radial-gradient(circle at 14% 20%, rgba(118, 196, 255, 0.23) 0%, rgba(118, 196, 255, 0) 58%),
    radial-gradient(circle at 86% 74%, rgba(136, 159, 255, 0.2) 0%, rgba(136, 159, 255, 0) 62%),
    linear-gradient(124deg, #051941 0%, #0b2a75 52%, #1b47ac 100%);
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(0, 31, 84, 0.24);
}

.under-construction-banner__panel::before,
.under-construction-banner__panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.under-construction-banner__panel::before {
  width: min(42vw, 520px);
  height: min(28vh, 230px);
  right: -8%;
  bottom: -6%;
  opacity: 0.28;
  transform: rotate(-9deg);
  background-image: url("../assets/logo-mark-outline.svg");
}

.under-construction-banner__panel::after {
  width: min(24vw, 250px);
  height: min(14vh, 120px);
  left: 5%;
  top: 8%;
  opacity: 0.12;
  filter: brightness(0) invert(1);
  background-image: url("../assets/favicon.svg");
}

.under-construction-banner__panel > * {
  position: relative;
  z-index: 1;
}

.under-construction-banner__kicker {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(198, 255, 230, 0.9);
}

.under-construction-banner h1 {
  margin: 0;
  max-width: 17ch;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.under-construction-banner__text {
  margin-top: 14px;
  max-width: 54ch;
  color: rgba(232, 241, 255, 0.92);
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
}

.under-construction-banner__cta {
  margin-top: 22px;
}

.home-demo-cta {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1100;
  display: inline-flex;
  opacity: 1;
  transform: translateY(0);
  transition: transform 220ms ease, opacity 220ms ease;
}

.home-demo-cta.is-hidden {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.home-demo-cta-button {
  width: auto;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 31, 84, 0.18);
  background: linear-gradient(
    130deg,
    var(--color-primary-01) 0%,
    var(--color-secondary-05) 100%
  );
  color: var(--color-primary-04);
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1;
  font-weight: var(--weight-heading-main);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 18px rgba(0, 31, 84, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.home-demo-cta-button::after {
  content: "";
  width: 18px;
  height: 12px;
  flex: 0 0 auto;
  background-color: var(--color-accent);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 24'%3E%3Cpath d='M0 0L15 12L0 24H7L22 12L7 0H0ZM16 0L31 12L16 24H23L38 12L23 0H16Z' fill='%23000'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 38 24'%3E%3Cpath d='M0 0L15 12L0 24H7L22 12L7 0H0ZM16 0L31 12L16 24H23L38 12L23 0H16Z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  animation: home-demo-cta-arrow 1.1s ease-in-out infinite;
}

.home-demo-cta-button:hover,
.home-demo-cta-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 10px 20px rgba(0, 31, 84, 0.2);
}

@keyframes home-demo-cta-arrow {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

.site-footer {
  padding-block: var(--section-space) 56px;
  border-top: 1px solid var(--color-line);
}

.site-footer .logo-link {
  padding: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--stack-32);
}

.footer-title {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: var(--weight-heading-sub);
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(0, 31, 84, 0.72);
}

.footer-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: var(--color-text);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-accent);
}

.footer-list a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: var(--weight-heading-nav);
  line-height: 1.3;
  color: rgba(0, 31, 84, 0.94);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.footer-note {
  margin-top: 14px;
}

.footer-socials {
  list-style: none;
  padding: 0;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-line-strong);
  color: rgba(0, 31, 84, 0.78);
  background-color: transparent;
  transition: color 0.2s ease, border-color 0.2s ease,
    background-color 0.2s ease, transform 0.2s ease;
}

.site-footer .footer-socials a:hover,
.site-footer .footer-socials a:focus-visible {
  color: var(--color-bg);
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-1px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-legal {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--color-line);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: var(--weight-body-main);
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: rgba(0, 31, 84, 0.58);
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: rgba(0, 31, 84, 0.82);
}

.table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--color-line-strong);
  border-bottom: 1px solid var(--color-line-strong);
}

table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--color-line);
  padding: 14px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: var(--weight-heading-nav);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.schedule-hero {
  padding-bottom: 0;
}

.schedule-hero-media {
  background: #0a1a61;
  height: clamp(220px, 30vh, 320px);
  min-height: 220px;
  max-height: 340px;
}

.schedule-hero .home-hero-media::after {
  background: linear-gradient(180deg, rgba(4, 15, 52, 0.24) 0%, rgba(4, 15, 52, 0.5) 100%);
}

.schedule-hero-copy {
  max-width: 1020px;
}

.home-page .schedule-hero-title {
  max-width: none;
  margin-inline: auto;
  color: #ffffff;
  font-size: clamp(40px, 4.6vw, 64px);
}

.cohort-hero {
  --cohort-city-image: none;
  --cohort-city-position: center center;
}

.brand-gradient-banner--schedule {
  --banner-base: #0a1a61;
  --banner-mid: #1a2f8e;
  --banner-edge: #2f57c1;
  --banner-glow-primary: rgba(148, 203, 255, 0.36);
  --banner-glow-secondary: rgba(108, 146, 255, 0.34);
  --banner-grid-color: rgba(214, 230, 255, 0.26);
  background:
    linear-gradient(130deg, rgba(5, 18, 60, 0.3) 0%, rgba(12, 31, 98, 0.18) 48%, rgba(22, 54, 140, 0.22) 100%),
    var(--cohort-city-image),
    linear-gradient(130deg, var(--banner-base) 0%, var(--banner-mid) 48%, var(--banner-edge) 100%);
  background-position: center, var(--cohort-city-position), center;
  background-repeat: no-repeat;
  background-size: cover, cover, cover;
}

.brand-gradient-banner--schedule::after {
  background-size: 14px 14px;
  opacity: 0.56;
}

.brand-gradient-banner--schedule .brand-gradient-logo-outline-main {
  width: min(58vw, 720px);
  height: min(42vh, 300px);
  right: -16%;
  bottom: -10%;
  opacity: 0.32;
  transform: rotate(-10deg);
}

.brand-gradient-banner--schedule .brand-gradient-logo-outline-side {
  width: min(34vw, 420px);
  height: min(26vh, 190px);
  left: 6%;
  top: -6%;
  opacity: 0.22;
  transform: rotate(14deg);
}

.brand-gradient-banner--schedule .brand-gradient-logo-solid-main {
  width: min(30vw, 300px);
  height: min(24vh, 170px);
  left: 14%;
  bottom: 18%;
  opacity: 0.14;
  transform: rotate(6deg);
}

.brand-gradient-banner--schedule .brand-gradient-logo-solid-accent {
  width: min(22vw, 230px);
  height: min(18vh, 130px);
  right: 28%;
  top: 20%;
  opacity: 0.12;
  transform: rotate(-12deg);
}

.cohort-hero.has-city-banner .home-hero-media::after {
  background: linear-gradient(180deg, rgba(4, 15, 52, 0.16) 0%, rgba(4, 15, 52, 0.58) 100%);
}

.program-draft-page .cohort-hero.has-city-banner .home-hero-media::after {
  background:
    radial-gradient(circle at 78% 62%, rgba(4, 15, 52, 0.42) 0%, rgba(4, 15, 52, 0.24) 26%, rgba(4, 15, 52, 0) 54%),
    linear-gradient(180deg, rgba(4, 15, 52, 0.24) 0%, rgba(4, 15, 52, 0.66) 100%);
}

.program-draft-page .brand-gradient-banner--schedule {
  background:
    var(--cohort-city-image),
    linear-gradient(130deg, var(--banner-base) 0%, var(--banner-mid) 48%, var(--banner-edge) 100%);
  background-position: var(--cohort-city-position), center;
  background-repeat: no-repeat;
  background-size: cover, cover;
}

.program-draft-page .brand-gradient-banner--schedule::before,
.program-draft-page .brand-gradient-banner--schedule::after,
.program-draft-page .brand-gradient-banner--schedule .brand-gradient-logo-outline,
.program-draft-page .brand-gradient-banner--schedule .brand-gradient-logo-solid {
  display: none;
}

.program-draft-page .cohort-hero-grid {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 360px;
}

.program-draft-page .cohort-hero-copy {
  display: none;
}

.program-draft-page .cohort-summary-card {
  width: min(420px, 100%);
  margin-left: auto;
  background: rgba(10, 20, 57, 0.2);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.program-draft-page .cohort-summary-card .button {
  width: 100%;
  margin-top: 24px;
}

.cohort-hero + .section:not(.trust-strip--top) {
  padding-top: clamp(108px, 10vw, 132px);
}

.cohort-hero + .trust-strip--top + .section {
  padding-top: clamp(108px, 10vw, 132px);
}

.cohort-hero ~ .section > .container > h2 {
  margin-bottom: 28px;
}

.schedule-agenda-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(32, 40, 206, 0.07) 0%, rgba(32, 40, 206, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  padding-top: 24px;
}

.schedule-agenda-cta {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  max-width: 1080px;
  margin-inline: auto;
}

.schedule-agenda-main-cta {
  min-height: 46px;
  padding-inline: 28px;
  border-radius: var(--radius-6);
  font-family: var(--font-heading);
  font-weight: var(--weight-heading-nav);
  font-size: 18px;
  line-height: 1;
  box-shadow: none;
}

.agenda-list {
  border-top: 0;
  max-width: 1120px;
  margin-inline: auto;
  padding: 12px;
  border: 1px solid rgba(0, 31, 84, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  box-shadow: 0 22px 52px rgba(0, 31, 84, 0.13);
}

.agenda-list-empty {
  margin: 0;
  padding: 20px 12px;
  color: rgba(0, 31, 84, 0.62);
}

.agenda-item {
  border-bottom: 0;
  margin-bottom: 10px;
}

.agenda-item:last-child {
  margin-bottom: 0;
}

.agenda-list.is-ready .agenda-item {
  animation: schedule-list-row-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--row-index, 0) * 70ms);
}

@keyframes schedule-list-row-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.agenda-row {
  width: 100%;
  border: 1px solid rgba(0, 31, 84, 0.14);
  margin: 0;
  padding: 10px 12px;
  background: #ffffff;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(220px, 1fr) minmax(220px, 250px);
  gap: 12px;
  align-items: center;
  min-height: 66px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 31, 84, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.agenda-row p {
  margin: 0;
}

.agenda-row p + p {
  margin-top: 0;
}

.agenda-item:nth-child(even) .agenda-row {
  background: #f7f9ff;
}

.agenda-row:hover {
  background: #f1f5ff;
  border-color: rgba(32, 40, 206, 0.22);
  box-shadow: 0 14px 30px rgba(0, 31, 84, 0.12);
  transform: translateY(-1px);
}

.agenda-row-city {
  display: grid;
  align-content: center;
  gap: 2px;
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.45vw, 22px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--color-text);
}

.agenda-row-city-main {
  display: block;
}

.agenda-row-city-country {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(0, 31, 84, 0.56);
}

.agenda-row-date {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.45vw, 22px);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--color-text);
  white-space: nowrap;
}

.agenda-row-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  height: 100%;
}

.agenda-row-cta .agenda-row-button {
  width: 100%;
  justify-content: center;
}

.agenda-row-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding-inline: 16px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 18px rgba(0, 31, 84, 0.12);
}

.agenda-row-button::after {
  content: "\2192";
  font-size: 13px;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.agenda-row-button:hover::after {
  transform: translateX(3px);
}

.agenda-row-button.is-register {
  background: #0c2c66;
  border-color: transparent;
  color: #ffffff;
}

.agenda-row-button.is-register:hover {
  background: #091f45;
}

.agenda-row-button.is-availability {
  background: rgba(32, 40, 206, 0.1);
  border-color: rgba(32, 40, 206, 0.4);
  color: #1a33c8;
}

.agenda-row-button.is-availability:hover {
  background: rgba(32, 40, 206, 0.18);
}

.agenda-row-button.is-discuss {
  background: #ffffff;
  border-color: rgba(0, 31, 84, 0.3);
  color: rgba(0, 31, 84, 0.9);
}

.agenda-row-button.is-discuss:hover {
  border-color: rgba(0, 31, 84, 0.5);
  background: rgba(0, 31, 84, 0.04);
}

.agenda-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 31, 84, 0.14);
  background: rgba(0, 31, 84, 0.03);
  font-family: var(--font-heading);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 600;
  color: rgba(0, 31, 84, 0.82);
}

.agenda-pill-format.is-online {
  border-color: rgba(32, 40, 206, 0.24);
  background: rgba(32, 40, 206, 0.08);
  color: rgba(17, 33, 144, 0.95);
}

.agenda-pill-format.is-offline {
  border-color: rgba(0, 31, 84, 0.18);
  background: rgba(0, 31, 84, 0.05);
}

.agenda-pill-status.is-open {
  border-color: rgba(24, 137, 92, 0.25);
  background: rgba(24, 137, 92, 0.08);
  color: #136a48;
}

.agenda-pill-status.is-waitlist {
  border-color: rgba(188, 131, 26, 0.3);
  background: rgba(188, 131, 26, 0.09);
  color: #8f6213;
}

.agenda-pill-status.is-closed {
  border-color: rgba(120, 128, 148, 0.3);
  background: rgba(120, 128, 148, 0.12);
  color: #566173;
}

.agenda-drawer {
  padding-bottom: 18px;
}

.agenda-drawer-inner {
  border: 1px solid rgba(0, 31, 84, 0.1);
  border-radius: 10px;
  background: rgba(0, 31, 84, 0.025);
  padding: 16px 18px;
}

.agenda-drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.agenda-drawer-list li {
  margin: 0;
  color: rgba(0, 31, 84, 0.7);
}

.agenda-drawer-list strong {
  color: var(--color-text);
  font-weight: 600;
}

.agenda-drawer-link {
  display: inline-flex;
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.status-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-line-strong);
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 14px;
}

.form-intro {
  max-width: 72ch;
}

.form-card,
.thank-you {
  border-top: 1px solid var(--color-line-strong);
  border-bottom: 1px solid var(--color-line-strong);
  padding-block: var(--stack-32);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--stack-24);
}

.contact-section {
  padding-top: 68px;
  padding-bottom: 96px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(340px, 0.52fr) minmax(0, 0.98fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}

.contact-info-card {
  position: relative;
  padding: clamp(26px, 2vw, 36px);
  border-radius: 12px;
  background: linear-gradient(156deg, #001f54 0%, #092a76 58%, #1e3f99 100%);
  color: #ffffff;
  overflow: hidden;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 32px rgba(0, 31, 84, 0.2);
}

.contact-info-card::before,
.contact-info-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contact-info-card::before {
  width: 250px;
  height: 250px;
  right: -115px;
  bottom: -88px;
  background: rgba(140, 180, 255, 0.2);
}

.contact-info-card::after {
  width: 150px;
  height: 150px;
  right: 86px;
  bottom: 120px;
  background: rgba(190, 214, 255, 0.2);
}

.contact-info-title {
  margin: 0;
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1.15;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.contact-info-list {
  list-style: none;
  margin: clamp(30px, 3vw, 52px) 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact-info-list a {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.contact-info-list a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.78);
}

.contact-info-note {
  margin-top: auto;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 30ch;
  position: relative;
  z-index: 1;
}

.contact-form-card {
  display: grid;
  gap: 22px;
  align-content: start;
}

.contact-form-grid {
  display: grid;
  gap: 20px;
}

.contact-form-card label {
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.2vw, 26px);
  line-height: 1.16;
  font-weight: var(--weight-heading-nav);
  color: var(--color-text);
}

.contact-form-grid input,
.contact-form-grid textarea {
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-4);
  min-height: 56px;
  padding: 14px 16px;
  background: #ffffff;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.35;
}

.contact-form-grid textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-form-grid input:focus-visible,
.contact-form-grid textarea:focus-visible {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(32, 40, 206, 0.14);
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 12px 18px;
  flex-wrap: wrap;
}

.contact-turnstile {
  min-height: 66px;
}

.contact-submit {
  min-height: 46px;
  padding-inline: 24px;
  border-radius: var(--radius-6);
  border: 1px solid transparent;
  background: var(--color-accent);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: var(--weight-heading-nav);
  line-height: 1;
  letter-spacing: 0;
}

.contact-submit:hover {
  background: var(--color-text);
}

.contact-submit[disabled] {
  cursor: wait;
  opacity: 0.8;
}

.subtle.is-error {
  color: #b42318;
}

.subtle.is-pending {
  color: var(--color-text);
}

.contact-hp {
  position: absolute;
  left: -100vw;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-section .thank-you {
  border: 1px solid rgba(0, 31, 84, 0.14);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 31, 84, 0.06);
  padding: clamp(22px, 2.4vw, 34px);
  display: grid;
  gap: 10px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: var(--weight-body-accent);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-line-strong);
  border-radius: var(--radius-4);
  background: #fff;
  color: var(--color-text);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.hidden {
  display: none !important;
}

.simple-list {
  display: grid;
  gap: 12px;
}

.content-block {
  margin-bottom: var(--stack-40);
}

.content-block > h2,
.content-block > h3 {
  margin-bottom: 12px;
}

.en-banner {
  border-top: 1px solid var(--color-line-strong);
  border-bottom: 1px solid var(--color-line-strong);
  background: #fff;
}

.en-banner p {
  padding-block: 12px;
  font-size: 13px;
  font-weight: var(--weight-body-accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  :root {
    --container-pad: 24px;
    --section-space: 72px;
  }

  .home-shell {
    padding-inline: 48px;
  }

  .home-header-inner {
    min-height: 78px;
  }

  .home-page .home-header .home-logo-link {
    min-height: 56px;
    padding: 7px 0;
  }

  .home-page .home-header .home-logo-link img {
    height: 56px;
  }

  .home-page .home-nav {
    top: 100%;
    left: 0;
    right: 0;
    border-bottom: 0;
  }

  .home-nav .nav-link {
    font-size: 17px;
  }

  .home-cta {
    font-size: 17px;
  }

  .locale-switch {
    min-height: 38px;
    padding-inline: 9px;
  }

  .locale-switch__link {
    font-size: 12px;
  }

  .home-page .home-hero-media {
    height: 36vh;
    min-height: 320px;
    max-height: 430px;
  }

  .home-page .home-hero-title {
    font-size: 42px;
  }

  .home-page .home-hero-brand {
    font-size: 58px;
    margin-bottom: 12px;
  }

  .home-page .home-hero-copy {
    max-width: 920px;
    padding: 20px 24px;
  }

  .brand-gradient-logo-outline-main {
    width: min(64vw, 560px);
    height: min(34vh, 220px);
    right: -12%;
  }

  .brand-gradient-logo-outline-side {
    width: min(50vw, 430px);
    height: min(26vh, 180px);
    left: -10%;
  }

  .brand-gradient-logo-solid-main {
    width: min(40vw, 300px);
    height: min(20vh, 140px);
    left: 4%;
  }

  .contact-section {
    padding-top: 56px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-info-card {
    min-height: 0;
    padding: 26px 24px;
  }

  .contact-info-note {
    margin-top: 26px;
  }

  .contact-form-card label {
    font-size: clamp(18px, 2.3vw, 22px);
  }

  .contact-form-grid input,
  .contact-form-grid textarea {
    font-size: 17px;
  }

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

  .why-section::before {
    right: -220px;
    bottom: -220px;
    opacity: 0.4;
  }

  .moments-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .programs-teaser-table th,
  .programs-teaser-table td {
    padding-inline: 18px;
  }

  .programs-teaser-table tbody tr {
    height: auto;
    min-height: 92px;
  }

  .programs-teaser-table th:nth-child(1) {
    width: 29%;
  }

  .programs-teaser-table th:nth-child(2) {
    width: 31%;
  }

  .programs-teaser-table th:nth-child(3) {
    width: 16%;
  }

  .programs-teaser-table th:nth-child(4) {
    width: 24%;
  }

  .programs-location-city,
  .programs-date-value {
    font-size: clamp(18px, 2vw, 22px);
  }

  .programs-date-value {
    white-space: normal;
  }

  .programs-teaser-cta-cell .agenda-row-button {
    min-height: 42px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .agenda-row {
    grid-template-columns: minmax(140px, 1fr) minmax(180px, 1fr) minmax(190px, 220px);
    gap: 12px;
  }

  .agenda-row-city {
    font-size: clamp(19px, 2.2vw, 22px);
    min-height: 42px;
  }

  .agenda-row-date {
    font-size: clamp(19px, 2.2vw, 22px);
    min-height: 42px;
  }

  .testimonials-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonials-intro {
    gap: 16px;
  }

  .testimonials-intro h2 {
    max-width: 15ch;
    font-size: clamp(36px, 4.8vw, 52px);
  }

  .testimonials-slider {
    border-left: 0;
    border-top: 1px solid rgba(0, 31, 84, 0.2);
    padding-top: 26px;
    padding-left: 0;
    padding-right: 220px;
  }

  .testimonials-slider::after {
    top: 30px;
    width: 182px;
    height: 182px;
  }

  .moments-slide {
    flex-basis: calc((100% - 10px) / 2);
  }

  .moments-slide img {
    height: clamp(300px, 54vw, 480px);
  }

  .trust-section {
    padding-top: 52px;
    padding-bottom: 26px;
  }

  h1 {
    font-size: 44px;
  }

  .main-nav {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    left: 0;
    right: 0;
    display: none;
    padding: 16px var(--container-pad) 20px;
    border-bottom: 1px solid var(--color-line);
    background: #fff;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .main-nav.open {
    display: block;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 32px;
  }

  .hero-media {
    height: 38vh;
    min-height: 320px;
  }

  .facts-grid,
  .selection-grid,
  .quote-grid,
  .cohort-hero-grid {
    grid-template-columns: 1fr;
  }

  .program-draft-page .cohort-hero .home-hero-media {
    min-height: 500px;
  }

  .program-draft-page .cohort-hero-content {
    padding-block: 36px 48px;
  }

  .program-draft-page .cohort-hero-grid {
    min-height: 300px;
  }

  .program-draft-page .cohort-summary-card {
    width: min(520px, 100%);
    padding: 22px;
    border-radius: 14px;
    background: rgba(10, 20, 57, 0.18);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .program-draft-page .cohort-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }

  .program-draft-page .cohort-facts div {
    padding-top: 12px;
  }

  .program-draft-page .cohort-facts div:last-child {
    grid-column: 1 / -1;
  }

  .program-draft-page .cohort-facts dd {
    font-size: 20px;
  }

  .program-draft-page .cohort-note {
    margin-top: 16px;
  }

  .program-draft-page .cohort-summary-card .button {
    margin-top: 18px;
  }

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

  .hero-content {
    padding-bottom: 32px;
  }

  .hero h1 {
    max-width: 30ch;
  }

  .hero-break {
    display: none;
  }

  .capability-grid,
  .role-grid,
  .steps,
  .formats-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .program-card-grid,
  .outcome-grid,
  .quote-grid,
  .facts-grid,
  .selection-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    justify-content: flex-end;
  }

  .locale-switch {
    min-height: 36px;
    padding-inline: 8px;
    gap: 7px;
  }

  .locale-switch__link {
    font-size: 11px;
  }

  .capability-intro {
    margin-bottom: 24px;
  }

  .capability-media img {
    min-height: 340px;
    max-height: 440px;
  }

  .capability-panel {
    padding: 24px 20px;
  }

  .capability-compare-head {
    gap: 10px;
  }

  .capability-compare-pill {
    font-size: 11px;
  }

  .capability-list {
    gap: 12px;
  }

  .capability-list li {
    font-size: 14px;
  }

  .cta-offer-layout {
    grid-template-columns: 1fr;
    padding: clamp(22px, 3vw, 34px) 0;
  }

  .home-demo-cta {
    left: 14px;
    bottom: 14px;
  }

  .cta-offer-main h2 {
    max-width: 20ch;
  }

  .cta-offer-card {
    max-width: 620px;
  }

  .under-construction-banner {
    min-height: calc(100vh - var(--header-height) - 40px);
  }

  .under-construction-banner h1 {
    max-width: 20ch;
  }
}

@media (max-width: 1023px) {
  .home-demo-cta {
    display: none !important;
  }

  .challenges-section {
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .challenges-layout {
    margin-top: 48px;
    grid-template-columns: 1fr;
    row-gap: 0;
    column-gap: 0;
  }

  .challenges-layout .challenge-panel {
    padding: 0;
  }

  .challenges-layout .challenge-panel + .challenge-panel {
    border-left: 0;
    border-top: 1px solid rgba(0, 31, 84, 0.1);
    margin-top: 32px;
    padding-top: 32px;
  }

  .mission-founder-card {
    display: none;
  }

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

  .story-card {
    padding: 24px;
  }

  .story-card-title-soft {
    font-size: clamp(26px, 5.8vw, 36px);
    line-height: 1.08;
  }

  .story-card h3 {
    font-size: clamp(24px, 4.6vw, 30px);
    line-height: 1.14;
  }

  .about-footprint-map-panel {
    display: none;
  }

  .about-footprint-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-footprint-formats {
    gap: 8px;
  }

  .about-format-block {
    padding-top: 0;
  }

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

  .partners-academic-grid,
  .partners-announcement-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-logo-layout,
  .partners-benefits-layout {
    grid-template-columns: 1fr;
  }

  .partners-logo-copy h2,
  .partners-benefits-copy h2 {
    max-width: 16ch;
  }

  .partners-tier-grid,
  .partners-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-criteria-grid .selection-card {
    min-height: 0;
    align-content: start;
    gap: 18px;
  }
}

@media (max-width: 767px) {
  :root {
    --container-pad: 16px;
    --section-space: 56px;
  }

  .role-title {
    font-size: 18px;
  }

  .challenges-qualifier {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 100%;
  }

  .challenges-qualifier::before {
    content: none;
  }

  .home-shell {
    padding-inline: 24px;
  }

  .home-header-inner {
    min-height: 72px;
  }

  .home-page .home-header .home-logo-link {
    min-height: 48px;
    padding: 6px 0;
  }

  .home-page .home-header .home-logo-link img {
    height: 48px;
  }

  .home-cta {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 16px;
  }

  .locale-switch {
    min-height: 34px;
    padding-inline: 7px;
    gap: 6px;
  }

  .locale-switch__link {
    font-size: 10px;
  }

  .locale-switch__sep {
    font-size: 10px;
  }

  .home-page .home-hero-media {
    height: 30vh;
    min-height: 240px;
    max-height: 320px;
  }

  .cohort-hero .home-hero-media {
    min-height: 460px;
    max-height: none;
    height: auto;
  }

  .cohort-hero-content {
    padding-block: 44px 60px;
  }

  .program-draft-page .cohort-hero .home-hero-media {
    min-height: 460px;
  }

  .program-draft-page .cohort-hero-content {
    padding-block: 28px 36px;
  }

  .program-draft-page .cohort-hero-grid {
    min-height: 240px;
  }

  .program-draft-page .cohort-summary-card {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    background: rgba(10, 20, 57, 0.16);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }

  .program-draft-page .cohort-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .program-draft-page .cohort-facts dt {
    font-size: 11px;
  }

  .program-draft-page .cohort-facts dd {
    font-size: 18px;
  }

  .program-draft-page .cohort-note {
    font-size: 14px;
    line-height: 1.5;
  }

  .program-draft-page .cohort-summary-card .button {
    margin-top: 16px;
  }

  .cohort-summary-card,
  .program-card,
  .selection-card,
  .quote-card,
  .outcome-card,
  .fact-card {
    padding: 20px;
  }

  .home-page .home-hero-title {
    font-size: 30px;
    max-width: 100%;
  }

  .home-page .home-hero-brand {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .home-page .home-hero-copy {
    max-width: 100%;
    padding: 16px 18px;
  }

  .brand-gradient-banner::after {
    background-size: 14px 14px;
    opacity: 0.55;
  }

  .brand-gradient-logo-outline-main {
    width: min(92vw, 420px);
    height: min(24vh, 150px);
    right: -16%;
    bottom: 0;
  }

  .brand-gradient-logo-outline-side {
    width: min(72vw, 330px);
    height: min(19vh, 120px);
    left: -24%;
    top: 14%;
    opacity: 0.22;
  }

  .brand-gradient-logo-solid-main {
    width: min(60vw, 210px);
    height: min(16vh, 90px);
    left: 8%;
    bottom: 10%;
    opacity: 0.14;
  }

  .brand-gradient-logo-solid-accent {
    width: min(42vw, 140px);
    height: min(13vh, 70px);
    right: 20%;
    top: 18%;
    opacity: 0.08;
  }

  .contact-section {
    padding-top: 40px;
    padding-bottom: 72px;
  }

  .contact-info-card {
    padding: 22px 18px;
    border-radius: 10px;
  }

  .contact-info-card::before {
    width: 170px;
    height: 170px;
    right: -88px;
    bottom: -72px;
  }

  .contact-info-card::after {
    width: 108px;
    height: 108px;
    right: 58px;
    bottom: 74px;
  }

  .contact-info-title {
    font-size: 24px;
  }

  .contact-info-list {
    margin-top: 22px;
    gap: 12px;
  }

  .contact-info-list a {
    font-size: 18px;
  }

  .contact-info-note {
    margin-top: 20px;
    font-size: 15px;
  }

  .contact-form-grid {
    gap: 14px;
  }

  .contact-form-card label {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .contact-form-grid input,
  .contact-form-grid textarea {
    min-height: 54px;
    padding: 11px 12px;
    font-size: 16px;
  }

  .contact-form-grid textarea {
    min-height: 130px;
  }

  .contact-submit {
    min-height: 50px;
    padding-inline: 28px;
    font-size: 16px;
  }

  .capability-intro {
    margin-bottom: 20px;
  }

  .capability-media img {
    min-height: 260px;
    max-height: 340px;
  }

  .capability-panel {
    padding: 20px 16px;
  }

  .capability-compare-pill {
    font-size: 11px;
  }

  .capability-compare-head {
    display: none;
  }

  .capability-compare-panel {
    display: none;
    animation: none;
  }

  .capability-compare-panel[data-skill-panel="after"] {
    display: block;
  }

  .why-section {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .programs-teaser-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .programs-teaser-head {
    gap: 10px;
    margin-bottom: 18px;
  }

  .programs-teaser-lead {
    font-size: 15px;
  }

  .about-history-lead {
    max-width: 100%;
  }

  .programs-teaser-program {
    font-size: 17px;
  }

  .programs-teaser-description {
    font-size: 15px;
  }

  .programs-teaser-table-wrap {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .programs-teaser-table {
    min-width: 0;
  }

  .programs-teaser-table thead {
    display: none;
  }

  .programs-teaser-table tbody {
    display: grid;
    gap: 10px;
  }

  .programs-teaser-table tbody tr {
    display: grid;
    gap: 10px;
    padding: 12px;
    height: auto;
    min-height: 0;
    border: 1px solid rgba(0, 31, 84, 0.12);
    border-radius: 10px;
    background: #ffffff;
  }

  .programs-teaser-table tbody td {
    display: grid;
    gap: 4px;
    padding: 0;
    border: 0;
  }

  .programs-teaser-table tbody td::before {
    content: attr(data-label);
    font-family: var(--font-heading);
    font-size: 11px;
    line-height: 1.2;
    font-weight: var(--weight-heading-sub);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(0, 31, 84, 0.5);
  }

  .programs-location-city {
    font-size: clamp(20px, 5vw, 22px);
  }

  .programs-location {
    grid-template-columns: 1fr;
    align-items: start;
    row-gap: 4px;
  }

  .programs-place-meta {
    justify-self: start;
  }

  .programs-date-value {
    display: inline-flex;
    width: fit-content;
    font-size: clamp(20px, 5vw, 22px);
    white-space: nowrap;
  }

  .programs-price-value {
    font-size: 15px;
  }

  .schedule-hero-media {
    height: 24vh;
    min-height: 170px;
    max-height: 220px;
  }

  .schedule-agenda-section {
    padding-top: 26px;
  }

  .agenda-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 14px;
  }

  .agenda-row-city {
    font-size: clamp(19px, 5vw, 21px);
    min-height: 0;
  }

  .agenda-row-date {
    font-size: clamp(19px, 5vw, 21px);
    min-height: 0;
    white-space: nowrap;
  }

  .agenda-row-cta {
    justify-content: flex-start;
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }

  .agenda-row-button {
    width: 100%;
    justify-content: center;
  }

  .programs-teaser-cta-cell {
    padding-left: 0;
    border-left: 0;
  }

  .programs-teaser-cta-cell::before {
    display: none;
  }

  .programs-teaser-cta-cell .agenda-row-button {
    width: 100%;
    justify-content: center;
  }

  .schedule-agenda-main-cta {
    min-height: 44px;
    font-size: 17px;
    padding-inline: 26px;
  }

  .agenda-drawer {
    padding-bottom: 14px;
  }

  .agenda-drawer-inner {
    padding: 14px;
  }

  .testimonials-section {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .testimonials-intro h2 {
    font-size: clamp(34px, 9vw, 46px);
    max-width: 100%;
  }

  .testimonials-cta {
    min-height: 44px;
    padding-inline: 20px;
    font-size: 16px;
  }

  .testimonials-slider {
    padding-top: 22px;
    padding-right: 0;
  }

  .testimonials-slider::after {
    display: none;
  }

  .testimonials-surface {
    min-height: 0;
  }

  .testimonial-mark {
    margin-bottom: 8px;
    font-size: 44px;
  }

  .testimonial-quote {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 1.5;
  }

  .testimonial-author {
    margin-bottom: 4px;
    font-size: 20px;
  }

  .testimonial-position {
    font-size: 15px;
  }

  .why-title {
    margin-bottom: 28px;
  }

  .why-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-stat-card {
    padding: 20px 16px 22px;
  }

  .why-section::before {
    right: -280px;
    bottom: -240px;
    width: 620px;
    height: 360px;
    opacity: 0.3;
  }

  .why-section::after {
    top: -140px;
    left: -140px;
    width: 240px;
    height: 240px;
  }

  .moments-section {
    padding-top: 24px;
    padding-bottom: 44px;
  }

  .moments-track {
    gap: 8px;
  }

  .moments-slide {
    flex-basis: 100%;
  }

  .moments-slide img {
    height: 360px;
  }

  .moments-nav {
    width: 40px;
    height: 48px;
    font-size: 24px;
  }

  .moments-nav-prev {
    left: 4px;
  }

  .moments-nav-next {
    right: 4px;
  }

  .trust-section {
    padding-top: 48px;
    padding-bottom: 24px;
  }

  .trust-section .marquee {
    margin-top: 16px;
  }

  .marquee::before,
  .marquee::after {
    width: 56px;
  }

  .marquee-track {
    gap: 24px;
    animation-duration: 32s;
  }

  .logo-tile img {
    height: 40px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .site-header .logo-link {
    margin-left: 0;
    padding: 12px 8px;
  }

  .header-inner {
    gap: 12px;
  }

  .header-cta {
    padding-inline: 14px;
    font-size: 15px;
  }

  .hero {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 32px;
  }

  .hero-media {
    height: 32vh;
    min-height: 250px;
  }

  .hero-content {
    padding-bottom: 24px;
  }

  .capability-section {
    padding-top: 32px;
  }

  .cta-wide {
    padding-block: 48px;
  }

  .cta-wide p {
    font-size: 26px;
  }

  .cta-offer-section {
    padding-top: 16px;
    padding-bottom: 0;
  }

  .cta-offer-layout {
    border-radius: 0;
    padding: 18px 0;
    gap: 16px;
  }

  .cta-offer-section::before {
    width: 220px;
    height: 118px;
    right: -38px;
    bottom: -24px;
    opacity: 0.22;
  }

  .cta-offer-section::after {
    width: 110px;
    height: 60px;
    left: 18px;
    top: 18px;
    opacity: 0.09;
  }

  .cta-offer-kicker {
    font-size: 13px;
  }

  .cta-offer-main h2 {
    font-size: clamp(30px, 9vw, 40px);
    max-width: 100%;
  }

  .cta-offer-lead {
    font-size: 16px;
  }

  .cta-offer-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-offer-stat {
    padding-right: 0;
  }

  .cta-offer-stat + .cta-offer-stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding-left: 0;
    padding-top: 12px;
  }

  .cta-offer-link {
    font-size: 17px;
  }

  .cta-offer-card {
    padding: 14px;
    border-radius: 10px;
    gap: 14px;
  }

  .cta-offer-meta-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-block: 10px;
  }

  .cta-offer-meta-row dd {
    justify-self: start;
    text-align: left;
    font-size: 24px;
  }

  .cta-offer-meta-row dt {
    font-size: 16px;
  }

  .cta-offer-cta {
    min-height: 48px;
    font-size: 21px;
  }

  .cta-offer-secondary-link {
    font-size: 14px;
  }

  .under-construction-banner {
    min-height: calc(100vh - var(--header-height) - 20px);
    padding-block: 24px 34px;
  }

  .under-construction-banner__panel {
    border-radius: 12px;
    padding: 20px 18px 22px;
  }

  .under-construction-banner h1 {
    font-size: clamp(30px, 9vw, 40px);
    max-width: 100%;
  }

  .under-construction-banner__text {
    margin-top: 10px;
    font-size: 16px;
  }

  .under-construction-banner__cta {
    margin-top: 16px;
  }

  .partners-model-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .partners-logo-grid,
  .partners-tier-grid,
  .partners-process-grid,
  .partners-academic-grid,
  .partners-announcement-grid,
  .partners-case-stats {
    grid-template-columns: 1fr;
  }

  .partners-logo-card--accent {
    grid-column: auto;
  }

  .partners-logo-copy h2,
  .partners-benefits-copy h2,
  .partners-process-head h2 {
    max-width: 100%;
  }

  .partners-tier-card,
  .partners-process-step,
  .partners-academic-card,
  .partners-announcement-card {
    min-height: 0;
  }

  .partners-model-step {
    min-height: 0;
    padding: 22px;
    border-radius: 16px;
  }

  .partners-model-step span {
    margin-bottom: 28px;
  }

  .formats-grid--two {
    max-width: none;
  }

  .table-wrap {
    margin-inline: -16px;
  }
}

@media (max-width: 480px) {
  h2,
  .moments-head h2 {
    font-size: 29px;
    line-height: 1.22;
    max-width: 100%;
  }

  main h2 {
    margin-bottom: 24px;
    max-width: 100%;
  }

  .why-title,
  .capability-intro h2,
  .challenges-section h2,
  .moments-head h2 {
    margin-bottom: 24px;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  h2,
  .moments-head h2 {
    font-size: 36px;
    line-height: 1.18;
  }
}

@media (min-width: 1440px) {
  h2,
  .moments-head h2 {
    font-size: 48px;
    line-height: 1.13;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .home-page .home-hero-media {
    height: 36vh;
    min-height: 320px;
    max-height: 430px;
  }

  .trust-section {
    padding-top: 52px;
    padding-bottom: 26px;
  }
}

@media (max-width: 1100px) {
  .simulation-variants-head {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "note";
    row-gap: 14px;
  }

  .simulation-flow-layout,
  .simulation-editorial-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .simulation-flow-intro h3,
  .simulation-editorial-copy h3 {
    max-width: 16ch;
    font-size: clamp(28px, 4.5vw, 42px);
  }

  .simulation-cycle-layout {
    min-height: 0;
    padding: 0;
  }

  .simulation-cycle-layout::before,
  .simulation-cycle-layout::after,
  .simulation-cycle-center {
    display: none;
  }

  .simulation-cycle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "step1 step2"
      "step4 step3";
    gap: 20px;
  }

  .program-benefits-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .program-benefits-copy {
    max-width: min(100%, 760px);
    align-self: start;
    min-height: 0;
    grid-template-rows: auto;
    gap: 18px;
    padding-top: 0;
  }

  .program-benefits-intro h2 {
    max-width: 12ch;
    font-size: clamp(34px, 6vw, 52px);
  }

  .program-benefits-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
  }

  .program-benefit-item h3 {
    font-size: clamp(26px, 4vw, 38px);
    max-width: 100%;
  }

  .program-benefit-item p {
    max-width: 100%;
  }

  .program-benefits-media {
    max-width: 760px;
  }

  .program-benefits-media::before {
    content: none;
  }

  .program-benefits-collage {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    padding: 20px 20px 20px 24px;
  }

  .program-benefits-shot {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .program-benefits-shot--main {
    grid-column: 2;
    grid-row: 1 / span 2;
    aspect-ratio: 0.82;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .program-benefits-shot--room {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 0.95;
    margin-top: 10px;
  }

  .program-benefits-shot--cert {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 0.95;
    margin-left: 16px;
  }

  .program-certificate-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .program-certificate-copy h2 {
    max-width: 12ch;
    font-size: clamp(34px, 6vw, 52px);
  }

  .program-certificate-photo {
    max-width: 640px;
    aspect-ratio: 1.2;
  }

  .program-audience-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
  }

  .program-audience-media {
    max-width: 360px;
  }

  .program-audience-content {
    width: 100%;
    max-width: 760px;
  }

  .program-audience-intro {
    max-width: min(100%, 760px);
  }

  .program-audience-intro h2 {
    max-width: 12ch;
    font-size: clamp(32px, 4.6vw, 46px);
  }

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

  .program-audience-item {
    min-height: 0;
    padding: 22px 24px 24px;
  }

  .program-audience-item h3 {
    max-width: 100%;
    font-size: clamp(24px, 3.4vw, 32px);
  }

  .program-faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .program-faq-intro {
    width: min(100%, 760px);
    max-width: none;
  }

  .program-faq-intro h2 {
    max-width: 13ch;
    font-size: clamp(34px, 6vw, 56px);
  }

  .program-faq-section .faq-question {
    font-size: 24px;
  }

  .program-request-shell {
    gap: 0;
  }

  .program-request-overview-main {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .program-request-title {
    max-width: 12ch;
  }

  .program-request-side {
    padding: 18px;
  }

  .cohort-request .container {
    padding-inline: var(--container-pad);
  }
}

@media (max-width: 767px) {
  .simulation-variants-head {
    row-gap: 14px;
    margin-bottom: 30px;
  }

  .simulation-variants-head h2 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.06;
  }

  .simulation-variants-head h2 br {
    display: none;
  }

  .simulation-variants-note {
    font-size: 16px;
  }

  .simulation-variant {
    gap: 20px;
    padding: 20px 18px;
    border-radius: 24px;
  }

  .simulation-variant + .simulation-variant {
    margin-top: 20px;
  }

  .simulation-flow-intro h3,
  .simulation-editorial-copy h3 {
    max-width: 100%;
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.08;
  }

  .simulation-flow-intro p,
  .simulation-editorial-copy p,
  .simulation-flow-card p,
  .simulation-cycle-step p,
  .simulation-editorial-card p {
    max-width: 100%;
    font-size: 16px;
  }

  .simulation-flow-grid,
  .simulation-cycle-grid,
  .simulation-editorial-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .simulation-flow-card,
  .simulation-editorial-card {
    min-height: 0;
    padding: 20px 18px;
    border-radius: 20px;
  }

  .simulation-flow-card::after {
    display: none;
  }

  .simulation-flow-card h4,
  .simulation-cycle-step h4,
  .simulation-editorial-card h4 {
    font-size: 22px;
    line-height: 1.12;
  }

  .simulation-cycle-step {
    align-content: start;
    gap: 10px;
    padding: 18px 18px 20px;
    min-height: 0;
    border: 1px solid rgba(0, 31, 84, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
  }

  .program-benefits-copy {
    gap: 18px;
  }

  .program-benefits-copy h2 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.1;
  }

  .program-benefits-lead {
    max-width: 100%;
    font-size: 16px;
  }

  .program-benefits-items {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .program-benefit-item h3 {
    font-size: 22px;
    line-height: 1.16;
  }

  .program-benefit-item p {
    max-width: 100%;
    font-size: 16px;
  }

  .program-benefits-media::before {
    content: none;
  }

  .program-benefits-collage {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 26px;
  }

  .program-benefits-collage::after {
    content: none;
  }

  .program-benefits-shot {
    border-radius: 18px;
  }

  .program-benefits-shot--main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 1.08;
    margin: 0;
  }

  .program-benefits-shot--room,
  .program-benefits-shot--cert {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1;
    margin: 0;
  }

  .program-certificate-copy {
    gap: 18px;
  }

  .program-certificate-copy h2 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.1;
  }

  .program-certificate-lead,
  .program-certificate-notes p {
    max-width: 100%;
    font-size: 16px;
  }

  .program-certificate-photo {
    aspect-ratio: 1.08;
  }

  .program-certificate-photo-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 15px;
  }

  .program-audience-layout {
    gap: 24px;
  }

  .program-audience-media {
    max-width: 280px;
    border-radius: 24px;
  }

  .program-audience-intro {
    gap: 16px;
    padding-top: 0;
  }

  .program-audience-kicker {
    font-size: 12px;
  }

  .program-audience-intro h2 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.05;
  }

  .program-audience-note,
  .program-audience-item p {
    max-width: 100%;
    font-size: 16px;
  }

  .program-audience-item {
    gap: 8px;
    padding: 18px 18px 20px;
    border-radius: 22px;
  }

  .program-audience-label {
    font-size: 12px;
  }

  .program-audience-item h3 {
    font-size: 21px;
    line-height: 1.14;
  }

  .program-faq-intro {
    width: 100%;
  }

  .program-faq-intro h2 {
    max-width: 100%;
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.1;
  }

  .program-faq-section .faq-question {
    padding: 22px 0;
    font-size: 20px;
    line-height: 1.3;
  }

  .program-faq-section .faq-question::after {
    width: 12px;
    height: 12px;
    border-right-width: 2px;
    border-bottom-width: 2px;
  }

  .program-faq-section .faq-answer {
    padding: 0 0 22px;
  }

  .program-faq-section .faq-answer p {
    font-size: 16px;
  }

  .program-faq-note {
    max-width: 100%;
    font-size: 16px;
  }

  .program-request-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .program-request-facts div {
    min-width: 0;
  }

  .program-request-shell {
    gap: 0;
  }

  .program-request-title {
    max-width: 11ch;
    font-size: clamp(24px, 8vw, 32px);
  }

  .program-request-lead {
    font-size: 15px;
  }

  .program-request-side {
    padding: 16px;
  }

  .program-request-cta {
    width: 100%;
    justify-content: center;
  }

  .cohort-request .container {
    padding-inline: var(--container-pad);
  }
}

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

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

  .marquee-track {
    animation: none !important;
    width: auto;
    flex-wrap: wrap;
    transform: none !important;
  }

  .cta-loop-track {
    animation: none !important;
    width: auto;
    flex-wrap: wrap;
  }

  .moments-track {
    scroll-behavior: auto;
  }
}

/* ============================================================
   Home page sections (Hero D / Stats v3 / Programs v3 / Corporate v3)
   + shared footer-legal styling. Was home-v3.css.
   ============================================================ */
/* ─────────────────────────────────────────────────────────────────────
   Home v3 — sections lifted from new design and bolted onto the legacy
   home page. Tokens come from tokens.css (--c-*, --h*-size, --r-*, etc.).
   ───────────────────────────────────────────────────────────────────── */

/* Old main hero hidden — Hero D promoted to primary (restorable).
   Scoped via :has() so the rule only fires on the home page where Hero D follows
   right after .home-hero. Other pages (schedule, contact, etc.) that happen to
   reuse .home-hero alongside their own modifier (.schedule-hero) keep their hero. */
.home-page .home-hero:has(+ .home-hero-d-section) { display: none; }

/* ── Hero D — text + video, primary hero ────────────────────────────── */
.home-hero-d-section { padding: 24px 0 0; }
@media (min-width: 769px) { .home-hero-d-section { padding: var(--section-pad-sm) 0 0; } }

.home-hero-d-kicker {
  font-family: var(--font-heading);
  font-size: var(--kicker-size); font-weight: var(--weight-heading-sub);
  letter-spacing: var(--kicker-ls); text-transform: uppercase;
  color: var(--c-blue);
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0;
}
.home-hero-d-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-blue); display: inline-block;
}
.home-hero-d-title {
  font-family: var(--font-heading);
  font-size: 44px; font-weight: var(--weight-heading-main);
  letter-spacing: var(--h1-ls); line-height: var(--h1-lh);
  margin: 0; color: var(--c-navy);
  text-wrap: pretty; max-width: 1080px;
}
@media (min-width: 769px) { .home-hero-d-title { font-size: var(--h1-size); } }

.home-hero-d-video-wrap { padding-top: 20px; padding-bottom: 20px; }
@media (min-width: 769px) { .home-hero-d-video-wrap { padding-top: 24px; padding-bottom: 24px; } }
.home-hero-d-media {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 4/5; background: var(--c-navy);
}
@media (min-width: 769px) { .home-hero-d-media { aspect-ratio: 16/7; } }
.home-hero-d-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.home-hero-d-badge {
  position: absolute; left: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: rgba(0,31,84,0.55);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-heading);
  font-size: var(--kicker-size); font-weight: var(--weight-heading-sub);
  letter-spacing: 1.4px; text-transform: uppercase;
  color: #fff;
}
@media (min-width: 769px) { .home-hero-d-badge { left: 24px; bottom: 24px; } }
.home-hero-d-badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--c-sky);
}

/* ── Trust / logos section — cream bg ───────────────────────────────── */
.home-page .trust-section {
  background: var(--c-cream);
  border-top: 1px solid rgba(0,31,84,0.06);
  border-bottom: 1px solid rgba(0,31,84,0.06);
}
.home-page .trust-section .marquee::before {
  background: linear-gradient(to right, var(--c-cream) 0%, rgba(241,250,251,0) 100%);
}
.home-page .trust-section .marquee::after {
  background: linear-gradient(to left, var(--c-cream) 0%, rgba(241,250,251,0) 100%);
}

/* ── Stats v3 ───────────────────────────────────────────────────────── */
.home-stats-v3-section {
  background: var(--c-cream);
  padding: var(--section-pad-sm) 0;
}
@media (min-width: 769px) {
  .home-stats-v3-section { padding: var(--section-pad-lg) 0; }
}
.home-stats-v3-head { margin-bottom: 36px; text-align: left; }
@media (min-width: 769px) { .home-stats-v3-head { margin-bottom: 44px; } }

.home-stats-v3-kicker {
  font-family: var(--font-heading);
  font-size: var(--kicker-size); font-weight: var(--weight-heading-sub);
  letter-spacing: var(--kicker-ls); text-transform: uppercase;
  color: var(--c-blue);
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0;
}
.home-stats-v3-kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-blue); display: inline-block;
}
.home-stats-v3-title {
  font-family: var(--font-heading);
  font-size: 36px; font-weight: var(--weight-heading-main);
  letter-spacing: var(--h2-ls); line-height: var(--h2-lh);
  margin: 14px 0 0; color: var(--c-navy);
  max-width: 880px; text-wrap: pretty;
}
@media (min-width: 769px) { .home-stats-v3-title { font-size: var(--h2-size); } }
.home-stats-v3-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
@media (min-width: 769px) {
  .home-stats-v3-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
.home-stats-v3-card {
  padding: 22px; border-radius: var(--r-md);
  background: #fff; color: var(--c-navy);
  border: 1px solid rgba(0,31,84,0.1);
  min-height: 130px;
  display: flex; flex-direction: column; justify-content: space-between;
}
@media (min-width: 769px) {
  .home-stats-v3-card { padding: 32px; min-height: 180px; }
}
.home-stats-v3-card--inverted {
  background: var(--c-navy); color: #fff; border: 0;
}
.home-stats-v3-value {
  font-family: var(--font-heading);
  font-size: 46px; font-weight: var(--weight-heading-main);
  letter-spacing: -1px; line-height: 1;
  color: var(--c-blue);
}
@media (min-width: 769px) { .home-stats-v3-value { font-size: 56px; } }
.home-stats-v3-card--inverted .home-stats-v3-value { color: var(--c-sky); }
.home-stats-v3-label {
  font-size: 14px; line-height: 1.5; margin-top: 16px;
  color: rgba(0,31,84,0.72);
}
@media (min-width: 769px) { .home-stats-v3-label { font-size: 18px; } }
.home-stats-v3-card--inverted .home-stats-v3-label { color: rgba(255,255,255,0.82); }

/* ── Programs v3 — navy bg + W-mark ─────────────────────────────────── */
.home-programs-v3-section {
  background: var(--c-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: var(--section-pad-sm) 0;
}
@media (min-width: 769px) {
  .home-programs-v3-section { padding: var(--section-pad-lg) 0; }
}
.home-programs-v3-section .container { position: relative; z-index: 1; }
.home-programs-v3-wmark {
  position: absolute;
  top: -8%; right: -6%;
  width: 320px; height: auto;
  pointer-events: none;
}
@media (min-width: 769px) {
  .home-programs-v3-wmark { width: 460px; }
}
.home-programs-v3-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 32px; flex-wrap: wrap; gap: 12px;
}
.home-programs-v3-kicker {
  font-family: var(--font-heading);
  font-size: var(--kicker-size); font-weight: var(--weight-heading-sub);
  letter-spacing: var(--kicker-ls); text-transform: uppercase;
  color: var(--c-sky);
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0;
}
.home-programs-v3-kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-sky); display: inline-block;
}
.home-programs-v3-title {
  font-family: var(--font-heading);
  font-size: 36px; font-weight: var(--weight-heading-main);
  letter-spacing: var(--h2-ls); line-height: var(--h2-lh);
  margin: 12px 0 0; color: #fff;
}
@media (min-width: 769px) { .home-programs-v3-title { font-size: var(--h2-size); } }
.home-programs-v3-more {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: var(--weight-heading-sub);
  color: var(--c-sky); text-decoration: none;
}
.home-programs-v3-more--mobile { display: block; margin-top: 20px; }
@media (min-width: 769px) {
  .home-programs-v3-more--mobile { display: none; }
}
.home-programs-v3-more--desktop { display: none; }
@media (min-width: 769px) {
  .home-programs-v3-more--desktop { display: inline; }
}

/* Style the existing table inside the new section */
.home-programs-v3-section .programs-teaser-table-wrap {
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-md);
  border: 1px solid rgba(160,228,241,0.2);
  overflow: hidden;
  padding: 0;
}
.home-programs-v3-section .programs-teaser-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}
.home-programs-v3-section .programs-teaser-table thead th {
  font-family: var(--font-heading);
  font-size: var(--kicker-size); font-weight: var(--weight-heading-sub);
  letter-spacing: 1.2px;
  color: var(--c-sky);
  text-transform: uppercase;
  text-align: left;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(160,228,241,0.15);
  background: transparent;
}
.home-programs-v3-section .programs-teaser-table tbody td {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(160,228,241,0.12);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: var(--weight-heading-sub);
  background: transparent;
}
.home-programs-v3-section .programs-teaser-table tbody tr:last-child td {
  border-bottom: 0;
}
.home-programs-v3-section .programs-teaser-table tbody tr:hover {
  background: rgba(160,228,241,0.06);
}
/* Override dark text from inner spans on navy bg */
.home-programs-v3-section .programs-location-city,
.home-programs-v3-section .programs-date-value { color: #fff; }
.home-programs-v3-section .programs-location-country { color: rgba(255,255,255,0.6); }
.home-programs-v3-section .programs-format-pill,
.home-programs-v3-section .programs-format-pill.is-online { color: rgba(160,228,241,0.78); }
.home-programs-v3-section .programs-price-value { color: var(--c-sky); }
.home-programs-v3-section .programs-price-note { color: rgba(255,255,255,0.6); }
.home-programs-v3-section .programs-teaser-cta { display: none; }

/* CTAs match schedule.html style: rounded 8px, 14px 22px padding, 600 weight.
   Colors are navy-bg variants of schedule's light-bg pair — register stays solid blue,
   availability/discuss become outlined-light (transparent + white border) since outlined-navy is invisible on navy. */
.home-programs-v3-section .programs-teaser-cta-cell .agenda-row-button {
  min-height: auto;
  padding: 14px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: normal;
  gap: 6px;
  box-shadow: none;
}
.home-programs-v3-section .programs-teaser-cta-cell .agenda-row-button.is-register {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
  box-shadow: 0 4px 14px rgba(32, 40, 206, 0.28);
}
.home-programs-v3-section .programs-teaser-cta-cell .agenda-row-button.is-register:hover {
  background: #1a21a6;
  border-color: #1a21a6;
}
.home-programs-v3-section .programs-teaser-cta-cell .agenda-row-button.is-availability,
.home-programs-v3-section .programs-teaser-cta-cell .agenda-row-button.is-discuss {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.home-programs-v3-section .programs-teaser-cta-cell .agenda-row-button.is-availability::after,
.home-programs-v3-section .programs-teaser-cta-cell .agenda-row-button.is-discuss::after {
  content: none;
}
.home-programs-v3-section .programs-teaser-cta-cell .agenda-row-button.is-availability:hover,
.home-programs-v3-section .programs-teaser-cta-cell .agenda-row-button.is-discuss:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.85);
}

/* Date / city: handoff-sized 18px so long dates don't overflow */
.home-programs-v3-section .programs-location-city,
.home-programs-v3-section .programs-date-value {
  font-size: 18px;
  font-weight: var(--weight-heading-sub);
  white-space: normal;
  letter-spacing: -0.2px;
}

/* Per handoff: only city in location cell — hide country tag and format pill */
.home-programs-v3-section .programs-location-country,
.home-programs-v3-section .programs-format-pill,
.home-programs-v3-section .programs-place-meta {
  display: none;
}

/* Status pill (handoff: 'Open' / 'Few seats'). Injected via inline script post-render */
.home-programs-v3-section .programs-status-cell {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(160,228,241,0.12);
  background: transparent;
  white-space: nowrap;
}
.home-programs-v3-section .programs-teaser-table tbody tr:last-child .programs-status-cell {
  border-bottom: 0;
}
.home-programs-v3-section .programs-status-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--r-xs);
  font-family: var(--font-heading);
  font-size: var(--kicker-size);
  font-weight: var(--weight-heading-sub);
  letter-spacing: 0.5px;
  background: rgba(160,228,241,0.15);
  color: var(--c-sky);
}
.home-programs-v3-section .programs-status-pill.is-few {
  background: var(--c-sky);
  color: var(--c-navy);
}
.home-programs-v3-section .programs-teaser-table thead th.status-th {
  text-align: left;
}
/* 5-column layout per handoff: Location | Date | Price | Status 140px | Action 240px (RU labels need more room) */
.home-programs-v3-section .programs-teaser-table th:nth-child(1),
.home-programs-v3-section .programs-teaser-table th:nth-child(2),
.home-programs-v3-section .programs-teaser-table th:nth-child(3) {
  width: auto;
}
.home-programs-v3-section .programs-teaser-table th:nth-child(4) {
  width: 140px;
}
.home-programs-v3-section .programs-teaser-table th:nth-child(5) {
  width: 240px;
}

/* ── Corporate CTA v3 — gradient + W-mark ───────────────────────────── */
.home-corporate-v3-section {
  padding: var(--section-pad-sm) 0;
}
@media (min-width: 769px) {
  .home-corporate-v3-section { padding: var(--section-pad-lg) 0; }
}
.home-corporate-v3 {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-blue) 100%);
  color: #fff;
  padding: 40px 24px;
}
@media (min-width: 769px) {
  .home-corporate-v3 { padding: 72px 64px; }
}
.home-corporate-v3-wmark {
  position: absolute;
  bottom: -12%; right: -6%;
  width: 320px; height: auto;
  pointer-events: none;
}
@media (min-width: 769px) {
  .home-corporate-v3-wmark { width: 460px; }
}
.home-corporate-v3-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 769px) {
  .home-corporate-v3-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
  }
}
.home-corporate-v3-kicker {
  font-family: var(--font-heading);
  font-size: var(--kicker-size); font-weight: var(--weight-heading-sub);
  letter-spacing: var(--kicker-ls); text-transform: uppercase;
  color: var(--c-sky);
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0;
}
.home-corporate-v3-kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-sky); display: inline-block;
}
.home-corporate-v3-title {
  font-family: var(--font-heading);
  font-size: 36px; font-weight: var(--weight-heading-main);
  letter-spacing: -1px; line-height: 1.05;
  margin: 14px 0 18px;
  color: #fff;
}
@media (min-width: 769px) { .home-corporate-v3-title { font-size: var(--h2-size); } }
.home-corporate-v3-lead {
  font-size: 16px; line-height: 1.55;
  opacity: 0.86; margin: 0 0 28px; max-width: 540px;
}
@media (min-width: 769px) { .home-corporate-v3-lead { font-size: 18px; } }
.home-corporate-v3-buttons {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.home-corporate-v3-btn-white {
  font-family: var(--font-heading);
  background: #fff; color: var(--c-navy);
  border-radius: var(--r-sm);
  padding: 14px 22px;
  font-size: 14px; font-weight: var(--weight-heading-sub);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}
@media (min-width: 769px) {
  .home-corporate-v3-btn-white { padding: 16px 26px; }
}
.home-corporate-v3-btn-ghost {
  font-family: var(--font-heading);
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--r-sm);
  padding: 12.5px 22px;
  font-size: 14px; font-weight: var(--weight-heading-sub);
  text-decoration: none;
  display: inline-flex; align-items: center;
}
.home-corporate-v3-stats {
  display: grid; gap: 28px;
  border-left: 0; padding-left: 0;
}
@media (min-width: 769px) {
  .home-corporate-v3-stats {
    border-left: 1px solid rgba(160,228,241,0.3);
    padding-left: 40px;
  }
}
.home-corporate-v3-stat-value {
  font-family: var(--font-heading);
  font-size: 46px; font-weight: var(--weight-heading-main);
  color: var(--c-sky);
  letter-spacing: -1px; line-height: 1;
}
@media (min-width: 769px) {
  .home-corporate-v3-stat-value { font-size: 56px; }
}
.home-corporate-v3-stat-label {
  font-size: 14px; opacity: 0.82; margin-top: 8px;
}
.home-corporate-v3-divider {
  height: 1px;
  background: rgba(160,228,241,0.2);
}

/* ── Footer legal row — copyright on left, policy links on right ─────
   Bumped from 12 → 13px, contrast adjusted to pass WCAG AA on links,
   copyright stays slightly quieter as informational. */
.footer-legal {
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 31, 84, 0.08);
  font-size: 13px;
  line-height: 1.5;
}
.footer-copyright {
  margin-right: auto;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(0, 31, 84, 0.55);
}
.footer-legal a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--weight-body-main);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(0, 31, 84, 0.72);  /* contrast ~5.5:1 → AA on white */
  text-decoration: none;
}
.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--c-navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─────────────────────────────────────────────────────────────────────
   Generic section kicker (eyebrow line above h2)
   Used in Challenges, Capabilities, Testimonials, Moments + v3 sections
   .home-page prefix to outweigh .moments-head p / similar legacy rules
   ───────────────────────────────────────────────────────────────────── */
.home-page .section-kicker,
.section-kicker {
  font-family: var(--font-heading);
  font-size: var(--kicker-size);
  font-weight: var(--weight-heading-sub);
  letter-spacing: var(--kicker-ls);
  text-transform: uppercase;
  color: var(--c-blue);
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 12px;
  max-width: none;
}
.section-kicker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; display: inline-block; flex: 0 0 auto;
}
/* On dark sections kicker uses sky tone */
.dark-section .section-kicker { color: var(--c-sky); }

/* ─────────────────────────────────────────────────────────────────────
   Home page section padding — snap legacy sections to scale (96/72/40)
   Scoped to .home-page so EN page is untouched
   ───────────────────────────────────────────────────────────────────── */
.home-page .trust-section          { padding-block: var(--section-pad-sm); }
.home-page .challenges-section     { padding-block: var(--section-pad-lg); }
.home-page .capability-section--cta-end { padding-block: var(--section-pad-sm); }
.home-page .testimonials-section   { padding-block: var(--section-pad-md); }
.home-page .moments-section        { padding-block: var(--section-pad-sm) var(--section-pad-md); }

/* Testimonials bg snap to cream palette token */
.home-page .testimonials-section { background: var(--c-cream); }

/* ============================================================
   nd-* primitives (used on partners/product/programs/contact/schedule).
   Was nd-base.css.
   ============================================================ */
/* ─────────────────────────────────────────────────────────────────────
   nd-base.css — shared primitives for nd-* design system
   Used by: partners.html, product.html, programs.html
   Tokens come from tokens.css (--c-*, --r-*, --font-*, --section-pad-*).

   Page-specific components (cards, grids unique to one page) stay
   in that page's inline <style>. Only widely-shared primitives live here.
   ───────────────────────────────────────────────────────────────────── */

/* === Block container === */
.nd-block { font-family: var(--font-body); color: var(--c-navy); box-sizing: border-box; }
.nd-block *,
.nd-block *::before,
.nd-block *::after { box-sizing: border-box; }
.nd-h { font-family: var(--font-heading); }
.nd-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-pad-lg) 48px;
}

/* === Block variants === */
.nd-block--cream {
  background: var(--c-cream);
  border-top: 1px solid var(--color-line-strong);
  border-bottom: 1px solid var(--color-line-strong);
}
.nd-block--lime {
  background: #fbfff1;
  border-top: 1px solid var(--color-line-strong);
  border-bottom: 1px solid var(--color-line-strong);
}
.nd-block--navy { background: var(--c-navy); color: #fff; }
.nd-block--navy h2,
.nd-block--navy h3,
.nd-block--navy h4 { color: #fff; }

/* === Kicker (eyebrow) === */
.nd-kicker {
  font-family: var(--font-heading);
  font-size: var(--kicker-size);
  font-weight: 600;
  letter-spacing: var(--kicker-ls);
  text-transform: uppercase;
  color: var(--c-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nd-kicker--sky { color: var(--c-sky); }
.nd-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

/* === Section head + h2 + lead === */
.nd-section-head { margin: 14px 0 24px; }
.nd-section-head h2 {
  font-family: var(--font-heading);
  font-size: var(--h2-size);
  font-weight: var(--weight-heading-main);
  letter-spacing: var(--h2-ls);
  line-height: var(--h2-lh);
  margin: 0;
  color: var(--c-navy);
  max-width: 880px;
  text-wrap: pretty;
}
.nd-block--navy .nd-section-head h2 { color: #fff; }
.nd-lead {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(0, 31, 84, 0.78);
  margin: 0 0 40px;
}
.nd-block--navy .nd-lead { color: rgba(255, 255, 255, 0.78); }

/* === Buttons (canon: 14px font, 6px radius) === */
.nd-btn-primary-blue {
  font-family: var(--font-heading);
  padding: 14px 22px;
  background: var(--c-blue);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
}
.nd-btn-primary-sky {
  font-family: var(--font-heading);
  padding: 14px 24px;
  background: var(--c-sky);
  color: var(--c-navy);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
}
.nd-btn-ghost-light {
  font-family: var(--font-heading);
  padding: 12.5px 22px;
  border: 1.5px solid var(--c-navy);
  color: var(--c-navy);
  background: transparent;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.nd-btn-ghost-dark {
  font-family: var(--font-heading);
  padding: 14px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nd-btn-primary-blue,
.nd-btn-primary-sky,
.nd-btn-ghost-light,
.nd-btn-ghost-dark { transition: opacity 0.2s ease; }
.nd-btn-primary-blue:hover,
.nd-btn-primary-sky:hover,
.nd-btn-ghost-light:hover,
.nd-btn-ghost-dark:hover { opacity: 0.9; }

/* === Form helpers === */
.nd-form-req {
  color: #d62b3a;
  margin-left: 2px;
}

/* === FAQ === */
.nd-faq { border-top: 1px solid var(--color-line-strong); }
.nd-faq-item { border-bottom: 1px solid var(--color-line-strong); }
.nd-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--c-navy);
  line-height: 1.3;
}
.nd-faq-icon {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--c-blue);
  min-width: 24px;
  transition: transform 0.2s ease;
}
.nd-faq-item.is-open .nd-faq-icon { transform: rotate(45deg); }
.nd-faq-a {
  display: none;
  padding: 0 0 26px;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(0, 31, 84, 0.78);
}
.nd-faq-item.is-open .nd-faq-a { display: block; }
.nd-faq-list {
  margin: 8px 0 0;
  padding-left: 20px;
  list-style: disc;
}
.nd-faq-list li { padding: 2px 0; }

/* === Responsive (general — page-specific overrides go in inline <style>) === */
@media (max-width: 1100px) {
  .nd-container { padding: var(--section-pad-md) 48px; }
  .nd-section-head h2 { font-size: 36px; }
}
@media (max-width: 768px) {
  .nd-container { padding: 56px 20px; }
  .nd-section-head h2 { font-size: 28px; }
}

/* ============================================================
   Forms + schedule layouts (used on contact + schedule).
   Was nd-forms.css.
   ============================================================ */
/* ============================================================
   nd-forms.css — page-level layouts for contact + schedule.
   Stripped from design-v2.css legacy bundle: only actively-used
   selectors remain (form, schedule table, filter, contact-aside,
   schedule-followup/banner). Tokens come from tokens.css.
   ============================================================ */

/* ---------- Reset/base scoped to .nd-page ---------- */
.nd-page {
  background: #fff;
  color: var(--c-navy);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}

.nd-page *,
.nd-page *::before,
.nd-page *::after { box-sizing: border-box; }

/* Headings inherit color from their parent. That way navy cards/banners
   (which set color: white) automatically tint their headings white,
   while light sections show navy via the body's default color. */
:where(.nd-page) h1,
:where(.nd-page) h2,
:where(.nd-page) h3,
:where(.nd-page) h4 {
  font-family: var(--font-heading);
  color: inherit;
  margin: 0;
}

.nd-page p { margin: 0; }
/* Default for plain in-text links — but don't beat button classes.
   :where() keeps specificity at (0,0,1) so any class on the anchor wins. */
:where(.nd-page) a { color: inherit; }

/* ---------- Container ---------- */
.nd-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: 48px;
}
@media (max-width: 900px) {
  .nd-container { padding-inline: 20px; }
}

/* Kicker / Button definitions removed — use .nd-kicker / .nd-btn-* from nd-base.css */


/* ---------- Section ---------- */
.nd-section {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-pad-lg) 48px;
}
.nd-section--bordered {
  max-width: none;
  padding-inline: 0;
  border-top: 1px solid rgba(0, 31, 84, 0.06);
  border-bottom: 1px solid rgba(0, 31, 84, 0.06);
}
.nd-section--bg-soft { background: var(--c-cream); }
.nd-section--bg-lime { background: #fbfff1; }
.nd-section--navy {
  background: var(--c-navy);
  color: #fff;
}
.nd-section--navy h1,
.nd-section--navy h2,
.nd-section--navy h3 { color: #fff; }

.nd-section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--section-pad-lg) 48px;
}
.nd-section-title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.1;
  margin: 14px 0 40px;
}
.nd-section-title--small { font-size: 36px; margin: 10px 0 0; }
.nd-section-title--max { max-width: 820px; }

@media (max-width: 900px) {
  .nd-section { padding: 56px 20px; }
  .nd-section-inner { padding: 56px 20px; }
  .nd-section-title { font-size: 28px; margin: 14px 0 28px; }
  .nd-section-title--small { font-size: 24px; }
}


/* ---------- Page hero (internal, no video) ---------- */
.nd-page-hero {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 88px 48px;
}
.nd-page-hero-title {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.03;
  margin: 18px 0 20px;
  max-width: 1100px;
  text-wrap: pretty;
}
.nd-page-hero-sub {
  font-size: 22px;
  line-height: 1.5;
  color: rgba(0, 31, 84, 0.7);
  max-width: 720px;
  margin: 0 0 28px;
}
.nd-page-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .nd-page-hero { padding: 40px 20px; }
  .nd-page-hero-title { font-size: 40px; }
  .nd-page-hero-sub { font-size: 17px; }
}


/* ---------- Application form ---------- */
.nd-application-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.nd-application-intro p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(0, 31, 84, 0.78);
  margin: 0;
}
.nd-sidebar-card {
  margin-top: 24px;
  padding: 18px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 31, 84, 0.1);
}
.nd-sidebar-card-kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-blue);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.nd-sidebar-card-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-navy);
  text-decoration: none;
}

.nd-form-card {
  padding: 36px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 31, 84, 0.1);
}
.nd-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.nd-form-field {
  display: block;
}
.nd-form-field--full { grid-column: 1 / -1; }
.nd-form-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-navy);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  display: block;
}
.nd-form-req {
  color: #d62b3a;
  margin-left: 2px;
  font-weight: 700;
}
.nd-form-input,
.nd-form-select,
.nd-form-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(0, 31, 84, 0.2);
  background: #fff;
  font-size: 15px;
  color: var(--c-navy);
  font-family: inherit;
  box-sizing: border-box;
}
.nd-form-textarea {
  min-height: 100px;
  resize: vertical;
}
.nd-form-input:focus,
.nd-form-select:focus,
.nd-form-textarea:focus {
  outline: 2px solid var(--c-blue);
  outline-offset: 1px;
  border-color: var(--c-blue);
}
.nd-form-consent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(0, 31, 84, 0.7);
}
.nd-form-consent input { width: 16px; height: 16px; }
.nd-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.nd-form-note {
  flex-basis: 100%;
  font-size: 13px;
  color: rgba(0, 31, 84, 0.7);
}
.nd-form-note.is-error {
  color: #b42318;
}
.nd-form-note.is-pending {
  color: var(--c-blue);
}
.nd-contact-layout.hidden,
.nd-thank-you.hidden,
.hidden {
  display: none !important;
}
.contact-program-caption {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--c-cream);
  color: var(--c-blue);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}
.contact-turnstile {
  margin-top: 20px;
}
.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.nd-btn[disabled] {
  cursor: wait;
  opacity: 0.58;
}
.nd-thank-you {
  max-width: 760px;
}
.nd-thank-you p {
  margin-top: 16px;
  color: rgba(0, 31, 84, 0.7);
}
@media (max-width: 900px) {
  .nd-application-layout { grid-template-columns: 1fr; gap: 20px; }
  .nd-form-card { padding: 24px; }
  .nd-form-grid { grid-template-columns: 1fr; }
  .nd-form-actions .nd-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ---------- Schedule: filter bar ---------- */
.nd-filter-bar {
  padding: 20px;
  border-radius: var(--r-md);
  background: var(--c-cream);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.nd-filter-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nd-filter-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.nd-filter-pill {
  font-family: var(--font-heading);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(0, 31, 84, 0.15);
  background: #fff;
  color: var(--c-navy);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.nd-filter-pill.is-active--navy {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}
.nd-filter-pill.is-active--blue {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
}
.nd-filter-count {
  margin-left: auto;
  font-size: 13px;
  color: rgba(0, 31, 84, 0.7);
}
.nd-filter-count strong { color: var(--c-navy); }
.nd-filter-divider {
  width: 1px;
  height: 22px;
  background: rgba(0, 31, 84, 0.12);
  display: inline-block;
}

/* ---------- Schedule: full table ---------- */
.nd-schedule-table {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 31, 84, 0.12);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 31, 84, 0.06);
}
.nd-schedule-table-head {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 0.9fr 0.6fr 1fr 200px;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(0, 31, 84, 0.1);
  background: var(--c-cream);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 1.4px;
  color: var(--c-navy);
  text-transform: uppercase;
  font-weight: 700;
}
.nd-schedule-row {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 0.9fr 0.6fr 1fr 200px;
  gap: 24px;
  padding: 28px 32px;
  align-items: center;
}
.nd-schedule-row + .nd-schedule-row {
  border-top: 1px solid rgba(0, 31, 84, 0.1);
}
.nd-schedule-date {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--c-navy);
  line-height: 1.2;
}
.nd-schedule-loc-cell {}
.nd-schedule-loc-city {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-navy);
}
.nd-schedule-loc-country {
  font-size: 13px;
  color: rgba(0, 31, 84, 0.6);
  margin-top: 2px;
}
.nd-schedule-loc { font-size: 15px; }
.nd-schedule-fmt {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nd-schedule-fmt-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-blue);
}
.nd-schedule-fmt--online { color: var(--c-blue); }
.nd-schedule-fmt--online .nd-schedule-fmt-dot { background: var(--c-blue); }
.nd-schedule-lang {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: rgba(0, 31, 84, 0.78);
  letter-spacing: 0.5px;
}
.nd-schedule-price {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-blue);
  letter-spacing: -0.2px;
}
.nd-schedule-seats-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(0, 31, 84, 0.7);
  margin-bottom: 4px;
}
.nd-schedule-seats-price {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--c-blue);
}
.nd-schedule-seats-bar {
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 31, 84, 0.08);
  overflow: hidden;
}
.nd-schedule-seats-fill { height: 100%; background: var(--c-blue); }
.nd-schedule-seats-fill--low { background: #e04a3b; }
.nd-schedule-seats-fill--full { background: rgba(0, 31, 84, 0.35); }
.nd-schedule-action {
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 22px;
  background: var(--c-blue);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  width: 100%;
}
.nd-schedule-action--register {
  background: var(--c-blue);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(32, 40, 206, 0.28);
}
.nd-schedule-action--availability {
  background: #fff;
  color: var(--c-navy);
  border: 1.5px solid var(--c-navy);
  box-shadow: none;
}
.nd-schedule-action--discuss {
  background: rgba(0, 31, 84, 0.06);
  color: rgba(0, 31, 84, 0.7);
  border: 1px solid rgba(0, 31, 84, 0.12);
  box-shadow: none;
}
.nd-schedule-action--full {
  background: rgba(0, 31, 84, 0.1);
  color: var(--c-navy);
}

.nd-schedule-row-mobile-meta { display: none; }
.nd-schedule-row-mobile-tag { display: none; }

@media (max-width: 900px) {
  .nd-schedule-table-head { display: none; }
  .nd-schedule-row {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 20px;
  }
  .nd-schedule-loc, .nd-schedule-fmt, .nd-schedule-lang, .nd-schedule-seats { display: none; }
  .nd-schedule-row-mobile-meta {
    display: block;
    font-size: 13px;
    color: rgba(0, 31, 84, 0.7);
    margin-top: 3px;
  }
  .nd-schedule-row-mobile-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: rgba(32, 40, 206, 0.12);
    color: var(--c-blue);
    margin-bottom: 6px;
  }
  .nd-schedule-action {
    padding: 8px 14px;
    font-size: 12px;
  }
  .nd-schedule-cell-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }
}


/* ---------- Contact: layout + side cards ---------- */
.nd-contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.nd-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nd-direct-contact-card {
  padding: 32px;
  border-radius: 14px;
  background: var(--c-navy);
  color: #fff;
}
.nd-direct-contact-row {
  padding: 14px 0;
  border-top: 1px solid rgba(160, 228, 241, 0.2);
}
.nd-direct-contact-label {
  font-size: 11px;
  color: var(--c-sky);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.nd-direct-contact-value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}
.nd-direct-contact-value a {
  color: #fff;
  text-decoration: none;
}
.nd-corporate-shortcut-card {
  padding: 28px;
  border-radius: 14px;
  background: var(--c-sky);
  color: var(--c-navy);
}
.nd-corporate-shortcut-kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.nd-corporate-shortcut-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
}
.nd-corporate-shortcut-body {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px;
}
.nd-corporate-shortcut-cta {
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--c-navy);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 900px) {
  .nd-contact-layout { grid-template-columns: 1fr; gap: 20px; }
  .nd-direct-contact-card { padding: 24px; }
  .nd-corporate-shortcut-card { padding: 22px; }
  .nd-corporate-shortcut-title { font-size: 20px; }
}


/* ============================================================
   schedule.html legacy blocks moved from styles.css and renamed
   schedule-followup → nd-schedule-followup
   schedule-banner   → nd-schedule-banner
   ============================================================ */
.nd-schedule-followup {
  border-top: 1px solid rgba(0, 31, 84, 0.06);
  border-bottom: 1px solid rgba(0, 31, 84, 0.06);
}

.nd-schedule-followup--corporate {
  background: var(--color-primary-01);
}

.nd-schedule-followup__inner {
  padding-block: var(--section-space);
}

.nd-schedule-followup__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.nd-schedule-followup__content {
  min-width: 0;
}

.nd-schedule-followup__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  line-height: 1.2;
  font-weight: var(--weight-heading-sub);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.nd-schedule-followup__kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}

.nd-schedule-followup__title {
  margin: 12px 0 16px;
  max-width: none;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0;
}

.nd-schedule-followup__body {
  max-width: none;
  color: rgba(0, 31, 84, 0.78);
  font-size: 18px;
  line-height: 1.5;
}

.nd-schedule-followup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nd-schedule-followup__actions--end {
  justify-content: flex-end;
}

.nd-schedule-followup__button {
  min-height: auto;
  padding: 14px 22px;
  border-radius: var(--radius-6);
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1;
  font-weight: var(--weight-heading-sub);
  gap: 10px;
}

.nd-schedule-banner-section {
  padding-block: var(--section-space);
}

.nd-schedule-banner {
  padding: 64px 56px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
  color: #ffffff;
}

.nd-schedule-followup__kicker--light {
  color: rgba(160, 228, 241, 0.96);
}

.nd-schedule-banner__title {
  margin: 14px 0 20px;
  color: #ffffff;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
  max-width: none;
}

.nd-schedule-banner__body {
  margin: 0 0 28px;
  max-width: 720px;
  color: #ffffff;
  opacity: 0.88;
  font-size: 19px;
  line-height: 1.5;
}

.nd-schedule-banner__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.nd-schedule-banner-form {
  display: grid;
  gap: 14px;
  max-width: 960px;
  margin-top: 30px;
}

.nd-schedule-banner-form__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 10px;
}

.nd-schedule-banner-form__field {
  display: block;
}

.nd-schedule-banner-form__field input {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-6);
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-text);
  font: 600 15px/1.2 var(--font-body);
  outline: none;
}

.nd-schedule-banner-form__field input::placeholder {
  color: rgba(0, 31, 84, 0.48);
}

.nd-schedule-banner-form__field input:focus-visible {
  border-color: var(--color-secondary-04);
  box-shadow: 0 0 0 3px rgba(160, 228, 241, 0.24);
}

.nd-schedule-banner__button {
  min-height: auto;
  border-radius: var(--radius-6);
  font-family: var(--font-heading);
  font-size: 14px;
  line-height: 1;
  font-weight: var(--weight-heading-sub);
  gap: 10px;
}

.nd-schedule-banner__button {
  padding: 16px 26px;
}

.nd-schedule-banner-form__note {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.nd-schedule-banner-form__privacy {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.35;
}

.nd-schedule-banner-form__privacy a {
  color: #ffffff;
}

.nd-schedule-banner-form__note.is-error {
  color: #ffd6d2;
}

.nd-schedule-banner-form__note.is-pending {
  color: var(--color-secondary-04);
}

.nd-schedule-banner .contact-turnstile {
  margin-top: 4px;
}

@media (max-width: 1100px) {
  .nd-schedule-followup__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .nd-schedule-followup__actions--end {
    justify-content: flex-start;
  }

  .nd-schedule-banner-section {
    padding-inline: 24px;
  }
}

@media (max-width: 767px) {
  [data-schedule-page] .programs-teaser-section {
    padding-bottom: 52px;
  }

  .nd-schedule-followup__inner {
    padding: 56px 20px;
  }

  .nd-schedule-followup__title {
    font-size: 26px;
  }

  .nd-schedule-followup__body {
    font-size: 16px;
  }

  .nd-schedule-followup__button {
    width: 100%;
  }

  .nd-schedule-banner-section {
    padding: 56px 20px;
  }

  .nd-schedule-banner {
    padding: 40px 24px;
  }

  .nd-schedule-banner__title {
    font-size: 30px;
  }

  .nd-schedule-banner__body {
    font-size: 16px;
  }

  .nd-schedule-banner-form__grid {
    grid-template-columns: 1fr;
  }

  .nd-schedule-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nd-schedule-banner__button {
    width: 100%;
  }
}

/* === Globe icon — RU → international (EN) link in header.
   Inserted by initLocaleSwitch (main.js). Renders only on RU pages.
   EN side never references RU per the one-way principle. === */
.lang-globe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  color: var(--color-text);
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.lang-globe:hover,
.lang-globe:focus-visible {
  background-color: var(--color-line);
  color: var(--color-accent);
}
.lang-globe:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.lang-globe svg {
  display: block;
  width: 22px;
  height: 22px;
}
@media (max-width: 768px) {
  .lang-globe {
    width: 36px;
    height: 36px;
    margin-right: 4px;
  }
  .lang-globe svg {
    width: 20px;
    height: 20px;
  }
}
