:root {
  --background: #f7fbff;
  --foreground: #182234;
  --muted: #66758a;
  --line: rgba(31, 41, 55, 0.08);
  --emerald: #55c798;
  --sky: #84bdec;
  --blue: #2478ff;
  --cyan: #18b7d6;
  --navy: #0b1424;
  --ink: #080f1d;
  --soft-blue: #eef7ff;
  --glass: rgba(255, 255, 255, 0.72);
  --shadow-glass: 0 1px 0 rgba(255, 255, 255, 0.65) inset, 0 10px 40px -10px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 30px 80px -30px rgba(15, 23, 42, 0.22);
  --gradient-text: linear-gradient(180deg, #222832 0%, #66707c 100%);
  --gradient-accent: linear-gradient(135deg, var(--emerald), var(--sky));
  --gradient-blue: linear-gradient(135deg, var(--blue), var(--cyan));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 34%, rgba(36, 120, 255, 0.06), transparent 28%),
    radial-gradient(circle at 86% 58%, rgba(24, 183, 214, 0.07), transparent 30%),
    var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(36,120,255,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(36,120,255,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--emerald));
  box-shadow: 0 0 24px rgba(36,120,255,0.45);
}

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

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

[id] {
  scroll-margin-top: 92px;
}

[data-parallax] {
  transform: translateY(var(--parallax-y, 0));
  transition: transform 0.08s linear;
  will-change: transform;
}

section:not(.hero) {
  overflow: clip;
}

section:not(.hero)::before {
  content: "";
  position: absolute;
  inset: 14px auto auto -90px;
  z-index: -1;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(36, 120, 255, 0.12), transparent 68%);
  pointer-events: none;
}

section:not(.hero):nth-of-type(odd)::before {
  inset: auto -110px 10px auto;
  background: radial-gradient(circle, rgba(85, 199, 152, 0.14), transparent 68%);
}

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

.section-pad {
  position: relative;
  padding: 128px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 20px 16px;
  transition: padding 0.4s ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
}

.nav-shell {
  width: min(100%, 1080px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 20px;
  border-radius: 999px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.is-scrolled .nav-shell,
.glass,
.pill,
.stat-card,
.program-card,
.story-card,
.campus-list article,
.cert-orbit b,
.cert-orbit i {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.62));
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: var(--shadow-glass), var(--shadow-soft);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 9px;
  background: var(--gradient-accent);
  color: var(--foreground);
  font-size: 11px;
  font-weight: 700;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 6px;
  background: var(--background);
}

.brand-mark {
  isolation: isolate;
}

.brand-mark::after {
  content: "Y";
  position: relative;
  z-index: 1;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy span {
  font-size: 13px;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--foreground);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-cta {
  padding: 9px 16px;
  background: var(--foreground);
  color: var(--background);
  font-size: 12px;
}

.button {
  min-height: 50px;
  padding: 0 24px;
  font-size: 14px;
}

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

.button-dark {
  background: var(--foreground);
  color: var(--background);
}

.button-glass {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-glass);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 140px;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 8% 8% auto;
  width: min(36vw, 460px);
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1px solid rgba(36,120,255,0.14);
  background:
    linear-gradient(90deg, transparent 49%, rgba(36,120,255,0.16) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(85,199,152,0.14) 50%, transparent 51%);
  animation: slowSpin 34s linear infinite;
  pointer-events: none;
}

.page-hero {
  min-height: 74vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 150px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 52px;
}

.page-hero h1 {
  max-width: 820px;
  margin: 24px 0 0;
  background: var(--gradient-text);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.page-hero p:not(.pill) {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.page-image {
  min-height: 420px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 60% at 50% 30%, rgba(132, 189, 236, 0.24) 0%, transparent 70%),
    radial-gradient(50% 50% at 70% 80%, rgba(85, 199, 152, 0.2) 0%, transparent 70%);
}

.tech-scan {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.tech-scan::before {
  content: "";
  position: absolute;
  inset: -30% 0 auto;
  height: 42%;
  background: linear-gradient(to bottom, transparent, rgba(36,120,255,0.08), transparent);
  animation: scanDown 8s ease-in-out infinite;
}

.tech-scan::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36,120,255,0.42), transparent);
  box-shadow: 0 0 28px rgba(36,120,255,0.34);
  animation: scanLine 5s ease-in-out infinite;
}

.grid-fade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(31,41,55,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31,41,55,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
}

.particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(36, 120, 255, 0.22);
  box-shadow: 0 0 14px rgba(36,120,255,0.28);
  animation: floatParticle 9s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 52px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.pill span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--emerald);
}

.hero-title,
.section-heading h2,
.split-heading h2,
.final-cta h2 {
  margin: 22px 0 0;
  background: var(--gradient-text);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-title {
  font-size: clamp(2.7rem, 7vw, 5.5rem);
}

.hero-title,
.page-hero h1 {
  filter: drop-shadow(0 18px 48px rgba(36,120,255,0.08));
}

.hero-lede {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.35;
}

.hero-lede span {
  display: block;
  margin-top: 8px;
  color: rgba(34,40,50,0.7);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

.actions.centered {
  justify-content: center;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 44px;
  color: var(--muted);
  font-size: 12px;
}

.hero-notes span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--gradient-accent);
}

.visual-system {
  position: relative;
  min-height: 410px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(36,120,255,0.16), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(85,199,152,0.16), transparent 30%),
    linear-gradient(135deg, rgba(238,247,255,0.92), rgba(255,255,255,0.62));
  border: 1px solid rgba(36,120,255,0.12);
  box-shadow: var(--shadow-glass), var(--shadow-soft);
  overflow: hidden;
  transform: translateY(var(--parallax-y, 0));
  transition: transform 0.08s linear;
}

.visual-system::before,
.visual-system::after {
  content: "";
  position: absolute;
  inset: 56px;
  border: 1px solid rgba(36,120,255,0.14);
  border-radius: 999px;
}

.visual-system .node {
  animation: nodeFloat 7s ease-in-out infinite;
}

.visual-system .node:nth-child(2) { animation-delay: 0.5s; }
.visual-system .node:nth-child(3) { animation-delay: 1s; }
.visual-system .node:nth-child(4) { animation-delay: 1.5s; }
.visual-system .node:nth-child(5) { animation-delay: 2s; }

.visual-system::after {
  inset: 108px;
  border-color: rgba(85,199,152,0.18);
}

.node {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.64));
  border: 1px solid rgba(255,255,255,0.88);
  box-shadow: var(--shadow-glass), 0 22px 50px -26px rgba(36,120,255,0.45);
  color: #2367c9;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.node-a { left: calc(50% - 43px); top: 36px; }
.node-b { right: 48px; top: 138px; }
.node-c { right: 82px; bottom: 54px; }
.node-d { left: 82px; bottom: 54px; }
.node-e { left: 48px; top: 138px; }

.pathway-section {
  background:
    linear-gradient(180deg, rgba(238,247,255,0.58), rgba(255,255,255,0));
}

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

.pathway-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.66)),
    radial-gradient(circle at 100% 0%, rgba(36,120,255,0.16), transparent 42%);
  border: 1px solid rgba(36,120,255,0.14);
  box-shadow: var(--shadow-glass), var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pathway-card:hover,
.program-card:hover,
.content-card:hover,
.school-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(36,120,255,0.34);
  box-shadow: var(--shadow-glass), 0 42px 90px -42px rgba(36,120,255,0.52);
}

.pathway-card::before {
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 44px;
  border-radius: 18px;
  background: var(--gradient-blue);
  box-shadow: 0 22px 42px -20px rgba(36,120,255,0.65);
}

.pathway-card span {
  color: #2367c9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pathway-card h3 {
  margin: 14px 0 0;
  font-size: 24px;
  line-height: 1.14;
}

.pathway-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.pathway-card b {
  position: absolute;
  left: 28px;
  bottom: 26px;
  font-size: 13px;
}

.campus-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: 18px;
}

.campus-showcase {
  min-height: 420px;
}

.campus-list-compact {
  grid-column: auto;
  align-content: stretch;
}

.compact-section {
  padding-block: 78px;
}

.robotics-strip {
  padding-block: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(36,120,255,0.14), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0), rgba(238,247,255,0.55), rgba(255,255,255,0));
}

.robotics-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.robot-metric {
  position: relative;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(11,20,36,0.96), rgba(22,47,79,0.9)),
    radial-gradient(circle at 100% 0%, rgba(85,199,152,0.22), transparent 42%);
  color: #fff;
  box-shadow: 0 28px 72px -42px rgba(11,20,36,0.78);
}

.robot-metric::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(143,234,208,0.26);
  border-radius: 999px;
  animation: slowSpin 18s linear infinite;
}

.robot-metric span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.1);
  color: #8fead0;
  font-weight: 800;
}

.robot-metric b {
  display: block;
  margin-top: 42px;
  font-size: 22px;
  line-height: 1.1;
}

.robot-metric p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 13.5px;
  line-height: 1.55;
}

.ihub-section {
  background:
    radial-gradient(circle at 24% 20%, rgba(36,120,255,0.16), transparent 32%),
    radial-gradient(circle at 78% 80%, rgba(85,199,152,0.14), transparent 30%),
    linear-gradient(180deg, rgba(238,247,255,0.74), rgba(255,255,255,0));
}

.ihub-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 40px;
  padding: 38px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(20,32,51,0.96), rgba(28,74,118,0.92)),
    radial-gradient(circle at 100% 0%, rgba(85,199,152,0.28), transparent 40%);
  box-shadow: 0 36px 90px -42px rgba(20,32,51,0.7);
  color: #fff;
  transform: translateY(var(--parallax-y, 0));
  transition: transform 0.08s linear;
}

.ihub-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 70% 45%, black, transparent 72%);
  pointer-events: none;
}

.ihub-feature .eyebrow {
  color: #8fead0;
}

.ihub-copy h2 {
  max-width: 760px;
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.04;
}

.ihub-copy p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 15.5px;
  line-height: 1.65;
}

.ihub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 28px;
}

.ihub-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight: 700;
}

.ihub-orbit {
  position: relative;
  min-height: 390px;
  transform: translateY(var(--parallax-y, 0));
  transition: transform 0.08s linear;
}

.ihub-orbit::before,
.ihub-orbit::after {
  content: "";
  position: absolute;
  inset: 36px;
  border: 1px solid rgba(143,234,208,0.22);
  border-radius: 999px;
  animation: orbit 24s linear infinite;
}

.ihub-orbit::after {
  inset: 88px;
  border-color: rgba(132,189,236,0.22);
  animation-duration: 32s;
  animation-direction: reverse;
}

.ihub-core,
.ihub-orbit i {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
}

.ihub-core {
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
  border-radius: 42px;
  background: linear-gradient(135deg, #ffffff, #dff7ff);
  color: #143466;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 26px 70px -30px rgba(143,234,208,0.82);
}

.ihub-orbit i {
  width: 86px;
  height: 86px;
  border-radius: 28px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(18px);
  animation: nodeFloat 6.5s ease-in-out infinite;
}

.ihub-orbit i:nth-of-type(2) { animation-delay: 0.5s; }
.ihub-orbit i:nth-of-type(3) { animation-delay: 1s; }
.ihub-orbit i:nth-of-type(4) { animation-delay: 1.5s; }

.ihub-orbit i:nth-of-type(1) { left: calc(50% - 43px); top: 18px; }
.ihub-orbit i:nth-of-type(2) { right: 28px; top: 132px; }
.ihub-orbit i:nth-of-type(3) { left: calc(50% - 43px); bottom: 18px; }
.ihub-orbit i:nth-of-type(4) { left: 28px; top: 132px; }

.ihub-lab-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 70px -34px rgba(0,0,0,0.46);
  transform: translateY(var(--parallax-y, 0));
  transition: transform 0.08s linear;
}

.ihub-lab-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ihub-lab-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,32,51,0.78), transparent 58%);
}

.ihub-lab-card > div {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 1;
}

.ihub-lab-card p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ihub-lab-card h3 {
  max-width: 460px;
  margin: 8px 0 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.12;
}

.ihub-feature-wide {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
}

.emblem-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  margin-inline: auto;
  transform: translateY(var(--parallax-y, 0));
  transition: transform 0.08s linear;
}

.halo {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(85,199,152,0.22), transparent, rgba(132,189,236,0.22));
  filter: blur(44px);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(31,41,55,0.07);
  border-radius: 999px;
  animation: orbit 24s linear infinite;
  box-shadow: 0 0 42px rgba(36,120,255,0.08) inset;
}

.orbit-one {
  inset: 24px;
}

.orbit-two {
  inset: 72px;
  animation-direction: reverse;
}

.orbit i {
  position: absolute;
  left: 50%;
  top: -6px;
  width: 12px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--emerald);
  box-shadow: 0 0 20px rgba(85,199,152,0.5);
}

.orbit-two i {
  top: auto;
  bottom: -5px;
  width: 9px;
  height: 9px;
  background: var(--sky);
}

.emblem-card {
  position: absolute;
  inset: 34px;
  margin: 0;
  overflow: hidden;
  border-radius: 28%;
  box-shadow: var(--shadow-soft);
  animation: float 14s ease-in-out infinite;
}

.emblem-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.54) 42%, transparent 62%);
  transform: translateX(-130%);
  animation: sheen 5.8s ease-in-out infinite;
}

.emblem-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-heading.wide {
  max-width: 760px;
}

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

.section-heading h2,
.split-heading h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.section-heading p:not(.eyebrow),
.split-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 52px;
}

.split-heading > p {
  max-width: 430px;
  margin: 0 0 6px;
}

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

.overview-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: 48px;
}

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

.feature-grid article,
.school-panel,
.content-card,
.outcome-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.62));
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: var(--shadow-glass), var(--shadow-soft);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
}

.feature-grid article {
  min-height: 150px;
  padding: 22px;
  border-radius: 20px;
}

.feature-grid b,
.content-card h3,
.school-panel h3 {
  display: block;
  color: var(--foreground);
}

.feature-grid span,
.school-panel p,
.school-panel li,
.content-card p,
.content-card li,
.outcome-panel p,
.outcome-panel li {
  color: var(--muted);
  line-height: 1.6;
}

.feature-grid span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.usp-grid .stat-card strong {
  color: var(--foreground);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.usp-grid .stat-card span {
  letter-spacing: 0;
  text-transform: none;
  font-size: 13px;
  line-height: 1.55;
}

.school-stack {
  display: grid;
  gap: 22px;
}

.school-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  padding: 32px;
  border-radius: 28px;
}

.school-panel h3 {
  margin: 14px 0 0;
  max-width: 760px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.school-panel p {
  margin: 18px 0 0;
  font-size: 15px;
}

.school-panel ul,
.content-card ul,
.outcome-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.school-panel ul {
  display: grid;
  align-content: center;
  gap: 10px;
}

.school-panel li,
.content-card li,
.outcome-panel li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
}

.school-panel li::before,
.content-card li::before,
.outcome-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--gradient-accent);
}

.program-grid {
  display: grid;
  width: min(100% - 32px, 1200px);
  grid-template-columns: repeat(3, 1fr);
  margin-inline: auto;
  overflow: visible;
  padding: 0;
}

.program-grid .program-card {
  width: auto;
  height: auto;
  min-height: 430px;
}

.content-card {
  min-height: 320px;
  padding: 30px;
  border-radius: 26px;
}

.content-card span {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.74);
  box-shadow: var(--shadow-glass);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.15;
}

.content-card p {
  margin: 16px 0 0;
  font-size: 14px;
}

.content-card ul {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.outcome-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 42px;
  padding: 38px;
  border-radius: 30px;
}

.outcome-panel h2 {
  margin: 14px 0 0;
  background: var(--gradient-text);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.outcome-panel p {
  margin: 20px 0 0;
  font-size: 15px;
}

.outcome-panel ul {
  display: grid;
  gap: 12px;
}

.stat-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 24px;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(85,199,152,0.42), transparent);
}

.stat-card strong {
  display: block;
  background: var(--gradient-text);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.programs {
  overflow: hidden;
}

.program-track {
  display: flex;
  gap: 24px;
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
  padding: 0 max(24px, calc((100vw - 1200px) / 2)) 16px;
  scrollbar-width: none;
}

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

.program-card {
  position: relative;
  width: 330px;
  height: 440px;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  transition: transform 0.3s ease;
}

.program-card:hover,
.story-card:hover {
  transform: translateY(-4px);
}

.program-card > span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.program-card b {
  float: right;
  padding: 5px 10px;
  border: 1px solid rgba(31,41,55,0.1);
  border-radius: 999px;
  color: rgba(34,40,50,0.62);
  font-size: 10px;
}

.program-card i {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  margin: 72px auto 60px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.48)),
    radial-gradient(circle at 30% 20%, rgba(85,199,152,0.35), transparent 62%);
  box-shadow: var(--shadow-glass), var(--shadow-soft);
  color: rgba(34,40,50,0.72);
  font-style: normal;
  font-weight: 700;
  animation: float 9s ease-in-out infinite;
}

.program-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.program-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.program-card a {
  position: absolute;
  left: 28px;
  bottom: 28px;
  font-size: 13px;
  font-weight: 700;
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.image-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campus-main {
  grid-column: span 3;
  grid-row: span 2;
  min-height: 560px;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(251,252,252,0.54), transparent 58%);
}

.image-card > div {
  position: absolute;
  inset: auto 28px 28px;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.image-card p {
  margin: 0;
  color: rgba(34,40,50,0.72);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.image-card h3 {
  margin: 8px 0 0;
  font-size: 24px;
}

.image-card span {
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-glass);
  font-size: 12px;
}

.small-overlay {
  display: block !important;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-glass);
}

.small-overlay h3 {
  font-size: 14px;
}

.campus-list {
  grid-column: span 2;
  display: grid;
  gap: 16px;
}

.campus-list article {
  display: grid;
  gap: 7px;
  padding: 20px;
  border-radius: 18px;
}

.campus-list span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.campus-list b {
  font-size: 14px;
}

.cert-section {
  overflow: hidden;
}

.cert-orbit {
  position: relative;
  width: min(100%, 680px);
  height: 480px;
  margin: 70px auto 0;
}

.cert-orbit > span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.cert-orbit > span:nth-child(2) {
  inset: 72px;
}

.cert-orbit > span:nth-child(3) {
  inset: 144px;
}

.cert-orbit b,
.cert-orbit i {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-style: normal;
}

.cert-orbit b {
  left: 50%;
  top: 50%;
  width: 132px;
  height: 132px;
  transform: translate(-50%, -50%);
}

.cert-orbit i {
  width: 104px;
  height: 104px;
  color: var(--foreground);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  animation: float 12s ease-in-out infinite;
}

.cert-orbit i:nth-of-type(1) { left: 50%; top: 6px; transform: translateX(-50%); }
.cert-orbit i:nth-of-type(2) { right: 74px; top: 110px; animation-delay: 0.4s; }
.cert-orbit i:nth-of-type(3) { right: 86px; bottom: 88px; animation-delay: 0.8s; }
.cert-orbit i:nth-of-type(4) { left: 86px; bottom: 88px; animation-delay: 1.2s; }
.cert-orbit i:nth-of-type(5) { left: 74px; top: 110px; animation-delay: 1.6s; }

.marquee {
  position: relative;
  overflow: hidden;
  margin-top: 72px;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 120px;
  background: linear-gradient(90deg, var(--background), transparent);
}

.marquee::after {
  inset: 0 0 0 auto;
  background: linear-gradient(270deg, var(--background), transparent);
}

.marquee > div {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 40s linear infinite;
}

.marquee span {
  display: grid;
  width: 190px;
  height: 78px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  box-shadow: var(--shadow-glass);
  color: rgba(34,40,50,0.76);
  font-weight: 700;
}

.placement-stats {
  margin-top: 70px;
}

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

.story-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 28px;
  border-radius: 26px;
  transition: transform 0.3s ease;
}

.story-card blockquote {
  margin: 0;
  color: rgba(34,40,50,0.86);
  font-size: 15px;
  line-height: 1.7;
}

.story-card figcaption {
  display: grid;
  margin-top: 28px;
  padding-left: 58px;
  position: relative;
}

.story-card figcaption::before {
  content: attr(data-initial);
  position: absolute;
  left: 0;
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(85,199,152,0.32), rgba(132,189,236,0.35));
}

.story-card b {
  font-size: 14px;
}

.story-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.steps {
  position: relative;
  margin-top: 76px;
}

.steps::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31,41,55,0.16), transparent);
}

.steps article {
  position: relative;
  text-align: center;
}

.steps i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  box-shadow: var(--shadow-glass), var(--shadow-soft);
  color: rgba(34,40,50,0.72);
  font-style: normal;
  font-weight: 700;
}

.steps h3 {
  margin: 0;
  font-size: 20px;
}

.steps p {
  max-width: 310px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.final-cta {
  overflow: hidden;
  text-align: center;
}

.final-cta > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(251,252,252,0.82), rgba(251,252,252,0.46), rgba(251,252,252,0.96));
}

.final-cta h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.final-cta .container > p:not(.pill) {
  max-width: 610px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.footer {
  padding: 64px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-about p,
.footer p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-about p {
  max-width: 470px;
  margin-top: 24px;
}

.footer h4 {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-about) a {
  display: block;
  margin: 10px 0;
  color: rgba(34,40,50,0.76);
  font-size: 14px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.badges span {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-glass);
  color: rgba(34,40,50,0.72);
  font-size: 11px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom span:last-child {
  display: flex;
  gap: 24px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal,
.motion-ready .feature-grid article,
.motion-ready .program-card,
.motion-ready .pathway-card,
.motion-ready .content-card,
.motion-ready .school-panel {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.motion-ready .feature-grid article.in,
.motion-ready .program-card.in,
.motion-ready .pathway-card.in,
.motion-ready .content-card.in,
.motion-ready .school-panel.in {
  opacity: 1;
  transform: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.28; }
  50% { transform: translateY(calc(var(--drift, 12px) * -1)) translateX(var(--drift, 12px)); opacity: 0.75; }
}

@keyframes nodeFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes scanDown {
  0% { transform: translateY(-40%); opacity: 0; }
  35%, 65% { opacity: 1; }
  100% { transform: translateY(260%); opacity: 0; }
}

@keyframes scanLine {
  0%, 100% { transform: translateY(0); opacity: 0.2; }
  50% { transform: translateY(240px); opacity: 0.65; }
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sheen {
  0%, 42% { transform: translateX(-130%); }
  70%, 100% { transform: translateX(130%); }
}

@keyframes orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 920px) {
  .section-pad {
    padding: 96px 0;
  }

  .main-nav {
    display: none;
  }

  .hero-grid,
  .split-heading,
  .overview-grid,
  .school-panel,
  .outcome-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 46px;
  }

  .hero-visual {
    order: -1;
    padding-top: 30px;
  }

  .emblem-stage {
    width: min(86vw, 430px);
  }

  .stats-grid,
  .placement-stats,
  .story-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .campus-main,
  .campus-list {
    grid-column: auto;
  }

  .campus-main {
    min-height: 430px;
  }

  .cert-orbit {
    height: 420px;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .site-header {
    padding: 12px 10px;
  }

  .nav-shell {
    padding: 9px 12px;
    background: rgba(255,255,255,0.75);
    box-shadow: var(--shadow-glass);
  }

  .brand-copy span {
    max-width: 135px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-notes {
    display: grid;
    gap: 10px;
  }

  .scroll-hint {
    display: none;
  }

  .stats-grid,
  .placement-stats,
  .story-grid,
  .steps,
  .program-grid,
  .content-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .school-panel,
  .content-card,
  .outcome-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .stat-card {
    padding: 24px;
  }

  .program-card,
  .program-grid .program-card {
    width: min(82vw, 330px);
  }

  .program-grid {
    width: min(100% - 28px, 1200px);
  }

  .program-grid .program-card {
    width: 100%;
    min-height: 380px;
  }

  .image-card > div {
    inset: auto 18px 18px;
    display: block;
  }

  .image-card h3 {
    font-size: 20px;
  }

  .image-card span {
    display: inline-flex;
    margin-top: 14px;
  }

  .cert-orbit {
    height: 360px;
  }

  .cert-orbit i {
    width: 86px;
    height: 86px;
  }

  .cert-orbit b {
    width: 108px;
    height: 108px;
  }

  .cert-orbit i:nth-of-type(1) { top: 0; }
  .cert-orbit i:nth-of-type(2) { right: 8px; top: 92px; }
  .cert-orbit i:nth-of-type(3) { right: 24px; bottom: 52px; }
  .cert-orbit i:nth-of-type(4) { left: 24px; bottom: 52px; }
  .cert-orbit i:nth-of-type(5) { left: 8px; top: 92px; }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Compact design pass for the content-heavy version */
body {
  line-height: 1.45;
}

.section-pad {
  padding: 88px 0;
}

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

.section-heading h2,
.split-heading h2 {
  max-width: 900px;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}

.section-heading p:not(.eyebrow),
.split-heading > p {
  font-size: 15px;
  line-height: 1.58;
}

.split-heading {
  margin-bottom: 34px;
}

.hero.section-pad {
  padding-top: 132px;
  padding-bottom: 90px;
}

.overview-grid {
  align-items: center;
  gap: 34px;
}

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

.feature-grid article {
  min-height: 128px;
  padding: 18px;
  border-radius: 18px;
}

.feature-grid b {
  font-size: 14px;
  line-height: 1.25;
}

.feature-grid span {
  font-size: 12.5px;
  line-height: 1.45;
}

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

.usp-grid .stat-card {
  padding: 22px;
}

.school-stack {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.school-panel {
  grid-template-columns: 1fr;
  align-content: start;
  gap: 22px;
  min-height: 100%;
  padding: 24px;
  border-radius: 22px;
}

.school-panel h3 {
  margin-top: 12px;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
}

.school-panel p {
  font-size: 13.5px;
  line-height: 1.55;
}

.school-panel ul {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 8px;
}

.school-panel li {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  box-shadow: var(--shadow-glass);
  font-size: 11.5px;
}

.school-panel li::before {
  display: none;
}

.program-grid {
  gap: 16px;
}

.program-grid .program-card {
  min-height: 360px;
}

.program-card {
  padding: 24px;
  border-radius: 22px;
}

.program-card i {
  width: 68px;
  height: 68px;
  margin: 36px 0 30px;
  border-radius: 20px;
}

.program-card h3 {
  font-size: 18px;
}

.program-card p {
  font-size: 12.8px;
  line-height: 1.55;
}

.program-card a {
  left: 24px;
  bottom: 22px;
}

.campus-grid {
  gap: 16px;
}

.campus-main {
  min-height: 440px;
}

.image-card {
  min-height: 210px;
  border-radius: 24px;
}

.campus-list article {
  padding: 17px;
}

.campus-list b {
  font-size: 13px;
  line-height: 1.45;
}

.content-grid {
  gap: 16px;
}

.content-card {
  min-height: 260px;
  padding: 24px;
  border-radius: 22px;
}

.content-card span {
  margin-bottom: 18px;
  font-size: 10px;
}

.content-card h3 {
  font-size: clamp(1.22rem, 2vw, 1.55rem);
}

.content-card p,
.content-card li {
  font-size: 13px;
  line-height: 1.52;
}

.outcome-panel {
  gap: 30px;
  padding: 30px;
  border-radius: 24px;
}

.outcome-panel h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
}

.outcome-panel li {
  font-size: 13.5px;
}

.final-cta.section-pad {
  padding: 100px 0;
}

.footer {
  padding-top: 46px;
}

@media (max-width: 920px) {
  .section-pad {
    padding: 68px 0;
  }

  .page-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .page-hero-grid,
  .campus-split,
  .ihub-feature,
  .ihub-feature-wide {
    grid-template-columns: 1fr;
  }

  .page-visual {
    min-height: 360px;
  }

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

  .hero.section-pad {
    padding-top: 108px;
  }

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

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

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

  .campus-main {
    min-height: 340px;
  }

  .ihub-orbit {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .section-pad {
    padding: 52px 0;
  }

  .compact-section {
    padding-block: 46px;
  }

  .hero.section-pad {
    padding-top: 96px;
    padding-bottom: 56px;
  }

  .page-hero {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .page-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .page-hero p:not(.pill) {
    font-size: 0.95rem;
  }

  .page-image {
    min-height: 280px;
  }

  .ihub-feature {
    padding: 24px;
    border-radius: 26px;
  }

  .ihub-copy h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .ihub-copy p {
    font-size: 13.5px;
  }

  .ihub-orbit {
    min-height: 270px;
  }

  .ihub-core {
    width: 116px;
    height: 116px;
    border-radius: 32px;
    font-size: 13px;
  }

  .ihub-orbit i {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    font-size: 10px;
  }

  .ihub-orbit i:nth-of-type(1) { left: calc(50% - 34px); top: 4px; }
  .ihub-orbit i:nth-of-type(2) { right: 8px; top: 98px; }
  .ihub-orbit i:nth-of-type(3) { left: calc(50% - 34px); bottom: 4px; }
  .ihub-orbit i:nth-of-type(4) { left: 8px; top: 98px; }

  .ihub-lab-card {
    min-height: 280px;
  }

  .ihub-lab-card h3 {
    font-size: 19px;
  }

  .visual-system {
    min-height: 300px;
    border-radius: 24px;
  }

  .node {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    font-size: 11px;
  }

  .node-a { left: calc(50% - 34px); top: 28px; }
  .node-b { right: 24px; top: 104px; }
  .node-c { right: 46px; bottom: 32px; }
  .node-d { left: 46px; bottom: 32px; }
  .node-e { left: 24px; top: 104px; }

  .hero-grid {
    gap: 22px;
  }

  .hero-visual {
    position: absolute;
    top: 88px;
    right: -36px;
    z-index: -1;
    width: 210px;
    padding-top: 0;
    opacity: 0.42;
  }

  .emblem-stage {
    width: 210px;
  }

  .emblem-card {
    inset: 18px;
  }

  .hero-title {
    margin-top: 18px;
    font-size: clamp(2.25rem, 12vw, 3.1rem);
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 24px;
  }

  .actions .button:first-child,
  .final-cta .actions .button {
    grid-column: 1 / -1;
  }

  .button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
    font-size: 11px;
  }

  .particles {
    opacity: 0.55;
  }

  .hero-notes span {
    padding: 9px 10px;
    border-radius: 14px;
    background: rgba(255,255,255,0.62);
    box-shadow: var(--shadow-glass);
  }

  .section-heading,
  .split-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .split-heading h2,
  .outcome-panel h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .section-heading p:not(.eyebrow),
  .split-heading > p {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .overview-grid {
    gap: 20px;
  }

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

  .feature-grid article,
  .usp-grid .stat-card {
    min-height: 116px;
    padding: 14px;
    border-radius: 16px;
  }

  .feature-grid b,
  .usp-grid .stat-card strong {
    font-size: 13px;
  }

  .feature-grid span,
  .usp-grid .stat-card span {
    font-size: 11px;
    line-height: 1.42;
  }

  .school-stack,
  .program-grid,
  .content-grid,
  .pathway-grid {
    display: flex;
    width: auto;
    margin-inline: -12px;
    overflow-x: auto;
    gap: 12px;
    padding: 2px 12px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .school-stack::-webkit-scrollbar,
  .program-grid::-webkit-scrollbar,
  .content-grid::-webkit-scrollbar,
  .pathway-grid::-webkit-scrollbar {
    display: none;
  }

  .school-panel,
  .program-grid .program-card,
  .content-card,
  .pathway-card {
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }

  .pathway-card {
    min-height: 310px;
    padding: 24px;
  }

  .pathway-card h3 {
    font-size: 21px;
  }

  .school-panel {
    min-height: 360px;
  }

  .program-grid .program-card {
    min-height: 350px;
    width: auto;
  }

  .program-card i {
    width: 58px;
    height: 58px;
    margin: 28px 0 24px;
  }

  .campus-grid {
    gap: 12px;
  }

  .campus-split {
    gap: 12px;
  }

  .campus-main {
    min-height: 260px;
  }

  .campus-showcase {
    min-height: 280px;
  }

  .campus-grid > .image-card:not(.campus-main) {
    display: none;
  }

  .campus-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .campus-list article {
    padding: 14px;
  }

  .content-card {
    min-height: 330px;
  }

  .outcome-panel {
    gap: 20px;
    padding: 22px;
  }

  .outcome-panel ul {
    gap: 9px;
  }

  .final-cta.section-pad {
    padding: 70px 0;
  }

  .final-cta .container > p:not(.pill) {
    font-size: 14px;
    line-height: 1.55;
  }

  .footer {
    padding-top: 36px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    margin-top: 28px;
  }
}

/* More vivid lower-page treatment, without changing the desktop hero composition */
section:not(.hero) .eyebrow {
  color: #2367c9;
  font-weight: 700;
}

.feature-grid article,
.school-panel,
.content-card,
.outcome-panel,
.program-card,
.stat-card {
  border-color: rgba(36, 120, 255, 0.14);
}

.feature-grid article,
.school-panel,
.content-card,
.outcome-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.7)),
    radial-gradient(circle at 100% 0%, rgba(36,120,255,0.14), transparent 44%);
}

.feature-grid article {
  position: relative;
}

.feature-grid article::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--gradient-blue);
}

.stat-card::before {
  height: 4px;
  background: var(--gradient-blue);
}

.school-panel {
  position: relative;
  overflow: hidden;
}

.school-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--gradient-blue);
}

.school-panel:nth-child(2)::before {
  background: linear-gradient(135deg, #6c63ff, var(--cyan));
}

.school-panel:nth-child(3)::before {
  background: linear-gradient(135deg, #19b88a, #2b8cff);
}

.school-panel li {
  background: rgba(238,247,255,0.92);
  color: #36506e;
}

.program-card {
  isolation: isolate;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 20%, rgba(36,120,255,0.14), transparent 36%),
    radial-gradient(circle at 90% 8%, rgba(85,199,152,0.14), transparent 32%);
}

.program-card b,
.content-card span {
  border-color: rgba(36,120,255,0.18);
  background: rgba(238,247,255,0.92);
  color: #2367c9;
}

.program-card i {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,255,255,0.54)),
    radial-gradient(circle at 30% 20%, rgba(36,120,255,0.34), transparent 62%),
    radial-gradient(circle at 80% 90%, rgba(85,199,152,0.28), transparent 55%);
}

.campus-list article {
  border-left: 4px solid rgba(36, 120, 255, 0.62);
}

.content-card {
  position: relative;
  overflow: hidden;
}

.content-card::before {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(36, 120, 255, 0.18), transparent 68%);
}

.outcome-panel {
  background:
    linear-gradient(135deg, rgba(238,247,255,0.92), rgba(255,255,255,0.76)),
    radial-gradient(circle at 100% 0%, rgba(36,120,255,0.18), transparent 42%);
}

#programs,
#parents {
  background:
    linear-gradient(180deg, rgba(238,247,255,0.52), rgba(255,255,255,0) 72%);
}

#skill-centre {
  background:
    radial-gradient(circle at 18% 12%, rgba(36,120,255,0.12), transparent 30%),
    linear-gradient(180deg, rgba(237,251,250,0.72), rgba(255,255,255,0));
}

@media (max-width: 640px) {
  .hero-visual {
    position: static;
    order: -1;
    width: auto;
    padding-top: 30px;
    opacity: 1;
  }

  .emblem-stage {
    width: min(86vw, 430px);
  }

  .emblem-card {
    inset: 24px;
  }
}

/* Final kinetic responsive overrides */
@media (max-width: 920px) {
  .robotics-strip-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .robotics-strip-grid {
    display: flex;
    width: auto;
    margin-inline: -12px;
    overflow-x: auto;
    gap: 12px;
    padding: 2px 12px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .robotics-strip-grid::-webkit-scrollbar {
    display: none;
  }

  .robot-metric {
    flex: 0 0 82vw;
    min-height: 190px;
    scroll-snap-align: start;
  }

  .hero::after,
  .page-hero::after {
    width: 78vw;
    opacity: 0.38;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-parallax],
  .emblem-stage,
  .ihub-feature,
  .ihub-orbit,
  .ihub-lab-card,
  .visual-system {
    transform: none !important;
  }
}
