:root {
  --navy-950: #06192d;
  --navy-900: #072a52;
  --navy-800: #0b3d70;
  --blue-700: #145da0;
  --blue-600: #1e74c6;
  --blue-100: #dceefe;
  --blue-50: #f0f7fd;
  --orange-600: #e95607;
  --orange-500: #f5660b;
  --orange-100: #ffddc8;
  --ink: #10263a;
  --muted: #5b7082;
  --line: #dbe5ed;
  --surface: #f5f9fc;
  --white: #ffffff;
  --shadow-sm: 0 10px 35px rgba(6, 25, 45, 0.07);
  --shadow-md: 0 24px 65px rgba(6, 25, 45, 0.13);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

@supports (overflow: clip) {
  html {
    overflow-x: clip;
  }
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: var(--orange-100);
  color: var(--navy-950);
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy-950);
  font-family: "Aptos Display", "Segoe UI", "Inter", Arial, sans-serif;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

p {
  color: var(--muted);
}

:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(245, 102, 11, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--navy-950);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.section {
  position: relative;
  padding: clamp(84px, 9vw, 128px) 0;
}

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

.section-navy {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(30, 116, 198, 0.35), transparent 28%),
    radial-gradient(circle at 92% 100%, rgba(245, 102, 11, 0.12), transparent 28%),
    var(--navy-950);
}

.section-navy::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: var(--orange-500);
  content: "";
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

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

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading-center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
}

.section-lead p,
.section-lead {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

.accent-text {
  color: var(--orange-600);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 21px;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button svg,
.text-link svg,
.card-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.button-primary {
  background: var(--orange-500);
  box-shadow: 0 10px 26px rgba(233, 86, 7, 0.23);
  color: var(--navy-950);
}

.button-secondary {
  border-color: rgba(7, 42, 82, 0.22);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy-900);
}

.button-white {
  background: var(--white);
  box-shadow: var(--shadow-md);
  color: var(--navy-900);
}

.button-large {
  min-height: 56px;
  padding: 15px 27px;
  font-size: 0.98rem;
}

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

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

  .button-primary:hover {
    background: var(--orange-600);
    box-shadow: 0 14px 30px rgba(233, 86, 7, 0.3);
  }

  .button-secondary:hover {
    border-color: var(--blue-700);
    box-shadow: var(--shadow-sm);
  }

  .button:hover svg,
  .text-link:hover svg,
  .card-link:hover svg {
    transform: translateX(4px);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(7, 42, 82, 0.09);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  width: 132px;
  height: 64px;
  flex: 0 0 132px;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 132px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 35px);
}

.main-nav>a:not(.button) {
  position: relative;
  padding: 28px 0 25px;
  color: #314d64;
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav>a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  border-radius: 3px;
  background: var(--orange-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav>a.active,
.main-nav>a:hover {
  color: var(--navy-900);
}

.main-nav>a.button-primary:hover {
  color: var(--navy-950);
}

.main-nav>a.active::after,
.main-nav>a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.header-cta {
  white-space: nowrap;
}

.menu-button,
.mobile-nav-label,
.mobile-nav-cta,
.nav-scrim {
  display: none;
}

/* Home hero */
.home-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 12%, rgba(30, 116, 198, 0.13), transparent 27%),
    radial-gradient(circle at 10% 90%, rgba(245, 102, 11, 0.08), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #f4f9fd 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(20, 93, 160, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 93, 160, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, black, transparent 58%);
  pointer-events: none;
}

.hero-bridge-line {
  position: absolute;
  top: -31vw;
  right: -12vw;
  width: 74vw;
  height: 50vw;
  border: 2px solid rgba(20, 93, 160, 0.13);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-9deg);
}

.hero-bridge-line::after {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(245, 102, 11, 0.15);
  border-radius: inherit;
  content: "";
}

.home-hero-grid {
  position: relative;
  display: grid;
  min-height: min(780px, calc(100svh - 78px));
  grid-template-columns: minmax(0, 1.04fr) minmax(460px, 0.96fr);
  align-items: center;
  gap: clamp(54px, 6vw, 92px);
  padding-top: 76px;
  padding-bottom: 88px;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  max-width: 800px;
  margin-bottom: 27px;
  font-size: clamp(3.3rem, 5.8vw, 5.8rem);
  letter-spacing: -0.055em;
}

.home-hero h1 span {
  display: block;
  color: var(--blue-700);
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: #49657b;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-proof {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 47px;
  border-top: 1px solid rgba(7, 42, 82, 0.14);
  padding-top: 25px;
}

.hero-proof div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding-right: 18px;
}

.hero-proof div+div {
  border-left: 1px solid rgba(7, 42, 82, 0.12);
  padding-left: 20px;
}

.hero-proof strong {
  color: var(--navy-900);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 36px 90px rgba(7, 42, 82, 0.18);
  padding: 12px;
}

.hero-visual::before {
  position: absolute;
  top: -20px;
  right: 32px;
  width: 92px;
  height: 8px;
  border-radius: 20px;
  background: var(--orange-500);
  content: "";
}

.hero-visual img {
  width: 100%;
  min-height: 375px;
  border-radius: 21px;
  object-fit: cover;
}

.hero-visual-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 14px;
  color: var(--navy-900);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual-topline span,
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #20a66a;
  box-shadow: 0 0 0 5px rgba(32, 166, 106, 0.13);
}

.hero-data-card {
  position: absolute;
  display: flex;
  min-width: 220px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(7, 42, 82, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  padding: 13px 15px;
  backdrop-filter: blur(12px);
}

.hero-data-card svg {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  color: var(--orange-500);
}

.hero-data-card strong,
.hero-data-card span {
  display: block;
}

.hero-data-card strong {
  color: var(--navy-900);
  font-size: 0.82rem;
  line-height: 1.3;
}

.hero-data-card span {
  color: var(--muted);
  font-size: 0.68rem;
}

.hero-data-card-left {
  bottom: 18px;
  left: 18px;
}

.hero-data-card-right {
  top: 47%;
  right: 18px;
  transform: translateY(-50%);
}

.hero-data-card-right .status-dot {
  flex: 0 0 auto;
}

/* Audiences */
.audience-strip {
  border-top: 1px solid rgba(7, 42, 82, 0.08);
  border-bottom: 1px solid rgba(7, 42, 82, 0.1);
  background: var(--white);
}

.audience-inner {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 2.2fr);
  align-items: center;
  gap: 32px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.audience-inner>p {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(6, auto);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.audience-list span {
  position: relative;
  color: #698093;
  font-size: 0.8rem;
  font-weight: 750;
  text-align: center;
}

.audience-list span+span::before {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--orange-500);
  content: "";
}

/* Divisions */
.division-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.division-card {
  position: relative;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 34px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.division-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--blue-700);
  content: "";
}

.division-card-systems::before {
  background: var(--orange-500);
}

.division-card-academy::before {
  background: #13817e;
}

.division-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

.division-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 17px;
  background: var(--blue-50);
  color: var(--blue-700);
}

.division-card-systems .division-icon {
  background: #fff3ea;
  color: var(--orange-600);
}

.division-card-academy .division-icon {
  background: #e7f7f5;
  color: #0d7774;
}

.division-icon svg {
  width: 28px;
  height: 28px;
}

.division-number {
  color: #b3c1cd;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.division-card h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.division-card>p {
  margin-bottom: 25px;
  line-height: 1.72;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 0 0 33px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #3c566b;
  font-size: 0.9rem;
  font-weight: 650;
}

.check-list svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--orange-500);
}

.division-card .card-link {
  margin-top: auto;
}

@media (hover: hover) {
  .division-card:hover {
    border-color: rgba(20, 93, 160, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
  }
}

/* Ecosystem */
.ecosystem-section {
  background: var(--surface);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(56px, 8vw, 112px);
}

.ecosystem-visual {
  position: relative;
}

.ecosystem-visual::before {
  position: absolute;
  inset: 0px 0px 0px 0px;
  z-index: 0;
  border: 1px solid rgba(20, 93, 160, 0.15);
  border-radius: 30px;
  content: "";
}

.ecosystem-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 10px solid var(--white);
  border-radius: 25px;
  box-shadow: var(--shadow-md);
}

.image-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: min(390px, calc(100% - 48px));
  margin: 0;
  border-left: 4px solid var(--orange-500);
  border-radius: 12px;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
  padding: 18px 21px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.83rem;
}

.image-caption span {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-weight: 800;
}

.flow-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 19px;
  border-top: 1px solid var(--line);
  padding: 19px 0;
}

.flow-list li>span {
  color: #a94816;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.flow-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
  font-size: 1rem;
}

.flow-list p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Differentiators */
.section-navy .section-heading {
  position: relative;
}

.section-navy .section-heading h2,
.section-navy .differentiator-grid h3 {
  color: var(--white);
}

.section-navy .section-lead,
.section-navy .section-lead p {
  color: rgba(255, 255, 255, 0.68);
}

.differentiator-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.13);
}

.differentiator-grid article {
  min-height: 305px;
  background: rgba(7, 42, 82, 0.78);
  padding: 32px 28px;
}

.differentiator-grid article>span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 45px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange-500);
}

.differentiator-grid svg {
  width: 25px;
  height: 25px;
}

.differentiator-grid h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
}

.differentiator-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Delivery */
.delivery-section {
  background: var(--white);
}

.delivery-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.delivery-grid .section-heading {
  margin-bottom: 28px;
}

.delivery-steps {
  border-top: 1px solid var(--line);
}

.delivery-steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 23px;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.delivery-steps article>span {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: 0.74rem;
  font-weight: 850;
}

.delivery-steps h3 {
  margin-bottom: 7px;
  font-size: 1.25rem;
}

.delivery-steps p {
  margin: 0;
  font-size: 0.92rem;
}

/* CTA */
.final-cta-section {
  padding-top: 0;
  background: var(--white);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 20%, rgba(30, 116, 198, 0.55), transparent 35%),
    var(--navy-900);
  padding: clamp(45px, 6vw, 76px);
}

.final-cta::after {
  position: absolute;
  right: -70px;
  bottom: -150px;
  width: 480px;
  height: 300px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  transform: rotate(-10deg);
}

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

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.3rem, 4.4vw, 4.25rem);
}

.final-cta p {
  max-width: 710px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.03rem;
}

.final-cta .button {
  white-space: nowrap;
}

/* Page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(30, 116, 198, 0.42), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, black 60%);
}

.page-hero-inner {
  position: relative;
  display: grid;
  min-height: 455px;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
  align-items: center;
  gap: 70px;
  padding-top: 88px;
  padding-bottom: 88px;
}

.page-hero h1 {
  max-width: 870px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.page-hero-copy,
.page-hero-copy p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.7;
}

.page-hero-aside {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

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

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.72fr 1fr 1.15fr;
  gap: clamp(35px, 5vw, 72px);
  padding-top: 78px;
  padding-bottom: 62px;
}

.footer-wordmark {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  color: var(--orange-500);
  font-size: 1.52rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer-wordmark span {
  color: var(--white);
}

.footer-wordmark small {
  width: 100%;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.52rem;
  letter-spacing: 0.28em;
}

.footer-brand p {
  max-width: 360px;
  margin: 23px 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer-signal {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-signal span {
  width: 26px;
  height: 2px;
  background: var(--orange-500);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-column h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column>a,
.footer-column>span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  transition: color 0.2s ease;
}

.footer-column>a:hover {
  color: var(--white);
}

.footer-contact>a:not(.text-link),
.footer-contact>span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--orange-500);
}

.footer-column .text-link {
  margin-top: 10px;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  padding-bottom: 25px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.74rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.86fr);
    gap: 50px;
  }

  .home-hero h1 {
    font-size: clamp(3.1rem, 5.4vw, 4.9rem);
  }

  .hero-data-card-right {
    right: 14px;
  }

  .hero-data-card-left {
    left: 14px;
  }

  .audience-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 12px;
  }

  .audience-list span+span::before {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 36px;
  }
}

@media (max-width: 960px) {
  .header-cta {
    padding-inline: 17px;
  }

  .main-nav {
    gap: 18px;
  }

  .home-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 70px;
    padding-top: 82px;
    padding-bottom: 105px;
  }

  .home-hero-copy {
    max-width: 790px;
  }

  .home-hero h1 {
    font-size: clamp(3.45rem, 9vw, 5.75rem);
  }

  .hero-visual {
    max-width: 760px;
    margin-inline: auto;
  }

  .hero-visual img {
    min-height: auto;
  }

  .audience-inner {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .audience-inner>p {
    text-align: center;
  }

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

  .division-card {
    min-height: 0;
  }

  .ecosystem-grid,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-visual {
    max-width: 760px;
  }

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

  .delivery-grid {
    gap: 50px;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta .button {
    justify-self: start;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  .container {
    width: min(var(--container), calc(100% - 32px));
  }

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

  .brand {
    width: 112px;
    height: 58px;
    flex-basis: 112px;
  }

  .brand img {
    width: 112px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(7, 42, 82, 0.16);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
  }

  .menu-button svg {
    width: 22px;
    height: 22px;
    color: var(--navy-900);
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    display: none;
    width: min(88vw, 380px);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    box-shadow: -30px 0 70px rgba(6, 25, 45, 0.2);
    padding: 24px;
    transform: none;
    visibility: hidden;
    transition: none;
  }

  .main-nav.is-open {
    display: flex;
    transform: none;
    visibility: visible;
    animation: mobile-nav-reveal 0.18s ease-out;
  }

  @keyframes mobile-nav-reveal {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .main-nav>a:not(.button) {
    border-bottom: 1px solid var(--line);
    padding: 17px 4px;
    font-size: 1.08rem;
  }

  .main-nav>a.active:not(.button),
  .main-nav>a[aria-current="page"]:not(.button) {
    border-radius: 8px;
    background: rgba(245, 102, 11, 0.09);
    box-shadow: inset 4px 0 0 var(--orange-500);
    padding-left: 16px;
    color: #a94816;
  }

  .main-nav>a:not(.button)::after {
    display: none;
  }

  .mobile-nav-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .mobile-nav-label button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-nav-label svg {
    width: 22px;
    height: 22px;
  }

  .mobile-nav-cta {
    display: flex;
    margin-top: auto;
  }

  .nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: block;
    border: 0;
    background: rgba(6, 25, 45, 0.55);
    backdrop-filter: blur(3px);
  }

  .home-hero-grid {
    gap: 55px;
    padding-top: 68px;
    padding-bottom: 88px;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hero-proof div {
    grid-template-columns: 62px 1fr;
    border-left: 0 !important;
    padding: 0 !important;
  }

  .hero-proof span {
    font-size: 0.8rem;
  }

  .hero-data-card-right {
    display: flex;
    top: 47%;
    right: 12px;
    max-width: calc(100% - 24px);
    min-width: 180px;
  }

  .hero-data-card-left {
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
    min-width: 180px;
  }

  .hero-data-card {
    gap: 9px;
    padding: 10px 12px;
  }

  .hero-data-card svg {
    width: 25px;
    height: 25px;
  }

  .hero-data-card strong {
    font-size: 0.74rem;
  }

  .hero-data-card span {
    font-size: 0.61rem;
  }

  .audience-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .audience-list span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 10px;
  }

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

  .division-card {
    padding: 28px 24px;
  }

  .ecosystem-visual::before {
    display: none;
  }

  .image-caption {
    right: 14px;
    bottom: 14px;
    width: min(360px, calc(100% - 28px));
    padding: 14px 16px;
  }

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

  .differentiator-grid article {
    min-height: 0;
  }

  .differentiator-grid article>span {
    margin-bottom: 28px;
  }

  .final-cta {
    border-radius: 24px;
    padding: 40px 27px;
  }

  .page-hero-inner {
    min-height: 420px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .page-hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.6rem);
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

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

@media (max-width: 520px) {
  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    padding: 8px;
  }

  .hero-data-card-left {
    position: absolute;
    right: auto;
    bottom: 10px;
    left: 10px;
    width: auto;
    margin: 0;
    box-shadow: var(--shadow-md);
  }

  .hero-data-card-right {
    top: 47%;
    right: 10px;
  }

  .ecosystem-visual img {
    border-width: 6px;
  }

  .flow-list li,
  .delivery-steps article {
    grid-template-columns: 43px 1fr;
    gap: 13px;
  }

  .final-cta .button {
    width: 100%;
    white-space: normal;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }
}

/* Shared interior-page accents */
.hero-accent {
  color: #ff8b45;
}

.hero-mini-panel,
.academy-hero-panel,
.about-hero-facts,
.contact-hero-aside {
  width: min(100%, 330px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  padding: 27px;
  backdrop-filter: blur(12px);
}


.hero-mini-panel>span,
.academy-hero-panel>span {
  display: block;
  margin-bottom: 17px;
  color: #ff9b5d;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-mini-panel ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: hero-list;
  list-style: none;
}

.hero-mini-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  counter-increment: hero-list;
}

.hero-mini-panel li::before {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  content: counter(hero-list, decimal-leading-zero);
  font-size: 0.58rem;
  font-weight: 850;
}

/* Services */
.service-overview {
  background: var(--white);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: start;
  gap: clamp(55px, 9vw, 130px);
}

.overview-grid .section-heading {
  margin: 0;
}

.section-jump {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 10px 23px;
}

.section-jump a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 750;
}

.section-jump a:last-child {
  border: 0;
}

.section-jump span {
  color: #a94816;
  font-size: 0.67rem;
  font-weight: 850;
}

.section-jump svg {
  width: 17px;
  height: 17px;
  color: #95a6b3;
}

.capability-section {
  background: var(--surface);
}

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

.division-intro {
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr);
  align-items: start;
  gap: 38px;
  margin-bottom: 52px;
}

.division-intro .section-heading {
  margin: 0;
}

.division-intro-mark {
  position: relative;
  display: grid;
  width: 82px;
  height: 94px;
  place-items: center;
  border-radius: 17px;
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  color: var(--white);
}

.division-intro-mark>span {
  position: absolute;
  top: 8px;
  left: 10px;
  color: rgba(255, 255, 255, .48);
  font-size: 0.59rem;
  font-weight: 850;
}

.division-intro-mark svg {
  width: 31px;
  height: 31px;
}

.division-intro-mark-orange {
  background: var(--orange-500);
}

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

.capability-card {
  display: flex;
  min-height: 425px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  padding: 29px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.capability-icon {
  display: grid;
  width: 49px;
  height: 49px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-700);
}

.capability-icon-orange {
  background: #fff1e8;
  color: var(--orange-600);
}

.capability-icon svg {
  width: 24px;
  height: 24px;
}

.capability-card h2 {
  margin-bottom: 14px;
  font-size: 1.3rem;
  line-height: 1.2;
}

.capability-card>p {
  margin-bottom: 25px;
  font-size: .9rem;
  line-height: 1.67;
}

.output-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.output-list strong {
  width: 100%;
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.output-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbfdff;
  padding: 5px 9px;
  color: #5c7284;
  font-size: .67rem;
  font-weight: 700;
}

@media (hover: hover) {
  .capability-card:hover {
    border-color: rgba(20, 93, 160, .24);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
  }
}

.division-partner-feature {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.3fr);
  align-items: stretch;
  gap: 0;
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.division-partner-photo {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  margin: 0;
  background: var(--navy-900);
}

.division-partner-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.division-partner-photo figcaption {
  display: grid;
  gap: 3px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 17px 20px;
  background: var(--navy-900);
}

.division-partner-photo figcaption strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.division-partner-photo figcaption span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 700;
}

.division-partner-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 72px);
}

.division-partner-copy .section-heading {
  margin: 0;
}

.division-partner-copy .section-lead {
  max-width: 660px;
}

.division-partner-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.division-partner-focus span {
  border: 1px solid rgba(20, 93, 160, 0.18);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 12px;
  color: var(--navy-900);
  font-size: 0.69rem;
  font-weight: 750;
}

.experience-foundation-note {
  margin-top: 24px;
  border-left: 3px solid var(--orange-500);
  padding: 3px 0 3px 18px;
}

.experience-foundation-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-900);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.experience-foundation-note p {
  margin: 0;
  color: #5b7183;
  font-size: .84rem;
  line-height: 1.7;
}

.integrated-section {
  background: var(--surface);
}

.integrated-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(55px, 8vw, 105px);
}

.integrated-grid .section-heading {
  margin-bottom: 30px;
}

.check-list-large {
  gap: 14px;
}

.check-list-large li {
  font-size: .96rem;
}

.integrated-visual {
  position: relative;
  border-radius: 27px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 11px;
}

.integrated-visual img {
  width: 100%;
  border-radius: 19px;
}

.integrated-label {
  position: absolute;
  right: 30px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 14px;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  color: var(--white);
}

.integrated-label svg {
  width: 31px;
  height: 31px;
  color: var(--orange-500);
}

.integrated-label span,
.integrated-label strong {
  display: block;
}

.integrated-label span {
  color: rgba(255, 255, 255, .6);
  font-size: .69rem;
}

.integrated-label strong {
  color: var(--white);
  font-size: .83rem;
}

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

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

.engagement-grid article {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  padding: 27px;
}

.engagement-grid article>span {
  display: block;
  margin-bottom: 42px;
  color: #a94816;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.engagement-grid h2 {
  margin-bottom: 13px;
  font-size: 1.28rem;
}

.engagement-grid p {
  margin: 0;
  font-size: .86rem;
}

.faq-section {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.faq-grid .section-heading {
  margin: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  color: var(--navy-900);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transform: rotate(90deg);
  transition: transform .2s ease;
}

.faq-list details[open] summary svg {
  transform: rotate(-90deg);
}

.faq-list details p {
  padding: 0 30px 22px 0;
  margin: 0;
  font-size: .92rem;
}

/* Academy */
.academy-hero-panel>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.academy-hero-panel b {
  color: var(--white);
  font-size: .78rem;
}

.academy-hero-panel i {
  width: 15px;
  height: 1px;
  background: rgba(255, 255, 255, .24);
}

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

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

.academy-audience-grid article {
  min-height: 345px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  padding: 31px;
}

.academy-audience-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 40px;
  place-items: center;
  border-radius: 16px;
  background: #e7f7f5;
  color: #0d7774;
}

.academy-audience-icon svg {
  width: 26px;
  height: 26px;
}

.academy-audience-grid small,
.pathway-main small {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-600);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.academy-audience-grid h2 {
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.academy-audience-grid p {
  margin: 0;
  font-size: .9rem;
}

.pathway-section {
  background: var(--surface);
}

.academy-pathways {
  border-top: 1px solid var(--line);
}

.academy-pathways article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1.25fr) minmax(230px, .75fr);
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid var(--line);
  padding: 38px 0;
}

.pathway-index {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pathway-index span {
  color: var(--navy-900);
  font-size: 1.55rem;
  font-weight: 850;
  letter-spacing: -.04em;
}

.pathway-index i {
  width: 32px;
  height: 2px;
  background: var(--orange-500);
}

.pathway-main h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.pathway-main p {
  margin: 0;
  font-size: .91rem;
}

.pathway-outcomes {
  display: grid;
  gap: 9px;
}

.pathway-outcomes span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #496479;
  font-size: .8rem;
  font-weight: 700;
}

.pathway-outcomes svg {
  width: 16px;
  height: 16px;
  color: #0d7774;
}

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

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.format-grid article {
  min-height: 350px;
  border-right: 1px solid var(--line);
  padding: 30px;
}

.format-grid article:last-child {
  border: 0;
}

.format-grid article>span {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 33px;
  place-items: center;
  border-radius: 15px;
  background: var(--blue-50);
  color: var(--blue-700);
}

.format-grid svg {
  width: 24px;
  height: 24px;
}

.format-grid small {
  display: block;
  margin-bottom: 14px;
  color: #a1b0bc;
  font-size: .63rem;
  font-weight: 850;
}

.format-grid h2 {
  margin-bottom: 13px;
  font-size: 1.25rem;
}

.format-grid p {
  margin: 0;
  font-size: .86rem;
}

.learning-model-section {
  background: var(--surface);
}

.learning-model-grid {
  display: grid;
  grid-template-columns: 1fr .86fr;
  align-items: center;
  gap: clamp(55px, 9vw, 125px);
}

.learning-model-grid .section-heading {
  margin-bottom: 34px;
}

.learning-principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.learning-principles article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.learning-principles article>svg {
  width: 25px;
  height: 25px;
  color: var(--orange-500);
}

.learning-principles h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.learning-principles p {
  margin: 0;
  font-size: .79rem;
}

.learning-model-visual {
  display: grid;
  justify-items: center;
  gap: 30px;
}

.learning-orbit {
  position: relative;
  display: grid;
  width: min(100%, 430px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(20, 93, 160, .22);
  border-radius: 50%;
  background: radial-gradient(circle, var(--white) 0 38%, transparent 39%), radial-gradient(circle, transparent 0 61%, rgba(20, 93, 160, .06) 62% 100%);
}

.learning-orbit::after {
  position: absolute;
  inset: 19%;
  border: 1px dashed rgba(245, 102, 11, .42);
  border-radius: 50%;
  content: "";
}

.learning-orbit strong {
  position: relative;
  z-index: 2;
  color: var(--navy-900);
  font-size: 1.4rem;
}

.learning-orbit span {
  position: absolute;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 9px 14px;
  color: var(--navy-900);
  font-size: .72rem;
  font-weight: 800;
}

.learning-orbit span:nth-child(1) {
  top: 7%;
  left: 38%;
}

.learning-orbit span:nth-child(2) {
  top: 44%;
  right: -4%;
}

.learning-orbit span:nth-child(3) {
  bottom: 7%;
  left: 36%;
}

.learning-orbit span:nth-child(4) {
  top: 44%;
  left: -3%;
}

.learning-model-visual>p {
  max-width: 360px;
  margin: 0;
  color: var(--navy-900);
  font-weight: 750;
  text-align: center;
}

.institutional-section {
  background: var(--navy-900);
}

.institutional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(55px, 9vw, 130px);
}

.institutional-grid h2 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.institutional-grid>div:last-child>p {
  color: rgba(255, 255, 255, .67);
  font-size: 1.04rem;
}

.institutional-list li {
  color: rgba(255, 255, 255, .76);
}

.academy-final-cta {
  padding-top: clamp(84px, 9vw, 128px);
}

/* Academy catalogue expansion */
.academy-page-hero .page-hero-inner {
  min-height: 650px;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
}

.academy-page-hero h1 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
}

.academy-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.academy-hero-image {
  position: relative;
  width: min(100%, 410px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 28px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
}

.academy-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center 22%;
}

.academy-hero-image figcaption {
  position: static;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding: 15px;
  background: rgba(6, 25, 45, .38);
}

.academy-hero-image figcaption span {
  display: grid;
  gap: 2px;
  padding: 7px 9px;
  color: rgba(255, 255, 255, .66);
  font-size: .63rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.academy-hero-image figcaption strong {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
}

.academy-hero-image figcaption .academy-partner-name {
  grid-column: 1 / -1;
  margin-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding: 4px 9px 13px;
  text-align: left;
}

.academy-hero-image figcaption .academy-partner-name strong {
  display: block;
  margin-bottom: 4px;
  font-size: .98rem;
  line-height: 1.2;
}

.academy-catalog-nav {
  position: sticky;
  top: 78px;
  z-index: 90;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 10px 30px rgba(6, 25, 45, .04);
  backdrop-filter: blur(16px);
}

.academy-catalog-nav .container {
  display: flex;
  gap: clamp(24px, 5vw, 66px);
  overflow-x: auto;
  scrollbar-width: none;
}

.academy-catalog-nav .container::-webkit-scrollbar {
  display: none;
}

.academy-catalog-nav a,
.academy-catalog-nav button {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  padding: 19px 0 17px;
  color: #3d586f;
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.academy-catalog-nav button {
  cursor: pointer;
}

.academy-catalog-nav a::after,
.academy-catalog-nav button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--orange-500);
  content: "";
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity .2s ease, transform .2s ease;
}

@media (hover: hover) {

  .academy-catalog-nav a:hover::after,
  .academy-catalog-nav button:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }
}

.academy-catalog-nav button.is-active {
  color: var(--navy-900);
}

.academy-catalog-nav button.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

[data-academy-panel] {
  scroll-margin-top: 150px;
}

[data-academy-panel][hidden] {
  display: none !important;
}

.academy-experience-copy {
  margin-top: 16px !important;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 16px;
}

.academy-experience-copy strong {
  color: var(--white);
}

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

.academy-levels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  list-style: none;
}

.academy-levels li {
  position: relative;
  min-height: 300px;
  border-right: 1px solid var(--line);
  padding: 28px 25px;
  background: linear-gradient(180deg, var(--white), #f9fbfd);
}

.academy-levels li:last-child {
  border-right: 0;
}

.academy-levels li::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--blue-700);
  content: "";
}

.academy-levels li:nth-child(1)::before {
  background: #0d7774;
}

.academy-levels li:nth-child(2)::before {
  background: var(--blue-700);
}

.academy-levels li:nth-child(3)::before {
  background: #6556b3;
}

.academy-levels li:nth-child(4)::before {
  background: var(--orange-500);
}

.academy-levels li:nth-child(5)::before {
  background: var(--navy-950);
}

.academy-levels li>span {
  display: block;
  margin-bottom: 48px;
  color: #b3c0ca;
  font-size: .7rem;
  font-weight: 850;
}

.academy-levels small,
.academy-course-card summary small,
.professional-pathway-card summary small,
.institutional-format-grid small {
  display: block;
  margin-bottom: 7px;
  color: var(--orange-600);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.academy-levels small,
.academy-course-card summary small,
.professional-pathway-card summary small {
  color: #a94816;
}

.institutional-format-grid small {
  color: #ff9b5d;
}

.academy-levels h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.academy-levels p {
  margin: 0;
  font-size: .83rem;
}

.academy-course-section {
  background: var(--surface);
}

.academy-section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 62px;
}

.academy-section-heading-row .section-heading {
  margin-bottom: 0;
}

.academy-section-heading-row>.button {
  flex: 0 0 auto;
  margin-bottom: 7px;
}

.academy-course-group {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  gap: 35px;
  border-top: 1px solid var(--line);
  padding: 38px 0 58px;
}

.academy-course-group-last {
  padding-bottom: 20px;
}

.academy-course-group-head {
  align-self: start;
  padding-top: 3px;
}

.academy-course-group-head>span {
  display: inline-flex;
  margin-bottom: 13px;
  border-radius: 999px;
  background: var(--level-color, var(--blue-700));
  padding: 7px 12px;
  color: var(--white);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.academy-course-group-head p {
  margin: 0;
  font-size: .78rem;
}

.academy-level-explore {
  --level-color: #0d7774;
}

.academy-level-practice {
  --level-color: var(--blue-700);
}

.academy-level-design {
  --level-color: #6556b3;
}

.academy-level-specialize {
  --level-color: var(--orange-500);
}

.academy-level-lead {
  --level-color: var(--navy-950);
}

.academy-course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
}

.academy-course-card,
.professional-pathway-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(6, 25, 45, .035);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.academy-course-card[id],
.professional-pathway-card[id] {
  scroll-margin-top: 150px;
}

.academy-course-card[open],
.professional-pathway-card[open] {
  border-color: rgba(20, 93, 160, .35);
  box-shadow: var(--shadow-sm);
}

.academy-course-card summary,
.professional-pathway-card summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 22px;
  cursor: pointer;
  list-style: none;
}

.academy-course-card summary::-webkit-details-marker,
.professional-pathway-card summary::-webkit-details-marker {
  display: none;
}

.academy-course-card summary:focus-visible,
.professional-pathway-card summary:focus-visible {
  border-radius: 14px;
  outline-offset: -5px;
}

.course-number,
.pathway-code {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: .7rem;
  font-weight: 850;
}

.academy-course-card summary h3,
.professional-pathway-card summary h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.course-toggle {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.course-toggle::before,
.course-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1.5px;
  background: var(--navy-900);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.course-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open]>summary .course-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.course-card-body {
  border-top: 1px solid var(--line);
  padding: 22px;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 17px;
}

.course-meta span,
.course-meta strong {
  border-radius: 999px;
  background: var(--blue-50);
  padding: 6px 9px;
  color: #446176;
  font-size: .66rem;
  font-weight: 800;
}

.course-meta strong {
  background: #fff0e7;
  color: var(--orange-600);
}

.course-card-body>p,
.course-card-body li,
.professional-pathway-card>div>p,
.professional-pathway-card li {
  font-size: .8rem;
}

.course-card-body ul,
.professional-pathway-card ol {
  display: grid;
  gap: 6px;
  margin: 16px 0;
  padding-left: 19px;
  color: #496479;
}

.course-output {
  border-left: 3px solid var(--orange-500);
  background: #fff9f5;
  padding: 10px 12px;
  color: #425e72;
}

.course-output b {
  color: var(--navy-900);
}

.course-card-body .text-link {
  font-size: .76rem;
}

.academy-access-note {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 25px;
  margin-top: 35px;
  border: 1px solid #cce4df;
  border-radius: 17px;
  background: #effaf8;
  padding: 22px 25px;
}

.academy-access-note strong {
  color: #0d7774;
}

.academy-access-note p {
  margin: 0;
  font-size: .84rem;
}

.academy-pathway-catalog {
  background: var(--white);
}

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

.professional-pathway-card summary {
  min-height: 132px;
  grid-template-columns: 50px minmax(0, 1fr) 24px;
}

.professional-pathway-card summary p {
  margin: 7px 0 0;
  color: #637a8b;
  font-size: .7rem;
}

.professional-pathway-card summary p strong {
  color: var(--navy-900);
}

.professional-pathway-card>div {
  border-top: 1px solid var(--line);
  padding: 22px 24px 24px;
}

.professional-pathway-card>div>.text-link {
  display: inline-flex;
  margin-top: 5px;
  font-size: .76rem;
}

.professional-pathway-card-wide {
  grid-column: 1 / -1;
}

.academy-pathway-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 35px;
  border-radius: 22px;
  background: var(--navy-900);
  padding: 29px 32px;
}

.academy-pathway-cta strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1.15rem;
}

.academy-pathway-cta p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .67);
  font-size: .83rem;
}

.learning-principles article>span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: #fff0e7;
  color: #a94816;
  font-size: .62rem;
  font-weight: 850;
}

.academy-organization-section {
  background:
    radial-gradient(circle at 10% 0, rgba(30, 116, 198, .32), transparent 28%),
    var(--navy-950);
}

.academy-organization-section .section-heading h2 {
  color: var(--white);
}

.academy-organization-section .section-lead p {
  color: rgba(255, 255, 255, .66);
}

.institutional-format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.institutional-format-grid article {
  min-height: 290px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  padding: 28px;
}

.institutional-format-grid article>span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 43px;
  place-items: center;
  border-radius: 12px;
  background: rgba(245, 102, 11, .16);
  color: #ff9b5d;
  font-weight: 850;
}

.institutional-format-grid h3 {
  color: var(--white);
  font-size: 1.28rem;
}

.institutional-format-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .83rem;
}

.capacity-programme {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(45px, 8vw, 105px);
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 62px;
}

.capacity-programme h3 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.capacity-programme ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capacity-programme li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 0;
}

.capacity-programme li>span {
  color: #ff9b5d;
  font-size: .68rem;
  font-weight: 850;
}

.capacity-programme li strong {
  color: var(--white);
}

.capacity-programme li p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
}

.organization-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  margin-top: 60px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 22px;
  background: rgba(20, 93, 160, .2);
  padding: 30px 32px;
}

.organization-cta h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.45rem;
}

.organization-cta p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .84rem;
}

@media (max-width: 1050px) {
  .academy-levels {
    grid-template-columns: repeat(3, 1fr);
  }

  .academy-levels li {
    border-bottom: 1px solid var(--line);
  }

  .academy-levels li:nth-child(3) {
    border-right: 0;
  }

  .academy-levels li:nth-child(n+4) {
    border-bottom: 0;
  }

  .academy-levels li:nth-child(5) {
    border-right: 0;
  }

  .academy-course-group {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .leadership-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-experience-panel {
    grid-template-columns: 1fr;
  }

  .academy-page-hero .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .academy-hero-image {
    width: min(100%, 560px);
  }

  .academy-hero-image img {
    height: 560px;
  }

  .academy-course-group,
  .capacity-programme {
    grid-template-columns: 1fr;
  }

  .academy-course-group-head {
    max-width: 560px;
  }

  .institutional-format-grid {
    grid-template-columns: 1fr;
  }

  .institutional-format-grid article {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .academy-catalog-nav {
    position: relative;
    top: auto;
  }

  .academy-section-heading-row,
  .academy-pathway-cta,
  .organization-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .academy-section-heading-row>.button,
  .academy-pathway-cta .button,
  .organization-cta .button {
    width: 100%;
  }

  .academy-levels,
  .academy-course-grid,
  .professional-pathway-grid {
    grid-template-columns: 1fr;
  }

  .academy-levels li,
  .academy-levels li:nth-child(n) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .academy-levels li:last-child {
    border-bottom: 0;
  }

  .academy-levels li>span {
    margin-bottom: 26px;
  }

  .professional-pathway-card-wide {
    grid-column: auto;
  }

  .academy-access-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .academy-page-hero .page-hero-inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .academy-hero-actions {
    display: grid;
  }

  .academy-hero-actions .button {
    width: 100%;
  }

  .academy-hero-image img {
    height: 430px;
  }

  .academy-hero-image figcaption {
    padding: 9px;
  }

  .academy-hero-image figcaption span {
    padding: 6px 3px;
    font-size: .55rem;
  }

  .academy-course-card summary,
  .professional-pathway-card summary {
    grid-template-columns: 38px minmax(0, 1fr) 22px;
    gap: 10px;
    padding: 18px;
  }

  .course-number,
  .pathway-code {
    width: 38px;
    height: 38px;
  }

  .academy-course-card summary h3,
  .professional-pathway-card summary h3 {
    font-size: .96rem;
  }

  .course-card-body,
  .professional-pathway-card>div {
    padding: 18px;
  }

  .academy-pathway-cta,
  .organization-cta {
    padding: 23px;
  }
}

/* About */
.about-hero-facts {
  display: grid;
  gap: 0;
  padding-top: 14px;
  padding-bottom: 14px;
}

.about-hero-facts div {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding: 16px 4px;
}

.about-hero-facts div:last-child {
  border: 0;
}

.about-hero-facts strong {
  color: var(--white);
  font-size: 1.55rem;
  letter-spacing: -.04em;
}

.about-hero-facts span {
  color: rgba(255, 255, 255, .57);
  font-size: .73rem;
  font-weight: 700;
  line-height: 1.4;
}

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

.story-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(55px, 9vw, 125px);
}

.story-grid-new .section-heading {
  margin-bottom: 28px;
}

.story-body {
  font-size: 1.02rem;
  line-height: 1.8;
}

.purpose-stack {
  display: grid;
  gap: 17px;
}

.purpose-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  padding: 35px;
}

.purpose-card-mission {
  background: var(--navy-900);
}

.purpose-card>span {
  display: block;
  margin-bottom: 30px;
  color: #a94816;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.purpose-card h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.45;
}

.purpose-card-mission h2 {
  color: var(--white);
}

.purpose-card-mission>span {
  color: #ff9b5d;
}

.principle-section {
  background: var(--surface);
}

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

.principle-grid article {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--white);
  padding: 28px;
}

.principle-grid article>span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 43px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-700);
}

.principle-grid svg {
  width: 23px;
  height: 23px;
}

.principle-grid h2 {
  margin-bottom: 12px;
  font-size: 1.24rem;
}

.principle-grid p {
  margin: 0;
  font-size: .86rem;
}

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

.approach-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.approach-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 35px;
}

.approach-list article>span {
  grid-row: 1 / 3;
  color: #a94816;
  font-size: .72rem;
  font-weight: 850;
}

.approach-list h2 {
  margin-bottom: 11px;
  font-size: 1.28rem;
}

.approach-list p {
  margin: 0;
  font-size: .88rem;
}

.leadership-section {
  background: var(--surface);
}

.leadership-team-heading {
  max-width: 900px;
  margin-bottom: 42px;
}

.leadership-governance-copy {
  max-width: 860px;
  margin: 20px 0 0;
  color: #516a7d;
  font-size: .92rem;
  line-height: 1.78;
}

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

.leadership-team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.leadership-team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  object-position: center top;
}

.leadership-team-card>div {
  padding: 22px 22px 24px;
}

.leadership-team-card span {
  display: block;
  margin-bottom: 7px;
  color: #a94816;
  font-size: .67rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.leadership-team-card h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 1.2rem;
}

.leadership-team-card p {
  margin: 0;
  color: #5c7284;
  font-size: .8rem;
  line-height: 1.68;
}

.founder-experience-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(35px, 6vw, 75px);
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  padding: clamp(28px, 5vw, 50px);
}

.founder-experience-panel h2 {
  margin-top: 8px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.founder-experience-panel>div>p {
  color: #516a7d;
}

.leadership-copy {
  font-size: .94rem;
  line-height: 1.78;
}

.founder-experience-panel blockquote {
  position: relative;
  margin: 0 0 26px;
  border-left: 3px solid var(--orange-500);
  padding: 5px 0 5px 24px;
}

.founder-experience-panel blockquote>svg {
  width: 23px;
  height: 23px;
  margin-bottom: 10px;
  color: var(--orange-500);
}

.founder-experience-panel blockquote p {
  margin: 0;
  color: var(--navy-900);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.6;
}

.leadership-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.leadership-pillars span {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 7px 11px;
  color: #486377;
  font-size: .73rem;
  font-weight: 750;
}

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

.collaboration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 35px 80px;
}

.collaboration-grid .section-heading {
  margin: 0;
}

.collaboration-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.collaboration-types span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  padding: 9px 14px;
  color: #4f697d;
  font-size: .78rem;
  font-weight: 700;
}

.collaboration-grid>.button {
  grid-column: 2;
  justify-self: start;
}

/* Contact */
.contact-hero-aside {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-hero-aside>svg {
  width: 37px;
  height: 37px;
  color: #ff9b5d;
}

.contact-hero-aside span,
.contact-hero-aside small,
.contact-hero-aside a {
  display: block;
}

.contact-hero-aside small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .48);
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-hero-aside a {
  color: var(--white);
  font-size: .9rem;
  font-weight: 750;
}

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

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

.conversation-grid>a {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  padding: 28px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.conversation-grid>a>span {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-700);
}

.conversation-grid svg {
  width: 24px;
  height: 24px;
}

.conversation-grid h2 {
  margin-bottom: 13px;
  font-size: 1.28rem;
}

.conversation-grid p {
  margin-bottom: 25px;
  font-size: .86rem;
}

.conversation-grid b {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue-700);
  font-size: .77rem;
}

.conversation-grid b svg {
  width: 16px;
  height: 16px;
}

@media (hover: hover) {
  .conversation-grid>a:hover {
    border-color: rgba(20, 93, 160, .25);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
  }
}

.inquiry-section {
  background: var(--surface);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: minmax(300px, .73fr) minmax(0, 1.27fr);
  align-items: start;
  gap: clamp(55px, 8vw, 100px);
}

.inquiry-context .section-heading {
  margin-bottom: 40px;
}

.contact-direct-list {
  display: grid;
  gap: 10px;
}

.contact-direct-list>a,
.contact-direct-list>div {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 13px;
}

.contact-direct-list>a>svg,
.contact-direct-list>div>svg {
  width: 21px;
  height: 21px;
  justify-self: center;
  color: var(--orange-500);
}

.contact-direct-list small,
.contact-direct-list strong {
  display: block;
}

.contact-direct-list small {
  color: #8da0ae;
  font-size: .61rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.response-note {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 11px;
  margin-top: 23px;
  border-top: 1px solid var(--line);
  padding-top: 23px;
}

.response-note svg {
  width: 22px;
  height: 22px;
  color: var(--blue-700);
}

.response-note p {
  margin: 0;
  font-size: .76rem;
  line-height: 1.6;
}

.form-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.form-shell-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
  padding: 20px 30px;
}

.form-shell-head span {
  color: var(--navy-900);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-shell-head p {
  margin: 0;
  font-size: .7rem;
}

.contact-form-new,
.academy-application-form {
  display: grid;
  gap: 21px;
  padding: 32px;
}

.contact-form-new[hidden],
.academy-application-form[hidden] {
  display: none;
}

.form-row-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.contact-form-new label,
.academy-application-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-900);
  font-size: .78rem;
  font-weight: 750;
}

.contact-form-new label>span,
.academy-application-form label>span {
  display: inline;
  color: #a94816;
}

.contact-form-new input,
.contact-form-new select,
.contact-form-new textarea,
.academy-application-form input,
.academy-application-form select,
.academy-application-form textarea {
  width: 100%;
  border: 1px solid #ccd9e3;
  border-radius: 11px;
  background: var(--white);
  padding: 13px 14px;
  color: var(--ink);
  font-size: .87rem;
  font-weight: 500;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form-new textarea,
.academy-application-form textarea {
  min-height: 155px;
  resize: vertical;
}

.contact-form-new input:focus,
.contact-form-new select:focus,
.contact-form-new textarea:focus,
.academy-application-form input:focus,
.academy-application-form select:focus,
.academy-application-form textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(30, 116, 198, .11);
}

.contact-form-new ::placeholder,
.academy-application-form ::placeholder {
  color: var(--muted);
  opacity: 1;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.form-submit-row button:disabled {
  cursor: wait;
  opacity: .66;
}

.form-submit-row p {
  max-width: 300px;
  margin: 0;
  font-size: .67rem;
  line-height: 1.45;
}

.form-error {
  margin: 0;
  border-radius: 10px;
  background: #fff0ee;
  padding: 11px 13px;
  color: #a73d32;
  font-size: .78rem;
}

.form-error a {
  font-weight: 800;
  text-decoration: underline;
}

.form-result {
  display: grid;
  min-height: 540px;
  place-items: center;
  align-content: center;
  padding: 45px;
  text-align: center;
}

.form-result>span {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: #e7f7f0;
  color: #13845b;
}

.form-result svg {
  width: 30px;
  height: 30px;
}

.form-result h2 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.form-result p {
  max-width: 480px;
  margin-bottom: 25px;
}

.simple-cta-section {
  padding-top: 0;
  background: var(--surface);
}

.simple-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid var(--line);
  padding-top: 55px;
}

.simple-cta .eyebrow {
  margin-bottom: 12px;
}

.simple-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

/* Academy application */
.academy-application-hero .page-hero-inner {
  min-height: 560px;
}

.application-process {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .07);
  padding: 27px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
}

.application-process>span {
  display: block;
  margin-bottom: 21px;
  color: #ff9b5d;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.application-process ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.application-process li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 13px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 15px 0;
}

.application-process li:first-child {
  border-top: 0;
  padding-top: 0;
}

.application-process li:last-child {
  padding-bottom: 0;
}

.application-process li strong {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-size: .72rem;
}

.application-process li p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .79rem;
  font-weight: 700;
}

.academy-application-section {
  background: var(--surface);
}

.application-check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 23px;
  padding: 0;
  list-style: none;
}

.application-check-list li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  padding: 13px 14px 13px 42px;
  color: #496479;
  font-size: .78rem;
  line-height: 1.55;
}

.application-check-list li::before {
  position: absolute;
  top: 14px;
  left: 15px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #e7f7f0;
  color: #13845b;
  content: "✓";
  font-size: .65rem;
  font-weight: 900;
}

.application-cv-note {
  border-left: 4px solid var(--orange-500);
  border-radius: 0 13px 13px 0;
  background: #fff7f0;
  padding: 17px 19px;
}

.application-cv-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy-900);
  font-size: .82rem;
}

.application-cv-note p {
  margin: 0;
  font-size: .76rem;
  line-height: 1.6;
}

.application-email {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue-700);
  font-size: .78rem;
  font-weight: 800;
}

.academy-application-form .checkbox-field,
.contact-form-new .checkbox-field {
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  border-radius: 11px;
  background: var(--blue-50);
  padding: 14px;
}

.academy-application-form .checkbox-field input,
.contact-form-new .checkbox-field input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--blue-700);
}

.academy-application-form .checkbox-field>span,
.contact-form-new .checkbox-field>span {
  color: #496479;
  font-size: .72rem;
  font-weight: 650;
  line-height: 1.55;
}

/* Interior page responsiveness */
@media (max-width: 1050px) {

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

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

  .format-grid article:nth-child(2) {
    border-right: 0;
  }

  .format-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .academy-pathways article {
    grid-template-columns: 90px 1fr;
  }

  .pathway-outcomes {
    grid-column: 2;
    grid-template-columns: repeat(3, auto);
    justify-content: start;
  }
}

@media (max-width: 900px) {
  .academy-application-hero .page-hero-inner {
    min-height: 0;
  }

  .overview-grid,
  .integrated-grid,
  .faq-grid,
  .learning-model-grid,
  .institutional-grid,
  .story-grid-new,
  .leadership-grid-new,
  .collaboration-grid,
  .inquiry-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid,
  .integrated-grid,
  .faq-grid,
  .learning-model-grid,
  .institutional-grid,
  .story-grid-new,
  .leadership-grid-new,
  .inquiry-grid {
    gap: 50px;
  }

  .section-jump {
    max-width: 600px;
  }

  .integrated-visual {
    max-width: 760px;
  }

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

  .academy-audience-grid article {
    min-height: 0;
  }

  .learning-model-visual {
    order: -1;
  }

  .leadership-photo-new {
    max-width: 580px;
  }

  .collaboration-grid>.button {
    grid-column: auto;
  }

  .conversation-grid>a {
    min-height: 300px;
  }

  .division-partner-feature {
    grid-template-columns: minmax(0, 1fr);
  }

  .division-partner-photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 700px) {
  .leadership-team-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-aside {
    justify-content: flex-start;
  }

  .hero-mini-panel,
  .academy-hero-panel,
  .about-hero-facts,
  .contact-hero-aside {
    width: 100%;
  }

  .division-intro {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .division-intro-mark {
    width: 70px;
    height: 76px;
  }

  .capability-grid,
  .principle-grid,
  .engagement-grid,
  .format-grid,
  .conversation-grid,
  .approach-list {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 0;
  }

  .engagement-grid article,
  .format-grid article,
  .conversation-grid>a {
    min-height: 0;
  }

  .format-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
  }

  .format-grid article:last-child {
    border-bottom: 0 !important;
  }

  .academy-pathways article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pathway-outcomes {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .learning-principles {
    grid-template-columns: 1fr;
  }

  .approach-list {
    border-left: 0;
  }

  .approach-list article {
    border-left: 1px solid var(--line);
  }

  .leadership-grid-new {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .form-shell-head,
  .form-submit-row,
  .simple-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .button,
  .simple-cta .button {
    width: 100%;
  }
}

@media (max-width: 480px) {

  .capability-card,
  .principle-grid article,
  .academy-audience-grid article,
  .conversation-grid>a,
  .contact-form-new,
  .academy-application-form {
    padding: 23px;
  }

  .application-process {
    padding: 22px;
  }

  .division-partner-feature {
    margin-top: 45px;
    border-radius: 19px;
  }

  .division-partner-copy {
    padding: 27px 23px 31px;
  }

  .integrated-label {
    position: absolute;
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    margin: 0;
    padding: 11px 13px;
  }

  .learning-orbit span {
    padding: 7px 9px;
    font-size: .62rem;
  }

  .leadership-photo-label {
    position: absolute;
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    min-width: 0;
    margin: 0;
  }

  .form-shell-head {
    padding: 18px 23px;
  }
}

@media (prefers-reduced-motion: reduce) {

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


/* === 2026-08-25 approved amendments === */
/* Image labels/cards remain outside image boundaries on desktop and mobile. */
.hero-visual-topline {
  order: 1;
}

.hero-data-card-left {
  order: 2;
  grid-column: 1/-1;
  justify-self: start;
  width: min(360px, 100%);
}

.hero-visual>img {
  order: 3;
}

.hero-data-card-right {
  order: 4;
  grid-column: 1/-1;
  justify-self: end;
  width: min(360px, 100%);
}

@media(max-width:600px) {

  .hero-data-card-left,
  .hero-data-card-right {
    width: 100%;
    justify-self: stretch;
  }
}

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

.hero-visual-topline,
.hero-visual>img {
  grid-column: 1/-1;
}

.hero-data-card,
.hero-data-card-left,
.hero-data-card-right {
  position: static;
  inset: auto;
  transform: none;
  min-width: 0;
  width: 100%;
  max-width: none;
  margin: 0;
}

.ecosystem-visual {
  display: grid;
  gap: 14px;
}

.image-caption {
  position: static;
  inset: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  z-index: auto;
}

.integrated-visual {
  display: grid;
  gap: 14px;
}

.integrated-label {
  position: static;
  inset: auto;
  width: 100%;
  max-width: none;
  margin: 0;
}

.leadership-photo-new {
  display: grid;
  gap: 14px;
}

.leadership-photo-label {
  position: static;
  inset: auto;
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
}

.academy-partner-bio {
  margin-top: 16px;
  border-left: 4px solid var(--orange-500);
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  padding: 18px 20px;
  color: rgba(255, 255, 255, .82);
}

.academy-partner-bio .eyebrow {
  margin-bottom: 8px;
}

.academy-partner-bio p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.65;
}

.academy-apply-switcher-section {
  padding: 34px 0 0;
  background: var(--surface);
}

.academy-apply-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 850px;
  margin: 0 auto;
}

.academy-apply-switch {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 16px 20px;
  color: var(--navy-900);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.academy-apply-switch.is-active {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.academy-apply-panel[hidden] {
  display: none !important;
}

.join-hero-note {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-left: 4px solid var(--orange-500);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  padding: 25px;
  color: rgba(255, 255, 255, .82);
}

.join-hero-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.05rem;
}

.join-hero-note p {
  margin: 0;
}

.join-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.join-value-grid article,
.join-path-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.join-value-grid article>span,
.join-path-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--orange-100);
  color: #a94816;
  font-weight: 900;
  font-size: .78rem;
}

.join-value-grid h3 {
  margin: 18px 0 8px;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.join-value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

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

.join-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.join-path-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
}

.join-path-card.join-path-primary {
  border: 2px solid rgba(230, 126, 34, .45);
}

.join-path-card small {
  margin-top: 18px;
  color: #a94816;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.join-path-card h3 {
  margin: 8px 0 12px;
  color: var(--navy-900);
  font-size: 1.55rem;
  line-height: 1.15;
}

.join-path-card p {
  margin: 0 0 24px;
  color: var(--muted);
}

.join-path-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.join-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.join-steps li {
  border-top: 3px solid var(--orange-500);
  border-radius: 14px;
  background: var(--surface);
  padding: 22px 18px;
}

.join-steps li>span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  font-weight: 900;
  margin-bottom: 14px;
}

.join-steps strong {
  display: block;
  color: var(--navy-900);
  font-size: .92rem;
}

.join-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.join-process-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.join-evolve-section {
  background: var(--navy-900);
  color: var(--white);
}

.join-evolve-section h2,
.join-evolve-section .section-lead p {
  color: var(--white);
}

.join-evolve-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.join-evolve-line span {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  padding: 20px;
  text-align: center;
  font-weight: 800;
}

.join-evolve-line b {
  color: var(--orange-500);
  font-size: 1.4rem;
}

.join-evolve-quote {
  margin: 24px 0 0;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 800;
}

.join-faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.join-faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 0 20px;
}

.join-faq summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--navy-900);
  font-weight: 800;
}

.join-faq details p {
  margin: 0 0 18px;
  color: var(--muted);
}

@media(max-width:900px) {
  .join-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .join-path-card {
    min-height: 0;
  }

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

@media(max-width:600px) {
  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-visual-topline,
  .hero-visual>img {
    grid-column: 1;
  }

  .academy-apply-switcher {
    grid-template-columns: 1fr;
  }

  .join-value-grid {
    grid-template-columns: 1fr;
  }

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

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

  .join-evolve-line b {
    transform: rotate(90deg);
    text-align: center;
  }
}

/* Final hero card placement: one above and one below the image. */
.hero-data-card-left {
  order: 2;
  grid-column: 1/-1;
  justify-self: start;
  width: min(360px, 100%);
}

.hero-data-card-right {
  order: 4;
  grid-column: 1/-1;
  justify-self: end;
  width: min(360px, 100%);
}

@media(max-width:600px) {
  .contact-email-entry:hover {
    background: rgba(255, 255, 255, .08);
  }

  .hero-data-card-left,
  .hero-data-card-right {
    width: 100%;
    justify-self: stretch;
  }
}

/* === 2026-08-25 urgent Academy hero leadership layout fix === */
/* Keep Hadeel's photo and leadership bio as separate stacked blocks so neither
   compresses nor overlaps the other at any breakpoint. */
.academy-page-hero .page-hero-aside {
  display: grid;
  align-content: center;
  justify-items: end;
  gap: 16px;
  min-width: 0;
}

.academy-page-hero .academy-hero-image,
.academy-page-hero .academy-partner-bio {
  width: min(100%, 410px);
  min-width: 0;
}

.academy-page-hero .academy-partner-bio {
  margin-top: 0;
  box-sizing: border-box;
}

@media (max-width:900px) {
  .contact-email-entry:hover {
    background: rgba(255, 255, 255, .08);
  }

  .academy-page-hero .page-hero-aside {
    justify-items: start;
  }

  .academy-page-hero .academy-hero-image,
  .academy-page-hero .academy-partner-bio {
    width: min(100%, 560px);
  }
}

@media (max-width:520px) {
  .contact-email-entry:hover {
    background: rgba(255, 255, 255, .08);
  }

  .academy-page-hero .page-hero-aside {
    width: 100%;
    gap: 12px;
  }

  .academy-page-hero .academy-hero-image,
  .academy-page-hero .academy-partner-bio {
    width: 100%;
  }
}

.contact-email-entry:hover {
  background: rgba(255, 255, 255, .08);
}

/* === V1.2: Contact email directory and Join Us opportunity architecture === */
.contact-hero-aside {
  align-items: flex-start;
}

.contact-email-directory {
  display: grid;
  gap: 9px;
  min-width: min(430px, 100%);
}

.contact-email-directory>small {
  margin-bottom: 2px;
}

.contact-email-entry {
  display: grid;
  grid-template-columns: minmax(120px, .85fr) minmax(0, 1.25fr);
  gap: 14px;
  align-items: baseline;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: inherit;
}

.contact-email-entry:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.contact-email-entry span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .68);
}

.contact-email-entry strong {
  font-size: .84rem;
  color: var(--white);
  overflow-wrap: anywhere;
}

.join-expand-button {
  cursor: pointer;
  font: inherit;
}

.join-expansion-panel {
  grid-column: 1/-1;
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
  scroll-margin-top: 110px;
}

.join-expansion-panel[hidden],
.join-application-shell[hidden] {
  display: none !important;
}

.opportunity-template[hidden] {
  display: none !important;
}

.join-expansion-head {
  max-width: 760px;
  margin-bottom: 24px;
}

/* The Community of Practice is the primary community entry point, so its card spans the full panel width. */
.join-expansion-head-community {
  max-width: none;
}

.join-expansion-head h3 {
  margin: 8px 0 8px;
  color: var(--navy-900);
  font-size: 1.8rem;
  line-height: 1.15;
}

.join-expansion-head p {
  margin: 0;
  color: var(--muted);
}

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

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

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


.join-opportunity-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  min-height: 250px;
}

.join-opportunity-card .opportunity-division,
.opportunity-status {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}


/* Four intentionally soft division colors — one consistent color per division. */
.join-opportunity-card .opportunity-division.practice-community {
  background: #0f9d8a;
  color: var(--navy-950);
}

.join-opportunity-card .opportunity-division.division-academy {
  background: #fff0e6;
  color: #a94816;
}

.join-opportunity-card .opportunity-division.division-consultancy {
  background: #eef7ef;
  color: #3f7448;
}

.join-opportunity-card .opportunity-division.division-systems {
  background: #edf4fc;
  color: #2d6594;
}

.opportunity-status {
  background: #fff0e6;
  color: #a94816;
}

.join-opportunity-card h4 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-size: 1.15rem;
  line-height: 1.25;
}

.join-opportunity-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: .88rem;
}

.join-opportunity-card .opportunity-requirements {
  margin-top: -6px;
  color: var(--navy-900);
  font-size: .78rem;
}

.join-opportunity-card .text-link {
  margin-top: auto;
  align-self: flex-start;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  color: #a94816;
}

.opportunity-empty {
  grid-column: 1/-1;
  min-height: 0;
  text-align: center;
  align-items: center;
  padding: 34px;
}

.opportunity-empty p {
  max-width: 620px;
  margin-bottom: 0;
}

.opportunity-dates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 16px;
}

.opportunity-dates div {
  border-radius: 10px;
  background: var(--surface);
  padding: 10px 12px;
}

.opportunity-dates dt {
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  font-weight: 800;
}

.opportunity-dates dd {
  margin: 2px 0 0;
  color: var(--navy-900);
  font-size: .82rem;
  font-weight: 800;
}

.opportunity-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.opportunity-actions .button {
  margin-top: 0;
}

.opportunity-pdf[aria-disabled="true"] {
  opacity: .5;
  pointer-events: none;
}

.join-application-shell {
  grid-column: 1/-1;
  margin-top: 28px;
  scroll-margin-top: 110px;
}

.join-application-shell .form-shell {
  max-width: 850px;
  margin: 0 auto;
}

@media(max-width:900px) {

  .join-opportunity-grid,
  .practice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-email-directory {
    min-width: 0;
  }
}

@media(max-width:600px) {

  .join-opportunity-grid,
  .practice-grid {
    grid-template-columns: 1fr;
  }

  .contact-email-entry {
    grid-template-columns: 1fr;
    gap: 1px
  }

  .opportunity-dates {
    grid-template-columns: 1fr
  }

  .opportunity-actions {
    flex-direction: column
  }

  .opportunity-actions .button {
    width: 100%
  }

  .join-expansion-panel {
    padding-top: 26px
  }
}

/* === V1.3 mobile hotfix: Experience Behind MEAL Bridge === */
@media (max-width: 900px) {
  .founder-experience-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .founder-experience-panel>* {
    min-width: 0;
  }
}


/* === V1.4: Privacy & Data Protection === */
.checkbox-field a {
  color: #a94816;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkbox-field a:hover {
  color: var(--navy-900);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .62);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.privacy-policy-section {
  background: var(--surface);
}

.privacy-policy-layout {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.7fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.privacy-policy-summary {
  position: sticky;
  top: 108px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.privacy-policy-summary h2 {
  margin: 10px 0 22px;
  color: var(--navy-900);
  font-size: 1.55rem;
}

.privacy-policy-summary dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.privacy-policy-summary dl div {
  border-top: 1px solid var(--line);
  padding: 13px 0;
}

.privacy-policy-summary dl div:first-child {
  border-top: 0;
  padding-top: 0;
}

.privacy-policy-summary dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.privacy-policy-summary dd {
  margin: 0;
  color: var(--navy-900);
  font-size: .88rem;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.privacy-policy-summary a,
.privacy-policy-content a {
  color: #a94816;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-policy-note {
  margin: 20px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.65;
}

.privacy-policy-content {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow-sm);
}

.privacy-policy-intro {
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.privacy-policy-intro p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.65;
}

.privacy-policy-content section+section {
  margin-top: 38px;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.privacy-policy-content h2 {
  margin: 0 0 14px;
  color: var(--navy-900);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.3;
}

.privacy-policy-content p,
.privacy-policy-content li {
  color: #516a7d;
  font-size: .94rem;
  line-height: 1.8;
}

.privacy-policy-content p {
  margin: 0 0 14px;
}

.privacy-policy-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.privacy-policy-content li+li {
  margin-top: 7px;
}

.privacy-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

.privacy-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.privacy-table-wrap th,
.privacy-table-wrap td {
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
  color: #516a7d;
  font-size: .84rem;
  line-height: 1.55;
}

.privacy-table-wrap th {
  background: var(--surface);
  color: var(--navy-900);
  font-size: .72rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.privacy-table-wrap td:last-child {
  font-weight: 750;
  color: var(--navy-900);
}

@media(max-width:900px) {
  .privacy-policy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-policy-summary {
    position: static;
  }
}

@media(max-width:600px) {

  .privacy-policy-summary,
  .privacy-policy-content {
    border-radius: 16px;
    padding: 22px;
  }
}

/* === V1.5: Privacy-first Google Analytics consent === */
.analytics-consent {
  position: fixed;
  inset: auto 20px 20px;
  z-index: 1400;
  margin: 0 auto;
  max-width: 1120px;
  border: 1px solid rgba(7, 42, 82, .14);
  border-radius: 20px;
  background: rgba(255, 255, 255, .985);
  box-shadow: 0 22px 70px rgba(7, 42, 82, .24);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .18s ease, transform .18s ease;
}

.analytics-consent[hidden] {
  display: none !important;
}

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

.analytics-consent-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 22px 24px;
}

.analytics-consent-copy {
  min-width: 0;
}

.analytics-consent-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #a94816;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.analytics-consent h2 {
  margin: 0 0 6px;
  color: var(--navy-900);
  font-size: 1.08rem;
  line-height: 1.25;
}

.analytics-consent p {
  margin: 0;
  color: #516a7d;
  font-size: .78rem;
  line-height: 1.62;
}

.analytics-consent a {
  color: #a94816;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.analytics-consent-status {
  margin-top: 7px !important;
  color: var(--navy-900) !important;
  font-weight: 750;
}

.analytics-consent-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  min-width: max-content;
  padding-right: 28px;
}

.analytics-consent-actions .button {
  margin: 0;
  white-space: nowrap;
}

.analytics-consent-close {
  position: absolute;
  right: 0;
  top: -7px;
  border: 0;
  background: transparent;
  padding: 4px 6px;
  color: #607486;
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.analytics-consent-close:hover {
  color: var(--navy-900);
}

.footer-preference-link {
  border: 0;
  background: none;
  padding: 0;
  color: rgba(255, 255, 255, .62);
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.footer-preference-link:hover {
  color: var(--white);
}

@media(max-width:760px) {
  .analytics-consent {
    inset: auto 12px 12px;
    border-radius: 16px;
  }

  .analytics-consent-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .analytics-consent-actions {
    justify-content: stretch;
    min-width: 0;
    padding-right: 28px;
  }

  .analytics-consent-actions .button {
    flex: 1 1 190px;
    justify-content: center;
  }
}

@media(max-width:460px) {
  .analytics-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .analytics-consent-actions .button {
    width: 100%;
  }

  .analytics-consent-close {
    right: -4px;
    top: -35px;
  }
}

@media(prefers-reduced-motion:reduce) {
  .analytics-consent {
    transition: none;
  }
}



/* === V1.5.1: share actions + shared-content deep links === */
.content-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 5px 0 0 14px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #5f7486;
  font: inherit;
  font-size: .76rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
}

.content-share-button:hover {
  color: #a94816;
}

.content-share-button:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--orange-500);
  outline-offset: 4px;
}

.join-opportunity-card>.content-share-button {
  align-self: flex-start;
  margin: 8px 0 0;
}

.shared-content-target {
  outline: 2px solid var(--orange-500);
  outline-offset: 5px;
}

@media(max-width:520px) {

  .course-card-body>.content-share-button,
  .professional-pathway-card>div>.content-share-button {
    margin-left: 12px;
  }
}


/* === V1.5.2: Solutions sharing + Community free-join clarity === */
.capability-card>.content-share-button {
  align-self: flex-start;
  margin: 14px 0 0;
}

.division-intro .content-share-button {
  margin: 10px 0 0;
}

.join-free-badge {
  display: inline-flex;
  align-self: flex-start;
  margin: 10px 0 0;
  border: 1px solid rgba(230, 126, 34, .28);
  border-radius: 999px;
  background: var(--orange-100);
  padding: 6px 10px;
  color: #a94816;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.community-free-note {
  margin-top: 10px !important;
  border-left: 3px solid var(--orange-500);
  padding-left: 12px;
  color: var(--navy-900) !important;
}