:root {
  --background: #f7fbff;
  --foreground: #182234;
  --muted: #66758a;
  --line: rgba(31, 41, 55, 0.08);
  --brand-green: #7e9d12;
  --brand-blue: #007cec;
  --emerald: #7e9d12;
  --sky: #69b8ff;
  --blue: #007cec;
  --cyan: #009fe3;
  --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(--brand-green), var(--sky));
  --gradient-blue: linear-gradient(135deg, var(--brand-blue), var(--cyan));
  --gradient-brand: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 34%, rgba(0, 124, 236, 0.055), transparent 28%),
    radial-gradient(circle at 86% 58%, rgba(126, 157, 18, 0.06), transparent 30%),
    var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(0,124,236,0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0,124,236,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(--brand-blue), var(--cyan), var(--brand-green));
  box-shadow: 0 0 24px rgba(0,124,236,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;
  flex: 0 1 auto;
  min-width: max-content;
}

.brand-logo {
  width: clamp(128px, 16vw, 176px);
  height: auto;
  object-fit: contain;
}

.footer-logo {
  width: min(100%, 250px);
}

.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(--gradient-brand);
  color: #fff;
  font-size: 12px;
  box-shadow: 0 16px 36px -22px rgba(0,124,236,0.75);
}

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

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

.button-dark {
  background:
    linear-gradient(135deg, rgba(8,15,29,0.94), rgba(8,15,29,0.86)),
    var(--gradient-brand);
  color: #fff;
  box-shadow: 0 18px 38px -28px rgba(0,124,236,0.7);
}

.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: 88vh;
  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(0,124,236,0.14);
  background:
    linear-gradient(90deg, transparent 49%, rgba(0,124,236,0.16) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(126,157,18,0.14) 50%, transparent 51%);
  animation: slowSpin 34s linear infinite;
  pointer-events: none;
}

.page-hero {
  min-height: 66vh;
  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.2rem, 5vw, 4.1rem);
  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(0.95rem, 1.15vw, 1.08rem);
  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(0,124,236,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(0,124,236,0.42), transparent);
  box-shadow: 0 0 28px rgba(0,124,236,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(0,124,236,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.3rem, 5.9vw, 4.6rem);
}

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

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

.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(0,124,236,0.16), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(126,157,18,0.16), transparent 30%),
    linear-gradient(135deg, rgba(238,247,255,0.92), rgba(255,255,255,0.62));
  border: 1px solid rgba(0,124,236,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(0,124,236,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(126,157,18,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(0,124,236,0.45);
  color: #006fd6;
  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; }

.overview-visual {
  border-radius: 28px;
  background:
    linear-gradient(115deg, rgba(7,18,38,0.92), rgba(17,47,78,0.78) 46%, rgba(18,103,116,0.58)),
    repeating-linear-gradient(90deg, rgba(109,226,255,0.09) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(0deg, rgba(126,157,18,0.08) 0 1px, transparent 1px 42px);
  border-color: rgba(109,226,255,0.28);
  box-shadow:
    0 34px 90px -48px rgba(19,31,51,0.86),
    inset 0 0 0 1px rgba(255,255,255,0.08),
    inset 0 0 72px rgba(109,226,255,0.1);
}

.overview-visual::before {
  inset: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(109,226,255,0.1) 28% 29%, transparent 29% 58%, rgba(126,157,18,0.13) 58% 59%, transparent 59%),
    radial-gradient(circle at 72% 42%, rgba(109,226,255,0.34), transparent 28%),
    radial-gradient(circle at 22% 18%, rgba(126,157,18,0.22), transparent 24%);
  pointer-events: none;
}

.overview-visual::after {
  content: none;
}

.system-frame {
  position: absolute;
  inset: 24px;
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) 1fr;
  align-items: stretch;
  gap: 20px;
  perspective: 900px;
}

.system-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(109,226,255,0.3);
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 42%, rgba(126,157,18,0.1));
  clip-path: polygon(0 0, 78% 0, 100% 18%, 100% 100%, 14% 100%, 0 84%);
  box-shadow: inset 0 0 42px rgba(109,226,255,0.12);
}

.hud-ring,
.hud-core,
.hud-scan {
  position: absolute;
  pointer-events: none;
}

.hud-ring {
  right: 42px;
  top: 34px;
  width: min(360px, 58%);
  aspect-ratio: 1;
  border: 1px solid rgba(109,226,255,0.25);
  border-radius: 999px;
  background:
    conic-gradient(from 90deg, rgba(109,226,255,0), rgba(109,226,255,0.35), rgba(126,157,18,0), rgba(109,226,255,0.24), rgba(109,226,255,0)),
    radial-gradient(circle, transparent 0 56%, rgba(109,226,255,0.11) 57% 58%, transparent 59%);
  filter: drop-shadow(0 0 18px rgba(109,226,255,0.24));
  opacity: 0.9;
  animation: orbit 30s linear infinite;
}

.hud-core {
  right: 138px;
  top: 138px;
  width: 84px;
  aspect-ratio: 1;
  border: 1px solid rgba(126,157,18,0.32);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(109,226,255,0.34), rgba(109,226,255,0.08) 48%, transparent 70%);
  box-shadow: 0 0 36px rgba(109,226,255,0.26);
}

.hud-scan {
  left: -20%;
  right: -20%;
  top: 45%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(109,226,255,0.72), transparent);
  box-shadow: 0 0 22px rgba(109,226,255,0.56);
  animation: scanLine 4.8s ease-in-out infinite;
}

.system-readout {
  align-self: end;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 245px;
  padding-bottom: 34px;
}

.system-readout span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px 0 58px;
  border: 1px solid rgba(109,226,255,0.24);
  background: linear-gradient(90deg, rgba(109,226,255,0.15), rgba(255,255,255,0.06));
  box-shadow: 0 18px 44px -34px rgba(0,0,0,0.85), inset 0 0 18px rgba(109,226,255,0.08);
  clip-path: polygon(0 0, 92% 0, 100% 36%, 100% 100%, 0 100%);
  color: rgba(238,249,255,0.95);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-readout span::before {
  content: attr(data-code);
  position: absolute;
  left: 14px;
  display: grid;
  width: 28px;
  height: 22px;
  place-items: center;
  border-right: 1px solid rgba(109,226,255,0.3);
  color: #6de2ff;
  font-size: 10px;
  letter-spacing: 0.02em;
  text-shadow: 0 0 12px rgba(109,226,255,0.7);
}

.system-robot {
  position: relative;
  z-index: 1;
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  min-height: 330px;
}

.system-robot::before {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  bottom: -30%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(109,226,255,0.28), rgba(126,157,18,0.12) 52%, transparent 70%),
    conic-gradient(from 180deg, transparent, rgba(109,226,255,0.22), transparent, rgba(126,157,18,0.18), transparent);
  filter: blur(1px);
}

.system-robot img {
  position: relative;
  max-width: min(380px, 110%);
  max-height: 390px;
  object-fit: contain;
  opacity: 0.96;
  filter:
    drop-shadow(0 0 12px rgba(109,226,255,0.24))
    drop-shadow(0 30px 36px rgba(0,0,0,0.24));
}

.system-board {
  position: absolute;
  right: 20px;
  top: 18px;
  display: grid;
  gap: 7px;
  width: 150px;
  transform: skewX(-12deg);
}

.system-board i {
  display: block;
  height: 5px;
  background: linear-gradient(90deg, rgba(109,226,255,0.8), rgba(126,157,18,0.2));
  box-shadow: 0 0 14px rgba(109,226,255,0.32);
}

.system-board i:nth-child(2) {
  width: 74%;
}

.system-board i:nth-child(3) {
  width: 48%;
}

.pathway-section {
  position: relative;
  background:
    radial-gradient(circle at 82% 24%, rgba(126,157,18,0.14), transparent 30%),
    radial-gradient(circle at 14% 64%, rgba(0,124,236,0.1), transparent 28%),
    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: 16px;
}

.pathway-card {
  position: relative;
  display: flex;
  min-height: 315px;
  padding: 26px;
  overflow: hidden;
  flex-direction: column;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.74)),
    radial-gradient(circle at 100% 0%, rgba(0,124,236,0.12), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(126,157,18,0.1), transparent 42%);
  border: 1px solid rgba(0,124,236,0.12);
  box-shadow: 0 24px 72px -44px rgba(15,23,42,0.34), 0 1px 0 rgba(255,255,255,0.8) inset;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

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

.pathway-card::before {
  content: "";
  width: 54px;
  height: 54px;
  margin-bottom: 42px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.9), transparent 28%),
    var(--gradient-brand);
  box-shadow:
    0 20px 42px -22px rgba(0,124,236,0.78),
    0 0 0 12px rgba(126,157,18,0.07);
}

.pathway-card::after {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 170px;
  aspect-ratio: 1;
  border: 1px solid rgba(0,124,236,0.1);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,124,236,0.08), transparent 64%);
  pointer-events: none;
}

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

.pathway-card h3 {
  max-width: 320px;
  margin: 16px 0 0;
  color: #172338;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.16;
}

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

.pathway-card b {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  margin-top: auto;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(238,247,255,0.82);
  border: 1px solid rgba(0,124,236,0.12);
  color: #172338;
  font-size: 13px;
  box-shadow: 0 10px 26px -20px rgba(0,124,236,0.52);
}

.pathway-card b::after {
  content: "->";
  margin-left: 8px;
  opacity: 0.75;
}

.pathway-card:hover b {
  background: #172338;
  border-color: #172338;
  color: #fff;
}

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

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

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

#overview {
  isolation: isolate;
  padding-bottom: 118px;
  background:
    radial-gradient(circle at 74% 50%, rgba(109,226,255,0.1), transparent 34%),
    linear-gradient(180deg, rgba(247,251,255,0) 0%, rgba(238,247,255,0.26) 64%, rgba(238,247,255,0.58) 100%);
}

#overview > .container {
  position: relative;
  z-index: 1;
}

#overview::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 210px;
  background:
    linear-gradient(180deg, rgba(247,251,255,0), rgba(238,247,255,0.72)),
    radial-gradient(circle at 82% 100%, rgba(126,157,18,0.14), transparent 42%);
  pointer-events: none;
}

.overview-points {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.overview-points article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 3px 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(0,124,236,0.13);
  border-radius: 18px;
  background: rgba(255,255,255,0.68);
  box-shadow: 0 18px 48px -38px rgba(0,124,236,0.52);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.overview-points span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: rgba(0,124,236,0.1);
  color: #006fd6;
  font-size: 12px;
  font-weight: 900;
}

.overview-points b {
  color: #172338;
  font-size: 14px;
  line-height: 1.25;
}

.overview-points small {
  color: #5c7087;
  font-size: 12.5px;
  line-height: 1.45;
}

.robotics-strip {
  overflow: visible;
  margin-top: -108px;
  padding-top: 126px;
  padding-bottom: 44px;
  background:
    radial-gradient(circle at 50% 4%, rgba(0,124,236,0.14), transparent 38%),
    radial-gradient(circle at 84% 20%, rgba(126,157,18,0.12), transparent 32%),
    linear-gradient(180deg, rgba(238,247,255,0.58), rgba(238,247,255,0.36) 48%, rgba(255,255,255,0));
}

.robotics-strip::after {
  content: "";
  position: absolute;
  inset: -42px 0 auto;
  z-index: 0;
  height: 190px;
  background:
    linear-gradient(180deg, rgba(247,251,255,0), rgba(238,247,255,0.32) 34%, rgba(238,247,255,0.16) 74%, transparent),
    radial-gradient(circle at 70% 0%, rgba(109,226,255,0.1), transparent 42%);
  pointer-events: none;
}

.robotics-ambient {
  position: absolute;
  inset: -96px 0 -70px auto;
  z-index: 0;
  width: min(48vw, 620px);
  overflow: hidden;
  pointer-events: none;
}

.robotics-ambient::before {
  content: "";
  position: absolute;
  inset: 14% 0 auto 8%;
  height: 58%;
  border-radius: 999px 0 0 999px;
  background:
    linear-gradient(90deg, transparent, rgba(0,124,236,0.16), rgba(126,157,18,0.14)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.16) 0 1px, transparent 1px 16px);
  filter: blur(0.2px);
}

.robotics-ambient span {
  position: absolute;
  right: 14%;
  top: 19%;
  width: 300px;
  aspect-ratio: 1;
  border: 1px solid rgba(0,124,236,0.18);
  border-radius: 999px;
  box-shadow:
    0 0 0 42px rgba(0,124,236,0.035),
    0 0 70px rgba(0,124,236,0.16) inset;
  animation: slowSpin 28s linear infinite;
}

.robotics-ambient img {
  position: absolute;
  right: -18%;
  bottom: -22%;
  width: min(58vw, 680px);
  max-width: none;
  opacity: 0.34;
  filter: drop-shadow(-22px 28px 38px rgba(11,20,36,0.24));
  mask-image: linear-gradient(90deg, transparent 0%, black 24%, black 78%, transparent 100%);
}

.robotics-strip-grid {
  position: relative;
  z-index: 1;
  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(126,157,18,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;
}

.compute-lab-section {
  padding-block: 82px;
  background:
    radial-gradient(circle at 18% 22%, rgba(109,226,255,0.12), transparent 30%),
    radial-gradient(circle at 86% 70%, rgba(126,157,18,0.16), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0), rgba(238,247,255,0.76), rgba(255,255,255,0));
}

.compute-lab-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 36px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(109,226,255,0.24);
  border-radius: 34px;
  background:
    linear-gradient(125deg, rgba(7,18,38,0.96), rgba(16,46,82,0.92) 52%, rgba(16,91,93,0.8)),
    repeating-linear-gradient(90deg, rgba(109,226,255,0.08) 0 1px, transparent 1px 58px);
  box-shadow:
    0 38px 96px -46px rgba(7,18,38,0.88),
    inset 0 0 0 1px rgba(255,255,255,0.08),
    inset 0 0 70px rgba(109,226,255,0.1);
  color: #fff;
}

.compute-lab-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(109,226,255,0.12) 38% 39%, transparent 39% 68%, rgba(126,157,18,0.1) 68% 69%, transparent 69%),
    radial-gradient(circle at 78% 40%, rgba(109,226,255,0.24), transparent 28%);
  pointer-events: none;
}

.compute-copy {
  position: relative;
  z-index: 1;
}

.compute-copy .eyebrow {
  color: #8fead0;
}

.compute-copy h2 {
  max-width: 780px;
  margin: 12px 0 18px;
  font-size: clamp(2rem, 4.8vw, 3.45rem);
  line-height: 1.02;
}

.compute-copy p {
  max-width: 640px;
  color: rgba(238,249,255,0.78);
  font-size: 15px;
  line-height: 1.7;
}

.compute-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.compute-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(109,226,255,0.24);
  background: rgba(255,255,255,0.07);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 28%, 100% 100%, 0 100%);
  color: rgba(238,249,255,0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.compute-visual {
  position: relative;
  z-index: 1;
  min-height: 340px;
}

.compute-visual::before,
.compute-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.compute-visual::before {
  inset: 22px 20px auto auto;
  width: 280px;
  aspect-ratio: 1;
  border: 1px solid rgba(109,226,255,0.25);
  background:
    conic-gradient(from 0deg, transparent, rgba(109,226,255,0.28), transparent, rgba(126,157,18,0.24), transparent),
    radial-gradient(circle, transparent 0 54%, rgba(109,226,255,0.1) 55% 56%, transparent 57%);
  filter: drop-shadow(0 0 20px rgba(109,226,255,0.24));
  animation: orbit 34s linear infinite;
}

.compute-visual::after {
  right: 88px;
  top: 110px;
  width: 92px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(109,226,255,0.38), rgba(109,226,255,0.08) 58%, transparent 70%);
  box-shadow: 0 0 42px rgba(109,226,255,0.28);
}

.compute-chip {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  min-width: 72px;
  min-height: 34px;
  place-items: center;
  border: 1px solid rgba(109,226,255,0.28);
  background: rgba(255,255,255,0.08);
  clip-path: polygon(0 0, 82% 0, 100% 36%, 100% 100%, 0 100%);
  color: #6de2ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-shadow: 0 0 14px rgba(109,226,255,0.72);
}

.compute-chip:nth-child(1) {
  right: 38px;
  top: 34px;
}

.compute-chip:nth-child(2) {
  right: 246px;
  top: 118px;
}

.compute-chip:nth-child(3) {
  right: 72px;
  bottom: 52px;
}

.compute-rack {
  position: absolute;
  left: 8px;
  bottom: 24px;
  display: grid;
  gap: 11px;
  width: min(290px, 70%);
  transform: perspective(520px) rotateY(-14deg) skewY(-2deg);
}

.compute-rack i {
  display: block;
  height: 30px;
  border: 1px solid rgba(109,226,255,0.22);
  background:
    linear-gradient(90deg, rgba(109,226,255,0.22), rgba(255,255,255,0.06) 42%, rgba(126,157,18,0.14)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(109,226,255,0.22) 18px 20px);
  box-shadow: inset 0 0 18px rgba(109,226,255,0.08), 0 18px 42px -34px rgba(0,0,0,0.9);
}

.compute-core {
  position: absolute;
  right: 58px;
  top: 128px;
  z-index: 3;
  display: grid;
  width: 220px;
  min-height: 150px;
  align-content: center;
  padding: 22px;
  border: 1px solid rgba(143,234,208,0.32);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(109,226,255,0.08)),
    radial-gradient(circle at 100% 0%, rgba(126,157,18,0.2), transparent 58%);
  clip-path: polygon(0 0, 84% 0, 100% 24%, 100% 100%, 16% 100%, 0 78%);
  box-shadow:
    0 28px 72px -44px rgba(0,0,0,0.9),
    inset 0 0 28px rgba(109,226,255,0.1);
}

.compute-core b,
.compute-core strong,
.compute-core small {
  display: block;
}

.compute-core b {
  color: #8fead0;
  font-size: 11px;
  letter-spacing: 0.28em;
}

.compute-core strong {
  margin-top: 8px;
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.08em;
}

.compute-core small {
  margin-top: 8px;
  color: rgba(238,249,255,0.66);
  font-size: 12px;
  line-height: 1.45;
}

.ihub-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 20%, rgba(0,124,236,0.16), transparent 32%),
    radial-gradient(circle at 78% 80%, rgba(126,157,18,0.14), transparent 30%),
    linear-gradient(180deg, rgba(238,247,255,0.74), rgba(255,255,255,0));
}

.ihub-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(247,251,255,0.82), rgba(247,251,255,0.38) 42%, rgba(247,251,255,0.76)),
    linear-gradient(180deg, rgba(247,251,255,0.76), rgba(247,251,255,0.12) 42%, rgba(247,251,255,0.72)),
    url("tararobot.png") center / cover no-repeat;
  opacity: 0.42;
  pointer-events: none;
}

.ihub-feature {
  position: relative;
  z-index: 1;
  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.94), rgba(12,64,112,0.84)),
    radial-gradient(circle at 100% 0%, rgba(126,157,18,0.34), transparent 40%),
    radial-gradient(circle at 18% 12%, rgba(0,124,236,0.22), transparent 34%),
    url("tararobot.png") center / cover no-repeat;
  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;
  z-index: 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-copy,
.ihub-orbit {
  position: relative;
  z-index: 1;
}

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

.ihub-copy h2 {
  max-width: 760px;
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  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;
  width: min(100%, 430px);
  min-height: auto;
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(223,247,255,0.2), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(126,157,18,0.14), transparent 55%),
    radial-gradient(circle at 40% 30%, rgba(0,124,236,0.16), transparent 44%);
  transform: translateY(var(--parallax-y, 0));
  transition: transform 0.08s linear;
  --sat-size: 82px;
  --orbit-radius: 158px;
  --orbit-duration: 24s;
}

.ihub-orbit::before,
.ihub-orbit::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(143,234,208,0.22);
  border-radius: 999px;
  box-shadow:
    0 0 50px rgba(126,157,18,0.1) inset,
    0 0 36px rgba(0,124,236,0.08);
  animation: orbit 24s linear infinite;
}

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

.ihub-orbit > span:not(.ihub-core) {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #8fead0;
  box-shadow: 0 0 28px rgba(143,234,208,0.74);
}

.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: 999px;
  background: linear-gradient(135deg, #ffffff, #dff7ff);
  color: #143466;
  font-weight: 800;
  line-height: 1.1;
  box-shadow:
    0 0 0 16px rgba(255,255,255,0.04),
    0 0 0 36px rgba(143,234,208,0.045),
    0 26px 70px -30px rgba(143,234,208,0.82);
}

.ihub-orbit i {
  left: calc(50% - (var(--sat-size) / 2));
  top: calc(50% - (var(--sat-size) / 2));
  width: var(--sat-size);
  height: var(--sat-size);
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,0.26), transparent 34%),
    rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(18px);
  box-shadow:
    0 18px 44px -28px rgba(0,0,0,0.8),
    0 0 28px rgba(143,234,208,0.08) inset;
  animation: satelliteOrbit var(--orbit-duration) linear infinite;
  transform: rotate(var(--orbit-angle)) translateX(var(--orbit-radius)) rotate(var(--counter-angle));
}

.ihub-orbit i:nth-of-type(1) { --orbit-angle: 0deg; --counter-angle: 0deg; }
.ihub-orbit i:nth-of-type(2) { --orbit-angle: 90deg; --counter-angle: -90deg; }
.ihub-orbit i:nth-of-type(3) { --orbit-angle: 180deg; --counter-angle: -180deg; }
.ihub-orbit i:nth-of-type(4) { --orbit-angle: 270deg; --counter-angle: -270deg; }

.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(126,157,18,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(0,124,236,0.08) inset;
  z-index: 1;
  pointer-events: none;
}

.orbit-one {
  inset: 24px;
}

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

.orbit-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  --orbit-radius: 218px;
  min-height: 30px;
  padding: 0 12px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow: var(--shadow-glass), 0 0 24px rgba(0,124,236,0.12);
  color: rgba(8,15,29,0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation:
    labelOrbit 24s linear infinite,
    labelDepth 24s linear infinite;
}

.orbit-label::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--emerald);
  box-shadow: 0 0 18px rgba(126,157,18,0.72);
}

.orbit-label-acca {
  animation-delay: -13.5s, -13.5s;
}

.orbit-label-ibm {
  animation-delay: 0s, 0s;
}

.orbit-label-cma {
  --orbit-radius: 168px;
  background: rgba(238,247,255,0.76);
  animation-delay: -6s, -6s;
}

.orbit-label-ihub {
  --orbit-radius: 168px;
  background: rgba(245,250,232,0.78);
  animation-delay: -18s, -18s;
}

.orbit-label-ibm::before,
.orbit-label-cma::before {
  background: var(--sky);
  box-shadow: 0 0 18px rgba(0,124,236,0.58);
}

.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;
}

.robot-card {
  inset: 2px 0 0 22px;
  z-index: 2;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.robot-card::before {
  content: "";
  position: absolute;
  left: 13%;
  right: 8%;
  bottom: 10%;
  height: 28%;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0,124,236,0.28), transparent 68%);
  filter: blur(16px);
}

.robot-card::after {
  inset: 6% 7% 10% 18%;
  border-radius: 38% 48% 28% 42%;
  background:
    linear-gradient(115deg, transparent 18%, rgba(255,255,255,0.5) 34%, transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.16), transparent 70%);
  mix-blend-mode: screen;
}

.robot-card img {
  position: relative;
  z-index: 1;
  width: 136%;
  height: 118%;
  max-width: none;
  object-fit: contain;
  object-position: 62% 46%;
  transform: translateX(-22%);
  filter: drop-shadow(0 28px 32px rgba(11,20,36,0.22));
}

.robot-floor {
  position: absolute;
  left: 15%;
  right: 5%;
  bottom: 7%;
  z-index: 1;
  height: 56px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(0,124,236,0.16), transparent),
    radial-gradient(ellipse, rgba(126,157,18,0.18), transparent 64%);
  transform: perspective(420px) rotateX(72deg);
  filter: blur(0.4px);
}

.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(1.8rem, 4vw, 2.9rem);
}

.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(126,157,18,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(126,157,18,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;
}

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

.campus-list-compact article {
  position: relative;
  min-height: 120px;
  padding: 22px 24px 22px 26px;
  overflow: hidden;
  border-radius: 20px;
}

.campus-list-compact article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gradient-blue);
}

.campus-list-compact article::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -36px;
  width: 108px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0,124,236,0.12), transparent 68%);
  pointer-events: none;
}

.campus-list-compact b {
  max-width: 520px;
  line-height: 1.45;
}

.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(126,157,18,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(2rem, 4.8vw, 3.8rem);
}

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

.contact-hero {
  min-height: auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 132px;
  padding-bottom: 72px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(460px, 0.98fr) minmax(0, 0.72fr);
  align-items: start;
  gap: 34px;
}

.contact-hero h1,
.form-heading h2,
.contact-panel 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;
}

.contact-hero h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 5.4vw, 4.15rem);
}

.contact-hero-copy > p:not(.pill) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.1vw, 1.08rem);
  line-height: 1.58;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.contact-actions a,
.contact-direct a,
.contact-routing article,
.contact-panel,
.contact-form {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.66));
  border: 1px solid rgba(0,124,236,0.12);
  box-shadow: var(--shadow-glass), var(--shadow-soft);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.contact-actions a {
  flex: 1 1 160px;
  min-height: 92px;
  padding: 15px;
  border-radius: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-direct a {
  min-height: 84px;
  padding: 14px;
  border-radius: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-actions a:hover,
.contact-direct a:hover,
.contact-routing article:hover {
  transform: translateY(-4px);
  border-color: rgba(0,124,236,0.28);
  box-shadow: var(--shadow-glass), 0 36px 76px -46px rgba(0,124,236,0.45);
}

.contact-actions b,
.contact-direct b,
.contact-routing b,
.contact-help-list b {
  display: block;
  color: #172338;
  font-size: 14px;
}

.contact-actions span,
.contact-direct span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.contact-direct span {
  color: #006fd6;
  font-weight: 800;
}

.contact-visual {
  position: relative;
  min-height: 520px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 58% 45%, rgba(132,189,236,0.24), transparent 38%),
    radial-gradient(circle at 40% 74%, rgba(126,157,18,0.18), transparent 40%);
  transform: translateY(var(--parallax-y, 0));
  transition: transform 0.08s linear;
}

.contact-visual::before,
.contact-ring {
  content: "";
  position: absolute;
  inset: 32px;
  border-radius: 999px;
  border: 1px solid rgba(0,124,236,0.16);
  box-shadow: 0 0 60px rgba(0,124,236,0.08) inset;
  animation: orbit 32s linear infinite;
}

.contact-ring {
  inset: 92px;
  border-color: rgba(126,157,18,0.22);
  animation-duration: 24s;
  animation-direction: reverse;
}

.contact-visual img {
  position: absolute;
  right: -16%;
  bottom: -10%;
  width: min(58vw, 640px);
  max-width: none;
  filter: drop-shadow(-26px 36px 40px rgba(11,20,36,0.24));
}

.contact-node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 78px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-glass);
  color: #172338;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.node-call { left: 6%; top: 26%; }
.node-mail { right: 7%; top: 18%; }
.node-visit { left: 16%; bottom: 16%; }

.contact-section {
  padding-top: 46px;
}

.contact-help-layout {
  display: block;
}

.contact-panel,
.contact-form {
  border-radius: 28px;
}

.contact-panel {
  padding: 30px;
}

.contact-help-layout .contact-panel {
  max-width: none;
}

.contact-panel h2,
.form-heading h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

.contact-help-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.contact-help-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(238,247,255,0.72);
}

.contact-help-list span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--gradient-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.contact-help-list p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-form {
  padding: 34px;
}

.contact-form-hero {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.contact-form-hero::before {
  content: "";
  position: absolute;
  right: -110px;
  top: -130px;
  width: 340px;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(126,157,18,0.14), transparent 66%),
    radial-gradient(circle, rgba(0,124,236,0.1), transparent 58%);
  pointer-events: none;
}

.contact-form-hero > * {
  position: relative;
  z-index: 1;
}

.contact-form-hero .form-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.contact-form-hero .form-grid {
  gap: 12px;
  margin-top: 22px;
}

.contact-form-hero .form-grid textarea {
  min-height: 104px;
}

.form-heading p:not(.eyebrow) {
  max-width: 610px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  color: #36506e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-grid small {
  color: #b42318;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(0,124,236,0.16);
  border-radius: 16px;
  background: rgba(255,255,255,0.74);
  color: #172338;
  font: inherit;
  outline: none;
  padding: 0 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-grid textarea {
  min-height: 132px;
  resize: vertical;
  padding-block: 14px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(0,124,236,0.48);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,124,236,0.09);
}

.full-field {
  grid-column: 1 / -1;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.form-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-form.is-sent .form-footer p {
  color: #13795b;
  font-weight: 700;
}

.course-hero {
  min-height: 72vh;
}

.course-detail-hero {
  padding-top: 124px;
  padding-bottom: 58px;
}

.course-hero-grid,
.course-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 34px;
}

.course-detail-hero-copy h1 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
}

.course-detail-hero-copy > p:not(.pill) {
  max-width: 640px;
  margin-top: 18px;
  font-size: 0.98rem;
  line-height: 1.58;
}

.course-hero-media,
.course-detail-media {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(0,124,236,0.16);
  border-radius: 24px;
  box-shadow: var(--shadow-glass), var(--shadow-soft);
}

.course-detail-media {
  position: relative;
  isolation: isolate;
}

.course-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 48%, rgba(11,20,36,0.42)),
    radial-gradient(circle at 74% 18%, rgba(126,157,18,0.16), transparent 34%);
  pointer-events: none;
}

.course-hero-media img,
.course-detail-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.course-detail-media div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 18px;
  background: rgba(11,20,36,0.54);
  color: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.course-detail-media span {
  color: #8fead0;
  font-size: 12px;
  font-weight: 900;
}

.course-detail-media b {
  font-size: 14px;
}

.course-group-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.course-group-links a,
.course-card,
.detail-fee-panel,
.course-related-link {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.68));
  border: 1px solid rgba(0,124,236,0.14);
  box-shadow: var(--shadow-glass), var(--shadow-soft);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.course-group-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  color: #25415e;
  font-weight: 700;
}

.course-group-links b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: rgba(0,124,236,0.12);
  color: #007cec;
  font-size: 12px;
}

.detail-fee-panel h2 {
  margin: 10px 0 0;
  font-size: clamp(1.55rem, 2.8vw, 2.5rem);
}

.detail-fee-panel p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.detail-fee-panel.is-unlocked {
  border-color: rgba(126,157,18,0.34);
}

.fee-access-hint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  padding: 9px 10px 9px 14px;
  border: 1px solid rgba(0,124,236,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 12px 30px rgba(27,45,77,0.08);
  color: #526781;
  font-size: 14px;
  font-weight: 700;
}

.fee-access-hint.is-unlocked {
  border-color: rgba(126,157,18,0.34);
  color: #25745e;
}

.fee-access-hint button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: #fff;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 12px 26px -18px rgba(0,124,236,0.75);
  white-space: nowrap;
}

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

.course-group-section {
  padding-top: 82px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.course-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 16px;
  min-width: 0;
  min-height: 360px;
  padding: 24px;
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.course-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(0,124,236,0.86), rgba(126,157,18,0.86));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.course-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,124,236,0.24);
  box-shadow: var(--shadow-glass), 0 28px 70px -46px rgba(0,124,236,0.5);
}

.course-card:hover::before {
  opacity: 1;
}

.course-card-top,
.course-detail-facts,
.course-meta,
.course-highlight-list,
.course-fee-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-card-top {
  align-items: center;
  justify-content: space-between;
}

.course-card-top span,
.course-meta span,
.course-detail-facts span,
.course-highlight-list span {
  border-radius: 999px;
  background: rgba(238,247,255,0.9);
  color: #315172;
  font-size: 12px;
  font-weight: 800;
}

.course-card-top span {
  padding: 8px 11px;
}

.course-card h3,
.course-related-link h3 {
  margin: 0;
  color: #172338;
  font-size: 1.36rem;
  line-height: 1.18;
}

.course-card > p,
.course-related-link p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.course-card > p {
  display: -webkit-box;
  min-height: 75px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.course-meta span {
  max-width: 100%;
  padding: 8px 11px;
  line-height: 1.4;
}

.course-card-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(31,41,55,0.08);
}

.course-card-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.course-fee-line {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.course-fee-line span {
  color: #5c7087;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-fee-line b {
  color: #136f5a;
  font-size: 15px;
}

.course-fee {
  padding: 14px;
  border: 1px solid rgba(126,157,18,0.22);
  border-radius: 16px;
  background: rgba(226,255,203,0.42);
}

.course-fee > span {
  display: block;
  margin-bottom: 11px;
  color: #37536f;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.course-fee-values b {
  display: grid;
  gap: 3px;
  min-height: 48px;
  place-content: center;
  padding: 8px 12px;
  border-radius: 13px;
  background: #dcff35;
  color: #152b3f;
  font-size: 0.95rem;
}

.course-fee-values small {
  color: #496174;
  font-size: 11px;
  font-weight: 800;
}

.course-fee-lock {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,124,236,0.16);
  border-radius: 14px;
  background: rgba(0,124,236,0.08);
  color: var(--brand-blue);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.course-fee-lock:hover {
  border-color: rgba(126,157,18,0.28);
  background: rgba(126,157,18,0.08);
  color: #627d0c;
}

.course-detail-link,
.course-back-link {
  color: #006fd6;
  font-weight: 800;
}

.course-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.course-apply-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 28px -20px rgba(0,124,236,0.75);
  white-space: nowrap;
}

.course-detail-hero {
  min-height: 70vh;
}

.course-back-link {
  display: inline-block;
  margin-bottom: 20px;
}

.course-detail-facts {
  margin-top: 22px;
}

.course-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.course-detail-facts span,
.course-highlight-list span {
  display: grid;
  gap: 4px;
  min-width: 112px;
  padding: 11px 13px;
  border-radius: 14px;
  line-height: 1.35;
}

.course-detail-facts b {
  color: #172338;
  font-size: 13px;
}

.course-detail-facts small {
  color: #5c7087;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 18px;
}

.course-detail-main {
  display: grid;
  gap: 18px;
}

.course-story-panel,
.course-detail-panel,
.course-fit-panel,
.course-snapshot,
.course-admission-band {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.68));
  border: 1px solid rgba(0,124,236,0.14);
  box-shadow: var(--shadow-glass), var(--shadow-soft);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.course-story-panel {
  padding: 28px;
  border-radius: 22px;
}

.course-story-panel h2,
.course-admission-band h2 {
  margin: 10px 0 0;
  color: #172338;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.16;
}

.course-story-panel p:not(.eyebrow),
.course-detail-panel p:not(.eyebrow),
.course-fit-panel p:not(.eyebrow),
.course-admission-band p:not(.eyebrow) {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.course-add-on {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(0,124,236,0.12);
  border-radius: 16px;
  background: rgba(238,247,255,0.78);
}

.course-add-on span {
  color: #5c7087;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-add-on b {
  color: #172338;
  font-size: 14px;
  line-height: 1.45;
}

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

.course-detail-panel,
.course-fit-panel,
.course-snapshot {
  padding: 22px;
  border-radius: 20px;
}

.course-detail-panel h3,
.course-fit-panel h3 {
  margin: 10px 0 0;
  color: #172338;
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.2;
}

.course-highlight-list {
  margin-top: 25px;
}

.course-module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.course-module-grid span,
.course-career-list li,
.course-check-list li {
  border: 1px solid rgba(0,124,236,0.1);
  border-radius: 14px;
  background: rgba(238,247,255,0.86);
  color: #274868;
  font-size: 13px;
  font-weight: 700;
}

.course-module-grid span {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 11px 12px;
  line-height: 1.38;
}

.course-check-list,
.course-career-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.course-check-list li,
.course-career-list li {
  position: relative;
  min-height: 48px;
  padding: 13px 13px 13px 40px;
  line-height: 1.4;
}

.course-check-list li::before,
.course-career-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  width: 13px;
  height: 7px;
  border-bottom: 2px solid #007cec;
  border-left: 2px solid #007cec;
  transform: rotate(-45deg);
}

.course-career-list li::before {
  width: 9px;
  height: 9px;
  top: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--gradient-accent);
  transform: none;
}

.course-fit-panel {
  display: grid;
  align-content: start;
}

.course-fit-panel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #006fd6;
  font-weight: 800;
}

.course-detail-side {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
}

.detail-fee-panel {
  padding: 22px;
  border-radius: 20px;
}

.detail-fee-panel .button {
  margin-top: 16px;
}

.detail-fee-panel h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.18;
}

.detail-fee-panel p {
  font-size: 14px;
}

.course-snapshot dl {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
}

.course-snapshot dl div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(31,41,55,0.08);
}

.course-snapshot dl div:last-child {
  border-bottom: 0;
}

.course-snapshot dt {
  color: #5c7087;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.course-snapshot dd {
  margin: 0;
  color: #172338;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.course-admission-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border-radius: 24px;
}

.course-admission-band .actions {
  flex: 0 0 auto;
  margin: 0;
}

.course-related-link {
  display: grid;
  gap: 14px;
  min-height: 190px;
  padding: 24px;
  border-radius: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.course-related-link:hover {
  transform: translateY(-3px);
  border-color: rgba(0,124,236,0.3);
}

.course-related-link > span {
  color: #007cec;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .course-hero-grid,
  .course-detail-grid {
    grid-template-columns: 1fr;
  }

  .course-detail-layout {
    grid-template-columns: 1fr;
  }

  .course-detail-side {
    order: -1;
    position: static;
  }

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

@media (max-width: 680px) {
  .fee-access-hint {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 18px;
  }

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

  .course-detail-columns,
  .course-module-grid {
    grid-template-columns: 1fr;
  }

  .course-story-panel,
  .course-detail-panel,
  .course-fit-panel,
  .course-snapshot,
  .course-admission-band {
    padding: 24px;
  }

  .course-admission-band {
    align-items: stretch;
    flex-direction: column;
  }

  .course-admission-band .actions {
    display: grid;
  }

  .course-hero-media,
  .course-detail-media {
    min-height: 300px;
  }
}

.fee-ios-modal {
  overflow: hidden;
  border: 1px solid rgba(0,124,236,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.98);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 24px 70px rgba(11,20,36,0.24);
}

.fee-ios-title {
  margin: 0;
  padding: 28px 32px 0;
  color: #172338;
  font-size: 1.32rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: left;
}

.fee-ios-html {
  margin: 0;
  padding: 0 32px;
  text-align: left;
}

.fee-ios-sheet {
  position: relative;
  padding: 18px 0 0;
}

.fee-ios-badge {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0 0 16px;
  place-items: center;
  border: 1px solid rgba(0,124,236,0.16);
  border-radius: 12px;
  background: rgba(238,247,255,0.95);
  color: #006fd6;
  font-size: 12px;
  font-weight: 900;
}

.fee-ios-badge-live {
  font-size: 1.05rem;
}

.fee-ios-sheet p {
  max-width: 310px;
  margin: 0 0 18px;
  color: #5c7087;
  font-size: 14px;
  line-height: 1.45;
}

.fee-ios-field {
  display: grid;
  gap: 5px;
  margin: 10px 0;
  padding: 10px 14px 11px;
  border: 1px solid rgba(0,124,236,0.12);
  border-radius: 14px;
  background: rgba(247,251,255,0.8);
  text-align: left;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.fee-ios-field:focus-within {
  border-color: rgba(0,124,236,0.42);
  box-shadow: 0 0 0 4px rgba(0,124,236,0.08);
}

.fee-ios-field span {
  color: #5c7087;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fee-ios-field input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #172338;
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0;
  outline: 0;
}

.fee-ios-otp input {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0;
}

.fee-ios-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  width: auto;
  margin: 20px 32px 30px;
}

.fee-ios-primary,
.fee-ios-secondary {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  padding: 0 18px;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.fee-ios-primary {
  background: #182234;
  color: #fff;
  box-shadow: 0 14px 30px rgba(24,34,52,0.21);
}

.fee-ios-secondary {
  background: rgba(0,124,236,0.08);
  color: #315172;
}

.fee-ios-primary:hover,
.fee-ios-secondary:hover {
  filter: brightness(1.02);
  transform: translateY(-1px);
}

.fee-ios-validation {
  margin: 0 32px 12px;
  border-radius: 12px;
  background: rgba(255,232,229,0.92);
  color: #b42318;
  font-size: 12px;
  font-weight: 800;
}

.fee-ios-enter {
  animation: feeSheetIn 0.33s cubic-bezier(0.2, 0.86, 0.26, 1.18);
}

.fee-ios-leave {
  animation: feeSheetOut 0.18s ease forwards;
}

.fee-unlocked-toast {
  border: 1px solid rgba(126,157,18,0.28);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(11,20,36,0.2);
}

@keyframes feeBadgeFloat {
  50% {
    transform: translateY(-3px) scale(1.02);
  }
}

@keyframes feeSheetIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes feeSheetOut {
  to {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
}

@media (max-width: 480px) {
  .fee-ios-modal {
    border-radius: 20px;
  }

  .fee-ios-title,
  .fee-ios-html {
    padding-left: 22px;
    padding-right: 22px;
  }

  .fee-ios-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin: 18px 22px 24px;
  }
}

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

.contact-routing article {
  padding: 24px;
  border-radius: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-routing span {
  color: #006fd6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-routing b {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.25;
}

.contact-routing a {
  display: inline-flex;
  margin-top: 18px;
  color: #006fd6;
  font-size: 13px;
  font-weight: 800;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) minmax(130px, 0.7fr) minmax(150px, 0.8fr) minmax(230px, 1fr);
  gap: 34px;
}

.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;
}

.footer-contact p {
  margin: 0 0 12px;
}

.footer-contact a {
  font-weight: 700;
}

.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 labelOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(var(--orbit-radius)) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg) translateX(var(--orbit-radius)) rotate(-360deg); }
}

@keyframes labelDepth {
  0%, 100% {
    z-index: 3;
    opacity: 0.9;
    scale: 0.96;
  }
  12%, 38% {
    z-index: 5;
    opacity: 1;
    scale: 1.04;
  }
  62%, 88% {
    z-index: 1;
    opacity: 0.72;
    scale: 0.9;
  }
}

@keyframes satelliteOrbit {
  from {
    transform: rotate(var(--orbit-angle)) translateX(var(--orbit-radius)) rotate(var(--counter-angle));
  }
  to {
    transform: rotate(calc(var(--orbit-angle) + 360deg)) translateX(var(--orbit-radius)) rotate(calc(var(--counter-angle) - 360deg));
  }
}

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

@media (max-width: 920px) {
  body {
    font-size: 14px;
  }

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

  .main-nav {
    display: none;
  }

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

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .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;
  }

  .contact-hero {
    min-height: auto;
  }

  .contact-visual {
    min-height: 390px;
    order: -1;
  }

  .contact-visual img {
    right: -10%;
    width: min(88vw, 560px);
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    position: relative;
    top: auto;
  }

  .contact-help-list {
    grid-template-columns: 1fr;
  }
}

@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-logo {
    width: clamp(112px, 34vw, 142px);
  }

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

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

  .contact-hero {
    padding-top: 112px;
    padding-bottom: 56px;
  }

  .contact-hero h1 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .contact-hero-copy > p:not(.pill) {
    font-size: 0.9rem;
  }

  .contact-form-hero {
    order: -1;
  }

  .contact-visual {
    min-height: 310px;
  }

  .contact-visual::before {
    inset: 14px;
  }

  .contact-ring {
    inset: 54px;
  }

  .contact-visual img {
    right: -130px;
    bottom: -76px;
    width: 440px;
  }

  .contact-node {
    width: 60px;
    font-size: 9px;
  }

  .node-call { left: 2%; top: 30%; }
  .node-mail { right: 2%; top: 18%; }
  .node-visit { left: 14%; bottom: 12%; }

  .contact-panel,
  .contact-form {
    padding: 22px;
    border-radius: 22px;
  }

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

  .form-footer {
    display: grid;
  }

  .form-footer .button {
    width: 100%;
  }

  .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(1.75rem, 3.6vw, 2.75rem);
}

.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.6rem, 3vw, 2.3rem);
}

.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 {
    width: min(100%, 360px);
    --sat-size: 74px;
    --orbit-radius: 132px;
  }

  .ihub-section::after {
    background:
      linear-gradient(90deg, rgba(247,251,255,0.82), rgba(247,251,255,0.4)),
      linear-gradient(180deg, rgba(247,251,255,0.8), rgba(247,251,255,0.2) 46%, rgba(247,251,255,0.76)),
      url("tararobot.png") center / cover no-repeat;
    opacity: 0.36;
  }
}

@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(1.75rem, 8.5vw, 2.35rem);
  }

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

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

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

  .ihub-section::after {
    background:
      linear-gradient(90deg, rgba(247,251,255,0.84), rgba(247,251,255,0.42)),
      linear-gradient(180deg, rgba(247,251,255,0.86), rgba(247,251,255,0.26) 48%, rgba(247,251,255,0.82)),
      url("tararobot.png") center / cover no-repeat;
    opacity: 0.3;
  }

  .ihub-copy h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.05rem);
  }

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

  .ihub-orbit {
    width: min(100%, 292px);
    --sat-size: 62px;
    --orbit-radius: 106px;
  }

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

  .ihub-orbit i {
    width: var(--sat-size);
    height: var(--sat-size);
    border-radius: 999px;
    font-size: 10px;
  }

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

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

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

  .system-frame {
    inset: 20px;
    grid-template-columns: 0.78fr 1fr;
    gap: 16px;
  }

  .system-frame::before {
    inset: 24px 10px 28px;
  }

  .system-readout {
    max-width: 180px;
    gap: 8px;
  }

  .system-readout span {
    min-height: 38px;
    padding: 0 12px 0 34px;
    font-size: 10px;
  }

  .system-readout span::before {
    left: 12px;
    width: 20px;
    height: 18px;
    font-size: 8px;
  }

  .system-robot {
    min-height: 230px;
  }

  .system-robot img {
    max-height: 270px;
  }

  .system-board {
    right: 12px;
    top: 14px;
    width: 86px;
  }

  .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(1.85rem, 9vw, 2.45rem);
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 0.9rem;
    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.45rem, 7.4vw, 1.95rem);
  }

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

  .overview-grid {
    gap: 20px;
  }

  .system-frame {
    inset: 18px;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .system-frame::before {
    inset: 18px 8px 20px;
  }

  .system-readout {
    align-self: start;
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .system-readout span {
    min-height: 34px;
    padding: 0 8px 0 24px;
    font-size: 8.5px;
  }

  .system-readout span::before {
    left: 9px;
    width: 16px;
    height: 16px;
    font-size: 7px;
    box-shadow: none;
  }

  .system-robot {
    min-height: 210px;
    margin-top: 28px;
  }

  .system-robot img {
    max-height: 240px;
  }

  .system-board {
    top: 64px;
    width: 78px;
  }

  .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: 18px;
  }

  .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: #006fd6;
  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(0,124,236,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(0,124,236,0.14), transparent 36%),
    radial-gradient(circle at 90% 8%, rgba(126,157,18,0.14), transparent 32%);
}

.program-card b,
.content-card span {
  border-color: rgba(0,124,236,0.18);
  background: rgba(238,247,255,0.92);
  color: #006fd6;
}

.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(0,124,236,0.34), transparent 62%),
    radial-gradient(circle at 80% 90%, rgba(126,157,18,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(0,124,236,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(0,124,236,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;
  }

  .compute-lab-panel {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .compute-visual {
    min-height: 300px;
  }

  .compute-rack {
    width: min(330px, 74%);
  }

  .robotics-ambient {
    inset: -70px 0 auto auto;
    width: 100%;
    height: 420px;
    opacity: 0.72;
  }

  .robotics-ambient img {
    right: -18%;
    bottom: -32%;
    width: min(86vw, 620px);
  }
}

@media (max-width: 640px) {
  .robot-card {
    inset: 0 -16px -10px 8px;
  }

  .robot-card img {
    width: 138%;
    height: 122%;
    object-position: 58% 48%;
    transform: translateX(-23%);
  }

  .robot-floor {
    left: 18%;
    right: 12%;
    bottom: 4%;
  }

  .robotics-ambient {
    inset: -54px 0 auto auto;
    height: 340px;
    opacity: 0.48;
  }

  .robotics-ambient::before {
    inset: 20% 0 auto 20%;
  }

  .robotics-ambient span {
    right: -10%;
    top: 20%;
    width: 220px;
  }

  .robotics-ambient img {
    right: -230px;
    bottom: -120px;
    width: 540px;
  }

  .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;
  }

  .compute-lab-section {
    padding-block: 62px;
  }

  .compute-lab-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .compute-copy h2 {
    font-size: clamp(1.45rem, 7.4vw, 1.95rem);
  }

  .compute-copy p {
    font-size: 13.5px;
    line-height: 1.58;
  }

  .compute-tags {
    gap: 8px;
  }

  .compute-tags span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 9px;
  }

  .compute-visual {
    min-height: 260px;
  }

  .compute-visual::before {
    right: 0;
    width: 220px;
  }

  .compute-visual::after {
    right: 70px;
    top: 92px;
    width: 68px;
  }

  .compute-chip {
    min-width: 58px;
    min-height: 30px;
    font-size: 9px;
  }

  .compute-chip:nth-child(1) {
    right: 12px;
    top: 24px;
  }

  .compute-chip:nth-child(2) {
    right: auto;
    left: 10px;
    top: 84px;
  }

  .compute-chip:nth-child(3) {
    right: 18px;
    bottom: 34px;
  }

  .compute-rack {
    left: 0;
    bottom: 20px;
    width: 64%;
  }

  .compute-rack i {
    height: 24px;
  }

  .compute-core {
    right: 34px;
    top: 96px;
    width: 172px;
    min-height: 124px;
    padding: 18px;
  }

  .compute-core strong {
    font-size: 19px;
  }

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

/* Final typography density pass */
body {
  font-size: 14px;
}

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

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

.hero {
  min-height: auto;
  padding-top: 116px;
  padding-bottom: 70px;
}

.page-hero {
  min-height: auto;
  padding-top: 118px;
  padding-bottom: 70px;
}

.contact-hero {
  padding-top: 108px;
  padding-bottom: 54px;
}

.hero-title {
  font-size: clamp(1.9rem, 4.2vw, 3.35rem);
}

.page-hero h1,
.contact-hero h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
}

.section-heading h2,
.split-heading h2,
.final-cta h2,
.outcome-panel h2,
.form-heading h2,
.contact-panel h2 {
  font-size: clamp(1.35rem, 2.7vw, 2.05rem);
}

.ihub-copy h2,
.compute-copy h2 {
  font-size: clamp(1.4rem, 2.9vw, 2.25rem);
}

.hero-lede,
.page-hero p:not(.pill),
.contact-hero-copy > p:not(.pill),
.section-heading p:not(.eyebrow),
.split-heading > p,
  .final-cta .container > p:not(.pill) {
  font-size: clamp(0.84rem, 0.95vw, 0.95rem);
}

.button {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
}

.contact-form-hero {
  padding: 22px;
}

.contact-form-hero .form-heading h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.form-grid input,
.form-grid select {
  min-height: 44px;
}

.form-grid textarea {
  min-height: 104px;
}

.contact-actions a {
  min-height: 76px;
  padding: 13px;
}

@media (max-width: 640px) {
  body {
    font-size: 13px;
  }

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

  .hero,
  .page-hero,
  .contact-hero {
    padding-top: 86px;
    padding-bottom: 42px;
  }

  .hero-title,
  .page-hero h1,
  .contact-hero h1 {
    font-size: clamp(1.35rem, 6.2vw, 1.72rem);
  }

  .section-heading h2,
  .split-heading h2,
  .final-cta h2,
  .outcome-panel h2,
  .form-heading h2,
  .contact-panel h2,
  .ihub-copy h2,
  .compute-copy h2 {
    font-size: clamp(1.15rem, 5.4vw, 1.48rem);
  }

  .hero-lede,
  .page-hero p:not(.pill),
  .contact-hero-copy > p:not(.pill),
  .section-heading p:not(.eyebrow),
  .split-heading > p,
  .final-cta .container > p:not(.pill) {
    font-size: 0.8rem;
  }

  .pill,
  .eyebrow,
  .form-grid label > span {
    font-size: 9px;
  }

  .button {
    min-height: 40px;
    font-size: 11.5px;
  }

  .contact-form-hero {
    padding: 18px;
  }

  .form-grid {
    gap: 10px;
  }

  .form-grid input,
  .form-grid select {
    min-height: 40px;
    border-radius: 13px;
  }

  .form-grid textarea {
    min-height: 82px;
    border-radius: 13px;
  }

  .contact-actions a {
    min-height: auto;
  }

  .hero-visual {
    max-height: 320px;
    overflow: hidden;
    padding-top: 28px;
    margin-top: 8px;
    -webkit-mask-image: linear-gradient(to bottom, black 0 74%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0 74%, transparent 100%);
  }

  .emblem-stage {
    width: min(72vw, 280px);
  }

  .orbit-one {
    inset: 6px;
  }

  .orbit-two {
    inset: 42px;
  }

  .orbit-label {
    --orbit-radius: 138px;
    min-height: 20px;
    padding: 0 7px;
    font-size: 7px;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow-glass), 0 0 14px rgba(0,124,236,0.1);
  }

  .orbit-label::before {
    width: 5px;
    height: 5px;
    margin-right: 5px;
  }

  .orbit-label-cma,
  .orbit-label-ihub {
    --orbit-radius: 110px;
  }

  .robot-card {
    inset: 20px -18px -18px 8px;
  }

  .robot-card img {
    transform: translate(-23%, 28px);
  }

  .contact-form-hero .form-grid input,
  .contact-form-hero .form-grid select {
    min-height: 44px;
  }

  .contact-form-hero .form-grid textarea {
    min-height: 92px;
  }
}

@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;
  }
}
