@font-face {
  font-family: "Future Sans";
  src: url("assets/fonts/FutureSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Future Sans";
  src: url("assets/fonts/FutureSans-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Future Text";
  src: url("assets/fonts/FutureText-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Future Text";
  src: url("assets/fonts/FutureText-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #031321;
  --navy-deep: #020b13;
  --navy-soft: #07243a;
  --blue: #1487d0;
  --cyan: #26d4d0;
  --orange: #ff870d;
  --white: #fff;
  --cloud: #f6f7f7;
  --ink: #061b2d;
  --muted: #64707b;
  /* Half the original desktop edge space, including on extra-wide screens. */
  --shell: min(calc(100% - 48px), calc(50% + 660px));
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--navy-deep);
  font-family: "Future Text", Arial, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Future Sans", Arial, sans-serif; }

.page-shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 16px; color: var(--white); background: var(--orange); transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.announcement {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,.86);
  background: rgba(2,11,19,.68);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.announcement i { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 14px var(--orange); }

.site-header {
  position: absolute;
  z-index: 31;
  top: 38px;
  left: 50%;
  width: var(--shell);
  min-height: 96px;
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 36px;
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  width: 100%;
  min-height: 76px;
  padding-inline: max(24px, calc(25vw - 330px));
  background: rgba(2,14,24,.94);
  border-bottom: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 15px 35px rgba(0,0,0,.18);
  backdrop-filter: blur(16px);
}

.brand { display: block; width: 235px; }
.brand img { width: 100%; height: auto; }

.site-nav { display: flex; justify-content: flex-end; align-items: center; gap: clamp(24px, 3vw, 48px); }
.site-nav a { position: relative; color: rgba(255,255,255,.88); font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-decoration: none; text-transform: uppercase; }
.site-nav a::after { content: ""; position: absolute; right: 100%; bottom: -9px; left: 0; height: 2px; background: var(--orange); transition: right .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  padding: 0 25px;
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 4px;
  box-shadow: 0 14px 32px rgba(255,135,13,.2);
  font-family: "Future Sans", Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); background: #ff9b32; border-color: #ff9b32; }
.button--small { min-height: 49px; padding-inline: 20px; font-size: .68rem; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: min(920px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.hero__image, .hero__shade, .hero__image::after { position: absolute; inset: 0; }
.hero__image { background: url("assets/images/visionary-hero.webp") 50% 50% / cover no-repeat; }
.hero__image::after { content: ""; background: linear-gradient(90deg, rgba(2,11,19,.12), transparent 60%); }
.hero__shade { background: linear-gradient(90deg, rgba(2,11,19,.98) 0%, rgba(2,11,19,.84) 27%, rgba(2,11,19,.25) 57%, rgba(2,11,19,.05) 100%), linear-gradient(0deg, rgba(2,11,19,.45), transparent 42%); }

.hero__content { position: relative; z-index: 2; min-height: inherit; display: flex; align-items: center; padding-top: 120px; }
.hero__copy { width: min(660px, 54vw); padding-block: 90px 54px; }
.kicker, .section-label { margin-bottom: 18px; color: var(--cyan); font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.hero h1 { margin-bottom: 22px; font-size: clamp(3.6rem, 5.55vw, 6.2rem); line-height: .92; letter-spacing: -.045em; text-transform: uppercase; }
.hero h1 em { color: var(--orange); font-style: normal; }
.accent-rule { width: 48px; height: 4px; display: block; margin-bottom: 24px; background: var(--orange); }
.hero__intro { max-width: 510px; margin-bottom: 30px; color: rgba(255,255,255,.8); font-size: 1.04rem; line-height: 1.48; }
.hero__actions { display: flex; align-items: center; gap: 28px; }
.text-button { display: inline-flex; align-items: center; gap: 24px; padding: 13px 0; color: var(--white); background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.55); font-family: "Future Sans"; font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; cursor: pointer; }
.dimensions {
  position: relative;
  height: 720px;
  overflow: hidden;
  background: #f7f7f5;
}

.dimensions__contours { position: absolute; inset: 0; opacity: .3; background-image: repeating-radial-gradient(ellipse at 50% 50%, transparent 0 55px, rgba(12,55,83,.06) 57px, transparent 59px); }
.dimensions__portrait { position: absolute; inset: 0; background: url("assets/images/four-dimensions.webp") 50% 50% / cover no-repeat; }
.dimensions__inner { position: relative; height: 100%; }
.dimensions h2 { position: absolute; z-index: 2; top: 72px; left: 0; width: 34%; margin: 0; color: var(--ink); font-size: clamp(3.2rem, 5vw, 5.2rem); line-height: .92; letter-spacing: -.04em; text-transform: uppercase; }
.dimensions h2 em { color: var(--ink); font-style: normal; }

.dimension { position: absolute; z-index: 3; right: 0; width: clamp(225px, 20vw, 290px); min-height: 76px; padding: 16px 22px 14px 27px; color: var(--ink); background: rgba(255,255,255,.88); border: 1px solid rgba(12,55,83,.1); box-shadow: 0 14px 34px rgba(6,27,45,.08); backdrop-filter: blur(9px); }
.dimension::after { content: ""; position: absolute; top: 37px; right: 100%; width: clamp(110px, 14vw, 260px); border-top: 1px dashed rgba(13,84,125,.5); }
.dimension::before { content: ""; position: absolute; top: 33px; right: calc(100% + clamp(110px, 14vw, 260px) - 4px); width: 8px; height: 8px; border-radius: 50%; background: rgba(13,84,125,.55); }
.dimension__dot { position: absolute; z-index: 2; top: 27px; left: -9px; width: 17px; height: 17px; border: 3px solid var(--white); border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 2px var(--cyan); }
.dimension strong, .dimension small { display: block; }
.dimension strong { margin-bottom: 4px; color: var(--blue); font-family: "Future Sans"; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; }
.dimension small { font-size: .85rem; }
.dimension--mind { top: 76px; }
.dimension--faith { top: 212px; }
.dimension--faith strong { color: #16a984; }
.dimension--hands { top: 348px; }
.dimension--impact { top: 484px; }
.dimension--impact strong { color: var(--orange); }
.dimension--impact .dimension__dot { background: var(--orange); box-shadow: 0 0 0 2px var(--orange); }

.campus {
  position: relative;
  height: clamp(440px, 37vw, 590px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.campus__image, .campus__veil { position: absolute; inset: 0; }
.campus__image { background: url("assets/images/campus-panorama.webp") 50% 50% / cover no-repeat; }
.campus__veil { background: linear-gradient(0deg, rgba(2,11,19,.86) 0%, rgba(2,11,19,.05) 44%, rgba(2,11,19,.2) 100%); }
.campus__inner { position: relative; z-index: 2; height: 100%; padding-block: 35px; }
.campus .section-label { color: var(--white); }
.campus__verbs { position: absolute; top: 40%; left: 0; right: 0; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.66); font-family: "Future Sans"; font-size: clamp(4.5rem, 9.5vw, 9.5rem); font-weight: 700; letter-spacing: -.06em; line-height: 1; text-transform: uppercase; }
.campus__statement { position: absolute; right: 0; bottom: 27px; left: 0; margin: 0; text-align: center; font-family: "Future Sans"; font-size: clamp(1.05rem, 1.6vw, 1.5rem); line-height: 1.25; }

.pathway { position: relative; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.pathway__top { position: absolute; z-index: 3; top: 43px; left: 50%; transform: translateX(-50%); }
.pathway__top h2 { margin: 0; font-size: clamp(3.2rem, 5.2vw, 5.5rem); line-height: .94; letter-spacing: -.035em; text-transform: uppercase; }
.pathway__desktop { position: relative; min-height: 540px; aspect-ratio: 3 / 1; background: url("assets/images/learning-pathway.webp") 50% 50% / cover no-repeat; }
.pathway__desktop::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,11,19,.88), transparent 58%); }
.pathway__flow { position: absolute; z-index: 2; right: 8%; bottom: 154px; left: 8%; height: 3px; background: linear-gradient(90deg, var(--orange), var(--cyan), var(--blue)); box-shadow: 0 0 18px rgba(38,212,208,.55); }
.pathway__steps { position: absolute; z-index: 3; right: 0; bottom: 42px; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.path-step { position: relative; text-align: center; }
.path-step::before { content: ""; position: absolute; top: -55px; left: 50%; width: 18px; height: 18px; border: 4px solid var(--navy); border-radius: 50%; background: currentColor; box-shadow: 0 0 0 2px currentColor, 0 0 24px currentColor; transform: translateX(-50%); }
.path-step span { display: none; }
.path-step h3 { margin-bottom: 6px; color: var(--orange); font-size: 1.3rem; letter-spacing: .04em; text-transform: uppercase; }
.path-step p { max-width: 280px; margin: 0 auto; color: rgba(255,255,255,.78); font-size: .88rem; }
.path-step--engineer { color: var(--cyan); }
.path-step--engineer h3 { color: var(--cyan); }
.path-step--create { color: var(--blue); }
.path-step--create h3 { color: #38a9f0; }
.pathway__mobile { display: none; }

.character {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.character__image, .character__veil { position: absolute; inset: 0; }
.character__image { background: url("assets/images/character-sunset.webp") 50% 50% / cover no-repeat; }
.character__veil { background: linear-gradient(90deg, rgba(2,11,19,.1) 0%, rgba(2,11,19,.05) 38%, rgba(2,11,19,.83) 66%, rgba(2,11,19,.98) 100%); }
.character__inner { position: relative; z-index: 2; min-height: inherit; display: flex; align-items: center; justify-content: flex-end; padding-block: clamp(76px, 7vw, 112px); }
.character__copy { width: 55%; }
.character h2 { margin-bottom: 34px; font-size: clamp(2.9rem, 4.8vw, 5.2rem); line-height: .96; letter-spacing: -.035em; text-transform: uppercase; }
.character h2 em { color: var(--orange); font-style: normal; }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.values span { color: rgba(255,255,255,.83); font-family: "Future Sans"; font-size: .86rem; }
.values i { width: 25px; height: 3px; display: block; margin-bottom: 14px; background: var(--cyan); }
.values span:nth-child(2) i { background: #27c0a9; }
.values span:nth-child(3) i { background: var(--orange); }
.values span:nth-child(4) i { background: #a6c6dc; }

.admissions {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.admissions__image, .admissions__veil { position: absolute; inset: 0; }
.admissions__image { background: url("assets/images/campus-panorama.webp") 50% 44% / cover no-repeat; filter: saturate(.85); }
.admissions__veil { background: linear-gradient(90deg, rgba(2,11,19,.9), rgba(2,11,19,.5), rgba(2,11,19,.78)), linear-gradient(0deg, rgba(2,11,19,.88), transparent); }
.admissions__inner { position: relative; z-index: 2; min-height: inherit; display: grid; grid-template-columns: .85fr 1.25fr; grid-template-rows: 1fr auto; align-items: center; gap: 10px 60px; padding-block: 58px 44px; }
.admissions h2 { margin: 0; font-size: clamp(3rem, 5vw, 5.5rem); line-height: .94; letter-spacing: -.04em; text-transform: uppercase; }
.years { display: grid; grid-template-columns: 1fr 90px 1fr; align-items: center; margin: 0; padding: 0; list-style: none; }
.year strong, .year span { display: block; text-transform: uppercase; }
.year strong { color: var(--cyan); font-family: "Future Sans"; font-size: clamp(4.2rem, 7vw, 7.4rem); line-height: .9; letter-spacing: -.035em; }
.year span { margin-top: 8px; font-size: .76rem; font-weight: 700; letter-spacing: .08em; }
.year--2028 strong { color: var(--orange); }
.year-line { height: 3px; background: linear-gradient(90deg, var(--cyan), var(--orange)); }
.year-line i { width: 14px; height: 14px; display: block; margin: -6px auto 0; border: 3px solid var(--white); border-radius: 50%; background: var(--orange); box-shadow: 0 0 18px var(--orange); }
.admissions__button { grid-column: 2; justify-self: start; margin-top: 6px; }

.site-footer { color: rgba(255,255,255,.66); background: #020b13; border-top: 1px solid rgba(255,255,255,.08); }
.footer__grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 70px; padding-block: 60px 48px; }
.brand--footer { width: 250px; }
.footer__brand p { display: flex; align-items: center; gap: 10px; margin: 18px 0 0; font-size: .75rem; }
.footer__brand p i { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }
.footer__grid nav { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer__grid nav strong { margin-bottom: 5px; color: var(--white); font-family: "Future Sans"; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.footer__grid nav a, .footer__grid nav button { padding: 0; color: rgba(255,255,255,.58); background: none; border: 0; font-size: .76rem; text-decoration: none; cursor: pointer; }
.footer__grid nav a:hover, .footer__grid nav button:hover { color: var(--orange); }
.footer__bottom { min-height: 64px; display: flex; align-items: center; gap: 28px; padding-block: 18px; border-top: 1px solid rgba(255,255,255,.08); font-size: .67rem; }
.footer__bottom span:first-child { margin-right: auto; }
.footer__bottom a { color: var(--white); font-weight: 700; text-decoration-color: rgba(255,135,13,.7); text-underline-offset: 3px; }
.footer__bottom a:hover, .footer__bottom a:focus-visible { color: var(--orange); }

.interest-dialog { width: min(700px, calc(100% - 28px)); max-height: calc(100dvh - 28px); padding: 0; overflow: auto; background: transparent; border: 0; border-radius: 12px; box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.interest-dialog::backdrop { background: rgba(1,8,14,.8); backdrop-filter: blur(7px); }
.interest-dialog__panel { position: relative; padding: clamp(28px, 5vw, 52px); background: var(--white); }
.interest-dialog h2 { margin-bottom: 12px; color: var(--ink); font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: .95; letter-spacing: -.04em; }
.interest-dialog__panel > p:not(.section-label) { color: var(--muted); }
.section-label--dark { color: var(--blue); }
.dialog-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; display: grid; place-items: center; color: var(--ink); background: #f1f4f5; border: 1px solid #d7dee2; border-radius: 50%; font-size: 1.5rem; cursor: pointer; }
.interest-form { display: grid; gap: 15px; margin-top: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.interest-form label { display: grid; gap: 7px; color: var(--ink); font-size: .78rem; font-weight: 700; }
.interest-form label > span { color: var(--muted); font-weight: 400; }
.interest-form input, .interest-form select, .interest-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #f7f8f8; border: 1px solid #ced8dd; border-radius: 4px; }
.interest-form textarea { resize: vertical; }
.form-status { margin: 0; color: #087c73; font-size: .75rem; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.no-js .reveal { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --shell: min(calc(100% - 28px), calc(50% + 520px)); }
  .site-header { grid-template-columns: 220px 1fr auto; gap: 24px; }
  .site-header.is-scrolled { padding-inline: 14px; }
  .brand { width: 205px; }
  .site-nav { gap: 22px; }
  .dimensions { height: 660px; }
  .dimensions h2 { width: 38%; font-size: clamp(3rem, 6.2vw, 4.5rem); }
  .dimension { width: 225px; }
  .dimension--mind { top: 58px; }
  .dimension--faith { top: 184px; }
  .dimension--hands { top: 310px; }
  .dimension--impact { top: 436px; }
  .footer__grid { gap: 38px; }
}

@media (max-width: 860px) {
  :root { --shell: calc(100% - 24px); }
  .announcement { height: 34px; gap: 9px; padding-inline: 10px; font-size: .57rem; letter-spacing: .12em; }
  .site-header, .site-header.is-scrolled { top: 34px; width: 100%; min-height: 76px; grid-template-columns: 1fr auto; gap: 16px; padding-inline: 12px; transform: none; left: 0; }
  .site-header.is-scrolled { top: 0; }
  .brand { width: 190px; }
  .header-cta { display: none; }
  .menu-toggle { position: relative; z-index: 4; width: 46px; height: 46px; display: grid; place-content: center; gap: 5px; padding: 0; color: var(--white); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; cursor: pointer; }
  .menu-toggle i { width: 20px; height: 2px; display: block; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; z-index: 3; top: 0; right: 0; width: min(82vw, 360px); height: 100dvh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 26px; padding: 90px 42px; background: rgba(2,14,24,.98); border-left: 1px solid rgba(255,255,255,.12); box-shadow: -20px 0 60px rgba(0,0,0,.35); transform: translateX(105%); transition: transform .28s ease; }
  .site-nav.is-open { transform: none; }
  .site-nav a { font-size: 1rem; }
  .hero { min-height: 890px; }
  .hero__image { background-position: 62% 50%; }
  .hero__shade { background: linear-gradient(90deg, rgba(2,11,19,.97) 0%, rgba(2,11,19,.81) 49%, rgba(2,11,19,.22) 100%), linear-gradient(0deg, rgba(2,11,19,.72), transparent 50%); }
  .hero__content { align-items: flex-end; padding-top: 120px; padding-bottom: 92px; }
  .hero__copy { width: min(580px, 78vw); padding: 0; }
  .hero h1 { font-size: clamp(3.3rem, 9vw, 5rem); }
  .dimensions { height: 770px; }
  .dimensions__portrait { background-size: auto 82%; background-position: 51% 48%; }
  .dimensions h2 { top: 55px; width: 48%; font-size: clamp(3rem, 7vw, 4.25rem); }
  .dimension { right: 0; width: clamp(190px, 28vw, 220px); }
  .dimension::before, .dimension::after { display: none; }
  .dimension { padding-left: 49px; }
  .dimension__dot { left: 18px; }
  .dimension--mind { top: 58px; }
  .dimension--faith { top: 190px; }
  .dimension--hands { top: 482px; right: auto; left: 0; }
  .dimension--impact { top: 482px; }
  .campus { height: 550px; }
  .campus__verbs { font-size: clamp(4rem, 12vw, 7rem); }
  .pathway__top h2 { font-size: clamp(3rem, 8vw, 4.5rem); }
  .pathway__desktop { min-height: 500px; aspect-ratio: auto; }
  .pathway__steps { gap: 16px; }
  .character { min-height: 720px; }
  .character__image { background-position: 38% 50%; }
  .character__veil { background: linear-gradient(90deg, rgba(2,11,19,.12), rgba(2,11,19,.5) 50%, rgba(2,11,19,.96) 82%); }
  .character__copy { width: 62%; }
  .admissions__inner { grid-template-columns: 1fr; grid-template-rows: auto; gap: 34px; }
  .admissions__button { grid-column: 1; }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer__grid nav:last-child { display: none; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 24px); }
  html { scroll-padding-top: 74px; }
  .announcement { justify-content: flex-start; overflow: hidden; white-space: nowrap; }
  .announcement span:last-child { display: none; }
  .site-header, .site-header.is-scrolled { padding-inline: 12px; }
  .brand { width: 174px; }
  .hero { min-height: 820px; }
  .hero__image { background-position: 68% 50%; }
  .hero__shade { background: linear-gradient(90deg, rgba(2,11,19,.95) 0%, rgba(2,11,19,.78) 55%, rgba(2,11,19,.2) 100%), linear-gradient(0deg, rgba(2,11,19,.88), transparent 67%); }
  .hero__content { padding-bottom: 70px; }
  .hero__copy { width: 100%; }
  .kicker { margin-bottom: 13px; font-size: .59rem; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(2.85rem, 13vw, 4.15rem); line-height: .91; }
  .hero__intro { max-width: 90%; font-size: .93rem; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 11px; width: min(310px, 100%); }
  .hero__actions .button, .hero__actions .text-button { width: 100%; justify-content: space-between; }
  .text-button { padding: 14px 2px; }
  .dimensions { height: auto; min-height: 900px; padding: 42px 0 32px; }
  .dimensions__portrait { inset: 145px 0 220px; background-size: auto 100%; background-position: 54% 50%; }
  .dimensions__inner { min-height: 826px; display: grid; grid-template-columns: 1fr 1fr; align-content: space-between; gap: 14px; padding-top: 0; }
  .dimensions h2 { position: relative; top: auto; left: auto; grid-column: 1 / -1; margin-bottom: 570px; font-size: clamp(2.75rem, 13vw, 4rem); }
  .dimension { position: relative; top: auto; right: auto; bottom: auto; left: auto; width: 100%; min-width: 0; min-height: 96px; padding: 17px 14px 15px 39px; background: rgba(255,255,255,.86); border: 1px solid rgba(10,52,79,.12); backdrop-filter: blur(7px); }
  .dimension__dot { top: 21px; left: 15px; width: 12px; height: 12px; border-width: 2px; }
  .dimension strong { font-size: .78rem; }
  .dimension small { font-size: .75rem; }

  .campus { height: 610px; }
  .campus__image { background-position: 47% 50%; }
  .campus__veil { background: linear-gradient(0deg, rgba(2,11,19,.94), rgba(2,11,19,.15) 68%, rgba(2,11,19,.4)); }
  .campus__inner { padding-block: 28px; }
  .campus__verbs { top: 28%; height: 45%; flex-direction: column; align-items: flex-start; justify-content: space-between; font-size: clamp(4.2rem, 21vw, 6.4rem); }
  .campus__verbs span:nth-child(2) { align-self: center; }
  .campus__verbs span:nth-child(3) { align-self: flex-end; }
  .campus__statement { bottom: 29px; font-size: 1rem; }

  .pathway { padding: 44px 0 0; }
  .pathway__top { position: relative; top: auto; left: auto; width: var(--shell); margin: 0 auto 30px; transform: none; }
  .pathway__top h2 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .pathway__desktop { display: none; }
  .pathway__mobile { display: grid; }
  .mobile-path { position: relative; min-height: 390px; display: flex; align-items: flex-end; padding: 25px 18px; background-image: linear-gradient(0deg, rgba(2,11,19,.94), transparent 70%), url("assets/images/learning-pathway.webp"); background-repeat: no-repeat; background-size: 100% 100%, auto 100%; }
  .mobile-path--cultivate { background-position: center, left center; }
  .mobile-path--engineer { background-position: center, center; }
  .mobile-path--create { background-position: center, right center; }
  .mobile-path > div { width: 100%; padding: 20px; background: rgba(2,17,29,.68); border: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(9px); }
  .mobile-path span { color: rgba(255,255,255,.48); font-size: .65rem; letter-spacing: .16em; }
  .mobile-path h3 { margin: 6px 0 4px; color: var(--orange); font-size: 1.6rem; text-transform: uppercase; }
  .mobile-path p { margin: 0; color: rgba(255,255,255,.76); font-size: .84rem; }
  .mobile-path--engineer h3 { color: var(--cyan); }
  .mobile-path--create h3 { color: #38a9f0; }

  .character { min-height: 820px; }
  .character__image { background-position: 25% 50%; }
  .character__veil { background: linear-gradient(0deg, rgba(2,11,19,.98) 0%, rgba(2,11,19,.75) 42%, rgba(2,11,19,.03) 78%); }
  .character__inner { align-items: flex-end; padding-block: 84px 64px; }
  .character__copy { width: 100%; }
  .character h2 { font-size: clamp(2.55rem, 11vw, 3.7rem); }
  .values { grid-template-columns: 1fr 1fr; gap: 22px; }

  .admissions { min-height: 650px; }
  .admissions__image { background-position: 40% 50%; }
  .admissions__veil { background: linear-gradient(0deg, rgba(2,11,19,.98), rgba(2,11,19,.45) 70%, rgba(2,11,19,.72)); }
  .admissions__inner { align-content: center; padding-block: 55px; }
  .admissions h2 { font-size: clamp(3rem, 14vw, 4.6rem); }
  .years { grid-template-columns: 1fr 36px 1fr; }
  .year strong { font-size: clamp(3.4rem, 15vw, 5.2rem); }
  .year span { font-size: .62rem; }
  .admissions__button { width: 100%; justify-content: space-between; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; padding-block: 45px 34px; }
  .footer__brand { grid-column: 1 / -1; }
  .brand--footer { width: 220px; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
  .footer__bottom span:first-child { margin-right: 0; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 2.75rem; }
  .dimensions h2 { font-size: 2.7rem; }
  .dimension { padding-right: 9px; }
  .dimension small { font-size: .7rem; }
  .years { grid-template-columns: 1fr 22px 1fr; }
  .year strong { font-size: 3.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
