:root {
  /* Carebridge brand palette (matches carebridge.education) */
  --navy-950: #04163f;
  --navy-900: #08245f;
  --navy-800: #0b3178;
  --blue-700: #0d4e9f;
  --blue-600: #1469c1;
  --orange-700: #a93b00;
  --orange-600: #c84a00;
  --orange-500: #f47a22;
  --orange-400: #ff9f5a;
  --orange-100: #fff0e5;
  --teal-600: var(--orange-600);
  --teal-500: var(--orange-500);
  --teal-400: var(--orange-400);
  --gold-500: var(--orange-500);
  --ink-900: #242a35;
  --ink-700: #3d4657;
  --ink-500: #667085;
  --paper-0: #ffffff;
  --paper-50: #fbfcfe;
  --paper-100: #eef2f8;
  --border: #dce4ed;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 12px 32px rgba(4, 22, 63, 0.08);
  --shadow-lift: 0 20px 50px rgba(4, 22, 63, 0.14);
  /* Matches --content (1180px) used by .container on every other page */
  --maxw: 1180px;
  font-size: 16px;
}

.pathway-process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(8, 36, 95, 0.08), transparent 24%),
    linear-gradient(180deg, #f7efe7 0%, #fbfcfe 100%);
}

.pathway-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 36, 95, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 36, 95, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.pathway-process-section .process-shell {
  position: relative;
  z-index: 1;
}

.pathway-process-section .process-copy h2,
.pathway-process-section .process-copy h3 {
  color: var(--navy-950);
}

.pathway-process-section .process-copy .lead {
  color: #415166;
}

.pathway-process-section .process-grid::before {
  background: linear-gradient(180deg, rgba(244, 122, 34, 0.7), rgba(8, 36, 95, 0.14));
}
:root {
  --font-serif: "Bricolage Grotesque", sans-serif;
  --font-sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-brand: "Bricolage Grotesque", sans-serif;
  --navy-950: #04163f;
  --navy-900: #08245f;
  --navy-800: #0b3178;
  --blue-700: #0d4e9f;
  --blue-600: #1469c1;
  --orange-700: #a93b00;
  --orange-600: #c84a00;
  --orange-500: #f47a22;
  --orange-100: #fff0e5;
  --ink: #242a35;
  --muted: #667085;
  --line: #dce4ed;
  --paper: #fbfcfe;
  --white: #ffffff;
  --shadow: 0 20px 50px rgb(4 22 63 / 12%);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content: 1180px;
  --header-total-height: 122px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

/* Zero-Delay Touch Response & Hardware Acceleration for Mobile, Tablet, Laptop, Desktop */
a, button, input, select, textarea, summary, [role="button"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hero-v3-metric-pill,
.journey-floating-card,
.hiw-step-card,
.degree-card,
.program-v3-card,
.cta-v3-box {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.section-v3:not(:first-of-type),
.section:not(:first-of-type) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 650px;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgb(8 36 95 / 2.2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(8 36 95 / 2.2%) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  pointer-events: none;
}

img, picture, svg {
  display: block;
  max-width: 100%;
  height: auto;
  content-visibility: auto;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--orange-700);
  line-height: 1.12;
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

h1,
h2 {
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6.2vw, 5.6rem);
  font-weight: 400;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  font-weight: 400;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--navy-950);
  color: var(--white);
  transform: translateY(-160%);
  text-decoration: none;
  box-shadow: 0 10px 24px rgb(4 22 63 / 16%);
  transition: transform 180ms ease;
}

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

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

.admission-strip {
  color: var(--white);
  background: var(--navy-950);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admission-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--content));
  min-height: 38px;
  margin-inline: auto;
  gap: 20px;
}

.admission-strip a {
  display: inline-flex;
  align-items: center;
  color: #ffd8bd;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.admission-strip a:hover {
  color: var(--white);
}

.pulse-indicator {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background-color: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
  animation: live-pulse 2s infinite;
  vertical-align: middle;
}

@keyframes live-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(8 36 95 / 8%);
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 4px 20px rgb(4 22 63 / 3%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--content));
  min-height: 84px;
  margin-inline: auto;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  width: 180px;
}

.brand img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

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

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--navy-900);
}

.primary-nav .nav-contact {
  margin-left: 4px;
  color: var(--white);
  background: var(--orange-600);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

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

.mobile-nav {
  display: none;
  position: relative;
}

@media (max-width: 900px) {
  .mobile-nav {
    display: block;
  }
}

.mobile-nav summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 18px;
  border: 1px solid rgba(8, 36, 95, 0.16);
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--white);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  list-style: none;
  box-shadow: 0 4px 14px rgba(4, 22, 63, 0.08);
  transition: background-color 200ms ease, border-color 200ms ease, transform 180ms ease;
  user-select: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary .mobile-nav__icon::after {
  content: "☰";
  color: var(--orange-600);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.mobile-nav[open] summary .mobile-nav__icon::after {
  content: "✕";
  color: var(--orange-600);
  font-size: 1.05rem;
}

/* Dimmed Fullscreen Backdrop Overlay */
.mobile-nav__backdrop {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(2, 11, 36, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1), visibility 300ms ease;
}

.mobile-nav[open] .mobile-nav__backdrop {
  opacity: 1;
  visibility: visible;
}

/* Vertical 65% Screen Slide-Out Drawer */
.mobile-nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9995;
  width: 65vw;
  min-width: 275px;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #020c24 0%, #031238 50%, #041846 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
  padding: 20px 18px calc(24px + env(safe-area-inset-bottom));
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-nav[open] .mobile-nav__drawer {
  transform: translateX(0);
}

/* Drawer Header with Brand & Close Button */
.mobile-nav__drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.mobile-nav__drawer-brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}

.mobile-nav__close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 200ms ease, transform 200ms ease;
}

.mobile-nav__close-btn:hover {
  background: var(--orange-600);
  border-color: #ffb17c;
  transform: scale(1.08);
}

/* Nav Link Items */
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.mobile-nav__links a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 12px;
  color: #c4d7f2;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.mobile-nav__links a .nav-icon {
  font-size: 1.15rem;
}

.mobile-nav__links a:hover,
.mobile-nav__links a:focus-visible {
  color: var(--white);
  background: rgba(20, 105, 193, 0.22);
  transform: translateX(4px);
}

.mobile-nav__links a[aria-current="page"] {
  color: #ffb17c;
  background: rgba(244, 122, 34, 0.16);
  border: 1px solid rgba(244, 122, 34, 0.35);
  font-weight: 800;
}

/* Drawer Footer */
.mobile-nav__drawer-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.mobile-nav__helpline-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(244, 122, 34, 0.18);
  border: 1px solid rgba(244, 122, 34, 0.45);
  color: #ffb17c;
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease;
}

.mobile-nav__helpline-btn:hover {
  background: var(--orange-600);
  color: var(--white);
}

/* Low-Opacity Logo Watermark in Drawer Background */
.mobile-nav__watermark {
  position: absolute;
  bottom: 10px;
  right: -20px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
  transform: rotate(-10deg);
}

.mobile-nav__watermark img {
  width: 230px;
  height: auto;
  display: block;
}

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

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 0.78rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  color: #93a4c5;
}

.breadcrumbs a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  text-decoration: underline;
}

.breadcrumbs--light {
  color: #d5e3ff;
}

.breadcrumbs--light [aria-current="page"] {
  color: #ffbc8e;
}

.section {
  padding-block: clamp(72px, 9vw, 126px);
}

.section--tight {
  padding-block: clamp(52px, 7vw, 86px);
}

.section--white {
  background-color: var(--white);
  background-image:
    radial-gradient(circle at 92% 12%, rgb(244 122 34 / 5%), transparent 24%),
    radial-gradient(circle at 8% 88%, rgb(13 78 159 / 4%), transparent 26%),
    linear-gradient(rgb(8 36 95 / 2.2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(8 36 95 / 2.2%) 1px, transparent 1px);
  background-size: auto, auto, 32px 32px, 32px 32px;
}

.section--navy {
  color: #dfe9ff;
  background-color: var(--navy-950);
  background-image:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px),
    radial-gradient(circle at 88% 15%, rgb(244 122 34 / 24%), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  background-size: 38px 38px, 38px 38px, auto, auto;
}

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

.section--blue {
  color: #eaf2ff;
  background-color: var(--navy-800);
  background-image:
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px),
    radial-gradient(circle at 12% 82%, rgb(244 122 34 / 14%), transparent 26%),
    linear-gradient(140deg, var(--navy-800), var(--blue-700));
  background-size: 38px 38px, 38px 38px, auto, auto;
}

.section--blue h2,
.section--blue h3 {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--orange-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  margin-right: 10px;
  color: currentColor;
  content: "↗";
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
}

.hero .eyebrow,
.page-hero .eyebrow,
.section--navy .eyebrow,
.section--blue .eyebrow,
.final-cta .eyebrow {
  color: #ffab70;
}

.display-italic {
  display: inline;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

.hero .orange,
.page-hero .orange,
.section--navy .orange,
.section--blue .orange,
.final-cta .orange {
  color: var(--orange-500);
}

.lead {
  max-width: 780px;
  color: #4b5565;
  font-family: var(--font-sans);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
  line-height: 1.68;
}

.section--navy .lead,
.section--blue .lead {
  color: #dfe9ff;
}

.kicker {
  margin-bottom: 12px;
  color: var(--orange-600);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
  gap: 12px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  overflow: hidden;
}

.button::after {
  margin-left: 10px;
  content: "→";
  transition: transform 160ms ease;
}

.button:hover::after {
  transform: translateX(3px);
}

.button--orange {
  color: var(--white);
  background: var(--orange-600);
}

/* .button--orange::before {
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 30%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 70%
  );
  transform: rotate(25deg) translateY(-100%);
  content: "";
  pointer-events: none;
}

.button--orange:hover::before {
  transform: rotate(25deg) translateY(100%);
} */

.button--orange:hover,
.button--orange:focus-visible {
  background: var(--orange-700);
  box-shadow: 0 12px 28px rgb(4 22 63 / 20%);
  transform: translateY(-2px);
}

.button--navy {
  border-color: rgba(200, 74, 0, 0.3);
  color: var(--orange-700);
  background: rgba(255, 255, 255, 0.76);
}

.button--navy:hover,
.button--navy:focus-visible {
  background: var(--orange-600);
  border-color: var(--orange-600);
  color: #fff;
  box-shadow: 0 12px 28px rgb(4 22 63 / 14%);
  transform: translateY(-2px);
}

.button--outline {
  border-color: currentColor;
  color: var(--navy-900);
  background: transparent;
}

.hero-call-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    padding: 14px 24px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button--outline:hover,
.button--outline:focus-visible {
  transform: translateY(-2px);
}

.section--navy .button--outline,
.hero .button--outline,
.page-hero .button--outline,
.final-cta .button--outline {
  color: var(--white);
}

.section--navy .button--outline:hover,
.hero .button--outline:hover,
.page-hero .button--outline:hover,
.final-cta .button--outline:hover {
  background: rgb(255 255 255 / 10%);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 18%, rgb(246 129 40 / 44%), transparent 26%),
    radial-gradient(circle at 44% 58%, rgb(180 29 95 / 22%), transparent 32%),
    linear-gradient(135deg, #020f37 0%, #082c75 58%, #0756a7 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 3.5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 3.5%) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  min-height: 600px;
  padding-block: 40px;
  gap: clamp(34px, 5vw, 64px);
}

.hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2.45rem, 4vw, 4.15rem);
}

.hero__copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #dbe8ff;
  font-size: 1.08rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
  gap: 10px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 999px;
  color: #eef4ff;
  background: rgb(255 255 255 / 8%);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}

.hero-destinations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
  gap: 8px;
}

.destination-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  background: rgb(255 255 255 / 7%);
  color: #e3edff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.destination-pill:hover {
  background: rgb(255 255 255 / 16%);
  border-color: #ff9950;
  color: var(--white);
  transform: translateY(-2px);
}

.destination-pill span.flag {
  margin-right: 6px;
  font-size: 0.95rem;
}

.hero-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #ffab70;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: hero-hint-bounce 2.2s infinite ease-in-out;
}

@keyframes hero-hint-bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

/* ==========================================================================
   Brochure Showcase Hero (Full-Bleed Responsive Background System)
   ========================================================================== */
.hero--brochure-showcase {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: calc(100vh - var(--header-total-height, 122px));
  min-height: calc(100dvh - var(--header-total-height, 122px));
  display: flex;
  align-items: center;
  padding-top: clamp(48px, 6vh, 80px);
  padding-bottom: clamp(90px, 11vw, 140px);
  background-color: #020b22;
  /* CSS Fallback background */
  background-image: 
    linear-gradient(90deg, rgba(2, 11, 34, 0.94) 0%, rgba(2, 11, 34, 0.82) 45%, rgba(2, 11, 34, 0.25) 75%, transparent 100%),
    url("assets/images/hero-homepage-pc.webp");
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

.hero--page-showcase {
  min-height: calc(100vh - var(--header-total-height, 122px));
  min-height: calc(100dvh - var(--header-total-height, 122px));
  padding-block: clamp(40px, 5vh, 76px);
  box-sizing: border-box;
}

/* Background Media & Picture Layer */
.hero-brochure__bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-brochure__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.9;
  filter: saturate(0.96) brightness(0.9) contrast(1.06);
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Gradient Overlay for Pristine Readability & Visual Glow */
.hero-brochure__bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, 
      rgba(2, 11, 36, 0.93) 0%, 
      rgba(2, 11, 36, 0.84) 34%, 
      rgba(2, 11, 36, 0.50) 56%, 
      rgba(2, 11, 36, 0.16) 78%,
      rgba(2, 11, 36, 0.04) 100%
    ),
    linear-gradient(180deg,
      rgba(2, 11, 36, 0.26) 0%,
      rgba(2, 11, 36, 0.08) 24%,
      rgba(2, 11, 36, 0.1) 72%,
      rgba(2, 11, 36, 0.68) 100%
    ),
    radial-gradient(circle at 82% 28%, rgba(20, 105, 193, 0.18), transparent 56%),
    radial-gradient(circle at 15% 84%, rgba(244, 122, 34, 0.1), transparent 44%);
}

.hero-brochure__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 4.5vw, 64px);
  align-items: center;
  /* width: 100%; */
  width: min(calc(100% - 32px), var(--maxw))
}

.hero-brochure__copy {
  display: flex;
  flex-direction: column;
  max-width: 740px;
}

/* Staggered Cinematic Text Entrance Animation */
@keyframes heroContentReveal {
  0% {
    opacity: 0;
    transform: translateY(26px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brochure__copy > * {
  animation: heroContentReveal 850ms cubic-bezier(0.16, 1, 0.3, 1) both;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero-brochure__copy > .breadcrumbs {
  animation-delay: 80ms;
}

.hero-brochure__copy > .hero-brochure__badge-row {
  animation-delay: 180ms;
}

.hero-brochure__copy > .hero-brochure__title {
  animation-delay: 300ms;
}

.hero-brochure__copy > .hero-brochure__tagline {
  animation-delay: 420ms;
}

.hero-brochure__copy > .hero-brochure__lead {
  animation-delay: 520ms;
}

.hero-brochure__copy > .hero-stats-strip,
.hero-brochure__copy > .hero-brochure__actions,
.hero-brochure__copy > .button-row {
  animation-delay: 640ms;
}

.hero-brochure__badge-row {
  margin-bottom: 14px;
}

.hero-brochure__affil-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(20, 105, 193, 0.22);
  border: 1px solid rgba(20, 105, 193, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #8ec5ff;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-brochure__title {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(2.4rem, 4.8vw, 4.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-transform: none;
}

.hero-brochure__title .display-italic {
  display: inline;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-transform: none;
}

.hero-brochure__tagline {
  margin: 0 0 12px;
  color: #ffab70;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-brochure__lead {
  max-width: 640px;
  margin: 0 0 24px;
  color: #d0e1fd;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.62;
  font-weight: 400;
}

/* 4 Core Statistics from Brochure Page 2 */
.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.hero-stat-pill {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(5, 22, 63, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.hero-stat-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 122, 34, 0.65);
  background: rgba(5, 22, 63, 0.88);
}

.hero-stat-pill strong {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-pill span {
  font-size: 0.72rem;
  color: #a4bedf;
  line-height: 1.3;
  font-weight: 500;
}

.hero-stat-pill--highlight strong {
  color: var(--orange-500);
}

.hero-brochure__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  margin-bottom: clamp(36px, 4.5vw, 60px);
}

/* Right Media Stage & Floating Highlights */
.hero-brochure__media {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 380px;
  pointer-events: none;
}

.hero-floating-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.hero-floating-badge {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(2, 11, 36, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 24px rgba(20, 105, 193, 0.25);
  color: var(--white);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  animation: heroContentReveal 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-floating-badges > :nth-child(1) {
  animation-delay: 450ms;
}

.hero-floating-badges > :nth-child(2) {
  animation-delay: 600ms;
}

.hero-floating-badge:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(244, 122, 34, 0.6);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55), 0 0 30px rgba(244, 122, 34, 0.3);
}

.hero-floating-badge .badge-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.hero-floating-badge strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.hero-floating-badge span {
  font-size: 0.74rem;
  color: #a4bedf;
  line-height: 1.2;
}

/* ==========================================================================
   Global Destinations & 3 Unbroken Pillars Split Section
   ========================================================================== */
.pathway-brochure-split {
  padding-block: clamp(56px, 7vw, 96px);
  border-top: 1px solid rgb(255 255 255 / 8%);
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  background: linear-gradient(145deg, #020b20 0%, #04163f 50%, #020c24 100%);
}

.pathway-brochure__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.section-tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff9e61;
  background: rgb(244 122 34 / 14%);
  border: 1px solid rgb(244 122 34 / 30%);
  padding: 5px 14px;
  border-radius: 999px;
}

.section-tag .tag-arrow {
  color: #ff5414;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

.pathway-main-title {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.pathway-lead {
  max-width: 640px;
  margin: 0 0 22px;
  color: #c5d8f4;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.destination-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.destination-card-v2 {
  position: relative;
  padding: 16px 18px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-md);
  background: rgb(5 22 63 / 55%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgb(0 0 0 / 22%);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 280ms ease,
              box-shadow 280ms ease,
              background-color 280ms ease;
}

.destination-card-v2:hover {
  transform: translateY(-4px);
  border-color: rgb(244 122 34 / 70%);
  background: rgb(13 40 95 / 65%);
  box-shadow: 0 18px 40px rgb(0 0 0 / 38%), 0 0 24px rgb(244 122 34 / 20%);
}

.destination-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.destination-card__flag {
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.destination-card-v2:hover .destination-card__flag {
  transform: scale(1.18) rotate(-4deg);
}

.destination-card__head strong {
  display: block;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
}

.destination-card__head span {
  color: #a4bedf;
  font-size: 0.76rem;
}

.destination-card__stat {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgb(244 122 34 / 12%);
  border: 1px solid rgb(244 122 34 / 22%);
  color: #ffab70;
  font-size: 0.78rem;
  font-weight: 700;
}

.pillar-stack-v2 {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 20px;
}

.pillar-card-v2 {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius-md);
  background: rgb(5 22 63 / 50%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgb(0 0 0 / 20%);
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 280ms ease,
              background-color 280ms ease,
              box-shadow 280ms ease;
}

.pillar-card-v2:hover {
  transform: translateX(6px);
  border-color: rgb(20 105 193 / 70%);
  background: rgb(13 50 115 / 55%);
  box-shadow: 0 14px 34px rgb(0 0 0 / 32%), 0 0 20px rgb(20 105 193 / 25%);
}

.pillar-card-v2 .pillar-card__num {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-style: italic;
  font-weight: 700;
  color: var(--orange-500);
  line-height: 1;
  transition: text-shadow 280ms ease;
}

.pillar-card-v2:hover .pillar-card__num {
  text-shadow: 0 0 16px rgb(244 122 34 / 70%);
}

.pillar-card-v2 h3 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

.pillar-card-v2 p {
  margin: 0;
  color: #c2d5ee;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Educate/Certify/Deploy process layout, matching index.html's how-it-works section */
.process-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 118px;
}

.process-grid {
  position: relative;
  margin: 0;
  display: grid;
  gap: 18px;
  padding-left: 38px;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(244, 122, 34, 0.6), rgba(255, 255, 255, 0.12));
}

.process-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffd7bc;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-grid .ecd-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(15, 30, 67, 0.98), rgba(11, 49, 120, 0.96));
}

.process-grid .ecd-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 122, 34, 0.16), transparent 68%);
  pointer-events: none;
}

.process-grid .ecd-card::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 34px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 6px rgba(244, 122, 34, 0.14);
}

.ecd-meta {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.ecd-body {
  min-width: 0;
}

.ecd-body h3 {
  margin-bottom: 10px;
  color: #fff;
}

.ecd-body p {
  color: #cfd8e6;
}

.ecd-num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-weight: 800;
  font-family: var(--font-serif);
  margin-bottom: 0;
}

.process-grid .ecd-card-wide {
  background: linear-gradient(135deg, rgba(169, 59, 0, 0.98), rgba(244, 122, 34, 0.95));
}

.process-grid .ecd-card-wide p {
  color: #fff1e6;
}

.process-grid .ecd-card-wide .process-kicker,
.process-grid .ecd-card-wide .ecd-num,
.process-grid .ecd-card-wide h3 {
  color: #fff;
}

.pathway-cta-row {
  margin-top: 8px;
}

.button--glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgb(244 122 34 / 35%);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.button--glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgb(244 122 34 / 50%);
}

.button--glow .btn-arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 240ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.button--glow:hover .btn-arrow {
  transform: translateX(5px);
}

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

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

  .doors-grid--five > .door-card,
  .doors-grid--five > .door-card:nth-child(4),
  .doors-grid--five > .door-card:nth-child(5) {
    grid-column: auto;
  }

  .hero--brochure-showcase,
  .hero--page-showcase {
    min-height: auto;
    display: block;
    align-items: stretch;
    padding-top: clamp(232px, 34vw, 320px);
    padding-bottom: clamp(28px, 4vh, 48px);
    background-color: #020b22;
    background-image: none;
    overflow: hidden;
  }

  .hero-brochure__bg-media {
    inset: 0 0 auto;
    height: clamp(220px, 34vw, 308px);
  }

  .hero-brochure__bg-img {
    object-position: center 34%;
    opacity: 0.96;
    filter: saturate(0.98) brightness(0.88) contrast(1.08);
    transform: none;
  }

  .hero-brochure__bg-img[src$="canva-programs-team.jpg"] {
    object-position: center 22%;
  }

  .hero-brochure__bg-img[src$="campus-aerial-dji.jpg"] {
    object-position: center 38%;
  }

  .hero-brochure__bg-img[src$="DRONE_VIEW_NEW.png"] {
    object-position: center 42%;
  }

  .hero-brochure__bg-img[src$="canva-program-healthcare-conference.jpg"] {
    object-position: center 24%;
  }

  .hero-brochure__bg-img[src$="carebridge-hero-woman-v2.jpg"] {
    object-position: 58% 18%;
  }

  .hero-brochure__bg-overlay {
    background: 
      linear-gradient(180deg, 
        rgba(2, 11, 36, 0.22) 0%, 
        rgba(2, 11, 36, 0.14) 22%, 
        rgba(2, 11, 36, 0.5) 68%, 
        rgba(2, 11, 36, 0.94) 100%
      ),
      linear-gradient(90deg,
        rgba(2, 11, 36, 0.56) 0%,
        rgba(2, 11, 36, 0.22) 54%,
        rgba(2, 11, 36, 0.08) 100%
      ),
      radial-gradient(circle at 52% 20%, rgba(20, 105, 193, 0.18), transparent 62%);
  }

  .hero-brochure__grid,
  .pathway-brochure__grid {
    grid-template-columns: 1fr;
    padding-inline: 0 !important;
    gap: 20px;
    width: 100%;
  }

  .hero-brochure__copy {
    padding-left: 0 !important;
    max-width: 100%;
  }

  .hero-brochure__badge-row {
    margin-bottom: 10px;
  }

  .hero-brochure__affil-badge {
    font-size: 0.74rem;
    padding: 5px 12px;
    gap: 6px;
  }

  .hero-brochure__title {
    font-size: clamp(1.95rem, 8vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
  }

  .hero-brochure__tagline {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
  }

  .hero-brochure__lead {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #d0e1fd;
    margin-bottom: 20px;
  }

  .hero-stats-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-stat-pill {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(5, 22, 63, 0.84);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-stat-pill strong {
    font-size: 1.3rem;
  }

  .hero-stat-pill span {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .hero-brochure__actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-brochure__actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 48px;
    font-size: 0.92rem;
    font-weight: 750;
  }

  .hero-brochure__media {
    min-height: auto;
    align-items: stretch;
    margin-top: 10px;
    width: 100%;
  }

  .hero-floating-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
  }

  .hero-floating-badge {
    flex: 1 1 calc(50% - 10px);
    min-width: 130px;
    padding: 9px 12px;
    font-size: 0.74rem;
    border-radius: 12px;
    gap: 8px;
  }

  .destination-grid-v2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pillar-card-v2 {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }
}




.hero__visual img {
  width: 100%;
  max-height: 610px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 44% 44% 26px 26px;
  box-shadow: 0 35px 90px rgb(0 0 0 / 32%);
  object-fit: cover;
  object-position: center;
}

.hero--cover {
  min-height: 680px;
  isolation: isolate;
  background: var(--navy-950);
}

.hero__stage {
  display: contents;
}

.hero--cover::before {
  z-index: 2;
  opacity: 0.52;
}

.hero--cover::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(2 15 55 / 99%) 0%, rgb(4 22 63 / 96%) 42%, rgb(4 22 63 / 48%) 67%, rgb(4 22 63 / 4%) 100%),
    linear-gradient(0deg, rgb(4 22 63 / 48%) 0%, transparent 46%);
  content: "";
}

.hero__background {
  position: absolute;
  z-index: 0;
  right: max(0px, calc((100vw - var(--content)) / 2));
  bottom: 0;
  width: auto;
  max-width: none;
  height: min(100%, 800px);
  object-fit: contain;
  object-position: right bottom;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero--cover .hero__inner {
  z-index: 3;
  grid-template-columns: minmax(0, 720px) 1fr;
  min-height: 680px;
  padding-block: 76px;
}

.hero--cover .hero__copy {
  padding-block: 20px;
}

.hero--cover h1,
.hero--cover .hero__copy > p {
  text-shadow: 0 3px 24px rgb(0 0 0 / 30%);
}

.hero--cover .hero__copy > * {
  animation: hero-rise 700ms ease both;
}

.hero--cover .hero__copy > :nth-child(2) {
  animation-delay: 80ms;
}

.hero--cover .hero__copy > :nth-child(3) {
  animation-delay: 150ms;
}

.hero--cover .hero__copy > :nth-child(4) {
  animation-delay: 220ms;
}

.hero--cover .hero__copy > :nth-child(5) {
  animation-delay: 290ms;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-color: #020b22;
  background-image:
    linear-gradient(90deg, rgba(2, 11, 34, 0.95) 0%, rgba(2, 11, 34, 0.86) 42%, rgba(2, 11, 34, 0.46) 72%, rgba(2, 11, 34, 0.22) 100%),
    radial-gradient(circle at 82% 24%, rgb(20 105 193 / 22%), transparent 34%),
    radial-gradient(circle at 18% 82%, rgb(244 122 34 / 16%), transparent 28%),
    linear-gradient(180deg, #04163f 0%, #020b22 100%);
  background-size: auto;
  min-height: calc(100vh - var(--header-total-height, 122px));
  min-height: calc(100dvh - var(--header-total-height, 122px));
  display: flex;
  align-items: center;
  padding-block: clamp(44px, 5.5vh, 78px);
  box-sizing: border-box;
}

.page-hero--brochure {
  min-height: calc(100vh - var(--header-total-height, 122px));
  min-height: calc(100dvh - var(--header-total-height, 122px));
  display: flex;
  align-items: center;
  background-color: #020b22;
  box-sizing: border-box;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 11, 36, 0.12) 0%, transparent 24%, transparent 78%, rgba(2, 11, 36, 0.42) 100%),
    radial-gradient(circle at 50% 0%, rgb(255 255 255 / 6%) 0%, transparent 60%);
  pointer-events: none;
  content: "";
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: center;
  min-height: 460px;
  padding-block: 0;
  gap: clamp(32px, 4.8vw, 72px);
  width: min(calc(100% - 32px), var(--maxw));
}

.page-hero__inner > div:first-child {
  display: flex;
  flex-direction: column;
  max-width: 720px;
}

.page-hero .breadcrumbs {
  animation: motion-hero-fade 600ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.page-hero .eyebrow {
  margin-bottom: 16px;
  color: #ffbc8e;
  animation: motion-hero-fade 650ms cubic-bezier(0.16, 1, 0.3, 1) 50ms both;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  animation: motion-hero-up 750ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.page-hero p {
  max-width: 640px;
  color: #cfdef7;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.62;
  margin: 0 0 24px;
  animation: motion-hero-up 750ms cubic-bezier(0.16, 1, 0.3, 1) 220ms both;
}

.page-hero .cb-blueprint-title + p {
  color: #ffcfab;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero .button-row {
  margin-top: 6px;
  animation: motion-hero-up 750ms cubic-bezier(0.16, 1, 0.3, 1) 300ms both;
}

.page-hero img {
  width: 100%;
  height: 420px;
  max-height: 500px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 28px;
  box-shadow: 0 28px 72px rgb(0 0 0 / 42%), 0 0 28px rgb(20 105 193 / 16%);
  object-fit: cover;
  object-position: center 30%;
  background: rgb(2 12 36 / 70%);
  animation: motion-hero-media 900ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 320ms ease;
}

.page-hero img:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 34px 82px rgb(0 0 0 / 50%), 0 0 38px rgb(244 122 34 / 20%);
}

@keyframes motion-hero-fade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes motion-hero-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes motion-hero-media {
  from {
    opacity: 0;
    transform: translate3d(20px, 16px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.page-hero--image img {
  height: 420px;
}

.page-hero--image .page-hero__panorama {
  height: 340px;
  max-height: 380px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.page-hero--image .page-hero__cutout {
  height: 390px;
  max-height: 420px;
  border: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 45px rgb(0 0 0 / 60%));
}

.page-hero--image img[src$="canva-programs-team-cutout.png"],
.page-hero--image img[src$="canva-admissions-nurse.png"],
.page-hero--image img[src$="canva-clinical-training.png"] {
  border: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 45px rgb(0 0 0 / 60%));
}

.page-hero--image img[src$="canva-final-pathway.jpg"] {
  object-position: center 50%;
}

.page-hero--image img[src*="facility-"],
.page-hero--image img[src*="campus-anatomy"],
.page-hero--image img[src*="readiness-lab"],
.page-hero--image img[src*="digital-health"],
.page-hero--image img[src*="healthcare-conference"] {
  height: auto;
  max-height: 440px;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 34%;
}

.page-hero--image img[src$="university-entrance.jpg"],
.page-hero--image img[src$="campus-aerial.jpg"],
.page-hero--image img[src$="campus-aerial-panorama.jpg"] {
  height: auto;
  max-height: 440px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 35%;
}

/* ==========================================================================
   About Hero Innovative Panoramic Card & Seal
   ========================================================================== */
.about-hero-media {
  position: relative;
  width: 100%;
  perspective: 1000px;
}

.about-hero-card {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 18%);
  box-shadow: 0 24px 60px rgb(0 0 0 / 45%), 0 0 35px rgb(20 105 193 / 20%);
  background: #020c24;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), border-color 320ms ease, box-shadow 320ms ease;
  cursor: pointer;
}

.about-hero-card:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgb(244 122 34 / 55%);
  box-shadow: 0 32px 75px rgb(0 0 0 / 55%), 0 0 45px rgb(244 122 34 / 28%);
}

.about-hero-card__img {
  width: 100%;
  height: 380px;
  max-height: 420px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  border: 0;
  box-shadow: none;
}

.about-hero-card__img[src$=".png"] {
  object-fit: cover;
  object-position: center 25%;
}

.about-hero-card:hover .about-hero-card__img {
  transform: scale(1.03);
}

.about-hero-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgb(2 11 32 / 85%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 20%);
  color: #ffb17c;
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgb(0 0 0 / 30%);
  z-index: 2;
}

.about-hero-seal {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  border-radius: 14px;
  background: rgb(2 11 32 / 82%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgb(255 255 255 / 16%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 40%);
  z-index: 2;
  transition: background-color 220ms ease, border-color 220ms ease;
}

.about-hero-card:hover .about-hero-seal {
  background: rgb(2 11 32 / 92%);
  border-color: rgb(244 122 34 / 45%);
}

.about-hero-seal__logo {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.about-hero-seal__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  animation: none;
  transition: none;
}

.about-hero-seal__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.about-hero-seal__text strong {
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.about-hero-seal__text span {
  color: #ffb17c;
  font-size: 0.72rem;
  font-weight: 600;
}

@media (min-width: 641px) and (max-width: 900px) {
  .page-hero--image img[src$="canva-programs-team-cutout.png"] {
    align-self: end;
    margin-bottom: -72px;
  }
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 30px;
}

.section-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.section-heading p {
  max-width: 430px;
  margin-bottom: 6px;
  color: var(--muted);
}

.chapter-nav {
  position: sticky;
  top: calc(var(--header-total-height, 122px) + -12px);
  z-index: 20;
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-top: -86px;
  margin-bottom: 0;
  padding: 6px;
  border: 1px solid rgb(8 36 95 / 9%);
  border-radius: 18px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 16px 40px rgb(4 22 63 / 10%);
  overflow-x: auto;
  overflow-y: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#pillars,
#academics,
#clinical-training,
#career-readiness,
#success-system,
#salary {
  scroll-margin-top: calc(var(--header-total-height, 122px) + 108px);
}

.chapter-nav a {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 52px;
  padding: 10px 14px;
  border-radius: 14px;
  white-space: nowrap;
  color: var(--navy-900);
  font-weight: 400;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.chapter-nav a:hover,
.chapter-nav a:focus-visible,
.chapter-nav a.is-current {
  color: var(--white);
  background: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgb(4 22 63 / 18%);
}

.chapter-nav span {
  margin-right: 10px;
  color: var(--orange-600);
  font-family: var(--font-serif);
  font-size: 1.18rem;
  /* font-style: italic; */
  font-weight: 700;
  transition: color 180ms ease;
}

.chapter-nav a:hover span,
.chapter-nav a:focus-visible span,
.chapter-nav a.is-current span {
  color: #ffb17c;
}

.chapter-nav + .pathway-process-section {
  padding-top: clamp(34px, 5vw, 64px);
}

.section--navy .section-heading p,
.section--blue .section-heading p {
  color: #dfe9ff;
}

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

.stat {
  position: relative;
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 18px rgb(4 22 63 / 3%);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgb(4 22 63 / 8%);
  border-color: #b3c9e3;
}

.stat::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--orange-500);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.stat:hover::after {
  opacity: 1;
}

.stat strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-600);
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
}

.stat span {
  color: var(--navy-900);
  font-size: 0.9rem;
}

.cards-2,
.cards-3,
.cards-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 24px rgb(4 22 63 / 4%);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  border-color: rgb(244 122 34 / 42%);
  box-shadow: 0 20px 45px rgb(4 22 63 / 10%), 0 0 20px rgb(244 122 34 / 8%);
  transform: translateY(-5px);
}

.card--navy {
  border-color: rgb(255 255 255 / 14%);
  color: #dce8ff;
  background: linear-gradient(145deg, #072259, #031438);
  box-shadow: 0 12px 32px rgb(2 11 32 / 20%);
}

.card--navy:hover {
  border-color: rgb(244 122 34 / 58%);
  box-shadow: 0 24px 55px rgb(0 0 0 / 5%), 0 0 28px rgb(244 122 34 / 5%);
  transform: translateY(-5px);
}

.card--navy h3 {
  color: var(--white);
}

.card--outline {
  border: 2px solid rgb(8 36 95 / 18%);
  box-shadow: none;
  background: #ffffff;
}

.card--outline:hover {
  border-color: var(--orange-500);
  box-shadow: 0 16px 40px rgb(4 22 63 / 8%);
  transform: translateY(-5px);
}

.card__number {
  display: block;
  margin-bottom: 18px;
  color: var(--orange-500);
  font-family: var(--font-serif);
  font-size: 3.3rem;
  font-style: italic;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(40px, 8vw, 100px);
}

.split--start {
  align-items: start;
}

.split__image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

/* Brochure panoramas are complete compositions, not crop sources. */
.split__image img[src$="university-entrance.jpg"],
.split__image img[src$="campus-aerial.jpg"] {
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.split__image img[src$="canva-university-entrance.png"],
.split__image img[src$="canva-campus-aerial-view.jpg"],
.split__image img[src$="campus-aerial-panorama.jpg"] {
  height: auto;
  min-height: 0;
  object-fit: contain;
}

/* ==========================================================================
   Campus Showcase Section: Side-by-Side Dual Feature Layout
   ========================================================================== */
.campus-showcase {
  background-color: #ffffff;
  padding-block: clamp(64px, 7.5vw, 100px);
  position: relative;
}

.campus-showcase__header {
  max-width: 840px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.campus-showcase__title {
  margin: 0 0 18px;
  color: var(--navy-950);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.028em;
}

.campus-showcase__lead {
  margin: 0;
  color: var(--navy-700);
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  line-height: 1.62;
}

/* Live Metrics Strip */
.campus-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(24px, 3.5vw, 36px);
  padding: 18px 24px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f0f6ff 0%, #f9fcff 100%);
  border: 1px solid rgb(8 36 95 / 10%);
  box-shadow: 0 8px 24px rgb(4 22 63 / 5%);
}

.campus-metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 14px;
  border-left: 3px solid var(--orange-500);
}

.campus-metric-val {
  color: var(--navy-950);
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.campus-metric-lbl {
  color: #48618a;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
}

/* 2-Card Side-by-Side Grid */
.campus-dual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-bottom: clamp(28px, 3.5vw, 40px);
}

.campus-dual-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgb(8 36 95 / 10%);
  box-shadow: 0 14px 40px rgb(4 22 63 / 7%);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), border-color 320ms ease, box-shadow 320ms ease;
  cursor: pointer;
}

.campus-dual-card:hover {
  transform: translateY(-7px);
  border-color: rgb(244 122 34 / 45%);
  box-shadow: 0 26px 60px rgb(4 22 63 / 14%), 0 0 24px rgb(244 122 34 / 12%);
}

.campus-dual-card__media {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #020c24;
}

.campus-dual-card__media picture,
.about-hero-card picture,
.split__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.campus-dual-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  transition: transform 550ms cubic-bezier(0.16, 1, 0.3, 1);
}

.campus-dual-card:hover .campus-dual-card__media img {
  transform: scale(1.05);
}

.campus-dual-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgb(2 11 32 / 85%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 22%);
  color: #ffb17c;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgb(0 0 0 / 30%);
  z-index: 5;
}

/* Top-Right Expand Action Hint */
.campus-dual-card__zoom-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgb(2 11 32 / 85%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(255 255 255 / 20%);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
  z-index: 5;
}

.campus-dual-card:hover .campus-dual-card__zoom-hint {
  background: var(--orange-500);
  border-color: #ffb17c;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgb(244 122 34 / 40%);
}

.campus-dual-card__zoom-hint .plan-icon {
  font-size: 0.88rem;
}

/* Bottom Glassmorphic Feature HUD Ribbon */
.campus-hud-ribbon {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgb(2 11 32 / 80%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgb(255 255 255 / 16%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 40%);
  z-index: 5;
  transition: background-color 260ms ease, border-color 260ms ease;
}

.campus-dual-card:hover .campus-hud-ribbon {
  background: rgb(2 11 32 / 92%);
  border-color: rgb(244 122 34 / 45%);
}

.hud-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgb(255 255 255 / 10%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background-color 180ms ease, color 180ms ease;
}

.hud-chip:hover {
  background: rgb(244 122 34 / 35%);
  color: #ffb17c;
}

.campus-dual-card__body {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 22px 24px 20px;
  flex: 1;
}

.campus-dual-card__icon {
  font-size: 1.6rem;
  line-height: 1.2;
}

.campus-dual-card__heading {
  margin: 0 0 6px;
  color: var(--navy-950);
  font-size: 1.1rem;
  font-weight: 750;
  line-height: 1.3;
}

.campus-dual-card__text {
  margin: 0;
  color: #48618a;
  font-size: 0.88rem;
  line-height: 1.55;
}

.campus-dual-card__footer {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgb(8 36 95 / 8%);
}

.campus-dual-card__action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-600);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  transition: color 180ms ease, gap 180ms ease;
}

.campus-dual-card:hover .campus-dual-card__action-btn {
  color: var(--orange-500);
  gap: 10px;
}

/* Fullscreen Cinematic Blueprint & Masterplan Lightbox Modal */
.campus-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 28px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1), visibility 300ms ease;
}

.campus-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.campus-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(2 11 32 / 94%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.campus-lightbox__content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #020b20;
  border: 1px solid rgb(255 255 255 / 18%);
  box-shadow: 0 36px 100px rgb(0 0 0 / 80%), 0 0 30px rgb(20 105 193 / 20%);
  animation: lightbox-scale 350ms cubic-bezier(0.16, 1, 0.3, 1) both;
  display: flex;
  flex-direction: column;
}

@keyframes lightbox-scale {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(14px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.campus-lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #03102d;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  gap: 16px;
}

.campus-lightbox__header-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.campus-lightbox__kicker {
  font-size: 0.72rem;
  color: #ffb17c;
  letter-spacing: 0.12em;
  font-weight: 800;
  text-transform: uppercase;
}

.campus-lightbox__title {
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.campus-lightbox__header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.campus-lightbox__badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(20, 105, 193, 0.25);
  border: 1px solid rgba(20, 105, 193, 0.45);
  color: #8ec5ff;
  font-size: 0.76rem;
  font-weight: 600;
}

.campus-lightbox__close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgb(255 255 255 / 10%);
  border: 1px solid rgb(255 255 255 / 20%);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease, background-color 200ms ease;
}

.campus-lightbox__close:hover {
  transform: scale(1.1);
  background: var(--orange-600);
  border-color: #ffb17c;
}

.campus-lightbox__stage {
  position: relative;
  width: 100%;
  max-height: 64vh;
  min-height: 380px;
  background: #010714;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.campus-lightbox__img {
  width: 100%;
  height: 100%;
  max-height: 64vh;
  object-fit: contain;
  display: block;
}

.campus-lightbox__blueprint-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-size: 36px 36px;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
}

.campus-lightbox__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: #020b20;
  border-top: 1px solid rgb(255 255 255 / 10%);
  gap: 16px;
}

.campus-lightbox__legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #c4d7f2;
  font-size: 0.78rem;
  font-weight: 600;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.button--small {
  min-height: 38px;
  padding: 6px 16px;
  font-size: 0.82rem;
}

@media (max-width: 850px) {
  .campus-lightbox {
    padding: 10px;
  }

  .campus-lightbox__content {
    max-height: 94vh;
    border-radius: 16px;
  }

  .campus-lightbox__header {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 14px;
    gap: 8px;
  }

  .campus-lightbox__kicker {
    font-size: 0.68rem;
  }

  .campus-lightbox__title {
    font-size: 0.92rem;
    line-height: 1.25;
  }

  .campus-lightbox__header-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .campus-lightbox__badge {
    font-size: 0.72rem;
    padding: 3px 10px;
  }

  .campus-lightbox__close {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }

  .campus-lightbox__stage {
    min-height: 220px;
    max-height: 48vh;
  }

  .campus-lightbox__caption {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 14px;
    gap: 10px;
  }

  .campus-lightbox__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .legend-item {
    font-size: 0.72rem;
  }

  .campus-lightbox__cta {
    width: 100%;
  }

  .campus-lightbox__cta .button {
    width: 100%;
    justify-content: center;
  }
}

/* Footer Section Actions & Meta Strip */
.campus-showcase__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgb(8 36 95 / 8%);
}

.campus-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.campus-showcase__meta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #48618a;
  font-size: 0.85rem;
  font-weight: 600;
}

.campus-showcase__meta-strip .meta-dot {
  color: var(--orange-500);
  font-weight: 800;
}

@media (max-width: 860px) {
  .campus-metrics-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px 16px;
  }

  .campus-dual-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .campus-dual-card__media {
    height: 220px;
  }

  .campus-showcase__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .campus-metrics-strip {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 14px;
  }
}

.split__image--narrow {
  width: min(100%, 434px);
  justify-self: center;
}

.split__image--portrait {
  width: min(100%, 460px);
  justify-self: center;
}

.split__image--portrait img {
  min-height: 0;
  object-fit: cover;
}

/* Crop the transparent header baked into the Canva family cutout. */
.split__image--family {
  aspect-ratio: 4 / 5;
}

.split__image--family img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.image--transparent-art {
  background: linear-gradient(145deg, #eef5ff, #d8e8fb);
  object-fit: contain !important;
  object-position: center bottom;
}

.feature-list,
.plain-list,
.course-list,
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  gap: 14px;
}

/* Editorial pillar layout for pathway academics */
.pathway-pillars {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: start;
}

.pathway-pillars__intro {
  display: grid;
  gap: 24px;
  align-content: start;
}

.pathway-pillars__intro .section-heading {
  display: grid;
  gap: 14px;
}

.pathway-pillars__intro .section-heading > p {
  max-width: 35rem;
  margin: 0;
  color: var(--muted);
}

.pathway-opportunity-shell {
  display: grid;
  gap: 24px;
}

.pathway-opportunity-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 18px;
  align-items: stretch;
}

.pathway-opportunity-spotlight,
.pathway-opportunity-requirements {
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.12), transparent 26%),
    linear-gradient(180deg, #fffaf4, #ffffff 72%, #f8fbff 100%);
  box-shadow: 0 18px 42px rgba(4, 22, 63, 0.08);
}

.pathway-opportunity-spotlight__kicker {
  margin: 0 0 18px;
  color: var(--orange-700);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pathway-opportunity-spotlight h3,
.pathway-opportunity-spotlight > p:last-of-type,
.pathway-opportunity-requirements > p,
.pathway-opportunity-requirements h3,
.pathway-opportunity-requirements p {
  margin-top: 0;
}

.pathway-opportunity-spotlight h3 {
  margin-bottom: 14px;
  max-width: 16ch;
}

.pathway-opportunity-spotlight > p:last-of-type {
  margin-bottom: 24px;
  max-width: 60ch;
  color: #526176;
}

.pathway-opportunity-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pathway-opportunity-metric {
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 36, 95, 0.08);
}

.pathway-opportunity-metric strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy-950);
}

.pathway-opportunity-metric span {
  display: block;
  max-width: 18ch;
  color: #526176;
  font-size: 0.96rem;
  line-height: 1.55;
}

.pathway-opportunity-checklist {
  display: grid;
  gap: 18px;
}

.pathway-opportunity-checkpoint {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(8, 36, 95, 0.08);
}

.pathway-opportunity-checkpoint:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.pathway-opportunity-checkpoint__index {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-100);
  color: #a93b00;
  font-family: var(--font-heading);
  font-weight: 800;
}

.pathway-opportunity-checkpoint h3 {
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 1.05rem;
}

.pathway-opportunity-checkpoint p {
  margin: 0;
  color: #526176;
  font-size: 0.96rem;
  line-height: 1.55;
}

.pathway-pillars__media figure {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(233, 241, 252, 0.92), rgba(247, 250, 255, 0.98));
  box-shadow: 0 24px 60px rgba(8, 36, 95, 0.08);
}

.pathway-pillars__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.pathway-pillars__list {
  display: grid;
  padding-top: clamp(28px, 3vw, 42px);
}

.pillar-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.pillar-row:first-child {
  padding-top: 0;
  border-top: none;
}

.pillar-row:last-child {
  padding-bottom: 0;
}

.pillar-row__meta {
  display: grid;
  align-content: start;
  padding-top: 6px;
}

.pillar-row__index {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 0.95;
  color: var(--orange-600);
}

.pillar-row__body h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.pillar-row__body p {
  margin: 0;
  color: var(--orange-700);
}

.pathway-pillars .pillar-row__body p {
  margin: 0;
  color: var(--navy-950);
}

.pillar-row__kicker {
  margin: 0 0 8px;
  color: var(--orange-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Process-driven flow for pathway clinical training */
.clinical-flow {
  display: grid;
  gap: 28px;
}

.clinical-flow__intro {
  max-width: 760px;
}

.clinical-flow__content {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.82fr);
  gap: clamp(30px, 4vw, 54px);
  align-items: stretch;
}

.timeline-list--clinical {
  position: relative;
  display: grid;
  gap: 0;
  padding: 8px 0 0 48px;
}

.timeline-list--clinical::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 18px;
  left: 11px;
  width: 2px;
  background: linear-gradient(180deg, var(--orange-500), rgba(8, 36, 95, 0.18));
}

.timeline-list--clinical .timeline-item {
  position: relative;
  padding: 0 0 28px 12px;
  border-bottom: 1px solid rgba(8, 36, 95, 0.1);
}

.timeline-list--clinical .timeline-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.timeline-list--clinical .timeline-item::before {
  content: "";
  position: absolute;
  left: -48px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 4px solid #f7f1ea;
  background: var(--orange-500);
  box-shadow: 0 0 0 5px rgba(244, 122, 34, 0.14);
}

.timeline-item__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-list--clinical .timeline-item h3 {
  margin-bottom: 8px;
}

.timeline-list--clinical .timeline-item p {
  margin: 0;
  color: var(--muted);
}

.clinical-flow__visual {
  display: grid;
  align-items: end;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(244, 122, 34, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(229, 238, 250, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 24px 56px rgba(8, 36, 95, 0.08);
}

.clinical-flow__visual img {
  width: 100%;
  height: 100%;
}

/* Refined salary comparison showcase for pathway page */
.salary-showcase {
  position: relative;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 60px rgba(0, 0, 0, 0.18);
}

.salary-showcase__head {
  margin-bottom: 18px;
  gap: 24px;
}

.salary-showcase__summary {
  display: grid;
  gap: 14px;
  max-width: 30rem;
}

.salary-showcase__summary p,
.salary-showcase__lead {
  margin: 0;
  color: #d5deee;
}

.salary-showcase__lead {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #eef3fb;
}

.salary-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.salary-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 191, 146, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffcfab;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.salary-table-wrap {
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.salary-table {
  overflow: hidden;
}

.salary-table caption {
  padding: 18px 20px;
  color: var(--navy-950);
  background:
    linear-gradient(90deg, rgba(244, 122, 34, 0.12), rgba(237, 243, 251, 0.95));
  font-family: var(--font-heading);
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.salary-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: linear-gradient(135deg, var(--orange-700), var(--orange-500));
}

.salary-table tbody tr:nth-child(even) td,
.salary-table tbody tr:nth-child(even) th[scope="row"] {
  background-color: #fbfcfe;
}

.salary-table tbody tr:hover td {
  background-color: #f4f8ff;
}

.salary-table tbody tr:hover th[scope="row"] {
  background-color: #ebf2fc;
}

.salary-table tbody th[scope="row"] {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #f5f8fc;
}

.salary-table tbody td {
  line-height: 1.7;
}

.salary-market-list {
  display: grid;
  gap: 10px;
}

.salary-market-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  padding: 10px 12px;
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.salary-market-row--single {
  min-width: max-content;
}

.salary-market-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(244, 122, 34, 0.12);
  color: var(--orange-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.salary-market-row strong {
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.salary-market-note {
  color: #667085;
  font-size: 0.8rem;
  line-height: 1.45;
}

.salary-table tbody a {
  color: inherit;
  text-decoration-color: rgba(8, 36, 95, 0.22);
  text-underline-offset: 0.18em;
}

.salary-table tbody a:hover {
  color: var(--orange-700);
  text-decoration-color: currentColor;
}

/* Homepage-style numbered card grids reused on pathway page */
.doors-grid {
  display: grid;
  gap: 22px;
  margin-top: 36px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.doors-grid--five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.doors-grid--five > .door-card {
  grid-column: span 2;
}

.doors-grid--five > .door-card:nth-child(4),
.doors-grid--five > .door-card:nth-child(5) {
  grid-column: span 3;
}

.door-card {
  min-height: 100%;
  padding: 30px;
  text-align: center;
}

.door-card--left {
  text-align: left;
}

.door-num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--orange-100);
  color: #a93b00;
  font-family: var(--font-heading);
  font-weight: 800;
}

.door-card h3 {
  margin-bottom: 10px;
}

.door-card p {
  margin: 0;
  color: var(--muted);
}

.door-card p + p {
  margin-top: 12px;
}

.door-card strong {
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Structured success-system layout for pathway page */
.success-system-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.success-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.success-panel__head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.success-panel__head .process-kicker {
  margin-bottom: 0;
}

.checklist-stack {
  display: grid;
  gap: 18px;
}

.checklist-stack .checklist-item {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checklist-stack .checklist-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.success-rule {
  padding: 22px 24px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(169, 59, 0, 0.95), rgba(244, 122, 34, 0.94));
  color: #fff4ea;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  line-height: 1.65;
  font-size: 1.02rem;
}

.success-rule strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.06rem;
}

/* Two-column checklist, a lighter alternative to boxed cards on dark sections */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 32px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.checklist-item__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(244, 122, 34, 0.18);
  color: var(--orange-400);
  font-weight: 800;
  font-size: 0.9rem;
}

.checklist-item h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.05rem;
}

.checklist-item p {
  margin: 0;
  color: #cfd8e6;
  font-size: 0.92rem;
}

.feature-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 4px 14px rgb(4 22 63 / 3%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-list li:hover {
  transform: translateX(4px);
  border-color: #b9c9dc;
  box-shadow: 0 8px 24px rgb(4 22 63 / 7%);
}

.feature-list li::before {
  position: absolute;
  top: 22px;
  left: 20px;
  width: 12px;
  height: 12px;
  background: var(--orange-500);
  content: "";
}

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

.plain-list li {
  position: relative;
  padding-left: 22px;
}

.plain-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange-600);
  content: "■";
  font-size: 0.62rem;
}

.steps {
  display: grid;
  gap: 22px;
}

.pathway-story__steps {
  position: relative;
}

.step {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  padding-bottom: 22px;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  gap: 22px;
  transition: opacity 220ms ease, transform 220ms ease;
}

.step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.step__number {
  color: var(--orange-500);
  font-family: var(--font-serif);
  font-size: 4.4rem;
  font-style: italic;
  line-height: 0.85;
  transition: color 200ms ease, transform 200ms ease;
}

.step.is-active .step__number {
  color: #ff9950;
  transform: scale(1.08);
}

.step h3 {
  margin-bottom: 8px;
  text-transform: uppercase;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--navy-900);
  background: #e7f0ff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.program-index a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 12px 18px;
  border: 1px solid rgb(8 36 95 / 10%);
  border-radius: 14px;
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 4px 14px rgb(4 22 63 / 4%);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), border-color 240ms ease, box-shadow 240ms ease, color 240ms ease;
}

.program-index a::after {
  content: "→";
  color: var(--orange-500);
  font-size: 1rem;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.program-index a:hover,
.program-index a:focus-visible {
  border-color: var(--orange-500);
  color: var(--orange-600);
  box-shadow: 0 10px 24px rgb(244 122 34 / 14%);
  transform: translateY(-3px) translateX(2px);
}

.program-index a:hover::after,
.program-index a:focus-visible::after {
  transform: translateX(4px);
}

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

.program-directory-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(8, 36, 95, 0.08), transparent 24%),
    linear-gradient(180deg, #f7efe7 0%, #fbfcfe 100%);
}

.program-directory-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 36, 95, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 36, 95, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.program-directory-section > .container {
  position: relative;
  z-index: 1;
}

.degree-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 0;
  padding: clamp(30px, 4vw, 42px);
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 44px rgba(4, 22, 63, 0.07);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 280ms ease,
              box-shadow 280ms ease;
}

.degree-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 122, 34, 0.14), transparent 68%);
  transition: transform 280ms ease, opacity 280ms ease;
}

.degree-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange-600), var(--orange-500));
}

.degree-card:hover,
.degree-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(244, 122, 34, 0.26);
  box-shadow: 0 24px 58px rgba(4, 22, 63, 0.1), 0 0 24px rgba(244, 122, 34, 0.08);
}

.degree-card:hover::before,
.degree-card:focus-visible::before {
  transform: scale(1.08);
}

.degree-card .degree-card__meta,
.degree-card__meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  margin: 0 0 16px;
  padding: 4px 12px;
  border: 1px solid rgba(244, 122, 34, 0.16);
  border-radius: 999px;
  background: rgba(244, 122, 34, 0.08);
  color: var(--orange-700);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.degree-card h2 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--navy-950);
  transition: color 200ms ease;
}

.degree-card:hover h2,
.degree-card:focus-visible h2 {
  color: #c84a00;
}

.degree-card p:not(.degree-card__meta):not(.degree-card__demand) {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475467;
  margin: 0 0 18px;
}

.degree-card .degree-card__demand,
.degree-card__demand {
  padding: 16px 18px;
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #fff8f2);
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: auto;
  margin-bottom: 0 !important;
}

.degree-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 36, 95, 0.08);
  color: var(--navy-950);
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 220ms ease;
}

.degree-card__link .btn-arrow {
  color: #ea580c;
  font-size: 1.15rem;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.degree-card:hover .degree-card__link,
.degree-card:focus-visible .degree-card__link {
  color: #ea580c;
}

.degree-card:hover .degree-card__link .btn-arrow,
.degree-card:focus-visible .degree-card__link .btn-arrow {
  transform: translateX(6px);
}

.program-stack {
  display: grid;
  gap: 26px;
}

.program-card {
  scroll-margin-top: 120px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 15px 42px rgb(4 22 63 / 7%);
  content-visibility: auto;
  contain-intrinsic-size: 780px;
}

.program-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  align-items: start;
  gap: clamp(34px, 6vw, 76px);
}

.program-facts {
  position: sticky;
  top: 112px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 34px rgb(4 22 63 / 7%);
}

.program-facts h2 {
  font-size: 1.25rem;
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0;
}

.program-facts dl {
  margin: 0;
}

.program-facts dt {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-facts dd {
  margin: 3px 0 0;
  color: var(--navy-900);
  font-weight: 700;
}

.program-facts .button {
  width: 100%;
  margin-top: 24px;
}

.program-copy h2 {
  margin-top: 50px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.program-copy h2:first-of-type {
  margin-top: 0;
}

.program-copy .demand-line {
  padding: 22px;
  border-left: 5px solid var(--orange-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--orange-100);
}

.bot-program-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(8, 36, 95, 0.08), transparent 24%),
    linear-gradient(180deg, #f7efe7 0%, #fbfcfe 100%);
}

.bot-program-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 36, 95, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 36, 95, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.bot-program-layout {
  position: relative;
  z-index: 1;
}

.bot-program-copy {
  display: grid;
  gap: 34px;
}

.bot-program-intro {
  display: grid;
  gap: 18px;
}

.bot-program-intro .demand-line,
.bot-program-intro .lead {
  margin: 0;
}

.bot-program-intro .lead {
  max-width: 52rem;
  font-size: 1.16rem;
  color: var(--navy-900);
}

.bot-program-rows {
  display: grid;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.98));
  box-shadow: 0 20px 52px rgba(4, 22, 63, 0.08);
}

.bot-program-row {
  gap: 26px;
}

.bot-program-row .pillar-row__body h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  color: var(--navy-950);
}

.bot-program-row .pillar-row__body p:last-child {
  color: #415166;
  line-height: 1.7;
}

.bot-program-facts {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98)),
    linear-gradient(135deg, rgba(244, 122, 34, 0.08), transparent 38%);
  box-shadow: 0 18px 42px rgba(4, 22, 63, 0.08);
}

.bot-program-facts__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(244, 122, 34, 0.16);
  border-radius: 999px;
  background: rgba(244, 122, 34, 0.08);
  color: var(--orange-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bot-program-facts h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.bot-program-facts__intro {
  margin: 0;
  color: #526176;
  line-height: 1.65;
}

.bot-program-facts__grid {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(8, 36, 95, 0.08);
}

.bot-program-facts__grid dt,
.bot-program-facts__grid dd {
  margin: 0;
  padding: 14px 0;
}

.bot-program-facts__grid dt {
  margin-top: 0;
  border-bottom: 1px solid rgba(8, 36, 95, 0.08);
}

.bot-program-facts__grid dd {
  border-bottom: 1px solid rgba(8, 36, 95, 0.08);
  font-size: 1rem;
  line-height: 1.55;
}

.bot-program-facts__cta {
  display: grid;
  gap: 14px;
  padding-top: 6px;
}

.bot-program-facts__cta .button {
  margin-top: 0;
}

.related-programs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-programs a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-900);
  background: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.related-programs a:hover,
.related-programs a:focus-visible {
  border-color: var(--orange-500);
  color: var(--orange-700);
}

.program-card__header {
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
}

.program-card__header h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.025em;
}

.program-card__header p {
  margin-bottom: 0;
  color: #cfe0ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-card__body {
  padding: clamp(24px, 4vw, 42px);
}

.program-card__body > .lead {
  max-width: 100%;
  color: var(--navy-900);
  font-size: 1.15rem;
}

.demand-line {
  margin-bottom: 20px;
  color: var(--orange-600);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.course-list {
  display: grid;
  margin-top: 26px;
  gap: 0;
}

.course-list li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.course-list strong {
  color: var(--navy-900);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 30px rgb(4 22 63 / 6%);
}

.table-hint {
  display: none;
  margin: 0 0 10px;
  color: #475467;
  font-size: 0.82rem;
  font-weight: 700;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

caption {
  padding: 16px;
  color: var(--navy-900);
  background: #edf3fb;
  font-weight: 700;
  text-align: left;
}

th,
td {
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th:last-child,
td:last-child {
  border-right: 0;
}

tbody tr {
  transition: background-color 160ms ease;
}

tbody tr:hover td {
  background-color: #f6fafe;
}

tbody tr:hover th[scope="row"] {
  background-color: #edf4fc;
}

tbody tr:last-child td,
tbody tr:last-child th {
  border-bottom: 0;
}

th {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-700), var(--orange-500));
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

tbody th[scope="row"] {
  min-width: 210px;
  color: var(--navy-900);
  background: #f5f8fc;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
  transition: background-color 160ms ease;
}

td {
  min-width: 180px;
  color: #344054;
  font-size: 0.9rem;
  transition: background-color 160ms ease;
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  min-width: 130px;
  text-align: center;
}

.comparison-table th {
  background: linear-gradient(135deg, var(--orange-700), var(--orange-500));
}

.yes,
.no {
  display: inline-grid;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  place-items: center;
}

.yes {
  background: #63b322;
}

.no {
  background: #df2c2c;
}

.note {
  padding: 22px 24px;
  border-left: 5px solid var(--orange-500);
  color: var(--navy-900);
  background: var(--orange-100);
}

.program-page-hero,
.bot-page-hero {
  min-height: min(920px, calc(100vh - var(--header-total-height, 122px)));
  min-height: min(920px, calc(100dvh - var(--header-total-height, 122px)));
  background-image:
    linear-gradient(100deg, rgba(2, 11, 34, 0.96) 0%, rgba(2, 11, 34, 0.9) 38%, rgba(2, 11, 34, 0.5) 70%, rgba(2, 11, 34, 0.2) 100%),
    radial-gradient(circle at 84% 20%, rgba(244, 122, 34, 0.2), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(20, 105, 193, 0.18), transparent 28%),
    linear-gradient(180deg, #04163f 0%, #020b22 100%);
}

.program-page-hero::after,
.bot-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 18% 22%, rgba(255, 207, 171, 0.12) 0 1.25px, transparent 2px),
    radial-gradient(circle at 76% 68%, rgba(143, 195, 255, 0.1) 0 1.25px, transparent 2px),
    linear-gradient(115deg, rgba(255, 255, 255, 0.028) 0 24%, transparent 24% 50%, rgba(255, 255, 255, 0.02) 50% 74%, transparent 74% 100%);
  background-size: 32px 32px, 32px 32px, 136px 136px, 176px 176px, 100% 100%;
  background-position: left top, left top, left top, right bottom, center;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 52%, rgba(0, 0, 0, 0.28) 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.82) 52%, rgba(0, 0, 0, 0.28) 84%, transparent 100%);
  pointer-events: none;
  opacity: 0.72;
}

.program-page-hero .page-hero__inner,
.bot-page-hero .page-hero__inner {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  min-height: 560px;
  gap: clamp(42px, 5vw, 82px);
}

.program-page-hero__content,
.bot-page-hero__content {
  max-width: 38rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.program-page-hero .cb-blueprint-title,
.bot-page-hero .cb-blueprint-title {
  font-size: clamp(2.55rem, 4.2vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: none;
  text-wrap: pretty;
}

.program-page-hero .cb-blueprint-title__line + .cb-blueprint-title__line,
.bot-page-hero .cb-blueprint-title__line + .cb-blueprint-title__line {
  margin-top: 6px;
}

.program-page-hero .cb-blueprint-title + p,
.bot-page-hero .cb-blueprint-title + p {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.program-page-hero__signals,
.bot-page-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 26px;
}

.program-page-hero__signals .hud-chip,
.bot-page-hero__signals .hud-chip {
  min-height: 34px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #ffcfab;
}

.program-page-hero img,
.bot-page-hero img {
  height: clamp(500px, 58vw, 640px);
  border-radius: 32px;
  border: 0;
  object-position: center 42%;
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.42), 0 0 28px rgba(244, 122, 34, 0.08);
}

.program-page-section,
.bot-program-section {
  position: relative;
  overflow: hidden;
  padding-block-end: clamp(34px, 4vw, 52px);
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(8, 36, 95, 0.08), transparent 24%),
    linear-gradient(180deg, #f7efe7 0%, #fbfcfe 100%);
}

.program-page-section::before,
.bot-program-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 36, 95, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 36, 95, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.program-page-layout,
.bot-program-layout {
  position: relative;
  z-index: 1;
}

.program-page-copy,
.bot-program-copy {
  display: grid;
  gap: 34px;
}

.program-page-intro,
.bot-program-intro {
  display: grid;
  gap: 18px;
}

.program-page-intro .demand-line,
.program-page-intro .lead,
.bot-program-intro .demand-line,
.bot-program-intro .lead {
  margin: 0;
}

.program-page-intro .lead,
.bot-program-intro .lead {
  max-width: 52rem;
  font-size: 1.16rem;
  color: var(--navy-900);
}

.program-page-rows,
.bot-program-rows {
  display: grid;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.98));
  box-shadow: 0 20px 52px rgba(4, 22, 63, 0.08);
}

.program-page-row,
.bot-program-row {
  gap: 26px;
}

.program-page-row .pillar-row__body h2,
.bot-program-row .pillar-row__body h2 {
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  color: var(--navy-950);
}

.program-page-row .pillar-row__body p:last-child,
.bot-program-row .pillar-row__body p:last-child {
  color: #415166;
  line-height: 1.7;
}

.program-page-facts,
.bot-program-facts {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98)),
    linear-gradient(135deg, rgba(244, 122, 34, 0.08), transparent 38%);
  box-shadow: 0 18px 42px rgba(4, 22, 63, 0.08);
}

.program-page-facts__eyebrow,
.bot-program-facts__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(244, 122, 34, 0.16);
  border-radius: 999px;
  background: rgba(244, 122, 34, 0.08);
  color: var(--orange-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-page-facts h2,
.bot-program-facts h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.program-page-facts__intro,
.bot-program-facts__intro {
  margin: 0;
  color: #526176;
  line-height: 1.65;
}

.program-page-facts__grid,
.bot-program-facts__grid {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(8, 36, 95, 0.08);
}

.program-page-facts__grid dt,
.program-page-facts__grid dd,
.bot-program-facts__grid dt,
.bot-program-facts__grid dd {
  margin: 0;
  padding: 14px 0;
}

.program-page-facts__grid dt,
.bot-program-facts__grid dt {
  margin-top: 0;
  border-bottom: 1px solid rgba(8, 36, 95, 0.08);
}

.program-page-facts__grid dd,
.bot-program-facts__grid dd {
  border-bottom: 1px solid rgba(8, 36, 95, 0.08);
  font-size: 1rem;
  line-height: 1.55;
}

.program-page-facts__cta,
.bot-program-facts__cta {
  display: grid;
  gap: 14px;
  padding-top: 6px;
}

.program-page-facts__cta .button,
.bot-program-facts__cta .button {
  margin-top: 0;
}

.program-page-eligibility {
  padding-block: clamp(22px, 4vw, 44px);
  background:
    linear-gradient(180deg, #fff8f2 0%, #ffffff 100%);
}

.program-page-eligibility__inner {
  display: grid;
  gap: 24px;
}

.program-page-eligibility__header {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.program-page-eligibility__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(244, 122, 34, 0.16);
  border-radius: 999px;
  background: rgba(244, 122, 34, 0.08);
  color: var(--orange-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-page-eligibility__header h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  color: var(--navy-900);
}

.program-page-eligibility__header p {
  margin: 0;
  color: #526176;
  line-height: 1.7;
}

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

.program-page-eligibility__card {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.98)),
    linear-gradient(135deg, rgba(244, 122, 34, 0.08), transparent 42%);
  box-shadow: 0 18px 42px rgba(4, 22, 63, 0.08);
}

.program-page-eligibility__label {
  margin: 0;
  color: var(--orange-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-page-eligibility__card h3 {
  margin: 0;
  font-size: 1.14rem;
  color: var(--navy-900);
}

.program-page-eligibility__card p:last-child {
  margin: 0;
  color: #415166;
  line-height: 1.7;
}

.program-page-eligibility__actions {
  margin-top: 4px;
}

.program-next-nav {
  padding-block-start: clamp(12px, 2.4vw, 22px);
  padding-block-end: clamp(24px, 4vw, 40px);
  background: linear-gradient(180deg, #ffffff, #fff8f2);
}

.program-page-section + .program-next-nav,
.bot-program-section + .program-next-nav {
  padding-block-start: clamp(8px, 1.6vw, 16px);
}

.program-next-nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 42px rgb(4 22 63 / 8%);
}

.program-next-nav__inner .eyebrow {
  margin-bottom: 0;
}

.program-next-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-950);
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}

.program-next-nav__link:hover,
.program-next-nav__link:focus-visible {
  color: var(--orange-600);
}

.quote {
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(140deg, var(--navy-900), var(--blue-700));
}

.quote p {
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  /* font-style: italic; */
  line-height: 1.45;
}

.quote footer {
  color: #bdd1f5;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 14px 34px rgb(4 22 63 / 8%);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery figure:hover,
.gallery figure:focus-within {
  border-color: rgb(13 78 159 / 32%);
  box-shadow: 0 22px 52px rgb(4 22 63 / 14%);
  transform: translateY(-5px);
}

.gallery figure:hover img,
.gallery figure:focus-within img {
  transform: scale(1.035);
}

.gallery .gallery--hygiene img {
  object-position: center 10%;
}

.gallery img[src*="facility-"],
.gallery img[src*="campus-anatomy"] {
  object-position: center 30%;
}

.gallery figcaption {
  padding: 15px 18px;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 700;
}

.gallery .gallery--wide {
  grid-column: span 2;
}

.gallery .gallery--wide img {
  aspect-ratio: 16 / 9;
  object-position: center;
}

.brochure-media {
  display: grid;
  /* margin-top: clamp(28px, 5vw, 54px); */
  gap: 18px;
}

.brochure-media--single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

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

.brochure-media figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.brochure-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.brochure-media--single img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #eef5ff, #d9e8fa);
  object-position: center 26%;
}

.brochure-media figcaption {
  padding: 14px 18px;
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 500;
}

.insights-section {
  position: relative;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.insights-section > .container {
  position: relative;
  z-index: 2;
}

.insights-section__heading {
  align-items: end;
}

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

.insight-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 30px rgb(4 22 63 / 5%);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.insight-card:hover,
.insight-card:focus-within {
  border-color: #b4c9e3;
  box-shadow: 0 20px 48px rgb(4 22 63 / 12%);
  transform: translateY(-5px);
}

.insight-card > a {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.insight-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--navy-900);
}

.insight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.insight-card:first-child .insight-card__media img {
  object-position: center 40%;
}

.insight-card:nth-child(2) .insight-card__media img {
  object-position: center 34%;
}

.insight-card:hover .insight-card__media img,
.insight-card:focus-within .insight-card__media img {
  transform: scale(1.04);
}

.insight-card__body {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(24px, 3vw, 32px);
}

.insight-card__eyebrow {
  margin-bottom: 10px;
  color: var(--orange-600);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insight-card h3 {
  margin-bottom: 12px;
  color: var(--navy-950);
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
}

.insight-card__body > p:not(.insight-card__eyebrow) {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
}

.insight-card__action {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--orange-600);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 180ms ease, color 180ms ease;
}

.insight-card__action::after {
  margin-left: 8px;
  color: var(--orange-600);
  content: "→";
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.insight-card:hover .insight-card__action::after,
.insight-card:focus-within .insight-card__action::after {
  transform: translateX(4px);
}

@keyframes hero-drift {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.045) translate3d(-0.8%, -0.3%, 0);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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



@keyframes insight-reveal {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
  }

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

@supports (animation-timeline: view()) {
  .insight-card {
    animation: insight-reveal linear both;
    animation-timeline: view();
    animation-range: entry 8% cover 32%;
  }
}

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

.contact-card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.contact-card__label {
  display: block;
  margin-bottom: 18px;
  color: var(--orange-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card address {
  color: var(--navy-900);
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--orange-600);
  text-decoration: underline;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(70px, 10vw, 120px);
  color: var(--white);
  background-color: var(--navy-950);
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px),
    radial-gradient(circle at 84% 20%, rgb(244 122 34 / 40%), transparent 27%),
    linear-gradient(130deg, var(--navy-950), var(--blue-700));
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: 60px;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta img {
  width: 100%;
  height: 380px;
  max-height: 380px;
  margin-inline: auto;
  border-radius: 28px;
  object-fit: cover;
  object-position: center 62%;
}

/* ==========================================================================
   Innovative Student Career Pathway Visual (Floating Portal & Ambient Pulse)
   ========================================================================== */
.student-pathway-portal {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  perspective: 1000px;
  cursor: default;
  outline: none;
}

.student-pathway-portal__glow {
  position: absolute;
  inset: -16px;
  border-radius: 36px;
  background: radial-gradient(circle at 50% 50%, rgb(244 122 34 / 32%), rgb(20 105 193 / 38%), transparent 70%);
  filter: blur(26px);
  opacity: 0.8;
  pointer-events: none;
  animation: pathway-glow-pulse 5s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes pathway-glow-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.08);
    opacity: 0.95;
  }
}

/* .student-pathway-portal__frame {
  position: relative;
  z-index: 1;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 22%);
  background: #020c24;
  box-shadow: 0 24px 60px rgb(0 0 0 / 55%), 0 0 35px rgb(20 105 193 / 25%);
  transition: transform 340ms cubic-bezier(0.16, 1, 0.3, 1), border-color 340ms ease, box-shadow 340ms ease;
  animation: student-pathway-float 6s ease-in-out infinite alternate;
} */

@keyframes student-pathway-float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(0.4deg);
  }
  100% {
    transform: translateY(-3px) rotate(-0.3deg);
  }
}

.student-pathway-portal:hover .student-pathway-portal__frame {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.02);
  border-color: rgb(244 122 34 / 65%);
  box-shadow: 0 32px 80px rgb(0 0 0 / 65%), 0 0 45px rgb(244 122 34 / 32%);
}

.student-pathway-portal__img {
  width: 100%;
  height: 390px;
  max-height: 420px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  border: 0;
  box-shadow: none;
}

.student-pathway-portal__img[src$="carebridge-hero-woman-v2.jpg"],
.final-cta img[src$="carebridge-hero-woman-v2.jpg"] {
  object-position: 72% center;
}

.student-pathway-portal:hover .student-pathway-portal__img {
  transform: scale(1.035);
}

/* .final-cta .final-cta__art--contain {
  border: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  object-position: center bottom;
} */

.final-cta .final-cta__art--landscape {
  height: auto;
  aspect-ratio: 16 / 9;
  object-position: center;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #c7d5ef;
  background-color: #020919;
  background-image:
    radial-gradient(circle at 12% 18%, rgb(13 78 159 / 22%), transparent 36%),
    radial-gradient(circle at 88% 82%, rgb(244 122 34 / 15%), transparent 34%),
    linear-gradient(rgb(255 255 255 / 2.5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2.5%) 1px, transparent 1px),
    linear-gradient(180deg, #03102c 0%, #010714 100%);
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
  border-top: 1px solid rgb(244 122 34 / 28%);
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--orange-500) 25%, #ffb17c 50%, var(--orange-500) 75%, transparent 100%);
  content: "";
  opacity: 0.85;
}

.footer-top-ribbon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-block: 26px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  gap: 20px;
}

.footer-top-ribbon__brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer-top-ribbon__tagline {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  /* font-style: italic; */
}

.footer-top-ribbon__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-flag-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 999px;
  background: rgb(8 36 95 / 45%);
  color: #dce8ff;
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.footer-top-ribbon__support {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-call-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgb(244 122 34 / 45%);
  border-radius: 999px;
  background: rgb(244 122 34 / 12%);
  color: #ffc299;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.footer-call-pill:hover {
  background: rgb(244 122 34 / 24%);
  border-color: var(--orange-500);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 1.15fr;
  padding-block: clamp(48px, 6vw, 70px);
  gap: clamp(28px, 4vw, 56px);
}

.footer-brand-col {
  display: grid;
  gap: 16px;
}

.footer-brand {
  width: 185px;
  height: auto;
  margin-bottom: 4px;
  border-radius: 16px;
  border: 1px solid rgb(255 255 255 / 14%);
  box-shadow: 0 10px 30px rgb(0 0 0 / 35%);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.footer-brand:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgb(0 0 0 / 50%);
}

.footer-brand-col p {
  margin: 0;
  color: #b3c7e8;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-trust-box {
  margin-top: 6px;
  padding: 14px 16px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-left: 3px solid var(--orange-500);
  border-radius: var(--radius-sm);
  background: rgb(8 36 95 / 35%);
}

.footer-trust-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-trust-box p {
  color: #8da4ca;
  font-size: 0.75rem;
  line-height: 1.45;
}

.site-footer h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.92rem;
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer h2::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  content: "";
}

.footer-list {
  display: grid;
  gap: 11px;
}

.footer-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d1e1fa;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--orange-400);
  transform: translateX(4px);
  text-decoration: none;
}

.footer-programs-cta {
  color: #ffc299;
  font-weight: 800;
}

.footer-programs-cta::after {
  content: "↗";
  margin-left: 6px;
  font-size: 0.88em;
}

.footer-support-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 8px;
  background: rgb(8 36 95 / 40%);
  color: #ffab70;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-support-icon__svg {
  width: 16px;
  height: 16px;
}

.footer-support-content strong {
  display: block;
  color: #8da4ca;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-support-content a,
.footer-support-content address {
  color: #d1e1fa;
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.45;
  text-decoration: none;
}

.footer-support-content a:hover {
  color: var(--orange-400);
}

.footer-social-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 999px;
  background: rgb(8 36 95 / 40%);
  color: #d1e1fa;
  flex: 0 0 36px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  content-visibility: visible;
}

.footer-social-link--threads svg,
.footer-social-link[aria-label="Follow Carebridge on Instagram"] svg {
  width: 17px;
  height: 17px;
}

.footer-social-link:hover {
  background: rgb(244 122 34 / 18%);
  border-color: rgb(244 122 34 / 50%);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social-link--disabled {
  opacity: 0.6;
  cursor: default;
}

.footer-social-link--x {
  display: inline-flex;
}

.footer-social-link--disabled:hover {
  background: rgb(8 36 95 / 40%);
  border-color: rgb(255 255 255 / 12%);
  color: #d1e1fa;
  transform: none;
}

.footer-bottom {
  padding-block: 22px;
  border-top: 1px solid rgb(255 255 255 / 8%);
  color: #8aa1c7;
  font-size: 0.8rem;
  /* background: rgb(1 6 18 / 95%); */
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom__links a {
  color: #8aa1c7;
  text-decoration: none;
  transition: color 150ms ease;
}

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

/* Program landing pages -------------------------------------------------- */
.program-lp-page {
  background: #f4f6fb;
}

.program-lp-page .section {
  padding-block: clamp(36px, 4vw, 56px);
}

.program-lp-page .section--tight {
  padding-block: clamp(30px, 3.5vw, 46px);
}

.program-lp-page .motion-reveal,
.program-lp-page .motion-group-item {
  opacity: 1 !important;
  transform: none !important;
}

.lp-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px) 0 clamp(26px, 4vw, 40px);
  color: #e6efff;
  background:
    radial-gradient(circle at 14% 18%, rgb(244 122 34 / 22%), transparent 24%),
    radial-gradient(circle at 86% 12%, rgb(255 255 255 / 8%), transparent 18%),
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(140deg, #03102f 0%, #08245f 48%, #0b3178 100%);
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
}

.lp-hero--bot {
  background-image:
    linear-gradient(90deg, rgb(3 16 47 / 96%) 0%, rgb(3 16 47 / 82%) 38%, rgb(3 16 47 / 38%) 68%, rgb(3 16 47 / 72%) 100%),
    radial-gradient(circle at 14% 18%, rgb(244 122 34 / 22%), transparent 24%),
    radial-gradient(circle at 86% 12%, rgb(255 255 255 / 8%), transparent 18%),
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px),
    url("assets/images/canva-facility-occupational-therapy.png"),
    linear-gradient(140deg, #03102f 0%, #08245f 48%, #0b3178 100%);
  background-position: center, center, center, center, center, right center, center;
  background-size: auto, auto, auto, 34px 34px, 34px 34px, min(52vw, 760px) auto, auto;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat, no-repeat, no-repeat;
}

.lp-hero--nursing {
  background-image:
    linear-gradient(90deg, rgb(3 16 47 / 96%) 0%, rgb(3 16 47 / 82%) 38%, rgb(3 16 47 / 32%) 68%, rgb(3 16 47 / 72%) 100%),
    radial-gradient(circle at 14% 18%, rgb(244 122 34 / 22%), transparent 24%),
    radial-gradient(circle at 86% 12%, rgb(255 255 255 / 8%), transparent 18%),
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px),
    url("assets/images/admissions-nurse.jpg"),
    linear-gradient(140deg, #03102f 0%, #08245f 48%, #0b3178 100%);
  background-position: center, center, center, center, center, right center, center;
  background-size: auto, auto, auto, 34px 34px, 34px 34px, min(52vw, 780px) auto, auto;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat, repeat, no-repeat, no-repeat;
}

.lp-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 64px;
  background: linear-gradient(180deg, rgb(4 22 63 / 0%) 0%, #f4f6fb 100%);
  content: "";
  pointer-events: none;
}

.lp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
  gap: clamp(24px, 4vw, 46px);
}

.lp-hero__copy h1,
.lp-hero__copy h2,
.lp-hero__copy h3 {
  color: var(--white);
}

.lp-hero__copy h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 5.2vw, 5.1rem);
}

.lp-hero__copy {
  display: grid;
  align-content: start;
  max-width: 640px;
}

.lp-hero__copy > * {
  align-self: start;
}

.lp-hero__lead {
  max-width: 52ch;
  color: #d3dfff;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.lp-hero-statband {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  gap: 12px;
}

.lp-hero-stat {
  padding: 16px 16px 14px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 22px;
  background: linear-gradient(180deg, rgb(255 255 255 / 11%) 0%, rgb(255 255 255 / 6%) 100%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 8%);
  backdrop-filter: blur(8px);
}

.lp-hero-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
}

.lp-hero-stat span {
  color: #d5e3ff;
  font-size: 0.8rem;
  line-height: 1.45;
}

.lp-chip-row {
  display: flex;
  flex-wrap: wrap;
  margin: 22px 0 0;
  gap: 10px;
}

.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 999px;
  background: rgb(255 255 255 / 10%);
  color: #eef4ff;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.lp-chip::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffb17c;
  content: "";
}

.lp-proof-list {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.lp-proof-list li {
  position: relative;
  padding-left: 22px;
  color: #e1ebff;
}

.lp-proof-list li::before {
  position: absolute;
  left: 0;
  color: #ffab70;
  content: "•";
}

.lp-quote-card {
  position: relative;
  margin-top: 22px;
  max-width: 34rem;
  padding: 18px 20px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 24px;
  background: linear-gradient(180deg, rgb(255 255 255 / 12%) 0%, rgb(255 255 255 / 7%) 100%);
  color: #eef4ff;
  box-shadow: 0 18px 44px rgb(1 10 32 / 20%);
  backdrop-filter: blur(12px);
}

.lp-quote-card::before {
  position: absolute;
  top: 18px;
  left: 18px;
  color: rgb(255 255 255 / 16%);
  content: "\201C";
  font-family: var(--font-serif);
  font-size: 4.4rem;
  line-height: 0.8;
}

.lp-quote-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  padding-left: 22px;
  color: #eff4ff;
  font-size: 0.96rem;
  line-height: 1.7;
}

.lp-quote-card strong {
  display: block;
  padding-left: 22px;
  color: #ffbe93;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-hero__side {
  position: relative;
  display: grid;
  gap: 14px;
  justify-items: end;
}

.lp-visual-stack {
  position: relative;
  width: min(100%, 430px);
  min-height: 320px;
}

.lp-visual-stack__frame,
.lp-visual-stack__accent,
.lp-visual-stack__badge {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
}

.lp-visual-stack__frame {
  inset: 54px 0 0 52px;
  border: 1px solid rgb(255 255 255 / 12%);
  box-shadow: 0 24px 58px rgb(1 10 32 / 28%);
}

.lp-visual-stack__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-visual-stack__accent {
  top: 0;
  left: 0;
  width: 180px;
  height: 212px;
  border: 1px solid rgb(255 255 255 / 12%);
  box-shadow: 0 22px 48px rgb(1 10 32 / 24%);
}

.lp-visual-stack__accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-visual-stack__badge {
  right: 18px;
  bottom: 18px;
  max-width: 220px;
  padding: 16px 18px;
  border: 1px solid rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 94%);
  color: var(--navy-950);
  box-shadow: 0 20px 46px rgb(1 10 32 / 22%);
}

.lp-visual-stack__badge strong {
  display: block;
  margin-bottom: 6px;
  color: var(--orange-700);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-visual-stack__badge span {
  display: block;
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.lp-media-card,
.lp-form-card,
.lp-card,
.lp-track,
.lp-signal-bar,
.pathway-opportunity-card,
.lp-cta-panel {
  border: 1px solid rgb(4 22 63 / 10%);
  border-radius: 26px;
  box-shadow: 0 22px 55px rgb(4 22 63 / 14%);
}

.lp-media-card {
  overflow: hidden;
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 14%);
}

.lp-media-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.lp-media-card figcaption {
  padding: 14px 18px 18px;
  color: #dce8ff;
  font-size: 0.88rem;
}

.lp-thumb-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lp-thumb-card {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 20px;
  background: rgb(255 255 255 / 8%);
  box-shadow: 0 16px 36px rgb(4 22 63 / 12%);
}

.lp-thumb-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.lp-thumb-card span {
  display: block;
  padding: 10px 12px 14px;
  color: #edf3ff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.lp-form-card {
  padding: 22px;
  background: #fff;
  color: var(--ink);
}

.lp-form-card--hero {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding: 22px;
  border-color: rgb(255 255 255 / 20%);
  background: linear-gradient(180deg, rgb(255 255 255 / 94%) 0%, rgb(246 249 255 / 92%) 100%);
  box-shadow: 0 28px 65px rgb(1 11 35 / 32%);
  backdrop-filter: blur(14px);
}

.lp-form-card--hero.motion-reveal,
.motion-ready .lp-form-card--hero.motion-reveal,
.motion-ready .lp-form-card--hero.motion-reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

.lp-form-card--hero h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.lp-form-card--hero .button--orange {
  min-height: 56px;
  box-shadow: 0 14px 28px rgb(244 122 34 / 28%);
}

.lp-form-card--hero p {
  margin-bottom: 0;
}

.lp-form-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 4px;
}

.lp-form-card__meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgb(4 22 63 / 10%);
  border-radius: 999px;
  background: rgb(255 255 255 / 72%);
  color: var(--navy-900);
  font-size: 0.74rem;
  font-weight: 800;
}

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

.lp-form--compact .lp-field--half {
  grid-column: auto;
}

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

.lp-form__trust span {
  padding: 10px 8px;
  border-radius: 14px;
  background: #eef4ff;
  color: var(--navy-900);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.lp-form-card h2 {
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.lp-form-card p {
  color: #50607a;
}

.lp-form {
  display: grid;
  margin-top: 14px;
  gap: 12px;
}

.lp-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.lp-field--full {
  grid-column: 1 / -1;
}

.lp-field label {
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 700;
}

.lp-field input,
.lp-field select,
.lp-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c7d3e4;
  border-radius: 14px;
  background: #f9fbff;
  color: var(--ink);
  font: inherit;
}

.lp-field textarea {
  min-height: 112px;
  resize: vertical;
}

.lp-form .button {
  width: 100%;
  justify-content: center;
  cursor: pointer;
  font: inherit;
}

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

.lp-form__secondary a {
  text-align: center;
}

.lp-note,
.lp-status {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.lp-note {
  color: #64748b;
}

.lp-form-card--hero .lp-note {
  text-align: center;
}

.lp-status {
  min-height: 1.55em;
  color: var(--orange-700);
  font-weight: 700;
}

.lp-side-proof {
  display: grid;
  width: min(100%, 430px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lp-side-proof__item {
  padding: 16px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 22px;
  background: linear-gradient(180deg, rgb(255 255 255 / 12%) 0%, rgb(255 255 255 / 7%) 100%);
  color: #edf4ff;
  box-shadow: 0 16px 34px rgb(1 10 32 / 18%);
  backdrop-filter: blur(8px);
}

.lp-side-proof__item strong {
  display: block;
  margin-bottom: 6px;
  color: #ffbe93;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lp-side-proof__item span {
  color: #edf4ff;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.program-lp-page .mobile-actions--landing {
  display: none;
}

.lp-signal-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -10px;
  background: #fff;
}

.lp-signal-bar__item {
  padding: 20px 22px;
}

.lp-signal-bar__item + .lp-signal-bar__item {
  border-left: 1px solid rgb(4 22 63 / 9%);
}

.lp-signal-bar__item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 1.02rem;
}

.lp-signal-bar__item span {
  color: #5a6880;
  font-size: 0.9rem;
}

.lp-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
}

.lp-story--reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.lp-story__media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgb(4 22 63 / 8%);
  border-radius: 30px;
  box-shadow: 0 22px 55px rgb(4 22 63 / 14%);
}

.lp-story__media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.lp-story__badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  background: rgb(4 22 63 / 62%);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.lp-story__copy {
  display: grid;
  gap: 12px;
}

.lp-story__copy h2,
.lp-story__copy h3 {
  margin-bottom: 0;
  color: var(--navy-950);
}

.lp-story__copy p {
  color: #50607a;
}

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

.lp-story__fact {
  padding: 18px;
  border: 1px solid rgb(4 22 63 / 8%);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.lp-story__fact strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 0.98rem;
}

.lp-story__fact span {
  color: #5a6880;
  font-size: 0.88rem;
}

.lp-image-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 14px;
}

.lp-image-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgb(4 22 63 / 14%);
}

.lp-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-image-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 22px 20px 20px;
  background: linear-gradient(180deg, rgb(4 22 63 / 0%) 0%, rgb(4 22 63 / 82%) 100%);
  color: var(--white);
}

.lp-image-card__overlay strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.lp-image-card__overlay span {
  color: #d7e4ff;
  font-size: 0.84rem;
}

.lp-section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.lp-grid,
.lp-track-grid,
.lp-faq-grid {
  display: grid;
  gap: 14px;
}

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

.lp-track-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.lp-card,
.lp-track,
.lp-cta-panel {
  padding: 20px;
  background: #fff;
}

.lp-card h2,
.lp-card h3,
.lp-track h3,
.lp-cta-panel h2 {
  color: var(--navy-950);
}

.lp-card h2 {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 10px;
}

.lp-card p,
.lp-track p {
  color: #50607a;
}

.lp-card__index,
.lp-track__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lp-track {
  color: #dce8ff;
  background:
    radial-gradient(circle at top right, rgb(244 122 34 / 22%), transparent 34%),
    linear-gradient(155deg, #04163f 0%, #0b3178 100%);
  border-color: rgb(255 255 255 / 10%);
}

.lp-track h3 {
  color: var(--white);
}

.lp-track p {
  color: #d6e3ff;
}

.lp-track__eyebrow {
  color: #ffb17c;
}

.lp-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
  gap: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgb(244 122 34 / 12%), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.lp-cta-panel p {
  color: #50607a;
}

.lp-cta-panel .button-row {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .lp-track-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .lp-hero__grid,
  .lp-cta-panel,
  .lp-story,
  .lp-story--reverse {
    grid-template-columns: 1fr;
  }

  .lp-grid,
  .lp-faq-grid,
  .lp-signal-bar,
  .lp-track-grid,
  .lp-image-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-statband,
  .lp-side-proof {
    grid-template-columns: 1fr;
  }

  .lp-signal-bar {
    margin-top: 0;
  }

  .lp-hero__side {
    justify-items: stretch;
  }

  .lp-form-card--hero {
    width: 100%;
  }

  .lp-visual-stack {
    width: 100%;
    min-height: 260px;
  }

  .lp-visual-stack__frame {
    inset: 54px 0 0 26px;
  }

  .lp-signal-bar__item + .lp-signal-bar__item {
    border-top: 1px solid rgb(4 22 63 / 9%);
    border-left: 0;
  }

  .lp-hero--bot,
  .lp-hero--nursing {
    background-size: auto, auto, auto, 34px 34px, 34px 34px, cover, auto;
    background-position: center, center, center, center, center, center top, center;
  }
}

@media (max-width: 640px) {
  .program-lp-page {
    padding-bottom: 92px;
  }

  .lp-hero {
    padding-top: 24px;
  }

  .lp-form-card,
  .lp-card,
  .lp-track,
  .lp-cta-panel,
  .lp-signal-bar__item {
    padding: 18px;
  }

  .lp-form__grid,
  .lp-form__secondary,
  .lp-story__facts,
  .lp-thumb-row {
    grid-template-columns: 1fr;
  }

  .lp-form__trust {
    grid-template-columns: 1fr;
  }

  .lp-visual-stack {
    min-height: 220px;
  }

  .lp-visual-stack__accent {
    width: 132px;
    height: 160px;
  }

  .lp-visual-stack__frame {
    inset: 34px 0 0 22px;
  }

  .lp-visual-stack__badge {
    right: 10px;
    bottom: 10px;
    max-width: 180px;
    padding: 14px;
  }

  .lp-hero__copy h1 {
    max-width: none;
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .program-lp-page .mobile-actions--landing {
    position: fixed;
    z-index: 70;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    padding: 10px;
    border: 1px solid rgb(4 22 63 / 10%);
    border-radius: 22px;
    background: rgb(255 255 255 / 94%);
    box-shadow: 0 22px 45px rgb(4 22 63 / 18%);
    backdrop-filter: blur(12px);
    gap: 10px;
  }

  .program-lp-page .mobile-actions--landing a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 14px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
  }

  .program-lp-page .mobile-actions--landing a:first-child {
    border: 1.5px solid rgb(4 22 63 / 12%);
    color: var(--navy-950);
    background: #f5f8ff;
  }

  .program-lp-page .mobile-actions--landing a:last-child {
    color: var(--white);
    background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  }
}

.mobile-actions {
  display: none;
}

:focus-visible {
  outline: 3px solid #0b63ce;
  outline-offset: 3px;
}

/* Progressive cinematic layer. The static page remains fully visible without JS. */
.hero .motion-reveal,
.hero-brochure .motion-reveal,
.page-hero .motion-reveal,
.admission-strip,
.site-header {
  opacity: 1 !important;
  transform: none !important;
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 280ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.motion-ready .motion-reveal.is-visible,
.motion-ready .motion-reveal:focus-within {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .motion-group-item {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 280ms cubic-bezier(0.16, 1, 0.3, 1) var(--motion-delay, 0ms),
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1) var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready .insight-card.motion-group-item,
.motion-ready .insights-section::before {
  animation: none;
}

.motion-ready .motion-group-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .motion-group-item:focus-within {
  opacity: 1;
  transform: none;
}

.motion-ready .motion-page-entry {
  animation: motion-page-copy-in 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-ready .motion-page-entry-media {
  animation: motion-page-media-in 360ms cubic-bezier(0.16, 1, 0.3, 1) 40ms both;
}

.motion-ready .cinematic-hero {
  --hero-copy-y: 0px;
  --hero-copy-opacity: 1;
  --hero-image-x: 0px;
  --hero-image-y: 0px;
  --hero-image-scale: 1.015;
  --hero-overlay-opacity: 1;
}

.motion-ready .cinematic-hero .hero__background {
  animation: none;
  transform:
    translate3d(var(--hero-image-x), var(--hero-image-y), 0)
    scale(var(--hero-image-scale));
}

.motion-ready .cinematic-hero .hero__copy {
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, var(--hero-copy-y), 0);
}

.motion-ready .cinematic-hero.is-covered .hero__copy {
  pointer-events: none;
}

.motion-ready .cinematic-hero.is-scrubbing .hero__background,
.motion-ready .cinematic-hero.is-scrubbing .hero__copy {
  will-change: transform, opacity;
}

.cinematic-intro {
  position: relative;
  z-index: 2;
  border-radius: 34px 34px 0 0;
  box-shadow: 0 -24px 70px rgb(4 22 63 / 8%);
}

@keyframes motion-item-in {
  from {
    opacity: 0;
    translate: 0 18px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes motion-page-copy-in {
  from {
    opacity: 0;
    translate: 0 22px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes motion-page-media-in {
  from {
    opacity: 0.65;
    scale: 0.985;
  }

  to {
    opacity: 1;
    scale: 1;
  }
}

@media (min-width: 901px) and (min-height: 760px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .motion-ready .cinematic-hero {
    min-height: 170svh;
    overflow: clip;
  }

  .motion-ready .cinematic-hero::before,
  .motion-ready .cinematic-hero::after {
    display: none;
  }

  .motion-ready .cinematic-hero .hero__stage {
    position: sticky;
    z-index: 0;
    top: calc(var(--motion-sticky-top, 100px) - 16px);
    display: block;
    overflow: hidden;
    height: calc(100svh - var(--motion-sticky-top, 100px) + 16px);
    min-height: 620px;
    isolation: isolate;
    background: var(--navy-950);
  }

  .motion-ready .cinematic-hero .hero__stage::before {
    position: absolute;
    z-index: 2;
    inset: 0;
    background-image:
      linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
      linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
    background-size: 46px 46px;
    content: "";
    opacity: 0.52;
    pointer-events: none;
  }

  .motion-ready .cinematic-hero .hero__stage::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
      linear-gradient(90deg, rgb(2 15 55 / 99%) 0%, rgb(4 22 63 / 94%) 41%, rgb(4 22 63 / 42%) 68%, rgb(4 22 63 / 5%) 100%),
      linear-gradient(0deg, rgb(4 22 63 / 48%) 0%, transparent 46%);
    content: "";
    opacity: var(--hero-overlay-opacity);
    pointer-events: none;
  }

  .motion-ready .cinematic-hero .hero__inner {
    height: 100%;
    min-height: 0;
  }

  .motion-ready .cinematic-hero .hero__background {
    right: 0;
    transform-origin: right 43%;
  }

  .motion-ready .pathway-story {
    --story-progress: 0;
    position: relative;
    background-color: var(--navy-950);
    background-image:
      linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
      linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px),
      radial-gradient(circle at 82% 16%, rgb(244 122 34 / 28%), transparent 24%),
      radial-gradient(circle at 12% 82%, rgb(20 105 193 / 32%), transparent 30%),
      linear-gradient(145deg, var(--navy-950), var(--navy-800));
    background-size: 46px 46px, 46px 46px, auto, auto, auto;
  }

  .motion-ready .pathway-story__layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(64px, 9vw, 132px);
  }

  .motion-ready .pathway-story__intro {
    position: sticky;
    top: var(--motion-sticky-top, 116px);
    padding-block: 28px;
  }

  .motion-ready .pathway-story__steps {
    position: relative;
    padding-left: 36px;
    gap: 0;
  }

  .motion-ready .pathway-story__steps::before,
  .motion-ready .pathway-story__steps::after {
    position: absolute;
    top: 12%;
    bottom: 12%;
    left: 0;
    width: 3px;
    border-radius: 999px;
    content: "";
  }

  .motion-ready .pathway-story__steps::before {
    background: rgb(255 255 255 / 14%);
  }

  .motion-ready .pathway-story__steps::after {
    background: linear-gradient(var(--orange-500), #ffb178);
    box-shadow: 0 0 24px rgb(244 122 34 / 44%);
    transform: scaleY(var(--story-progress));
    transform-origin: top;
  }

  .motion-ready .pathway-story__step {
    align-content: center;
    min-height: 52svh;
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 24px;
    opacity: 0.3;
    background: rgb(255 255 255 / 4%);
    translate: 0 24px;
    transform: scale(0.985);
    transition:
      opacity 420ms ease,
      translate 420ms cubic-bezier(0.2, 0.7, 0.2, 1),
      transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1),
      border-color 420ms ease,
      background-color 420ms ease,
      box-shadow 420ms ease;
  }

  .motion-ready .pathway-story__step + .pathway-story__step {
    margin-top: 22px;
  }

  .motion-ready .pathway-story__step.is-active {
    border-color: rgb(244 122 34 / 52%);
    opacity: 1;
    background: rgb(255 255 255 / 9%);
    box-shadow: 0 30px 70px rgb(0 0 0 / 18%);
    translate: 0 0;
    transform: scale(1);
  }
}

@media (max-width: 1100px) {
  .program-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --header-total-height: 114px;
  }

  .nav-shell {
    align-items: center;
    flex-direction: row;
    min-height: 76px;
    padding-block: 10px;
    gap: 20px;
  }

  .primary-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero__inner,
  .page-hero__inner,
  .final-cta__inner,
  .split,
  .process-shell,
  .program-detail-layout {
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }

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

  .program-facts {
    position: static;
  }

  .hero__inner {
    min-height: 0;
    padding-bottom: 0;
  }

  .hero__visual {
    width: min(100%, 580px);
    margin-inline: auto;
  }

  .hero__visual img {
    max-height: none;
    border-radius: 40px 40px 0 0;
    object-fit: contain;
  }

  .hero--cover,
  .hero--cover .hero__inner {
    min-height: 720px;
  }

  .hero--cover .hero__inner {
    display: flex;
    align-items: center;
    padding-block: 72px;
  }

  .hero--cover .hero__copy {
    max-width: 610px;
  }

  .hero--cover::after {
    background:
      linear-gradient(90deg, rgb(2 15 55 / 98%) 0%, rgb(4 22 63 / 92%) 48%, rgb(4 22 63 / 44%) 100%),
      linear-gradient(0deg, rgb(4 22 63 / 66%) 0%, transparent 52%);
  }

  .hero__background {
    right: auto;
    left: 50%;
    width: auto;
    height: 88%;
    animation: none;
    object-position: center bottom;
    translate: -50% 0;
    transform: none;
  }

  .page-hero__inner {
    gap: 28px;
  }

  .page-hero img {
    max-width: 620px;
  }

  /* Once stacked, preserve the source composition instead of forcing a banner crop. */
  .page-hero--image img {
    height: auto;
    max-height: 520px;
    justify-self: center;
    object-fit: contain;
  }

  .page-hero--image .page-hero__panorama {
    width: 100%;
    max-height: none;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .page-hero--image .page-hero__cutout {
    width: min(100%, 480px);
    height: auto;
    max-height: 480px;
    object-fit: contain;
  }

  .page-hero--image img[src$="clinical-training.jpg"] {
    width: min(100%, 340px);
  }

  .page-hero--image img[src$="career-readiness.jpg"] {
    width: min(100%, 260px);
  }

  .page-hero--image img[src$="admissions-nurse.jpg"] {
    width: min(100%, 520px);
  }

  .page-hero--image img[src$="hero-healthcare-pathway.jpg"] {
    width: min(100%, 480px);
  }

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

  .cards-3,
  .gallery,
  .program-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .insight-card:last-child {
    grid-column: 1 / -1;
  }

  .split__image--portrait {
    width: min(100%, 460px);
  }

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

  .footer-main > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .motion-ready .motion-page-entry,
  .motion-ready .motion-page-entry-media {
    animation: none;
  }

  body {
    padding-bottom: 0;
    font-size: 15px;
  }

  .section {
    padding-block: 56px;
  }

  .admission-strip {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .page-hero__inner {
    min-height: 0;
    padding-block: 48px;
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 11vw, 2.65rem);
  }

  .page-hero .eyebrow {
    margin-bottom: 12px;
  }

  .page-hero .button-row {
    margin-top: 18px;
    gap: 10px;
  }

  .page-hero--image img {
    height: auto;
  }

  .page-hero--image img[src$="clinical-training.jpg"] {
    width: min(100%, 280px);
  }

  .page-hero--image img[src$="career-readiness.jpg"] {
    width: min(100%, 220px);
  }

  .page-hero--image img[src$="hero-healthcare-pathway.jpg"] {
    width: min(100%, 360px);
  }

  .page-hero--image {
    position: relative;
    overflow: hidden;
  }

  .page-hero--image::after {
    display: none;
  }

  .page-hero--image .page-hero__inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-block: 36px 48px;
    gap: 28px;
  }

  .page-hero--image .page-hero__inner > div {
    position: relative;
    z-index: 2;
    text-shadow: none;
  }

  .page-hero--image img,
  .page-hero--image .page-hero__panorama {
    position: static;
    width: 100%;
    max-width: 500px;
    height: 250px;
    margin: 0 auto;
    border-radius: 16px;
    border: 1px solid rgb(255 255 255 / 16%);
    box-shadow: 0 16px 40px rgb(0 0 0 / 42%);
    opacity: 1;
    object-fit: cover;
    object-position: center;
  }

  .page-hero--image .page-hero__cutout,
  .page-hero--image img[src$="canva-programs-team-cutout.png"],
  .page-hero--image img[src$="canva-admissions-nurse.png"],
  .page-hero--image img[src$="canva-clinical-training.png"] {
    position: static;
    width: 100%;
    max-width: 380px;
    height: 280px;
    margin: 0 auto;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 16px 32px rgb(0 0 0 / 55%));
  }

  .admission-strip__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-block: 6px;
    gap: 2px;
  }

  .nav-shell {
    width: min(calc(100% - 24px), var(--content));
    min-height: 72px;
    padding-block: 6px;
  }

  .brand {
    width: 132px;
  }

  .brand img {
    height: 60px;
  }

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

  .hero__inner {
    padding-top: 36px;
  }

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

  .pillar-card {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 16px;
    gap: 12px;
  }

  .pillar-card__num {
    font-size: 1.8rem;
  }

  .footer-top-ribbon {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hero--cover,
  .hero--cover .hero__inner {
    min-height: 760px;
  }

  .hero--cover .hero__inner {
    align-items: flex-start;
    padding-block: 42px 92px;
  }

  .pathway-pillars {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .pathway-pillars__list {
    padding-top: 0;
  }

  .clinical-flow__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .timeline-list--clinical {
    padding: 4px 0 0 34px;
  }

  .timeline-list--clinical::before {
    left: 7px;
    top: 12px;
    bottom: 12px;
  }

  .timeline-list--clinical .timeline-item {
    padding: 0 0 22px 8px;
  }

  .timeline-list--clinical .timeline-item::before {
    left: -34px;
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  .clinical-flow__visual {
    padding: 16px;
    border-radius: 22px;
  }

  .success-system-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-top: 24px;
  }

  .success-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .success-panel__head {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .checklist-stack {
    gap: 14px;
  }

  .checklist-stack .checklist-item {
    padding-bottom: 14px;
  }

  .success-rule {
    margin-top: 20px;
    padding: 18px 18px 20px;
    border-radius: 18px;
    font-size: 0.98rem;
  }

  .pillar-row {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
  }

  .program-page-eligibility__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero--cover .hero__copy {
    max-width: 100%;
    padding-block: 0;
  }

  .hero--cover::after {
    background:
      linear-gradient(180deg, rgb(2 15 55 / 98%) 0%, rgb(4 22 63 / 88%) 58%, rgb(4 22 63 / 34%) 100%),
      linear-gradient(90deg, rgb(4 22 63 / 30%), transparent 82%);
  }

  .hero__background {
    height: 76%;
    object-position: center bottom;
  }

  .hero-proof {
    display: none;
  }

  .chapter-nav {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: -24px;
    padding: 8px;
    border-radius: 20px;
    overflow: visible;
  }

  .chapter-nav a {
    min-width: 0;
    min-height: 56px;
    padding: 11px 14px;
    white-space: normal;
  }

  .student-pathway-portal {
    overflow: clip;
  }

  .student-pathway-portal__glow {
    inset: -8px;
    filter: blur(20px);
  }

  .hero .button-row {
    margin-top: 22px;
  }

  @media (max-width: 640px) {
    .pillar-row {
      grid-template-columns: minmax(0, 1fr);
      gap: 10px;
    }

    .pillar-row__meta {
      padding-top: 0;
    }

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

  .hero h1 {
    font-size: clamp(2.1rem, 9.6vw, 2.45rem);
    line-height: 1.06;
  }

  .faq-item summary {
    padding: 20px 56px 20px 20px;
    font-size: 1.05rem;
  }

  .faq-item__body {
    padding: 0 20px 20px;
  }

  .news-grid {
    gap: 16px;
  }

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

  .program-next-nav__inner {
    align-items: flex-start;
  }

  .program-next-nav__link {
    width: 100%;
    justify-content: space-between;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .stats-grid,
  .cards-2,
  .cards-3,
  .cards-4,
  .doors-grid,
  .doors-grid--five,
  .checklist-grid,
  .insight-grid,
  .program-index,
  .contact-grid,
  .gallery,
  .program-directory,
  .footer-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-card {
    min-width: 0;
    padding: 24px;
  }

  .contact-card a,
  .contact-card address {
    overflow-wrap: anywhere;
  }

  .insight-card:last-child {
    grid-column: auto;
  }

  .brochure-media--three {
    grid-template-columns: minmax(0, 1fr);
  }

  .insights-section::before {
    top: -250px;
    right: -420px;
  }

  .insight-card__media {
    aspect-ratio: 4 / 3;
  }

  .stat {
    min-height: 0;
  }

  .step {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
  }

  .step__number {
    font-size: 3.2rem;
  }

  .gallery .gallery--wide,
  .footer-main > :first-child {
    grid-column: auto;
  }

  .gallery .gallery--wide img {
    aspect-ratio: 4 / 3;
  }

  .final-cta img {
    height: 310px;
  }

  th,
  td {
    padding: 13px;
  }

  .table-hint {
    display: block;
  }

  .footer-main {
    gap: 36px;
  }

  .mobile-actions {
    display: none;
  }
}

@media (max-width: 640px) and (max-height: 760px) {
  body {
    padding-bottom: 0;
  }

  .mobile-actions {
    display: none;
  }
}

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

  .button,
  .card,
  .degree-card,
  .chapter-nav a,
  .insight-card,
  .insight-card__media img {
    transition: none;
  }

  .hero__background,
  .hero--cover .hero__copy > *,
  .insights-section::before,
  .insight-card {
    animation: none;
  }

  .hero__background,
  .insights-section::before,
  .chapter-nav a:hover,
  .chapter-nav a:focus-visible,
  .insight-card:hover,
  .insight-card:focus-within,
  .insight-card:hover .insight-card__media img,
  .insight-card:focus-within .insight-card__media img {
    transform: none;
  }

  .motion-ready .motion-reveal,
  .motion-ready .motion-group-item,
  .motion-ready .motion-page-entry,
  .motion-ready .motion-page-entry-media,
  .motion-ready .cinematic-hero .hero__copy,
  .motion-ready .pathway-story__step {
    opacity: 1;
    scale: none;
    translate: none;
    transform: none;
    animation: none;
    transition: none;
  }

  .motion-ready .cinematic-hero .hero__background {
    clip-path: none;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* ==========================================================================
   Blueprint Brand Title Component with Orange Prefix Badge
   ========================================================================== */
.blueprint-grid-surface {
  position: relative;
  background-color: #ffffff;
  background-image:
    linear-gradient(rgba(4, 22, 63, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 22, 63, 0.065) 1px, transparent 1px);
  background-size: 24px 24px;
}

.page-hero--blueprint {
  background-color: #ffffff;
  color: var(--navy-950, #04163f);
  background-image:
    radial-gradient(circle at 90% 10%, rgb(244 122 34 / 8%), transparent 40%),
    radial-gradient(circle at 10% 90%, rgb(13 78 159 / 7%), transparent 45%),
    linear-gradient(rgba(4, 22, 63, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 22, 63, 0.065) 1px, transparent 1px);
  background-size: auto, auto, 24px 24px, 24px 24px;
  border-bottom: 1px solid rgba(4, 22, 63, 0.08);
}

.page-hero--blueprint::before {
  display: none;
}

.page-hero--blueprint .breadcrumbs {
  color: var(--muted, #667085);
}

.page-hero--blueprint .breadcrumbs a {
  color: var(--blue-700, #0d4e9f);
}

.page-hero--blueprint .eyebrow {
  color: var(--orange-600, #c84a00);
}

.page-hero--blueprint p {
  color: #3b485e;
}

.page-hero--blueprint .button--outline {
  color: var(--navy-950, #04163f);
  border-color: rgba(4, 22, 63, 0.25);
  background-color: rgba(255, 255, 255, 0.8);
}

.page-hero--blueprint .button--outline:hover {
  border-color: var(--navy-950, #04163f);
  background-color: #f0f4f9;
}

.cb-blueprint-title {
  font-family: var(--font-serif), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1.5rem, 3.8vw + 0.2rem, 3.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.18;
  color: var(--navy-950, #04163f);
  margin-top: 0;
  margin-bottom: 0.75rem;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
}

.page-hero:not(.page-hero--blueprint) .cb-blueprint-title {
  color: var(--white, #ffffff);
}

.cb-blueprint-title__badge {
  display: inline-block;
  background-color: #ff5414;
  color: #04163f !important;
  font-weight: 700;
  padding: 0.02em 0.1em 0.06em 0.06em;
  margin-right: 0.01em;
  line-height: 1;
  vertical-align: baseline;
  border-radius: 1px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.cb-blueprint-title__line {
  display: block;
}

@media (max-width: 640px) {
  .blueprint-grid-surface,
  .page-hero--blueprint {
    background-size: 18px 18px;
  }
  
  .cb-blueprint-title {
    font-size: clamp(1.35rem, 5.8vw, 2.1rem);
    letter-spacing: 0.025em;
    line-height: 1.22;
  }
}

/* ==========================================================================
   BROCHURE-FAITHFUL V3 HOMEPAGE DESIGN SYSTEM (FIRESHOT 024 ALIGNMENT)
   ========================================================================== */

/* 1. Universal Layout & Typography Enhancements */
.section-v3 {
  padding-block: clamp(60px, 7vw, 100px);
  position: relative;
}

.section-v3--white {
  background-color: #ffffff;
}

.section-v3--warm {
  background-color: #fbf9f5;
  border-top: 1px solid rgba(4, 22, 63, 0.05);
  border-bottom: 1px solid rgba(4, 22, 63, 0.05);
}

.section-v3--navy {
  background-color: #04163f;
  color: #ffffff;
}

.section-kicker-v3 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f47a22;
  margin-bottom: 12px;
}

.section-kicker-v3--blue {
  color: #38bdf8;
}

.section-title-v3 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy-950);
  margin-bottom: 16px;
}

.section-v3--navy .section-title-v3 {
  color: #ffffff;
}

.section-lead-v3 {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.6;
  color: #4b5563;
  max-width: 680px;
}

.section-v3--navy .section-lead-v3 {
  color: #c5d8f4;
}

/* 2. Hero Refinement */
.hero-v3-metric-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 28px;
}

.hero-v3-metric-pill {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.hero-v3-metric-pill strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero-v3-metric-pill span {
  display: block;
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.3;
}

.hero-v3-pathway-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 999px;
  color: #7dd3fc;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

/* 3. Floating Step Bar: "YOUR JOURNEY STARTS HERE" */
.journey-floating-wrapper {
  position: relative;
  z-index: 20;
  margin-top: clamp(-44px, -3.5vw, -24px);
  margin-bottom: 50px;
  padding-inline: clamp(16px, 4vw, 32px);
}

.journey-floating-card {
  max-width: var(--content);
  margin-inline: auto;
  background: #ffffff;
  border-radius: 32px;
  padding: clamp(36px, 4.5vw, 54px) clamp(32px, 5vw, 64px) clamp(44px, 5vw, 60px);
  border: 1px solid rgba(4, 22, 63, 0.08);
  box-shadow: 0 24px 60px rgba(4, 22, 63, 0.08), 0 2px 10px rgba(0, 0, 0, 0.03);
  position: relative;
}

.journey-card-header {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.journey-card-header .journey-kicker {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #556c8d;
  margin-bottom: 4px;
}

.journey-card-header .journey-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ea580c;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.journey-timeline-container {
  position: relative;
}

.journey-timeline-line {
  position: absolute;
  top: 20px;
  left: calc(12.5% - 20px);
  right: calc(12.5% - 20px);
  height: 0;
  border-top: 1.5px dashed #c6d6ea;
  z-index: 1;
}

.journey-steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 36px);
}

.journey-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.journey-step-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #08235e;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px #ffffff;
  transition: transform 240ms ease, background-color 240ms ease;
}

.journey-step-item:hover .journey-step-badge {
  transform: scale(1.1);
  background: #ea580c;
}

.journey-step-item h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #08235e;
  margin: 0 0 10px;
  line-height: 1.3;
}

.journey-step-item p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #4a617d;
  margin: 0;
  max-width: 250px;
}

/* 4. Global Need Section */
.gn-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.gn-header-split__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 320px;
}

.gn-roadmap-box {
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.85rem;
  color: #334155;
  font-weight: 500;
}

.gn-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.gn-stat-card {
  padding: 24px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.gn-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(4, 22, 63, 0.06);
}

.gn-stat-card strong {
  display: block;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.gn-stat-card span {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
}

.gn-stat-card--highlight {
  background: #f47a22;
  border-color: #f47a22;
  color: #ffffff;
}

.gn-stat-card--highlight strong,
.gn-stat-card--highlight span {
  color: #ffffff;
}

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

.gn-dest-card {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(4, 22, 63, 0.03);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.gn-dest-card:hover {
  transform: translateY(-3px);
  border-color: #f47a22;
  box-shadow: 0 12px 28px rgba(244, 122, 34, 0.12);
}

.gn-dest-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 4px;
}

.gn-dest-card .gn-dest-sub {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 12px;
}

.gn-dest-card .gn-dest-stat {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #c84a00;
  background: #fff4ec;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.gn-dest-card .gn-dest-support {
  display: block;
  font-size: 0.78rem;
  color: #475569;
  font-weight: 600;
}

/* 5. The Carebridge Pillars */
.pillars-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: 36px;
}

.pillar-card-v3 {
  padding: clamp(28px, 3vw, 36px);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(4, 22, 63, 0.04);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.pillar-card-v3:hover {
  transform: translateY(-4px);
  border-color: #f47a22;
  box-shadow: 0 16px 36px rgba(4, 22, 63, 0.08);
}

.pillar-card-v3__num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #f47a22;
  margin-bottom: 16px;
  line-height: 1;
}

.pillar-card-v3 h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pillar-card-v3 p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #556987;
  margin: 0;
}

/* 6. Campus Immersion Section */
.ci-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

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

.ci-feature-box {
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(4, 22, 63, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(4, 22, 63, 0.03);
  transition: transform 200ms ease, border-color 200ms ease;
}

.ci-feature-box:hover {
  transform: translateY(-3px);
  border-color: #f47a22;
}

.ci-feature-box strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 8px;
}

.ci-feature-box p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: #556987;
  margin: 0;
}

/* 7. How Carebridge Works */
.hiw-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hiw-title-v3 {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 18px;
}

.hiw-title-v3 .display-italic {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: #ea580c;
  margin-top: 4px;
}

.hiw-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #c5d8f4;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hiw-cta-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(56, 189, 248, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hiw-cta-btn .btn-arrow {
  color: #38bdf8;
  font-size: 1rem;
  transition: transform 200ms ease;
}

.hiw-cta-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.hiw-steps-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hiw-step-card {
  padding: 26px 30px;
  background: rgba(8, 28, 70, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 240ms ease, background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.hiw-step-card--featured {
  border-color: rgba(234, 88, 12, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(234, 88, 12, 0.06);
}

.hiw-step-card:hover {
  transform: translateX(6px);
  background: rgba(12, 38, 92, 0.7);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.hiw-step-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(56, 189, 248, 0.16);
  color: #38bdf8;
  margin-bottom: 12px;
}

.hiw-step-pill--orange {
  background: rgba(234, 88, 12, 0.2);
  color: #ff9e61;
}

.hiw-step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.hiw-step-card p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #cbd5e1;
  margin: 0;
}

/* 8. Flagship Programs */
.programs-v3-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
  margin-bottom: 32px;
}

.program-v3-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy-950);
  box-shadow: 0 2px 8px rgba(4, 22, 63, 0.03);
  transition: all 200ms ease;
}

.program-v3-card:hover {
  transform: translateX(4px);
  border-color: #f47a22;
  color: #c84a00;
  box-shadow: 0 8px 20px rgba(244, 122, 34, 0.1);
}

.program-v3-card__arrow {
  font-size: 1.1rem;
  color: #94a3b8;
  transition: transform 200ms ease, color 200ms ease;
}

.program-v3-card:hover .program-v3-card__arrow {
  transform: translateX(4px);
  color: #f47a22;
}

/* 9. True Career True Clinical */
.campus-v3-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.campus-v3-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.campus-v3-stat-box {
  padding: 18px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.campus-v3-stat-box strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.1;
  margin-bottom: 4px;
}

.campus-v3-stat-box span {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.35;
}

.campus-v3-meta {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 24px;
  padding-left: 4px;
}

.campus-v3-visual-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.campus-v3-photo-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 32px rgba(4, 22, 63, 0.06);
}

.campus-v3-photo-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.campus-v3-photo-card__body {
  padding: 20px 24px;
}

.campus-v3-photo-card__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 6px;
}

.campus-v3-photo-card__body p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: #556987;
  margin: 0;
}

/* 10. Four Doors Section */
.four-doors-grid-v3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
  margin-bottom: 32px;
}

.four-door-card-v3 {
  padding: 28px 22px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(4, 22, 63, 0.04);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.four-door-card-v3:hover {
  transform: translateY(-4px);
  border-color: #f47a22;
  box-shadow: 0 14px 30px rgba(4, 22, 63, 0.08);
}

.four-door-card-v3__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff0e5;
  color: #f47a22;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.four-door-card-v3 h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 8px;
}

.four-door-card-v3 p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #556987;
  margin: 0;
}

/* 11. Career Readiness System */
.readiness-v3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: 36px;
}

.readiness-v3-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(4, 22, 63, 0.04);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.readiness-v3-card:hover {
  transform: translateY(-5px);
  border-color: #f47a22;
  box-shadow: 0 16px 36px rgba(4, 22, 63, 0.08);
}

.readiness-v3-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}

.readiness-v3-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.readiness-v3-card:hover .readiness-v3-card__media img {
  transform: scale(1.04);
}

.readiness-v3-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.readiness-v3-card__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 8px;
  line-height: 1.35;
}

.readiness-v3-card__body p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #64748b;
  margin-bottom: 18px;
}

.readiness-v3-card__link {
  font-size: 0.86rem;
  font-weight: 700;
  color: #f47a22;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* 12. Final CTA Banner: Admissions 2026-27 */
.admissions-banner-v3 {
  background: linear-gradient(135deg, #c85a2b 0%, #a8431b 60%, #8c3210 100%);
  color: #ffffff;
  border-radius: 28px;
  padding: clamp(36px, 5vw, 64px);
  margin-block: clamp(40px, 6vw, 80px);
  box-shadow: 0 24px 60px rgba(168, 67, 27, 0.25);
  overflow: hidden;
  position: relative;
}

.admissions-banner-v3__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.admissions-banner-v3 .kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd8bf;
  margin-bottom: 8px;
}

.admissions-banner-v3 h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 14px;
}

.admissions-banner-v3 p {
  font-size: 1rem;
  color: #ffebd9;
  max-width: 580px;
  margin-bottom: 24px;
}

.admissions-banner-v3__visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.admissions-banner-v3__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .journey-timeline-line {
    display: none;
  }
  .journey-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gn-stats-row,
  .gn-destinations-row,
  .four-doors-grid-v3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .ci-split-grid,
  .hiw-split-grid,
  .campus-v3-split,
  .admissions-banner-v3__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-v3-metric-pills {
    grid-template-columns: 1fr;
  }
  .journey-steps-grid,
  .gn-stats-row,
  .gn-destinations-row,
  .pillars-grid-v3,
  .ci-features-grid,
  .programs-v3-grid,
  .four-doors-grid-v3,
  .readiness-v3-grid {
    grid-template-columns: 1fr;
  }
}

/* Instant Top Navigation Progress Bar */
.page-nav-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #f47a22, #ff9b50, #0b63ce, #f47a22);
  background-size: 250% 100%;
  z-index: 999999;
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 120ms ease;
}

.page-nav-progress.is-active {
  opacity: 1;
  transform: scaleX(0.82);
  transition: transform 550ms cubic-bezier(0.1, 0.9, 0.2, 1), opacity 120ms ease;
  animation: nav-progress-shimmer 1.2s linear infinite;
}

.page-nav-progress.is-finishing {
  transform: scaleX(1);
  opacity: 0;
  transition: transform 100ms ease-out, opacity 160ms ease 80ms;
}

@keyframes nav-progress-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 250% 50%; }
}

/* ============================================================
   Merged from css/header.css — index.html header design,
   cascaded site-wide. Scoped strictly to topbar + primary
   header/nav; does not touch section, hero, card or footer
   styling on other pages.
   ============================================================ */

.topbar {
  background: var(--navy-950);
  color: #ffe4d1;
  font-size: 0.82rem;
}
.topbar-inner {
  width: min(calc(100% - 32px), 1180px);
  margin-inline: auto;
  padding-block: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar p { margin: 0; color: inherit; }
.topbar a {
  color: #ffb17c;
  font-weight: 700;
  text-decoration: none;
}
.topbar a:hover,
.topbar a:focus-visible { color: #fff; }

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), var(--content));
  margin-inline: auto;
  padding: 14px 0;
  gap: 20px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 160ms ease;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--orange-600);
}
.main-nav a[aria-current="page"] {
  color: var(--orange-600);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.nav-mobile-only {
  display: none;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-950);
  border-radius: 2px;
}

/* Pill buttons used in the new header (kept distinct from .button system) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-primary {
  background: var(--orange-600);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary[aria-current="page"] {
  background: var(--orange-500);
  transform: translateY(-2px);
  color: #fff;
}
.btn-outline {
  border-color: rgba(200, 74, 0, 0.3);
  color: var(--orange-700);
  background: rgba(255, 255, 255, 0.76);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--orange-600);
  border-color: var(--orange-600);
  color: #fff;
}
.btn-outline-light { border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.btn-outline-light:hover,
.btn-outline-light:focus-visible { background: #fff; color: var(--navy-950); }
.btn-ghost { color: var(--orange-700); font-weight: 700; padding: 12px 14px; background: none; }
.btn-ghost:hover,
.btn-ghost:focus-visible { color: var(--orange-600); }

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-cta .btn-ghost { display: none; }
}

@media (max-width: 640px) {
  .header-row { padding: 10px 0; }
  .header-cta .btn-ghost,
  .header-cta .btn-primary { display: none; }
  .nav-mobile-only { display: list-item; }
  .header-cta .btn-primary { padding: 10px 16px; font-size: 0.85rem; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px; }
  .main-nav li { border-bottom: 1px solid var(--line); }
  .main-nav a { display: block; padding: 14px 0; }
}

/* ============================================================
   Merged from css/brand-refresh.css — Carebridge Brand Refresh.
   Cascades the new homepage design language across all pages
   without touching any page markup or content.
   Bricolage Grotesque / Outfit are loaded via <link> in <head>
   (not @import here) to avoid a font-swap reflow on page load.
   ============================================================ */

/* ---------- Tokens: point old font vars at the new families ---------- */
:root {
  --font-sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  --font-serif: "Bricolage Grotesque", sans-serif !important;
  --font-brand: "Bricolage Grotesque", sans-serif !important;
}

/* ---------- Body + background ---------- */
body {
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  background-image:
    linear-gradient(rgba(8, 36, 95, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 122, 34, 0.06) 1px, transparent 1px) !important;
  background-size: 32px 32px !important;
}

/* ---------- Headings: Bricolage Grotesque, tighter, brand look ---------- */
h1, h2, h3, h4, h5, h6,
.hero-brochure__title,
.section-title-v3,
.section-heading h2,
.hero-brochure__eyebrow,
.footer-top-ribbon__tagline,
.display-italic {
  font-family: "Bricolage Grotesque", sans-serif !important;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h1 { line-height: 1.08; }
h2 { line-height: 1.12; color: var(--navy-950); }
h3 { line-height: 1.18; }

/* Accent words keep their color but never render as italic */
.display-italic {
  font-style: normal;
  font-weight: 600;
  color: var(--orange-600);
}
.display-italic.orange,
.orange {
  color: var(--orange-500);
}

/* ---------- No italics anywhere on the site ---------- */
.display-italic,
.spz__word--accent,
em,
i,
cite,
dfn,
blockquote,
*[style*="italic"] {
  font-style: normal !important;
}

/* Eyebrows / kickers ---------------------------------------------------- */
.eyebrow,
.section-kicker-v3,
.hero-v3-pathway-tag,
.hero-brochure__affil-badge {
  font-family: "Outfit", sans-serif !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  font-weight: 700;
}

/* index.html's eyebrow has no leading icon — match that everywhere */
.eyebrow::before {
  content: none;
  margin-right: 0;
}

/* Affiliation badge now reads as a plain eyebrow label, not a pill */
.hero-brochure__affil-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #ffab70;
  font-size: 0.78rem;
  font-weight: 800;
}


/* ---------- Header refinements ---------- */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #dce4ed;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.primary-nav a {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0;
}

/* ---------- Buttons ---------- */
.button,
.btn {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
}

.button--orange {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 18px 36px rgba(244, 122, 34, 0.24);
  border-color: transparent;
}

.button--orange:hover,
.button--orange:focus-visible {
  background: #ff8d3a;
  transform: translateY(-2px);
  color: #fff;
}

.button--navy {
  border-color: rgba(200, 74, 0, 0.3);
  color: var(--orange-700);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.button--navy:hover,
.button--navy:focus-visible {
  background: var(--orange-600);
  border-color: var(--orange-600);
  transform: translateY(-2px);
  color: #fff;
}

.button--outline {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.button--outline:hover,
.button--outline:focus-visible {
    background: #fff !important;
    color: var(--navy-950);
}

.button--glow {
  box-shadow: 0 18px 36px rgba(244, 122, 34, 0.28);
}

.button--small {
  padding: 10px 18px;
  font-size: 0.88rem;
}

/* ---------- Hero polish ---------- */
.hero-brochure__title {
  font-weight: 600;
  letter-spacing: -0.025em;
  /* Match index.html's hero h1 size instead of the larger legacy value */
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.hero-brochure__lead,
.section-lead-v3,
.hero-brochure__tagline,
.lead {
  font-family: "Outfit", sans-serif;
  line-height: 1.55;
}

.hero-v3-pathway-tag {
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffd2b1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-v3-metric-pill {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 28px rgba(4, 22, 63, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-v3-metric-pill strong {
  font-family: "Bricolage Grotesque", sans-serif !important;
  color: #ffbf92 !important;
}

/* ---------- Section headers / kickers ---------- */
.section-kicker-v3 {
  color: var(--orange-600);
}

.section-title-v3 {
  font-family: "Bricolage Grotesque", sans-serif !important;
  color: var(--navy-950);
}

/* ---------- Cards (universal refresh) ---------- */
.hiw-step-card,
.degree-card,
.program-v3-card,
.gn-stat-card,
.gn-dest-card,
.pathway-opportunity-card,
.cb-pillar-card,
.chapter-card,
.pillar-card,
.destination-card,
.stat-card,
.metric-card,
.door-card,
.contact-card,
.program-card,
.campus-feature-card,
.journey-step-item,
.card {
  background: linear-gradient(180deg, #fff, #fffaf6);
  border: 1px solid rgba(200, 74, 0, 0.12);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(4, 22, 63, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

/* Preserve readable contrast anywhere a true dark navy card is used. */
.card--navy {
  color: #dce8ff;
}

.card--navy h3,
.card--navy p strong {
  color: #ffffff;
}

.card--navy p {
  color: #dce8ff;
}

.hiw-step-card:hover,
.degree-card:hover,
.program-v3-card:hover,
.gn-stat-card:hover,
.gn-dest-card:hover,
.pathway-opportunity-card:hover,
.cb-pillar-card:hover,
.chapter-card:hover,
.pillar-card:hover,
.destination-card:hover,
.stat-card:hover,
.metric-card:hover,
.door-card:hover,
.contact-card:hover,
.program-card:hover,
.campus-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(4, 22, 63, 0.12);
  border-color: rgba(244, 122, 34, 0.3);
}

/* Highlight variant */
.gn-stat-card--highlight {
  background: linear-gradient(135deg, var(--orange-700), var(--orange-500)) !important;
  border-color: transparent !important;
  color: #fff;
}

.gn-stat-card--highlight strong,
.gn-stat-card--highlight span {
  color: #fff !important;
}

/* Card number badges */
.gn-stat-card strong,
.stat-num,
.metric-card strong,
.hiw-step-card strong {
  font-family: "Bricolage Grotesque", sans-serif !important;
  font-weight: 600 !important;
  color: var(--navy-950);
}

/* ---------- Journey floating band ---------- */
.journey-floating-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 242, 0.96)) !important;
  border: 1px solid rgba(200, 74, 0, 0.1) !important;
  box-shadow: 0 22px 54px rgba(4, 22, 63, 0.14) !important;
  border-radius: 32px !important;
}

.journey-title,
.journey-kicker {
  font-family: "Bricolage Grotesque", sans-serif !important;
}

.journey-title {
  color: var(--orange-500);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.journey-step-badge {
  background: linear-gradient(180deg, var(--blue-700), var(--navy-900)) !important;
  color: #fff !important;
  font-family: "Bricolage Grotesque", sans-serif !important;
}

/* ---------- Section backgrounds ---------- */
.section-v3--white,
.section--white {
  background-color: #fff;
  background-image:
    radial-gradient(circle at 92% 12%, rgba(244, 122, 34, 0.06), transparent 26%),
    radial-gradient(circle at 8% 88%, rgba(13, 78, 159, 0.05), transparent 28%),
    linear-gradient(rgba(8, 36, 95, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 122, 34, 0.045) 1px, transparent 1px);
  background-size: auto, auto, 32px 32px, 32px 32px;
}

.section-v3--tint,
.section--tint {
  background: linear-gradient(180deg, var(--orange-100), #fbfcfe);
}

.section-v3--navy,
.section--navy {
  background: var(--navy-950);
}

.section-v3--navy .section-kicker-v3,
.section--navy .eyebrow {
  color: #ffb17c !important;
}

/* ---------- Final CTA / cta-banner ---------- */
.final-cta,
.cta-v3-box,
.cta-banner {
  background: linear-gradient(135deg, var(--navy-950), var(--orange-700));
}

.final-cta h2,
.cta-v3-box h2,
.cta-banner h2 {
  color: #fff;
}

/* ---------- Footer refinements (mostly already matches) ---------- */
.site-footer {
  background-color: #020919;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(13, 78, 159, 0.22), transparent 36%),
    radial-gradient(circle at 88% 82%, rgba(244, 122, 34, 0.15), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #03102c 0%, #010714 100%);
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
  border-top: 1px solid rgba(244, 122, 34, 0.28);
}

.site-footer h2 {
  font-family: "Bricolage Grotesque", sans-serif !important;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.92rem;
  font-weight: 800;
}

.footer-top-ribbon__tagline {
  font-family: "Bricolage Grotesque", sans-serif !important;
  color: #fff;
  font-weight: 600;
}

.footer-list a,
.footer-support-content a,
.footer-support-content address {
  font-family: "Outfit", sans-serif;
}

.footer-flag-pill {
  font-family: "Outfit", sans-serif;
}

/* ---------- Mobile action bar ---------- */
.mobile-actions {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

/* ---------- Focus ---------- */
:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 2px;
}

/* ---------- Finalized page shells for About / Contact / Admissions / Campus ---------- */
.about-intro-section,
.contact-primary-section,
.admissions-table-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.14), transparent 26%),
    radial-gradient(circle at bottom left, rgba(8, 36, 95, 0.08), transparent 24%),
    linear-gradient(180deg, #f7efe7 0%, #fbfcfe 100%);
}

.about-intro-section::before,
.contact-primary-section::before,
.admissions-table-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 36, 95, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 36, 95, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.about-intro-section > .container,
.contact-primary-section > .container,
.admissions-table-section > .container,
.admissions-student-section > .container,
.admissions-parent-section > .container,
.campus-life-section > .container {
  position: relative;
  z-index: 1;
}

.about-intro,
.about-campus-split,
.contact-visit-split,
.admissions-pact-intro {
  gap: clamp(30px, 4.5vw, 64px);
  align-items: start;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: clamp(28px, 4vw, 44px);
  align-items: center;
}

.about-intro__heading {
  margin-bottom: 18px;
}

.about-intro__seal {
  max-width: 240px;
}

.about-intro__copy {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.98));
  box-shadow: 0 18px 42px rgb(4 22 63 / 7%);
}

.about-intro__copy h2,
.about-intro__copy p {
  margin: 0;
}

.about-proof-strip,
.about-campus-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-featured-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.about-proof-strip span,
.about-campus-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(244, 122, 34, 0.14);
  border-radius: 999px;
  background: rgba(244, 122, 34, 0.08);
  color: var(--navy-950);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.about-featured-strip__label,
.about-featured-strip a {
  display: inline-flex;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.about-featured-strip__label {
  color: var(--navy-950);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-featured-strip a {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(244, 122, 34, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-950);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-featured-strip a:hover,
.about-featured-strip a:focus-visible {
  border-color: rgba(244, 122, 34, 0.4);
  box-shadow: 0 10px 22px rgb(4 22 63 / 10%);
  transform: translateY(-1px);
}

.about-featured-strip--dark {
  margin-top: 18px;
}

.about-featured-strip--dark .about-featured-strip__label {
  color: var(--white);
}

.about-featured-strip--dark a {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.about-featured-strip--dark a:hover,
.about-featured-strip--dark a:focus-visible {
  border-color: rgba(244, 122, 34, 0.44);
  background: rgba(244, 122, 34, 0.12);
  box-shadow: 0 12px 26px rgb(0 0 0 / 18%);
}

.about-intro__seal-img {
  width: 100%;
  height: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #fff8f2);
  box-shadow: 0 18px 44px rgb(4 22 63 / 8%);
}

.about-values-grid,
.campus-life-grid,
.contact-grid--feature {
  gap: 22px;
  margin-top: 26px;
  align-items: stretch;
}

.about-values-grid {
  align-items: stretch;
}

.about-values-grid .card,
.campus-life-grid .card,
.contact-grid--feature .contact-card {
  min-height: 0;
  padding: 28px;
  border-radius: 28px;
}

.about-values-grid .card {
  position: relative;
  display: grid;
  height: 100%;
  align-content: start;
  gap: 12px;
  overflow: hidden;
}

.about-values-grid .card h3,
.about-values-grid .card p {
  margin: 0;
}

.about-value-card {
  padding: clamp(30px, 4vw, 42px) !important;
  border: 1px solid rgba(8, 36, 95, 0.08) !important;
  border-radius: 32px !important;
  background: linear-gradient(180deg, #ffffff, #f8fbff) !important;
  box-shadow: 0 18px 44px rgba(4, 22, 63, 0.07) !important;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), border-color 280ms ease, box-shadow 280ms ease;
}

.about-value-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 122, 34, 0.14), transparent 68%);
  transition: transform 280ms ease;
}

/* .about-value-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange-600), var(--orange-500));
} */

.about-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 122, 34, 0.26) !important;
  box-shadow: 0 24px 58px rgba(4, 22, 63, 0.1), 0 0 24px rgba(244, 122, 34, 0.08) !important;
}

.about-value-card:hover::before {
  transform: scale(1.08);
}

.about-value-card h3 {
  margin-bottom: 6px;
  padding-right: 24px;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 1.8vw, 1.8rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--navy-950);
  transition: color 200ms ease;
}

.about-value-card:hover h3 {
  color: #c84a00;
}

.about-value-card p {
  color: #475467;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-values-grid .card--outline {
  border: 1px solid rgb(8 36 95 / 10%);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 20px 48px rgb(4 22 63 / 6%);
}

.about-values-grid .card--navy,
.campus-life-grid .card--navy {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.12), transparent 30%),
    linear-gradient(160deg, #092152 0%, #04163f 58%, #07102a 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-values-grid .card--navy {
  border-color: rgba(6, 23, 61, 0.06);
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.18), transparent 30%),
    linear-gradient(160deg, #092152 0%, #04163f 58%, #07102a 100%);
  box-shadow: 0 24px 56px rgba(4, 22, 63, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-values-grid .card--navy h3 {
  color: #ffffff;
}

.about-values-grid .card--navy p {
  color: #d9e5fb;
}

.about-campus-section .split__image,
.contact-visit-section .split__image,
.admissions-pact-intro-section .split__image {
  border: 1px solid rgb(8 36 95 / 8%);
  border-radius: 28px;
  box-shadow: 0 22px 56px rgb(4 22 63 / 10%);
}

.about-campus-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(244, 122, 34, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.about-campus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 36, 95, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 36, 95, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.about-campus-section > .container {
  position: relative;
  z-index: 1;
}

.about-campus-split {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  align-items: stretch;
}

.about-campus-split > div:first-child {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.98));
  box-shadow: 0 18px 42px rgba(4, 22, 63, 0.07);
}

.about-campus-split > div:first-child p,
.about-campus-split > div:first-child h2 {
  margin: 0;
}

.about-campus-section .button-row {
  margin-top: 8px;
}

.about-campus-section .split__image {
  display: flex;
  align-items: stretch;
  margin-top: 0;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 253, 0.98));
  box-shadow: 0 26px 62px rgba(4, 22, 63, 0.12);
}

.about-campus-section .split__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-campus-visual {
  position: relative;
  flex: 1 1 auto;
  min-height: 100%;
  flex-direction: column;
  gap: 14px;
}

.about-campus-visual__primary,
.about-campus-visual__secondary {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
}

.about-campus-visual__primary {
  min-height: clamp(320px, 34vw, 440px);
  box-shadow: 0 18px 40px rgba(4, 22, 63, 0.14);
}

.about-campus-visual__secondary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  flex: 1 1 auto;
  min-height: clamp(210px, 20vw, 280px);
  border: 1px solid rgba(8, 36, 95, 0.08);
  box-shadow: 0 12px 28px rgba(4, 22, 63, 0.08);
}

.about-campus-visual__secondary img {
  min-height: clamp(210px, 20vw, 280px);
}

.about-campus-visual__secondary figcaption {
  display: flex;
  align-items: center;
  max-width: 180px;
  padding: 18px 16px;
  background: linear-gradient(180deg, #fff8f2, #ffffff);
  border-left: 1px solid rgba(8, 36, 95, 0.08);
  color: var(--navy-950);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 991px) {
  .about-campus-split {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .hero--compact-mobile {
    padding-top: 148px;
    padding-bottom: 18px;
  }

  .hero--compact-mobile .hero-brochure__bg-media {
    height: 148px;
  }

  .hero--compact-mobile .hero-brochure__media {
    display: none;
  }

  .hero--compact-mobile .hero-brochure__badge-row,
  .hero--compact-mobile .hero-brochure__tagline {
    display: none;
  }

  .hero--compact-mobile .hero-brochure__lead {
    margin-bottom: 12px;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .faq-rail {
    position: static;
    padding: 22px;
  }

  .news-card--feature,
  .news-card:not(.news-card--feature) {
    grid-column: span 12;
  }

  .news-card--feature {
    display: flex;
    flex-direction: column;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "media"
      "meta"
      "title"
      "body"
      "link";
    gap: 18px;
  }

  .news-card--feature .news-card__thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .news-card--program {
    padding: 24px;
  }

  .about-campus-section .split__image {
    display: block;
  }

  .about-campus-visual {
    min-height: 0;
    flex: none;
  }

  .about-campus-visual__secondary {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    display: block;
    flex: none;
  }

  .about-campus-visual__primary,
  .about-campus-visual__secondary,
  .about-campus-visual__secondary img {
    min-height: 0;
  }

  .about-campus-section .split__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .about-campus-visual__secondary figcaption {
    max-width: none;
    border-left: 0;
    border-top: 1px solid rgba(8, 36, 95, 0.08);
  }
}

@media (max-width: 640px) {
  .hero--compact-mobile {
    padding-top: 124px;
    padding-bottom: 16px;
  }

  .hero--compact-mobile .hero-brochure__bg-media {
    height: 124px;
  }

  .hero--compact-mobile .hero-brochure__title {
    font-size: clamp(1.55rem, 6.8vw, 2rem);
    margin-bottom: 10px;
  }

  .hero--compact-mobile .hero-brochure__lead {
    font-size: 0.88rem;
    line-height: 1.42;
    margin-bottom: 12px;
  }

  .hero--compact-mobile .button-row {
    gap: 10px;
  }

  .hero--compact-mobile .button {
    min-height: 44px;
  }

  .faq-section {
    padding-top: 28px;
  }

  .news-card {
    padding: 20px;
  }

  .news-card--feature {
    gap: 14px;
  }

  .news-card--feature .news-card__thumb {
    aspect-ratio: 4 / 3;
  }
}

/* Healthcare landing-page visual refresh -------------------------------- */
.program-lp-page {
  --lp-teal: var(--navy-900);
  --lp-forest: var(--orange-600);
  --lp-peach: #fff4ec;
  background: #fff4ec;
  color: var(--navy-950);
}

.program-lp-page::before {
  background-image:
    linear-gradient(rgb(200 74 0 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(200 74 0 / 3%) 1px, transparent 1px);
}

.program-lp-page .topbar {
  background: var(--navy-950);
}

.program-lp-page .site-header {
  margin: 14px auto 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.program-lp-page .header-row {
  min-height: 72px;
  padding: 8px 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 28px rgb(22 76 77 / 8%);
}

.program-lp-page .header-cta .btn-primary,
.program-lp-page .button--orange {
  background: var(--orange-500);
  border-color: transparent;
  box-shadow: 0 18px 36px rgb(244 122 34 / 24%);
}

.program-lp-page .header-cta .btn-primary:hover,
.program-lp-page .button--orange:hover {
  background: var(--orange-700);
  border-color: var(--orange-700);
}

.program-lp-page .btn-ghost,
.program-lp-page .button--outline {
  border-color: rgb(200 74 0 / 30%);
  color: var(--orange-700);
  background: rgb(255 255 255 / 76%);
}

.program-lp-page .lp-hero {
  max-width: 1180px;
  min-height: 610px;
  margin: 14px auto 0;
  padding: clamp(34px, 5vw, 68px) 0;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 16px 38px rgb(22 76 77 / 12%);
}

.program-lp-page .lp-hero--bot {
  background:
    linear-gradient(90deg, rgb(4 22 63 / 92%) 0%, rgb(8 36 95 / 72%) 45%, rgb(4 22 63 / 34%) 100%),
    url("assets/images/canva-facility-occupational-therapy.png") center / cover no-repeat;
}

.program-lp-page .lp-hero--nursing {
  background:
    linear-gradient(90deg, rgb(4 22 63 / 92%) 0%, rgb(8 36 95 / 72%) 45%, rgb(4 22 63 / 34%) 100%),
    url("assets/images/admissions-nurse.jpg") center / cover no-repeat;
}

.program-lp-page .lp-hero::after {
  display: none;
}

.program-lp-page .lp-hero__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
}

.program-lp-page .lp-hero__copy h1 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.program-lp-page .lp-hero .eyebrow {
  color: #ffbe93;
}

.program-lp-page .lp-hero__lead {
  max-width: 46ch;
  color: #f3fbef;
}

.program-lp-page .lp-chip-row,
.program-lp-page .lp-proof-list {
  display: none;
}

.program-lp-page .lp-hero-statband {
  margin-top: 28px;
  gap: 1px;
  overflow: hidden;
  border-radius: 12px;
  background: rgb(255 255 255 / 26%);
}

.program-lp-page .lp-hero-stat {
  min-height: 104px;
  padding: 16px;
  border: 0;
  border-radius: 0;
  background: rgb(4 22 63 / 70%);
  box-shadow: none;
  backdrop-filter: none;
}

.program-lp-page .lp-hero-stat strong {
  color: #fff;
  font-size: 1.65rem;
}

.program-lp-page .lp-hero-stat span {
  color: #d9e6ff;
}

.program-lp-page .lp-hero__copy .button-row {
  margin-top: 22px;
}

.program-lp-page .lp-hero .button--outline {
  border-color: rgb(255 255 255 / 60%);
  background: rgb(255 255 255 / 10%);
  color: #fff;
}

.program-lp-page .lp-hero .button--outline:hover,
.program-lp-page .lp-hero .button--outline:focus-visible {
  background: #fff !important;
  color: var(--navy-950);
}

.program-lp-page .lp-form-card--hero {
  width: min(100%, 390px);
  padding: 24px;
  border: 0;
  border-radius: 16px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 16px 34px rgb(15 54 50 / 26%);
  backdrop-filter: blur(8px);
}

.program-lp-page .lp-form-card h2,
.program-lp-page .lp-field label {
  color: var(--navy-950);
}

.program-lp-page .lp-form-card__meta span {
  border-color: #ffd7c0;
  background: #fff3eb;
  color: var(--lp-forest);
}

.program-lp-page .lp-field input,
.program-lp-page .lp-field select {
  border-color: #d2ddee;
  border-radius: 8px;
  background: #fff;
}

.program-lp-page .lp-form__trust span {
  border-radius: 8px;
  background: var(--lp-peach);
  color: var(--navy-900);
}

.program-lp-page .lp-form-card--hero .button--orange {
  min-height: 50px;
  background: var(--orange-500);
}

.program-lp-page .lp-form__secondary {
  gap: 8px;
}

.program-lp-page .lp-form__secondary .button {
  min-height: 44px;
  padding: 9px 10px;
  border-width: 1px;
  font-size: 0.76rem;
  line-height: 1.25;
  white-space: normal;
}

.program-lp-page .lp-form__secondary .button::after {
  display: none;
}

.program-lp-page .lp-form__secondary .button--outline {
  border-color: #d4deec;
  background: #fff;
  color: var(--navy-900);
}

.program-lp-page .lp-form__secondary .button--navy {
  border-color: #f4c6a8;
  background: #fff3eb;
  color: var(--orange-700);
}

.program-lp-page .lp-visual-stack {
  display: none;
}

.program-lp-page .lp-signal-bar {
  max-width: 1180px;
  margin: 16px auto 0;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(105deg, var(--navy-900), var(--navy-950));
  box-shadow: 0 14px 30px rgb(4 22 63 / 16%);
}

.program-lp-page .lp-signal-bar__item {
  padding: 22px 26px;
  text-align: center;
}

.program-lp-page .lp-signal-bar__item + .lp-signal-bar__item {
  border-left-color: rgb(255 255 255 / 22%);
}

.program-lp-page .lp-signal-bar__item strong,
.program-lp-page .lp-signal-bar__item span {
  color: #fff;
}

.program-lp-page .lp-signal-bar__item strong {
  font-size: 1.25rem;
}

.program-lp-page .section {
  max-width: 1180px;
  margin: 16px auto 0;
  padding: clamp(36px, 4.5vw, 60px) clamp(20px, 4vw, 54px);
  border-radius: 14px;
  background: #fff;
}

.program-lp-page .section--navy {
  color: var(--navy-950);
  /* background: var(--lp-peach); */
}

.program-lp-page .section--navy .eyebrow,
.program-lp-page .section--navy .lead,
.program-lp-page .section--navy h2 {
  color: var(--navy-950);
}

.program-lp-page .lp-story {
  gap: clamp(22px, 4vw, 48px);
}

.program-lp-page .lp-story__media {
  margin: 0;
  min-height: 300px;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  box-shadow: none;
}

.program-lp-page .lp-story__media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.program-lp-page .lp-story__media--nursing-intro img {
  object-position: 72% center;
}

.program-lp-page .lp-story__badge {
  left: 16px;
  bottom: 16px;
  border: 0;
  border-radius: 8px;
  background: rgb(4 22 63 / 88%);
}

.program-lp-page .lp-story__copy h2,
.program-lp-page .lp-section-head h2 {
  color: var(--lp-teal);
}

.program-lp-page .lp-section-head {
  max-width: 820px;
  margin: 50px 0 20px;
  text-align: left;
}

.program-lp-page .lp-section-head .eyebrow {
  margin: 0;
  color: var(--lp-forest);
}

.program-lp-page .lp-grid,
.program-lp-page .lp-faq-grid {
  gap: 16px;
}

.program-lp-page .lp-card {
  padding: 16px;
  border: 1px solid rgb(200 74 0 / 12%);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #fffaf6);
  box-shadow: 0 12px 32px rgb(4 22 63 / 8%);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.program-lp-page .lp-card:hover {
  border-color: rgb(244 122 34 / 30%);
  box-shadow: 0 20px 44px rgb(4 22 63 / 12%);
  transform: translateY(-3px);
}

.program-lp-page .lp-card__index {
  margin-bottom: 8px;
  color: var(--lp-forest);
}

.program-lp-page .lp-card h3 {
  color: var(--lp-teal);
}

.program-lp-page .lp-image-grid {
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.8fr));
  gap: 16px;
}

.program-lp-page .lp-image-grid--bot {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.program-lp-page .lp-image-grid--nursing {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
}

.program-lp-page .lp-image-card {
  min-height: 260px;
  border: 1px solid rgb(200 74 0 / 12%);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgb(4 22 63 / 8%);
}

.program-lp-page .lp-image-card--feature {
  min-height: 320px;
}

.program-lp-page .lp-image-card img {
  content-visibility: visible;
  transition: transform 220ms ease;
}

.program-lp-page .lp-image-card:hover img {
  transform: scale(1.035);
}

.program-lp-page .lp-image-card__overlay {
  padding: 20px;
}

.program-lp-page .lp-image-card--feature .lp-image-card__overlay strong {
  font-size: 1.15rem;
}

.bot-landing-page .lp-image-card:not(.lp-image-card--feature) .lp-image-card__overlay span {
  display: none;
}

.program-lp-page .lp-track {
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgb(200 74 0 / 12%);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #fffaf6);
  box-shadow: 0 12px 32px rgb(4 22 63 / 8%);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.program-lp-page .lp-track:hover {
  border-color: rgb(244 122 34 / 30%);
  box-shadow: 0 20px 44px rgb(4 22 63 / 12%);
  transform: translateY(-3px);
}

.program-lp-page .lp-track h3 {
  color: var(--lp-teal);
}

.program-lp-page .lp-track p {
  color: #50607a;
}

.program-lp-page .lp-track__eyebrow {
  color: var(--lp-forest);
}

.program-lp-page .lp-cta-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 0;
  border-radius: 14px;
  background: linear-gradient(112deg, #fff0e5 0%, #fffaf6 56%, #ffe3cf 100%);
  box-shadow: none;
}

.program-lp-page .lp-cta-panel .eyebrow {
  margin-bottom: 8px;
}

.program-lp-page .lp-cta-panel h2 {
  margin-top: 0;
}

.program-lp-page .lp-cta-steps {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.program-lp-page .lp-cta-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: #50607a;
  font-size: 0.92rem;
}

.program-lp-page .lp-cta-steps strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-950);
  color: #ffbe93;
  font-size: 0.72rem;
}

.program-lp-page .lp-cta-actions {
  align-self: end;
  display: grid;
  width: min(100%, 250px);
  gap: 12px;
}

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

.program-lp-page .lp-cta-detail-link {
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  text-decoration-color: var(--orange-600);
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .program-lp-page .site-header {
    margin-top: 0;
  }

  .program-lp-page .header-row {
    border-radius: 0;
  }

  .program-lp-page .lp-hero,
  .program-lp-page .lp-signal-bar,
  .program-lp-page .section {
    margin-top: 0;
    border-radius: 0;
  }

  .program-lp-page .lp-hero {
    min-height: 0;
  }

  .program-lp-page .lp-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .program-lp-page .lp-hero__side {
    justify-items: stretch;
  }

  .program-lp-page .lp-form-card--hero {
    width: 100%;
  }

  .program-lp-page .lp-cta-actions {
    justify-self: start;
    align-self: start;
    width: min(100%, 320px);
  }

  .program-lp-page .lp-cta-actions {
    width: 100%;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .program-lp-page .lp-hero {
    padding-block: 36px;
  }

  .program-lp-page .lp-hero__copy h1 {
    max-width: 13ch;
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .program-lp-page .lp-hero-statband {
    grid-template-columns: 1fr;
  }

  .program-lp-page .lp-hero-stat {
    min-height: 0;
  }

  .program-lp-page .lp-signal-bar__item + .lp-signal-bar__item {
    border-top-color: rgb(255 255 255 / 22%);
  }

  .program-lp-page .section {
    padding: 34px 20px;
  }

  .program-lp-page .lp-section-head {
    margin-top: 38px;
  }

  .program-lp-page .lp-story__media,
  .program-lp-page .lp-story__media img {
    min-height: 0;
    height: clamp(300px, 105vw, 420px);
  }

  .program-lp-page .lp-image-grid--bot,
  .program-lp-page .lp-image-grid--nursing {
    grid-template-columns: 1fr;
  }
}

.about-compare-section .section-heading {
  align-items: end;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 42px rgb(4 22 63 / 6%);
}

.about-compare-section .table-wrap {
  margin-top: 22px;
  border-radius: 28px;
  overflow: hidden;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.home-faq-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  margin-top: 34px;
}

.home-faq-rail {
  position: sticky;
  top: calc(var(--header-total-height) + 20px);
  padding: 28px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(244, 122, 34, 0.18), transparent 38%),
    linear-gradient(180deg, #0c234f 0%, #071733 100%);
  box-shadow: 0 24px 54px rgba(3, 18, 48, 0.2);
  color: rgba(255, 255, 255, 0.88);
}

.home-faq-rail__eyebrow {
  margin: 0 0 14px;
  color: #ffbe8e;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-faq-rail h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.08;
}

.home-faq-rail p {
  margin: 0;
  color: rgba(231, 239, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.62;
}

.home-faq-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.home-faq-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fef3ea;
  font-size: 0.83rem;
  font-weight: 600;
}

.home-faq-accordion {
  min-width: 0;
}

.home-faq-footer {
  margin-top: 28px;
  text-align: center;
}

.home-faq-footer p {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-700);
}

.faq-rail,
.faq-item,
.news-card,
.news-resource-card {
  border-radius: 28px;
}

.faq-rail {
  position: sticky;
  top: calc(var(--header-total-height) + 20px);
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(244, 122, 34, 0.18), transparent 38%),
    linear-gradient(180deg, #0c234f 0%, #071733 100%);
  box-shadow: 0 24px 54px rgba(3, 18, 48, 0.2);
  color: rgba(255, 255, 255, 0.88);
}

.faq-rail h3 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.08;
  color: #ffffff;
}

.faq-rail .eyebrow {
  color: #ffbe8e;
}

.faq-rail p {
  color: rgba(231, 239, 255, 0.84);
}

.faq-rail .about-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-rail .about-proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fef3ea;
  font-size: 0.83rem;
  font-weight: 600;
}

.faq-rail__actions {
  margin-top: 20px;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  position: relative;
  border: 1px solid rgba(8, 36, 95, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
  box-shadow: 0 18px 40px rgba(4, 22, 63, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.faq-item::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, rgba(244, 122, 34, 0.88), rgba(12, 35, 79, 0.28));
  content: "";
  opacity: 0.65;
  transition: opacity 180ms ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(4, 22, 63, 0.12);
}

.faq-item[open] {
  border-color: rgba(244, 122, 34, 0.26);
  box-shadow: 0 26px 54px rgba(4, 22, 63, 0.14);
}

.faq-item[open]::before {
  opacity: 1;
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 24px 72px 24px 28px;
  color: var(--navy-950);
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.22rem;
  line-height: 1.26;
  letter-spacing: -0.01em;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(244, 122, 34, 0.12);
  color: var(--orange-700);
  font-size: 1.45rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
  background: linear-gradient(135deg, var(--orange-500), var(--orange-700));
  color: #ffffff;
}

.faq-item__body {
  padding: 0 28px 26px;
  color: #415166;
}

.faq-item__body p {
  max-width: 66ch;
}

@media (max-width: 900px) {
  .home-faq-shell {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-faq-rail {
    position: static;
    padding: 24px;
  }

  .home-faq-footer {
    margin-top: 22px;
  }
}

.faq-signal-grid {
  align-items: stretch;
}

.faq-signal-card,
.news-resource-card {
  padding: clamp(24px, 3vw, 30px);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

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

.news-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 28px;
  border: 1px solid rgba(8, 36, 95, 0.08);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 44px rgba(4, 22, 63, 0.07);
}

.news-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  object-fit: cover;
  background: linear-gradient(180deg, #eef3fb, #f8fbff);
}

.news-card--feature {
  grid-column: span 12;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  grid-template-areas:
    "media meta"
    "media title"
    "media body"
    "media link";
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.14), transparent 30%),
    linear-gradient(180deg, #fff7f0, #ffffff);
}

.news-card:not(.news-card--feature) {
  grid-column: span 4;
}

.news-card--program {
  gap: 0;
  padding: clamp(30px, 4vw, 42px);
  border-radius: 32px;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 280ms ease,
              box-shadow 280ms ease;
}

.news-card--program::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 122, 34, 0.14), transparent 68%);
  transition: transform 280ms ease, opacity 280ms ease;
}

/* .news-card--program::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange-600), var(--orange-500));
} */

.news-card--program:hover,
.news-card--program:focus-within {
  transform: translateY(-6px);
  border-color: rgba(244, 122, 34, 0.26);
  box-shadow: 0 24px 58px rgba(4, 22, 63, 0.1), 0 0 24px rgba(244, 122, 34, 0.08);
}

.news-card--program:hover::before,
.news-card--program:focus-within::before {
  transform: scale(1.08);
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.news-card--feature .news-card__thumb {
  grid-area: media;
  height: 100%;
  min-height: 320px;
}

.news-card__video-wrap {
  grid-area: media;
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.22), transparent 34%),
    linear-gradient(180deg, #0b1e46, #071733);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.news-card__video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.news-card--video {
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.16), transparent 30%),
    linear-gradient(180deg, #fffaf5, #ffffff);
}

.news-card--feature .news-card__meta {
  grid-area: meta;
}

.news-card--feature h3 {
  grid-area: title;
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
}

.news-card--feature p {
  grid-area: body;
}

.news-card--feature .news-card__link {
  grid-area: link;
  align-self: end;
}

.news-card__tag,
.news-card__tagline {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-card__tag {
  color: var(--white);
  background: var(--navy-900);
}

.news-card__tagline {
  color: var(--orange-700);
  background: var(--orange-100);
}

.news-card--program .news-card__tagline {
  width: fit-content;
  min-height: 34px;
  margin: 0 0 16px;
  padding: 0 14px;
  border: 1px solid rgba(244, 122, 34, 0.16);
  background: rgba(244, 122, 34, 0.08);
  color: var(--orange-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.news-card--program .news-card__meta {
  margin-bottom: 14px;
}

.news-card--program h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2vw, 2rem);
  transition: color 200ms ease;
}

.news-card--program:hover h3,
.news-card--program:focus-within h3 {
  color: #c84a00;
}

.news-card--program p {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475467;
}

.news-card h3,
.news-resource-card h3 {
  margin-bottom: 0;
  color: var(--navy-950);
  font-size: 1.45rem;
  line-height: 1.12;
}

.news-card p {
  margin: 0;
  color: rgba(8, 36, 95, 0.86);
  line-height: 1.68;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--orange-700);
  font-weight: 800;
  text-decoration: none;
}

.news-card__link:hover,
.news-card__link:focus-visible {
  color: var(--navy-900);
}

.news-card--program .news-card__link {
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 36, 95, 0.08);
  color: var(--navy-950);
  font-size: 0.96rem;
  transition: color 220ms ease;
}

.news-card--program .news-card__link:hover,
.news-card--program .news-card__link:focus-visible,
.news-card--program:hover .news-card__link,
.news-card--program:focus-within .news-card__link {
  color: #ea580c;
}

.news-watch-image {
  min-height: 100%;
}

.news-watch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-primary-section .section-heading,
.campus-life-section .section-heading,
.admissions-table-section .section-heading,
.admissions-student-section .section-heading,
.admissions-parent-section .section-heading {
  margin-bottom: clamp(24px, 3vw, 34px);
}

.contact-grid--feature {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(260px, 0.9fr);
  gap: 18px 22px;
  align-items: stretch;
}

.contact-grid--feature .contact-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: clamp(26px, 3.2vw, 34px);
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 44px rgba(4, 22, 63, 0.07);
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1), border-color 280ms ease, box-shadow 280ms ease;
}

.contact-grid--feature .contact-card::before {
  content: "";
  position: absolute;
  inset: auto -36px -36px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 122, 34, 0.12), transparent 68%);
  transition: transform 280ms ease;
}

.contact-grid--feature .contact-card:hover,
.contact-grid--feature .contact-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(244, 122, 34, 0.26);
  box-shadow: 0 22px 52px rgba(4, 22, 63, 0.09), 0 0 22px rgba(244, 122, 34, 0.06);
}

.contact-grid--feature .contact-card:hover::before,
.contact-grid--feature .contact-card:focus-within::before {
  transform: scale(1.08);
}

.contact-grid--feature .contact-card--featured {
  grid-row: span 3;
  align-content: center;
  gap: 18px;
  padding: clamp(34px, 4vw, 46px);
  border-color: rgba(8, 36, 95, 0.1);
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.16), transparent 28%),
    linear-gradient(145deg, #ffffff, #fff7ef 58%, #f8fbff 100%);
  box-shadow: 0 24px 56px rgba(4, 22, 63, 0.1);
}

.contact-grid--feature .contact-card--compact {
  align-content: start;
  gap: 10px;
  min-height: 148px;
  grid-template-rows: auto 1fr;
}

.contact-grid--feature .contact-card__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(244, 122, 34, 0.16);
  border-radius: 999px;
  background: rgba(244, 122, 34, 0.08);
  color: var(--orange-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid--feature .contact-card__value {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}

.contact-grid--feature .contact-card--featured .contact-card__value {
  font-size: clamp(1.95rem, 3.2vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.contact-grid--feature .contact-card address.contact-card__value {
  max-width: 18ch;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.5;
}

.contact-grid--feature .contact-card a.contact-card__value[href^="https"] {
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
  line-height: 1.55;
}

.contact-grid--feature .contact-card__note {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin: 0;
  color: #526176;
  font-size: 0.95rem;
  line-height: 1.65;
}

.contact-grid--feature .contact-card a.contact-card__value:hover,
.contact-grid--feature .contact-card a.contact-card__value:focus-visible {
  color: #c84a00;
  text-decoration-color: currentColor;
}

.admissions-fee-note {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgb(200 74 0 / 16%);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(169, 59, 0, 0.95), rgba(244, 122, 34, 0.94));
  box-shadow: 0 18px 40px rgb(0 0 0 / 18%);
  color: #fff4ea;
  line-height: 1.65;
}

.admissions-fee-note strong {
  display: inline-block;
  margin-right: 6px;
  color: #ffffff;
}

.admissions-table-section .table-wrap,
.about-intro-section .comparison-table,
.about-intro-section .table-wrap {
  box-shadow: 0 16px 40px rgb(4 22 63 / 7%);
}

.admissions-student-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(13, 78, 159, 0.06), transparent 24%),
    radial-gradient(circle at bottom left, rgba(244, 122, 34, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.admissions-student-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 36, 95, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 36, 95, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

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

.campus-life-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(244, 122, 34, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(13, 78, 159, 0.08), transparent 26%),
    linear-gradient(180deg, #fbf3ea 0%, #f8fbff 100%);
}

.campus-life-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 36, 95, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 36, 95, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.campus-life-grid .card,
.admissions-parent-grid .card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 10px;
  height: 100%;
  overflow: hidden;
}

.admissions-parent-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(244, 122, 34, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(13, 78, 159, 0.08), transparent 26%),
    linear-gradient(180deg, #fbf3ea 0%, #f8fbff 100%);
}

.admissions-parent-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(8, 36, 95, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 36, 95, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

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

.admissions-student-section .section-heading > div,
.admissions-parent-section .section-heading > div {
  max-width: 44rem;
}

.admissions-pact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 26px;
}

.admissions-pact-cluster {
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 42px rgba(4, 22, 63, 0.07);
}

.admissions-pact-cluster--warm {
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf4, #ffffff 72%, #f8fbff 100%);
}

.admissions-pact-cluster__label {
  margin: 0 0 18px;
  color: var(--orange-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admissions-pact-rows {
  display: grid;
}

.admissions-pact-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid rgba(8, 36, 95, 0.1);
}

.admissions-pact-rows > .admissions-pact-row:first-child {
  padding-top: 0;
  border-top: none;
}

.admissions-pact-rows > .admissions-pact-row:last-child {
  padding-bottom: 0;
}

.admissions-pact-row .door-num {
  margin-bottom: 0;
}

.admissions-pact-row h3 {
  margin: 0 0 8px;
  color: var(--navy-950);
}

.admissions-pact-row p {
  margin: 0;
  color: #526176;
}

.campus-life-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.campus-life-grid > .door-card {
  grid-column: span 2;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 10px;
  border: 1px solid rgba(8, 36, 95, 0.1);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: 0 18px 42px rgba(4, 22, 63, 0.07);
}

.campus-life-grid .door-card h3 {
  color: var(--navy-950);
  margin: 0;
}

.campus-life-grid .door-card p {
  color: #526176;
  margin: 0;
}

.campus-life-grid .door-num {
  margin-bottom: 8px;
}

.admissions-parent-board {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  margin-top: 26px;
}

.admissions-parent-board__intro,
.admissions-parent-board__grid {
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 30px;
  box-shadow: 0 18px 42px rgba(4, 22, 63, 0.07);
}

.admissions-parent-board__intro {
  display: grid;
  align-content: start;
  gap: 16px;
  background:
    radial-gradient(circle at top left, rgba(244, 122, 34, 0.16), transparent 28%),
    linear-gradient(180deg, #fffaf3, #ffffff 68%, #f8fbff 100%);
}

.admissions-parent-board__intro h3,
.admissions-parent-board__intro p {
  margin: 0;
}

.admissions-parent-board__intro h3 {
  color: var(--navy-950);
}

.admissions-parent-board__intro p:not(.admissions-parent-board__eyebrow) {
  color: #526176;
}

.admissions-parent-board__eyebrow {
  margin: 0;
  color: var(--orange-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admissions-parent-board__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.98));
}

.admissions-parent-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 100%;
  padding: 22px 24px;
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.admissions-parent-card--warm {
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf4, #ffffff 72%, #f8fbff 100%);
}

.admissions-parent-card h3,
.admissions-parent-card p {
  margin: 0;
}

.admissions-parent-card h3 {
  color: var(--navy-950);
}

.admissions-parent-card p {
  color: #526176;
}

.admissions-parent-card .door-num {
  margin-bottom: 2px;
}

.admissions-promise {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(24px, 4vw, 40px);
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgb(8 36 95 / 8%);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(244, 122, 34, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff, #fff8f2);
  box-shadow: 0 18px 42px rgb(4 22 63 / 8%);
}

.admissions-promise__intro {
  display: grid;
  align-content: start;
  gap: 16px;
}

.admissions-promise__intro h2,
.admissions-promise__intro p {
  margin: 0;
}

.admissions-promise__intro > p:not(.eyebrow) {
  color: #526176;
}

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

.admissions-promise__item {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px 24px;
  border: 1px solid rgba(8, 36, 95, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.admissions-promise__item p {
  margin: 0;
  color: #526176;
}

.admissions-promise__tag {
  color: var(--orange-700) !important;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admissions-quote-section .quote {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgb(8 36 95 / 8%);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #fff8f2);
  box-shadow: 0 18px 42px rgb(4 22 63 / 8%);
}

.admissions-quote-section .quote p {
  color: var(--navy-950);
}

.admissions-quote-section .quote footer {
  color: var(--muted);
}

.campus-gallery-section .gallery {
  gap: 18px;
}

.campus-gallery-section .gallery figure {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgb(4 22 63 / 8%);
}

.campus-gallery-section .gallery .gallery--lab-practice img,
.campus-gallery-section .gallery .gallery--entrance-panorama img {
  aspect-ratio: auto;
  height: clamp(220px, 18vw, 290px);
  object-position: center;
}

@media (max-width: 991px) {
  .about-intro,
  .admissions-pact-layout,
  .admissions-parent-board,
  .admissions-parent-board__grid,
  .admissions-promise,
  .admissions-promise__grid {
    grid-template-columns: 1fr;
  }

  .contact-grid--feature,
  .campus-life-grid {
    grid-template-columns: 1fr;
  }

  .campus-gallery-section .gallery .gallery--lab-practice img,
  .campus-gallery-section .gallery .gallery--entrance-panorama img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .contact-grid--feature .contact-card--featured {
    grid-row: auto;
  }

}

@media (max-width: 991px) {
  .hero--compact-mobile {
    padding-top: 148px;
    padding-bottom: 18px;
  }

  .pathway-signal-board {
    grid-template-columns: 1fr;
  }

  .pathway-opportunity-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero--compact-mobile .hero-brochure__bg-media {
    height: 148px;
  }

  .hero--compact-mobile .hero-brochure__media,
  .hero--compact-mobile .hero-brochure__badge-row,
  .hero--compact-mobile .hero-brochure__tagline {
    display: none;
  }

  .hero--compact-mobile .hero-brochure__lead {
    margin-bottom: 12px;
  }

  .faq-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .faq-rail {
    position: static;
    padding: 22px;
  }

  .news-card--feature,
  .news-card:not(.news-card--feature) {
    grid-column: span 12;
  }

  .news-card--feature {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .news-card--feature .news-card__thumb {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .news-card--program {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .hero--compact-mobile {
    padding-top: 124px;
    padding-bottom: 16px;
  }

  .pathway-signal-feature__stats {
    grid-template-columns: 1fr;
  }

  .hero--compact-mobile .hero-brochure__bg-media {
    height: 124px;
  }

  .hero--compact-mobile .hero-brochure__title {
    font-size: clamp(1.55rem, 6.8vw, 2rem);
    margin-bottom: 10px;
  }

  .hero--compact-mobile .hero-brochure__lead {
    font-size: 0.88rem;
    line-height: 1.42;
    margin-bottom: 12px;
  }

  .hero--compact-mobile .button-row {
    gap: 10px;
  }

  .hero--compact-mobile .button {
    min-height: 44px;
  }

  .faq-section {
    padding-top: 28px;
  }

  .news-card {
    padding: 20px;
  }

  .news-card--feature {
    gap: 14px;
  }

  .news-card--feature .news-card__thumb {
    aspect-ratio: 4 / 3;
  }
}





