:root {
	--purple: #430863;
	--purple-deep: #2b0844;
	--violet: #aa45fc;
	--gold: #fcbc45;
	--ink: #1a1a1a;
	--charcoal: #252425;
	--cream: #fbf9f5;
	--white: #fff;
	--shell: 1180px;
	--shadow: 0 24px 70px rgba(24, 3, 37, 0.18);
	--radius: 24px;
}

* {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	overflow-x: hidden;
	background: var(--cream);
	color: var(--charcoal);
	font-family: Heebo, "Segoe UI", sans-serif;
	font-size: 18px;
	line-height: 1.65;
}

body,
button,
a {
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
}

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

h1,
h2,
h3 {
	font-family: Poppins, "Arial Black", sans-serif;
	line-height: 1.08;
}

h2 {
	font-size: clamp(2.25rem, 5vw, 4.6rem);
	letter-spacing: -0.045em;
}

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

.section {
	position: relative;
	padding: clamp(88px, 10vw, 150px) 0;
}

.skip-link {
	position: fixed;
	z-index: 1000;
	top: 12px;
	left: 12px;
	padding: 12px 18px;
	transform: translateY(-150%);
	background: var(--gold);
	color: var(--ink);
	font-weight: 800;
	text-decoration: none;
	transition: transform 180ms ease;
}

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

.icon-defs {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.site-header {
	position: absolute;
	z-index: 20;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
	color: var(--white);
}

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

.brand {
	display: inline-flex;
	align-items: center;
	max-width: min(280px, 58vw);
	text-decoration: none;
}

.brand-logo {
	display: block;
	width: auto;
	height: 58px;
	object-fit: contain;
	filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.main-nav {
	display: flex;
	align-items: center;
	gap: clamp(18px, 3vw, 36px);
	font-family: Poppins, sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.main-nav a {
	text-decoration: none;
}

.main-nav a:not(.nav-cta) {
	position: relative;
}

.main-nav a:not(.nav-cta)::after {
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 2px;
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	background: var(--gold);
	transition: transform 180ms ease;
}

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

.nav-cta {
	padding: 12px 20px;
	border: 1px solid rgba(252, 188, 69, 0.75);
	border-radius: 999px;
	color: var(--gold);
	transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
	background: var(--gold);
	color: var(--ink);
}

.hero {
	position: relative;
	display: grid;
	min-height: 900px;
	overflow: hidden;
	align-items: center;
	padding: 146px 0 105px;
	background-color: #11021d;
	background-image:
		linear-gradient(90deg, rgba(8, 0, 16, 0.98) 0%, rgba(20, 1, 36, 0.78) 46%, rgba(39, 3, 64, 0.22) 100%),
		linear-gradient(0deg, #160325 0%, transparent 24%),
		url("assets/hero-bg.png");
	background-position: center;
	background-size: cover;
	color: var(--white);
	isolation: isolate;
}

.hero::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background-image:
		radial-gradient(circle at 18% 75%, rgba(170, 69, 252, 0.17), transparent 26%),
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: auto, 54px 54px, 54px 54px;
	content: "";
	-webkit-mask-image: linear-gradient(to bottom, transparent, #000 28%, #000 75%, transparent);
	mask-image: linear-gradient(to bottom, transparent, #000 28%, #000 75%, transparent);
}

.hero-glow {
	position: absolute;
	z-index: -1;
	top: -18%;
	right: -8%;
	width: min(58vw, 800px);
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(170, 69, 252, 0.17);
	filter: blur(90px);
}

.hero-grid {
	display: grid;
	align-items: center;
	gap: 40px;
	grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
}

.hero-copy {
	position: relative;
	z-index: 2;
	max-width: 660px;
}

/*
 * Progressive enhancement guard: hero content is visible unless the current
 * JavaScript has positively confirmed GSAP and started its intro. The
 * !important declarations also protect against a stale cached app.js leaving
 * GSAP autoAlpha inline styles behind.
 */
html:not(.js-animation-ready) .site-header,
html:not(.js-animation-ready) .hero-copy,
html:not(.js-animation-ready) .hero-copy > *,
html:not(.js-animation-ready) .hero-actions .button,
html:not(.js-animation-ready) .hero-facts li,
html:not(.js-animation-ready) .hero-visual,
html:not(.js-animation-ready) .hero-logo {
	opacity: 1 !important;
	visibility: visible !important;
}

.eyebrow {
	margin-bottom: 18px;
	color: var(--gold);
	font-family: Poppins, sans-serif;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.eyebrow-dark {
	color: var(--purple);
}

.hero h1 {
	max-width: 760px;
	margin-bottom: 26px;
	font-size: clamp(3.4rem, 6.6vw, 6.45rem);
	font-weight: 900;
	letter-spacing: -0.065em;
	line-height: 0.93;
	text-transform: uppercase;
}

.hero h1 em {
	color: var(--gold);
	font-style: normal;
}

.hero-lede {
	max-width: 640px;
	margin-bottom: 34px;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	line-height: 1.7;
}

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

.button {
	display: inline-flex;
	min-height: 58px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 25px;
	border: 1px solid transparent;
	border-radius: 3px;
	font-family: "Noto Serif", Georgia, serif;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-gold {
	background: var(--gold);
	color: var(--ink);
	box-shadow: 0 12px 34px rgba(252, 188, 69, 0.2);
}

.button-gold strong {
	font-family: Poppins, sans-serif;
	font-size: 1.02rem;
}

.button-outline {
	border-color: rgba(255, 255, 255, 0.42);
	background: rgba(255, 255, 255, 0.06);
	color: var(--white);
	backdrop-filter: blur(8px);
}

.button-light {
	background: var(--white);
	color: var(--purple-deep);
}

.hero-facts {
	display: flex;
	margin: 42px 0 0;
	padding: 0;
	list-style: none;
}

.hero-facts li {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 0 22px;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts li:first-child {
	padding-left: 0;
	border-left: 0;
}

.hero-facts strong {
	color: var(--white);
	font-family: Poppins, sans-serif;
	font-size: 0.9rem;
	text-transform: uppercase;
}

.hero-facts span {
	color: rgba(255, 255, 255, 0.57);
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-visual {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
}

.hero-visual::before {
	position: absolute;
	z-index: -1;
	inset: 16% 12%;
	border-radius: 50%;
	background: rgba(170, 69, 252, 0.18);
	box-shadow: 0 0 100px rgba(170, 69, 252, 0.35);
	content: "";
	filter: blur(24px);
}

.hero-logo {
	position: relative;
	z-index: 2;
	width: min(100%, 620px);
	height: auto;
	aspect-ratio: 1220 / 730;
	background: transparent;
	filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.52));
	object-fit: contain;
	object-position: center;
}

.orbit {
	position: absolute;
	z-index: 1;
	inset: 7% 18%;
	border: 1px solid rgba(252, 188, 69, 0.22);
	border-radius: 50%;
	transform: rotate(-14deg);
}

.orbit::before {
	position: absolute;
	top: 13%;
	right: 6%;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 18px var(--gold);
	content: "";
}

.orbit-two {
	inset: 16% 10%;
	border-color: rgba(170, 69, 252, 0.35);
	transform: rotate(17deg);
}

.orbit-two::before {
	top: auto;
	right: auto;
	bottom: 8%;
	left: 12%;
	width: 7px;
	height: 7px;
	background: var(--violet);
	box-shadow: 0 0 18px var(--violet);
}

.scroll-cue {
	position: absolute;
	z-index: 3;
	bottom: 26px;
	left: 50%;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-decoration: none;
	text-transform: uppercase;
}

.scroll-cue svg {
	width: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
}

.mission {
	overflow: hidden;
	background: var(--gold);
}

.mission::before,
.mission::after {
	position: absolute;
	border: 1px solid rgba(67, 8, 99, 0.18);
	border-radius: 50%;
	content: "";
}

.mission::before {
	top: -150px;
	right: -100px;
	width: 440px;
	height: 440px;
}

.mission::after {
	right: 40px;
	bottom: -170px;
	width: 310px;
	height: 310px;
}

.mission-grid {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: center;
	gap: 44px;
	grid-template-columns: 90px minmax(0, 1fr) minmax(260px, 0.58fr);
}

.quote-mark {
	align-self: start;
	color: var(--purple);
	font-family: Georgia, serif;
	font-size: 10rem;
	font-weight: 700;
	line-height: 0.66;
	opacity: 0.22;
}

.mission-copy h2 {
	max-width: 800px;
	margin-bottom: 28px;
	color: var(--purple-deep);
	font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.mission-copy blockquote {
	margin: 0;
}

.mission-copy blockquote p {
	margin-bottom: 0;
	color: rgba(26, 26, 26, 0.78);
	font-family: "Noto Serif", Georgia, serif;
	font-size: clamp(1rem, 1.7vw, 1.22rem);
	line-height: 1.7;
}

.mission-values {
	display: grid;
	gap: 1px;
	overflow: hidden;
	border: 1px solid rgba(67, 8, 99, 0.14);
	border-radius: var(--radius);
	background: rgba(67, 8, 99, 0.14);
	box-shadow: 0 18px 50px rgba(67, 8, 99, 0.1);
}

.mission-values div {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 22px;
	background: rgba(255, 255, 255, 0.44);
	color: var(--purple-deep);
}

.mission-values strong {
	font-family: Poppins, sans-serif;
	font-size: 0.93rem;
	text-transform: uppercase;
}

.value-icon {
	display: grid;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	place-items: center;
	border-radius: 50%;
	background: var(--purple-deep);
	color: var(--gold);
	font-size: 1.2rem;
}

.curriculum {
	overflow: hidden;
	background:
		radial-gradient(circle at 88% 9%, rgba(170, 69, 252, 0.19), transparent 20%),
		radial-gradient(circle at 6% 88%, rgba(252, 188, 69, 0.08), transparent 22%),
		var(--purple-deep);
	color: var(--white);
}

.section-heading {
	max-width: 850px;
	margin: 0 auto clamp(55px, 7vw, 90px);
	text-align: center;
}

.section-heading h2 {
	margin-bottom: 20px;
}

.section-heading > p:last-child {
	max-width: 660px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.67);
}

.curriculum-grid {
	display: grid;
	margin: 0;
	padding: 0;
	counter-reset: journey;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	list-style: none;
}

.journey-card {
	position: relative;
	display: flex;
	min-height: 360px;
	overflow: hidden;
	flex-direction: column;
	padding: 32px 27px 28px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
		rgba(18, 2, 30, 0.38);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.journey-card:hover {
	transform: translateY(-7px);
	border-color: rgba(252, 188, 69, 0.62);
	background-color: rgba(67, 8, 99, 0.68);
}

.journey-card::after {
	position: absolute;
	right: -50px;
	bottom: -70px;
	width: 160px;
	height: 160px;
	border: 1px solid rgba(170, 69, 252, 0.2);
	border-radius: 50%;
	content: "";
}

.step-number {
	position: absolute;
	top: 20px;
	right: 22px;
	color: rgba(255, 255, 255, 0.13);
	font-family: Poppins, sans-serif;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
}

.journey-icon {
	width: 64px;
	height: 64px;
	margin-bottom: 28px;
	color: var(--white);
}

.journey-card h3 {
	min-height: 2.2em;
	margin-bottom: 14px;
	color: var(--gold);
	font-size: 1.08rem;
	letter-spacing: 0.025em;
	text-transform: uppercase;
}

.journey-card p {
	position: relative;
	z-index: 1;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.92rem;
	line-height: 1.6;
}

.experience {
	overflow: hidden;
	background: var(--cream);
}

.experience::before {
	position: absolute;
	top: 12%;
	left: -110px;
	width: 270px;
	height: 270px;
	border: 34px solid rgba(170, 69, 252, 0.06);
	border-radius: 50%;
	content: "";
}

.experience-grid {
	display: grid;
	align-items: center;
	gap: 38px;
	grid-template-columns: minmax(0, 1fr) 180px minmax(280px, 0.72fr);
}

.experience-copy h2 {
	margin-bottom: 24px;
	color: var(--purple-deep);
	font-size: clamp(2.7rem, 5.6vw, 5.6rem);
	text-transform: uppercase;
}

.experience-copy h2 span {
	display: block;
	color: var(--purple);
	-webkit-text-stroke: 1px var(--purple);
}

.experience-copy > p:last-child {
	max-width: 700px;
	margin-bottom: 0;
	color: #5c555e;
	font-size: 1.08rem;
}

.course-badge {
	display: grid;
	width: 180px;
	height: 180px;
	align-content: center;
	justify-content: center;
	border: 5px solid var(--gold);
	border-radius: 50%;
	background: var(--purple-deep);
	box-shadow: 0 0 0 9px rgba(67, 8, 99, 0.08), var(--shadow);
	color: var(--white);
	text-align: center;
}

.course-badge strong {
	color: var(--gold);
	font-family: Poppins, sans-serif;
	font-size: 4.2rem;
	line-height: 0.78;
}

.course-badge span {
	margin-top: 10px;
	font-family: Poppins, sans-serif;
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	line-height: 1.2;
	text-transform: uppercase;
}

.graduation-card {
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 28px;
	border-left: 5px solid var(--gold);
	border-radius: 4px 18px 18px 4px;
	background: var(--purple);
	box-shadow: var(--shadow);
	color: var(--white);
}

.cap-icon {
	width: 74px;
	flex: 0 0 74px;
	color: var(--white);
}

.graduation-card h3 {
	margin-bottom: 8px;
	color: var(--gold);
	font-size: 1.15rem;
	text-transform: uppercase;
}

.graduation-card p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.83rem;
	line-height: 1.5;
	text-transform: uppercase;
}

.enrollment {
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(170, 69, 252, 0.16), transparent 40%),
		var(--ink);
	color: var(--white);
}

.enrollment::after {
	position: absolute;
	z-index: 0;
	top: -310px;
	right: -260px;
	width: 620px;
	height: 620px;
	border: 1px solid rgba(252, 188, 69, 0.18);
	border-radius: 50%;
	content: "";
}

.enrollment .shell {
	position: relative;
	z-index: 1;
}

.enrollment-top {
	display: grid;
	align-items: center;
	margin-bottom: 60px;
	gap: 60px;
	grid-template-columns: minmax(0, 1fr) 240px;
}

.enrollment-top h2 {
	max-width: 900px;
	margin-bottom: 22px;
}

.enrollment-top h2 span {
	display: block;
	color: var(--gold);
	font-size: 0.46em;
	letter-spacing: -0.015em;
	text-transform: uppercase;
}

.enrollment-top > div:first-child > p:last-child {
	max-width: 760px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.67);
}

.free-burst {
	display: grid;
	width: 220px;
	height: 220px;
	place-content: center;
	background: var(--gold);
	color: var(--ink);
	text-align: center;
	text-transform: uppercase;
	clip-path: polygon(50% 0%, 59% 10%, 70% 4%, 76% 17%, 90% 15%, 90% 30%, 100% 38%, 92% 50%, 100% 61%, 88% 69%, 89% 84%, 74% 84%, 68% 97%, 56% 89%, 46% 100%, 37% 89%, 24% 96%, 18% 83%, 3% 82%, 8% 67%, 0% 57%, 10% 47%, 2% 35%, 15% 28%, 13% 14%, 28% 14%, 35% 2%);
	filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.28));
	transform: rotate(4deg);
}

.free-burst span,
.free-burst strong {
	display: block;
	font-family: Poppins, sans-serif;
	font-weight: 900;
	line-height: 1.02;
}

.free-burst span {
	font-size: 1.4rem;
}

.free-burst strong {
	font-size: 1.85rem;
}

.detail-grid {
	display: grid;
	margin-bottom: 22px;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card {
	display: flex;
	min-height: 140px;
	align-items: center;
	gap: 18px;
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.055);
}

.detail-symbol {
	display: grid;
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	place-items: center;
	border: 2px solid var(--violet);
	border-radius: 50%;
	color: var(--gold);
	font-family: Poppins, sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
}

.detail-symbol.calendar {
	border-radius: 9px;
	font-size: 0.95rem;
}

.detail-card h3 {
	margin-bottom: 7px;
	color: var(--white);
	font-size: 0.96rem;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.detail-card p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.84rem;
	line-height: 1.45;
}

.contact-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
	padding: 34px 38px;
	border-radius: 16px;
	background: var(--purple);
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.contact-copy p {
	margin-bottom: 0;
	color: var(--gold);
	font-family: Poppins, sans-serif;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.contact-copy a {
	display: block;
	font-family: Poppins, sans-serif;
	font-size: clamp(2rem, 5vw, 4.1rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.05;
	text-decoration: none;
}

.contact-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.site-footer {
	padding: 38px 0;
	background: #100119;
	color: rgba(255, 255, 255, 0.62);
}

.footer-inner {
	display: grid;
	align-items: center;
	gap: 26px;
	grid-template-columns: 160px minmax(0, 1fr) auto;
}

.footer-logo {
	width: min(100%, 156px);
	height: auto;
	aspect-ratio: 1220 / 730;
	background: transparent;
	object-fit: contain;
	object-position: center;
	opacity: 1 !important;
	visibility: visible !important;
}

.footer-inner p {
	margin-bottom: 0;
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.footer-tagline {
	color: var(--gold);
	font-family: Poppins, sans-serif;
	font-size: 0.89rem !important;
	font-weight: 800;
}

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

.footer-home {
	font-family: "Noto Serif", Georgia, serif;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.footer-home span {
	color: var(--gold);
	font-size: 1.15rem;
}

:focus-visible {
	outline: 3px solid var(--gold);
	outline-offset: 4px;
}

@media (max-width: 1080px) {
	.hero {
		min-height: auto;
		padding-top: 135px;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(330px, 0.75fr);
	}

	.hero h1 {
		font-size: clamp(3.2rem, 7.4vw, 5.4rem);
	}

	.mission-grid {
		grid-template-columns: 60px minmax(0, 1fr);
	}

	.mission-values {
		grid-column: 2;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.mission-values div {
		flex-direction: column;
		align-items: flex-start;
	}

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

	.journey-card {
		min-height: 320px;
	}

	.experience-grid {
		grid-template-columns: minmax(0, 1fr) 180px;
	}

	.graduation-card {
		grid-column: 1 / -1;
	}

	.contact-panel {
		align-items: flex-start;
		flex-direction: column;
	}

	.contact-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 780px) {
	body {
		font-size: 17px;
	}

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

	.section {
		padding: 82px 0;
	}

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

	.brand-logo {
		height: 48px;
	}

	.main-nav a:not(.nav-cta) {
		display: none;
	}

	.nav-cta {
		padding: 10px 16px;
	}

	.hero {
		min-height: 940px;
		align-items: start;
		padding: 122px 0 95px;
		background-image:
			linear-gradient(180deg, rgba(13, 0, 25, 0.7) 0%, rgba(17, 0, 30, 0.88) 47%, #160325 89%),
			url("assets/hero-bg.png");
		background-position: 64% center;
	}

	.hero-grid {
		display: flex;
		flex-direction: column-reverse;
		gap: 10px;
	}

	.hero-visual {
		width: min(100%, 460px);
		margin: -10px auto 14px;
	}

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

	.hero h1 {
		font-size: clamp(2.8rem, 14vw, 5rem);
	}

	.hero-lede {
		margin-inline: auto;
	}

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

	.hero-facts {
		max-width: 580px;
		margin-inline: auto;
	}

	.scroll-cue {
		display: none;
	}

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

	.quote-mark {
		height: 60px;
		font-size: 8rem;
	}

	.mission-values {
		grid-column: auto;
		grid-template-columns: 1fr;
	}

	.mission-values div {
		flex-direction: row;
		align-items: center;
	}

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

	.course-badge {
		width: 160px;
		height: 160px;
	}

	.graduation-card {
		grid-column: auto;
	}

	.enrollment-top {
		gap: 38px;
		grid-template-columns: 1fr;
	}

	.free-burst {
		width: 190px;
		height: 190px;
	}

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

	.detail-card {
		min-height: auto;
	}

	.contact-panel {
		padding: 28px 22px;
	}

	.contact-actions,
	.contact-actions .button {
		width: 100%;
	}

	.footer-inner {
		text-align: center;
		grid-template-columns: 1fr;
	}

	.footer-logo {
		margin-inline: auto;
	}
}

@media (max-width: 560px) {
	h2 {
		font-size: 2.35rem;
	}

	.hero {
		min-height: 900px;
	}

	.hero-visual {
		margin-bottom: 10px;
	}

	.hero h1 {
		margin-bottom: 20px;
		font-size: clamp(2.65rem, 14vw, 4rem);
	}

	.hero-lede {
		font-size: 0.95rem;
	}

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

	.hero-facts li {
		padding: 0 10px;
	}

	.hero-facts strong {
		font-size: 0.76rem;
	}

	.hero-facts span {
		font-size: 0.65rem;
	}

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

	.journey-card {
		min-height: auto;
	}

	.journey-card h3 {
		min-height: 0;
	}

	.graduation-card {
		align-items: flex-start;
		flex-direction: column;
	}

	.contact-copy a {
		font-size: clamp(1.8rem, 10vw, 3rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

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