/* ==========================================================================
   IISAUH THEME2026 — Main Stylesheet
   ========================================================================== */

:root {
	--navy: #0f2a4a;
	--navy-dark: #0a1e36;
	--navy-light: #1a3d6b;
	--teal: #00a896;
	--teal-dark: #008f7f;
	--teal-light: #02c4ae;
	--blue-accent: #3b82f6;
	--purple: #7c3aed;
	--orange: #f59e0b;
	--green: #10b981;
	--pink: #ec4899;
	--red: #ef4444;
	--yellow: #fbbf24;
	--white: #ffffff;
	--gray-50: #f8fafc;
	--gray-100: #f1f5f9;
	--gray-200: #e2e8f0;
	--gray-400: #94a3b8;
	--gray-600: #475569;
	--gray-800: #1e293b;
	--hero-bg: #e8f4f8;
	--font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-weight-title: 700;
	--font-weight-display: 800;
	--container-max: 1680px;
	--gutter: clamp(20px, 2.5vw, 56px);
	--header-nav-overlap: 12px;
	--radius: 12px;
	--radius-lg: 20px;
	--shadow: 0 4px 24px rgba(15, 42, 74, 0.08);
	--shadow-lg: 0 12px 40px rgba(15, 42, 74, 0.15);
	--transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
	scroll-behavior: smooth;
	overflow-x: clip;
	font-family: var(--font);
}

body {
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--gray-600);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
	max-width: 100%;
}

button,
input,
textarea,
select {
	font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: inherit;
	font-weight: var(--font-weight-title);
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }

ul { list-style: none; }

.container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	border-radius: 50px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--transition);
	white-space: nowrap;
}

.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-light); border-color: var(--navy-light); }

.btn--teal { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn--teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

.btn--outline { background: var(--white); color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--sm { padding: 8px 20px; font-size: 13px; }

/* Section titles */
.section-title {
	font-size: clamp(28px, 4vw, 38px);
	font-weight: var(--font-weight-display);
	line-height: 1.2;
	color: var(--navy);
	margin-bottom: 16px;
}

.section-title span { color: var(--teal); display: block; }

.section-title--white { color: var(--white); }
.section-title--white span { color: var(--teal-light); }

.section-tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--teal);
	margin-bottom: 12px;
}

.section-tag--yellow {
	background: var(--yellow);
	color: var(--navy-dark);
	padding: 6px 14px;
	border-radius: 4px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #ffffff;
	border-bottom: none;
	overflow-x: clip;
	overflow-y: visible;
}

.header__shell {
	overflow: visible;
}

.header__grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 10px var(--gutter) 12px;
}

.header__aside {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

/* Top row: contact + CTA (logo lives in left column) */
.header__top {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
	gap: 16px;
	padding: 0;
	position: relative;
}

.site-branding {
	flex: 0 0 auto;
	max-width: 72%;
	display: flex;
	align-items: center;
	padding-bottom: 0;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	transition: transform 0.3s ease;
}

.site-logo:hover {
	transform: translateY(-1px);
}

.site-logo__mark {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	transition: width 0.35s ease, height 0.35s ease;
	filter: drop-shadow(0 4px 10px rgba(15, 42, 74, 0.12));
}

.site-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.site-logo__line {
	display: block;
	text-transform: uppercase;
}

.site-logo__line--top {
	font-family: inherit;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--navy);
}

.site-logo__line--main {
	font-family: inherit;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: #7a8fa6;
	margin: 1px 0;
}

.site-logo__line--bottom {
	font-family: inherit;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.24em;
	color: var(--navy);
}

.custom-logo-link {
	display: flex;
	align-items: center;
}

.custom-logo-link img {
	max-height: 64px;
	width: auto;
}

/* Contact + CTA */
.header__utilities {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
	gap: 14px;
	flex: 1 1 auto;
	min-width: 0;
}

.header__contact-item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 0;
	font-size: 12px;
	font-weight: 600;
	color: #4a5568;
	white-space: nowrap;
	background: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	transition: color var(--transition);
}

.header__contact-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: auto;
	height: auto;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.header__contact-svg {
	display: block;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	filter: drop-shadow(0 1px 4px rgba(0, 168, 150, 0.22));
	transition: transform 0.25s ease, filter 0.25s ease;
}

.header__contact-item:hover {
	color: var(--navy);
}

.header__contact-item:hover .header__contact-svg {
	transform: scale(1.1);
	filter: drop-shadow(0 2px 8px rgba(0, 136, 204, 0.32));
}

.header__contact-item--email .header__contact-text {
	max-width: 220px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.btn--admissions {
	position: relative;
	overflow: hidden;
	padding: 9px 22px;
	font-size: 12px;
	font-weight: 700;
	color: var(--white);
	border: none;
	border-radius: 50px;
	background: linear-gradient(135deg, #00c19d 0%, #0088cc 50%, #004a99 100%);
	box-shadow: 0 6px 20px rgba(0, 74, 153, 0.28);
	transition: transform var(--transition), box-shadow var(--transition);
}

.btn--admissions::before {
	content: '';
	position: absolute;
	top: 0;
	left: -120%;
	width: 80%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	transform: skewX(-20deg);
	animation: admissionsShine 4s ease-in-out infinite;
}

@keyframes admissionsShine {
	0%, 70%, 100% { left: -120%; }
	85% { left: 140%; }
}

.btn--admissions:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 74, 153, 0.38);
}

/* Bottom row: full-bleed nav band */
.header__nav-row {
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: calc(-1 * var(--header-nav-overlap));
	position: relative;
	z-index: 6;
	overflow: visible;
}

@media (min-width: 1025px) {
	.header__shell {
		padding-left: max(var(--gutter), calc(50% - var(--container-max) / 2 + var(--gutter)));
		padding-right: 0;
	}

	.header__grid {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		grid-template-rows: auto auto;
		align-items: stretch;
		gap: 0;
		padding: 0;
	}

	.site-branding {
		grid-column: 1;
		grid-row: 1 / -1;
		align-self: center;
		max-width: none;
		padding: 14px 22px 14px 0;
		background: #ffffff;
		position: relative;
		z-index: 12;
	}

	.header__aside {
		grid-column: 2;
		grid-row: 1 / -1;
		display: grid;
		grid-template-rows: auto auto;
		min-width: 0;
	}

	.header__top {
		grid-row: 1;
		justify-content: flex-end;
		align-items: center;
		padding: 10px clamp(16px, 2vw, 40px) 14px 0;
		background: #ffffff;
		position: relative;
		z-index: 8;
	}

	.header__nav-row {
		grid-row: 2;
		padding-left: 0;
		display: grid;
		grid-template-rows: 1fr;
		transition: grid-template-rows 0.32s cubic-bezier(0.4, 0, 0.2, 1),
			margin-bottom 0.32s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.site-header.is-nav-hidden .header__nav-row {
		grid-template-rows: 0fr;
		margin-bottom: 0;
		pointer-events: none;
	}

	.header__nav-row-inner {
		display: flex;
		align-items: stretch;
		width: 100%;
		min-height: 0;
		overflow: visible;
		opacity: 1;
		transition: opacity 0.22s ease;
	}

	.site-header.is-nav-hidden .header__nav-row-inner {
		overflow: hidden;
		opacity: 0;
	}

	.site-header.is-nav-hidden .primary-navigation::before,
	.site-header.is-nav-hidden .primary-navigation::after {
		opacity: 0;
	}

	.site-header.is-scrolled .site-branding {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}

@media (min-width: 1025px) and (prefers-reduced-motion: reduce) {
	.header__nav-row,
	.header__nav-row-inner {
		transition: none;
	}
}

.header__nav-slot {
	flex: 1;
	min-width: 0;
	display: flex;
	overflow: visible;
}

.primary-navigation {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	min-height: 44px;
	min-width: 0;
	padding: 4px clamp(14px, 2vw, 32px) 4px 12px;
	background: linear-gradient(90deg, #1ec4b0 0%, #2d9fd4 48%, #2563ab 100%);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-right: none;
	border-top-left-radius: 22px;
	border-bottom-left-radius: 0;
	box-shadow: 0 6px 20px rgba(0, 74, 153, 0.22);
	overflow: visible;
	z-index: 10;
}

.primary-navigation::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: calc(-1 * var(--header-nav-overlap));
	height: var(--header-nav-overlap);
	background: linear-gradient(90deg, #1ec4b0 0%, #2d9fd4 48%, #2563ab 100%);
	border-bottom-left-radius: 0;
	pointer-events: none;
	z-index: 0;
	transition: opacity 0.2s ease;
}

.primary-navigation::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 42%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
	transform: translateX(-120%) skewX(-16deg);
	pointer-events: none;
	z-index: 1;
	border-top-left-radius: inherit;
	animation: navBarShine 14s ease-in-out infinite;
	clip-path: inset(0 -100% 0 0 round 22px 0 0 0);
}

.primary-navigation__shine {
	display: none;
}

@keyframes navBarShine {
	0%,
	72%,
	100% {
		transform: translateX(-120%) skewX(-16deg);
		opacity: 0;
	}
	10% {
		opacity: 0.55;
	}
	42% {
		transform: translateX(280%) skewX(-16deg);
		opacity: 0.35;
	}
	58% {
		opacity: 0.15;
	}
}

.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	transition: background var(--transition);
}

.mobile-menu-toggle:hover {
	background: rgba(15, 42, 74, 0.06);
}

.mobile-menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--navy);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	margin: 0 auto;
}

.mobile-menu-close {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	border-radius: 12px;
	background: #ffffff;
	color: var(--navy);
	cursor: pointer;
	flex-shrink: 0;
	box-shadow: 0 4px 18px rgba(15, 42, 74, 0.22);
	transition: background 0.2s ease, transform 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.mobile-menu-close:not([hidden]) {
	display: flex;
}

.mobile-menu-close svg {
	display: block;
	pointer-events: none;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible {
	background: #f4f7fa;
	transform: scale(1.04);
	outline: none;
}

.btn--admissions-full {
	width: 100%;
	justify-content: center;
}

body.nav-open {
	overflow: hidden;
}

body.nav-open .site-header {
	overflow: visible;
}

/* ==========================================================================
   HERO — see assets/css/hero.css
   ========================================================================== */

/* ==========================================================================
   ACCREDITATIONS
   ========================================================================== */

.accreditations {
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.accreditations > .container {
	max-width: min(96vw, 1780px);
}

.accreditations__content-col {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: center;
	min-height: inherit;
}

.accreditations__left-icons {
	position: absolute;
	inset: -12% -8% -12% -10%;
	z-index: 0;
	overflow: visible;
	pointer-events: none;
	opacity: 0.22;
}

.accreditations__left-icon {
	--left-icon-size: 38px;
	--left-icon-dur: 22s;
	--left-icon-delay: 0s;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--left-icon-size);
	height: var(--left-icon-size);
	color: rgba(125, 211, 252, 0.32);
	opacity: 0.85;
	cursor: default;
	pointer-events: auto;
	will-change: transform, opacity, filter;
	animation: accreditationsLeftIconDriftA var(--left-icon-dur) ease-in-out infinite;
	animation-delay: var(--left-icon-delay);
	transition: color 0.25s ease;
}

.accreditations__left-icon svg {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: block;
	pointer-events: none;
}

.accreditations__left-icon:nth-child(1) {
	left: 2%;
	top: 6%;
	--left-icon-size: 34px;
	--left-icon-dur: 23s;
	--left-icon-delay: -1s;
}

.accreditations__left-icon:nth-child(2) {
	left: 88%;
	top: 4%;
	--left-icon-size: 42px;
	--left-icon-dur: 26s;
	--left-icon-delay: -4s;
	animation-name: accreditationsLeftIconDriftB;
}

.accreditations__left-icon:nth-child(3) {
	left: 74%;
	top: 30%;
	--left-icon-size: 36px;
	--left-icon-dur: 24s;
	--left-icon-delay: -7s;
	animation-name: accreditationsLeftIconDriftC;
}

.accreditations__left-icon:nth-child(4) {
	left: 6%;
	top: 40%;
	--left-icon-size: 32px;
	--left-icon-dur: 20s;
	--left-icon-delay: -2s;
}

.accreditations__left-icon:nth-child(5) {
	left: 92%;
	top: 54%;
	--left-icon-size: 40px;
	--left-icon-dur: 27s;
	--left-icon-delay: -9s;
	animation-name: accreditationsLeftIconDriftB;
}

.accreditations__left-icon:nth-child(6) {
	left: 2%;
	top: 72%;
	--left-icon-size: 36px;
	--left-icon-dur: 25s;
	--left-icon-delay: -5s;
	animation-name: accreditationsLeftIconDriftC;
}

.accreditations__left-icon:nth-child(7) {
	left: 50%;
	top: 86%;
	--left-icon-size: 30px;
	--left-icon-dur: 21s;
	--left-icon-delay: -11s;
}

.accreditations__left-icon:nth-child(8) {
	left: 30%;
	top: 10%;
	--left-icon-size: 44px;
	--left-icon-dur: 29s;
	--left-icon-delay: -3s;
	animation-name: accreditationsLeftIconDriftB;
}

.accreditations__left-icon:nth-child(9) {
	left: 80%;
	top: 18%;
	--left-icon-size: 34px;
	--left-icon-dur: 19s;
	--left-icon-delay: -8s;
}

.accreditations__left-icon:nth-child(10) {
	left: 14%;
	top: 62%;
	--left-icon-size: 40px;
	--left-icon-dur: 24s;
	--left-icon-delay: -6s;
	animation-name: accreditationsLeftIconDriftC;
}

.accreditations__left-icon:nth-child(11) {
	left: 44%;
	top: 36%;
	--left-icon-size: 32px;
	--left-icon-dur: 26s;
	--left-icon-delay: -10s;
	animation-name: accreditationsLeftIconDriftB;
}

.accreditations__left-icon:nth-child(12) {
	left: 60%;
	top: 64%;
	--left-icon-size: 38px;
	--left-icon-dur: 23s;
	--left-icon-delay: -12s;
}

.accreditations__left-icon:hover {
	color: rgba(167, 243, 208, 0.72);
}

.accreditations__left-icon.is-vanishing {
	animation: accreditationsAmbientIconVanish 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	pointer-events: none;
}

.accreditations__left-icon.is-vanishing .accreditations__ambient-icon-burst {
	animation: accreditationsAmbientIconBurst 0.72s ease-out forwards;
}

.accreditations__left-icon.is-vanished {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

.accreditations__left-icon.is-restoring {
	animation: accreditationsAmbientIconRestore 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	pointer-events: none;
}

@keyframes accreditationsLeftIconDriftA {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	25% {
		transform: translate(28px, -32px) rotate(10deg);
	}
	50% {
		transform: translate(-24px, 26px) rotate(-8deg);
	}
	75% {
		transform: translate(20px, 16px) rotate(5deg);
	}
}

@keyframes accreditationsLeftIconDriftB {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	33% {
		transform: translate(-32px, 24px) rotate(-12deg);
	}
	66% {
		transform: translate(28px, -28px) rotate(9deg);
	}
}

@keyframes accreditationsLeftIconDriftC {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg) scale(1);
	}
	40% {
		transform: translate(18px, 32px) rotate(6deg) scale(1.07);
	}
	70% {
		transform: translate(-28px, -14px) rotate(-10deg) scale(0.93);
	}
}

@keyframes accreditationsAmbientIconVanish {
	0% {
		opacity: 0.85;
		transform: translate(0, 0) scale(1) rotate(0deg);
		filter: blur(0) brightness(1);
	}
	30% {
		opacity: 1;
		transform: translate(0, -8px) scale(1.45) rotate(10deg);
		filter: blur(0) brightness(1.8);
	}
	100% {
		opacity: 0;
		transform: translate(0, -32px) scale(0.1) rotate(-22deg);
		filter: blur(12px) brightness(2.2);
	}
}

@keyframes accreditationsAmbientIconRestore {
	0% {
		opacity: 0;
		transform: translate(0, -20px) scale(0.2) rotate(-12deg);
		filter: blur(8px) brightness(1.4);
		visibility: visible;
	}
	55% {
		opacity: 0.9;
		transform: translate(0, 4px) scale(1.08) rotate(4deg);
		filter: blur(0) brightness(1.15);
	}
	100% {
		opacity: 0.85;
		transform: translate(0, 0) scale(1) rotate(0deg);
		filter: blur(0) brightness(1);
		visibility: visible;
	}
}

@keyframes accreditationsAmbientIconBurst {
	0% {
		opacity: 0;
		transform: scale(0.2);
	}
	35% {
		opacity: 1;
		transform: scale(1.15);
	}
	100% {
		opacity: 0;
		transform: scale(2.2);
	}
}

.accreditations__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 8fr) minmax(0, 2fr);
	gap: clamp(10px, 1.6vw, 20px);
	align-items: center;
	min-height: clamp(120px, 11vw, 160px);
}

.accreditations__content {
	position: relative;
	z-index: 1;
	align-self: center;
	max-width: min(100%, clamp(780px, 52vw, 920px));
	width: 100%;
	padding: clamp(12px, 1.4vw, 18px) clamp(18px, 2.2vw, 28px);
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	box-shadow: 0 8px 28px rgba(15, 42, 74, 0.1);
}

.accreditations__content.is-visible {
	max-width: min(100%, clamp(780px, 52vw, 920px));
}

.accreditations.is-stage-open .accreditations__content {
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 40px rgba(15, 42, 74, 0.14);
}

.accreditations__eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 8px;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--teal-dark);
	line-height: 1.3;
}

.accreditations__accent {
	display: block;
	width: 34px;
	height: 4px;
	border-radius: 4px;
	background: var(--orange);
	flex-shrink: 0;
}

.accreditations__accent--divider {
	margin-bottom: 8px;
}

.accreditations__title-line {
	display: block;
}

.accreditations__title {
	margin: 0 0 8px;
	font-size: clamp(22px, 2.6vw, 32px);
	font-weight: var(--font-weight-display);
	color: var(--navy);
	line-height: 1.1;
	letter-spacing: -0.02em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.accreditations__desc {
	color: var(--gray-800);
	margin: 0 0 14px;
	line-height: 1.55;
	font-size: clamp(13px, 1.1vw, 15px);
	max-width: 100%;
}

.accreditations__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	box-shadow: 0 6px 18px rgba(0, 168, 150, 0.2);
}

.accreditations__btn.btn--teal {
	background: #00a693;
	border-color: #00a693;
}

.accreditations__btn.btn--teal:hover {
	background: #0d9488;
	border-color: #0d9488;
}

.accreditations__btn svg {
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.accreditations__btn:hover svg {
	transform: translateX(3px);
}

.accreditations__showcase {
	position: relative;
	width: calc(100% + clamp(40px, 7vw, 100px));
	margin-left: clamp(-40px, -7vw, -100px);
	min-height: clamp(200px, 17vw, 260px);
	align-self: center;
	overflow: visible;
}

.accreditations__cursor-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.35s ease;
	background: radial-gradient(
		circle 140px at var(--gx, 50%) var(--gy, 50%),
		rgba(0, 168, 150, 0.12) 0%,
		rgba(0, 168, 150, 0.04) 42%,
		transparent 72%
	);
	z-index: 1;
}

.accreditations__showcase.is-interacting:not(.is-badge-hovered) .accreditations__cursor-glow {
	opacity: 1;
}

.accreditations__rings {
	display: none;
}

.accreditations__badges {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100%;
	min-height: clamp(200px, 17vw, 260px);
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}

.accreditations__item {
	--float-dur: 5.5s;
	--float-delay: 0s;
	position: absolute;
	width: clamp(88px, 10vw, 124px);
	height: clamp(88px, 10vw, 124px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translateY(18px) scale(0.86);
	background: transparent;
	border-radius: 50%;
	overflow: visible;
}

.accreditations__item:nth-child(1) {
	left: 0%;
	top: 18%;
	--float-dur: 5.2s;
	--float-delay: 0s;
}

.accreditations__item:nth-child(2) {
	left: 18%;
	top: 54%;
	--float-dur: 6.1s;
	--float-delay: -1.2s;
}

.accreditations__item:nth-child(3) {
	left: 38%;
	top: 8%;
	--float-dur: 5.8s;
	--float-delay: -2.4s;
}

.accreditations__item:nth-child(4) {
	left: 58%;
	top: 46%;
	--float-dur: 6.4s;
	--float-delay: -0.8s;
}

.accreditations__item:nth-child(5) {
	left: 76%;
	top: 14%;
	--float-dur: 5.5s;
	--float-delay: -1.8s;
}

.accreditations__item:nth-child(6) {
	left: 86%;
	top: 52%;
	--float-dur: 6s;
	--float-delay: -3s;
}

.accreditations__showcase.is-live .accreditations__item {
	animation:
		accreditationsPopIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards,
		accreditationsDrift var(--float-dur) ease-in-out infinite;
	animation-delay:
		calc(0.05s + var(--badge-i, 0) * 0.08s),
		calc(0.65s + var(--float-delay) + var(--badge-i, 0) * 0.08s);
}

.accreditations__showcase.is-physics .accreditations__item {
	--phys-x: 0px;
	--phys-y: 0px;
	animation: none;
	opacity: 1;
	transform: translate3d(var(--phys-x), var(--phys-y), 0);
	transition: none;
	will-change: transform;
}

.accreditations__showcase.is-physics .accreditations__badge {
	--push-rotate: 0deg;
	transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}

@keyframes accreditationsPopIn {
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes accreditationsDrift {
	0%,
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
	25% {
		transform: translate(10px, -14px) rotate(2.5deg);
	}
	50% {
		transform: translate(-8px, 12px) rotate(-2deg);
	}
	75% {
		transform: translate(7px, 5px) rotate(1.5deg);
	}
}

.accreditations__item.is-hovered,
.accreditations__item:hover {
	z-index: 4;
}

.accreditations__badge {
	--push-x: 0px;
	--push-y: 0px;
	--push-scale: 1;
	--push-rotate: 0deg;
	position: relative;
	width: 100%;
	height: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 13%;
	box-shadow: 0 12px 32px rgba(15, 42, 74, 0.1);
	transform:
		translate(var(--push-x), var(--push-y))
		scale(var(--push-scale))
		rotate(var(--push-rotate));
	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease;
	will-change: transform;
	overflow: hidden;
	cursor: pointer;
	isolation: isolate;
}

.accreditations__badge::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: radial-gradient(
		circle at 30% 28%,
		rgba(255, 255, 255, 0.55) 0%,
		rgba(255, 255, 255, 0.12) 34%,
		transparent 62%
	);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
}

.accreditations__badge-ring {
	position: absolute;
	inset: -12%;
	border-radius: 50%;
	border: 2px solid rgba(0, 168, 150, 0.25);
	opacity: 0;
	transform: scale(0.94);
	transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
	pointer-events: none;
}

.accreditations__item.is-hovered .accreditations__badge,
.accreditations__item:hover .accreditations__badge {
	--push-scale: 1.12;
	box-shadow:
		0 22px 48px rgba(15, 42, 74, 0.14),
		0 0 24px rgba(0, 168, 150, 0.18);
}

.accreditations__item.is-hovered .accreditations__badge-ring,
.accreditations__item:hover .accreditations__badge-ring {
	opacity: 1;
	transform: scale(1.04);
	border-color: rgba(0, 168, 150, 0.55);
	animation: accreditationsHoverRing 1.6s ease-out infinite;
}

.accreditations__item.is-hovered .accreditations__badge::after,
.accreditations__item:hover .accreditations__badge::after {
	opacity: 1;
}

.accreditations__item.is-hovered .accreditations__badge img,
.accreditations__item:hover .accreditations__badge img {
	transform: scale(1.08);
}

@keyframes accreditationsHoverRing {
	0% {
		transform: scale(1);
		opacity: 0.9;
	}
	100% {
		transform: scale(1.22);
		opacity: 0;
	}
}

.accreditations__badge img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: contain;
	pointer-events: none;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
	.accreditations__showcase.is-live .accreditations__item {
		animation: accreditationsPopIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	}

	.accreditations__showcase.is-physics .accreditations__item {
		animation: accreditationsPopIn 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
		transform: none;
	}

	.accreditations__left-icon {
		animation: none;
		pointer-events: none;
	}
}

/* ==========================================================================
   ABOUT
   ========================================================================== */

.about {
	--about-card-max: 1240px;
	--about-overlap-top: clamp(52px, 6vw, 76px);
	--about-overlap-bottom: clamp(56px, 6.5vw, 84px);
	--about-side-width: max(
		0px,
		calc(50vw - min(var(--about-card-max), calc(100vw - 2 * var(--gutter))) / 2)
	);
	position: relative;
	z-index: 10;
	margin-top: calc(var(--about-overlap-top) * -1);
	margin-bottom: calc(var(--about-overlap-bottom) * -1);
	padding: clamp(28px, 3vw, 40px) 0 clamp(20px, 2.5vw, 32px);
	background: transparent;
	overflow: visible;
}

.about::before,
.about::after {
	content: '';
	position: absolute;
	top: var(--about-overlap-top);
	bottom: var(--about-overlap-bottom);
	width: var(--about-side-width);
	z-index: 0;
	pointer-events: none;
	background-color: #e8f0f8;
	background-image:
		repeating-linear-gradient(
			-45deg,
			transparent,
			transparent 13px,
			rgba(0, 168, 150, 0.04) 13px,
			rgba(0, 168, 150, 0.04) 14px
		),
		linear-gradient(rgba(15, 42, 74, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(15, 42, 74, 0.06) 1px, transparent 1px),
		radial-gradient(circle, rgba(0, 168, 150, 0.22) 1.5px, transparent 1.5px);
	background-size: auto, 22px 22px, 22px 22px, 14px 14px;
}

.about::before {
	left: 0;
	mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.65) 75%, transparent 100%);
}

.about::after {
	right: 0;
	mask-image: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0.65) 75%, transparent 100%);
}

.about__shell {
	position: relative;
	z-index: 1;
	width: min(100%, var(--container-max));
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.about__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 3.2vw, 48px);
	align-items: center;
	width: 100%;
	max-width: min(100%, var(--about-card-max));
	margin: 0 auto;
	padding: clamp(32px, 3.5vw, 52px);
	background: var(--white);
	border-radius: clamp(24px, 2.8vw, 36px);
	box-shadow:
		0 20px 56px rgba(15, 42, 74, 0.11),
		0 8px 24px rgba(15, 42, 74, 0.07);
}

.about__gallery {
	position: relative;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	min-height: 0;
}

.about__collage {
	--about-collage-gap: clamp(12px, 1.4vw, 18px);
	position: relative;
	width: 100%;
}

.about__collage-glow {
	position: absolute;
	top: -6%;
	right: -4%;
	width: clamp(140px, 34%, 220px);
	height: clamp(140px, 34%, 220px);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 168, 150, 0.28) 0%, rgba(0, 168, 150, 0) 72%);
	filter: blur(2px);
	pointer-events: none;
	z-index: 0;
}

.about__collage-line {
	position: absolute;
	left: -3%;
	bottom: 18%;
	width: clamp(72px, 18%, 110px);
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--teal) 0%, rgba(0, 168, 150, 0.15) 100%);
	pointer-events: none;
	z-index: 4;
}

.about__collage-stack {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-areas:
		'main main'
		'secondary tertiary';
	gap: var(--about-collage-gap);
	align-items: stretch;
}

.about__shot {
	position: relative;
	width: 100%;
	margin: 0;
	overflow: hidden;
	border-radius: clamp(16px, 2vw, 22px);
	background: var(--navy-dark);
	box-shadow:
		0 18px 40px rgba(10, 30, 54, 0.2),
		0 4px 12px rgba(10, 30, 54, 0.12);
	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.5s ease;
}

.about__shot::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%, rgba(10, 30, 54, 0.12) 100%);
	pointer-events: none;
	z-index: 1;
}

.about__shot--main {
	grid-area: main;
	aspect-ratio: 5 / 3;
	z-index: 1;
}

.about__album {
	overflow: visible;
}

.about__album-stage {
	position: absolute;
	inset: 0;
	perspective: 1400px;
	transform-style: preserve-3d;
}

.about__album-shadow {
	position: absolute;
	inset: 10% 4% 8%;
	border-radius: inherit;
	background: radial-gradient(ellipse at 70% 50%, rgba(10, 30, 54, 0.28) 0%, transparent 68%);
	opacity: 0.55;
	transform: translateZ(-12px);
	pointer-events: none;
	z-index: 0;
}

.about__album-spine {
	position: absolute;
	top: 8%;
	bottom: 8%;
	left: 0;
	width: 10px;
	border-radius: 4px 0 0 4px;
	background: linear-gradient(90deg, rgba(10, 30, 54, 0.35) 0%, rgba(10, 30, 54, 0.08) 100%);
	transform: translateZ(8px);
	pointer-events: none;
	z-index: 4;
}

.about__album-track {
	position: absolute;
	inset: 0;
	transform-style: preserve-3d;
}

.about__album-page {
	position: absolute;
	inset: 0;
	transform-style: preserve-3d;
	transform-origin: left center;
	transform: rotateY(88deg) translateZ(2px);
	opacity: 0;
	pointer-events: none;
	transition:
		transform var(--about-album-turn, 1s) cubic-bezier(0.42, 0.03, 0.22, 0.98),
		opacity 0.45s ease;
}

.about__album-page.is-current {
	transform: rotateY(0deg) translateZ(4px);
	opacity: 1;
	z-index: 3;
	pointer-events: auto;
}

.about__album-page.is-leaving {
	transform: rotateY(-92deg) translateZ(6px);
	opacity: 0.35;
	z-index: 4;
}

.about__album-page.is-entering {
	transform: rotateY(0deg) translateZ(4px);
	opacity: 1;
	z-index: 3;
}

.about__album-page.is-waiting {
	transform: rotateY(88deg) translateZ(2px);
	opacity: 0;
	z-index: 1;
}

.about__album-page-face {
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
	border-radius: inherit;
	overflow: hidden;
}

.about__album-page-face--front {
	background: var(--navy-dark);
	box-shadow:
		inset -1px 0 0 rgba(255, 255, 255, 0.08),
		0 18px 40px rgba(10, 30, 54, 0.2);
}

.about__album-page-face--edge {
	background: linear-gradient(90deg, #0a1e36 0%, #123a62 45%, #1a4d7a 100%);
	transform: rotateY(90deg) translateZ(calc(var(--about-album-depth, 10px) / 2));
	transform-origin: right center;
	width: var(--about-album-depth, 10px);
	left: auto;
	right: 0;
	opacity: 0.9;
}

.about__album--rolling:hover .about__album-page.is-current {
	transform: rotateY(0deg) translateZ(6px);
}

.about__collage:hover .about__album:not(.about__album--rolling) {
	transform: translateY(-3px);
}

.about__shot--secondary {
	grid-area: secondary;
	aspect-ratio: 4 / 3;
	z-index: 3;
	transform: rotate(-2.5deg);
}

.about__shot--tertiary {
	grid-area: tertiary;
	aspect-ratio: 4 / 3;
	z-index: 2;
	transform: rotate(1.75deg);
}

.about__collage:hover .about__shot--main:not(.about__album--rolling) {
	transform: translateY(-3px);
	box-shadow:
		0 24px 48px rgba(10, 30, 54, 0.24),
		0 8px 18px rgba(10, 30, 54, 0.14);
}

.about__collage:hover .about__album--rolling {
	box-shadow:
		0 24px 48px rgba(10, 30, 54, 0.24),
		0 8px 18px rgba(10, 30, 54, 0.14);
}

.about__collage:hover .about__shot--secondary {
	transform: rotate(-3deg) translateY(-4px);
}

.about__collage:hover .about__shot--tertiary {
	transform: rotate(2.25deg) translateY(-4px);
}

.about__shot-img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about__years-badge-wrap {
	position: absolute;
	inset: 0;
	z-index: 5;
	pointer-events: none;
}

.about__years-celebration {
	position: absolute;
	top: var(--badge-intro-top, 50%);
	left: 50%;
	width: 0;
	height: 0;
	z-index: 4;
	pointer-events: none;
}

.about__celebration-icon {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin: -14px 0 0 -14px;
	font-size: 18px;
	line-height: 1;
	opacity: 0;
	pointer-events: none;
	will-change: transform, opacity;
}

.about__years-celebration.is-playing .about__celebration-icon {
	animation: aboutCelebrationBurst 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: var(--burst-delay, 0ms);
}

.about__years-badge {
	position: absolute;
	z-index: 6;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 18px 12px 14px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--navy);
	border-radius: 999px;
	border: 1px solid rgba(0, 168, 150, 0.18);
	box-shadow:
		0 16px 36px rgba(15, 42, 74, 0.14),
		0 0 0 1px rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	pointer-events: auto;
	top: var(--badge-settle-top, 58%);
	right: var(--badge-settle-right, 0);
	transform: translate(8%, -50%);
	opacity: 0;
	transition:
		top 1s cubic-bezier(0.22, 1, 0.36, 1),
		right 1s cubic-bezier(0.22, 1, 0.36, 1),
		bottom 1s cubic-bezier(0.22, 1, 0.36, 1),
		left 1s cubic-bezier(0.22, 1, 0.36, 1),
		transform 1s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.45s ease,
		box-shadow 0.6s ease;
}

.about__years-badge.is-active {
	opacity: 1;
}

.about__years-badge.is-intro:not(.is-settled) {
	top: var(--badge-intro-top, 50%);
	left: 50%;
	right: auto;
	transform: translate(-50%, -50%);
}

.about__years-badge.is-settled {
	top: var(--badge-settle-top, 58%);
	right: var(--badge-settle-right, 0);
	left: auto;
	transform: translate(8%, -50%);
	box-shadow:
		0 20px 42px rgba(15, 42, 74, 0.16),
		0 0 0 1px rgba(255, 255, 255, 0.8);
}

.about__years-badge-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--white);
	background: linear-gradient(145deg, var(--teal-light) 0%, var(--teal) 100%);
	box-shadow: 0 6px 16px rgba(0, 168, 150, 0.32);
}

.about__years-badge-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.about__years-badge-copy strong {
	font-size: clamp(22px, 2.4vw, 28px);
	font-weight: var(--font-weight-display);
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--navy);
}

.about__years-badge-copy span {
	font-size: 10px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--teal-dark);
	white-space: nowrap;
}

.about__content {
	max-width: 100%;
	min-width: 0;
	container-type: inline-size;
	container-name: about-content;
}

.about__eyebrow {
	margin: 0 0 10px;
}

.about__eyebrow-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 10px;
}

.about__accent-line {
	display: block;
	width: 42px;
	height: 3px;
	border-radius: 3px;
	background: var(--teal);
}

.about__title {
	margin: 0 0 12px;
	line-height: 1.15;
	white-space: nowrap;
}

.about__title-line {
	display: inline;
	font-size: clamp(11px, 4.65cqi, 36px);
	font-weight: var(--font-weight-display);
	letter-spacing: -0.03em;
}

.about__title-line--navy::after {
	content: ' ';
}

.about__title-line--navy {
	color: var(--navy);
}

.about__title-line--teal {
	color: var(--teal);
}

.about__intro {
	margin: 0 0 clamp(18px, 2.2vw, 24px);
	font-size: 14px;
	line-height: 1.7;
	color: var(--gray-600);
}

.about__feature {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid rgba(15, 42, 74, 0.08);
	background: var(--white);
	transition: background var(--transition), border-color var(--transition);
}

.about__feature:hover {
	background: rgba(248, 250, 252, 0.95);
	border-color: rgba(0, 168, 150, 0.14);
	transform: none;
}

.about__features {
	margin: 0 0 clamp(22px, 2.8vw, 28px);
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.about__feature:last-child,
.about__feature:first-child {
	padding-top: 14px;
	padding-bottom: 14px;
}

.about__feature-icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about__feature-icon--philosophy {
	background: rgba(0, 168, 150, 0.14);
	color: var(--teal);
}

.about__feature-icon--facilities {
	background: rgba(59, 130, 246, 0.14);
	color: var(--blue-accent);
}

.about__feature-icon--curriculum {
	background: rgba(245, 158, 11, 0.16);
	color: var(--orange);
}

.about__feature-icon--safety {
	background: rgba(124, 58, 237, 0.14);
	color: var(--purple);
}

.about__feature-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.65;
	color: var(--gray-600);
}

.about__btn {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 14px 18px 14px 26px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
	background: var(--navy);
	border-radius: 50px;
	box-shadow: 0 10px 28px rgba(15, 42, 74, 0.22);
	transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.about__btn:hover {
	background: var(--navy-light);
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(15, 42, 74, 0.28);
}

.about__btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--teal);
	color: var(--white);
	flex-shrink: 0;
}

/* ==========================================================================
   CAMPUS FACILITIES
   ========================================================================== */

.campus-facilities {
	position: relative;
	z-index: 6;
	padding: clamp(80px, 9vw, 120px) 0;
	overflow: hidden;
	isolation: isolate;
	background: var(--gray-50);
}

.campus-facilities__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.campus-facilities__bg-track {
	display: flex;
	width: calc(var(--campus-bg-count, 1) * 200%);
	height: 100%;
	will-change: transform;
	animation: campusFacilitiesBgPan calc(var(--campus-bg-count, 1) * 24s) linear infinite;
}

.campus-facilities__bg-media {
	flex: 0 0 calc(100% / (var(--campus-bg-count, 1) * 2));
	width: calc(100% / (var(--campus-bg-count, 1) * 2));
	height: 100%;
	margin-right: -2px;
	background-color: #dfe9f2;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	transform: scale3d(1.06, 1.06, 1);
	transform-origin: center center;
	backface-visibility: hidden;
}

.campus-facilities__bg-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(248, 250, 252, 0.84) 0%, rgba(248, 250, 252, 0.86) 42%, rgba(255, 255, 255, 0.9) 100%),
		radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 168, 150, 0.06) 0%, transparent 70%);
	pointer-events: none;
}

.campus-facilities__content {
	position: relative;
	z-index: 1;
}

.campus-facilities__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(32px, 4vw, 48px);
}

.campus-facilities__title {
	margin: 0;
	line-height: 1.15;
	text-align: center;
}

.campus-facilities__title-line {
	display: inline;
	font-size: clamp(24px, 4vw, 38px);
	font-weight: var(--font-weight-display);
	letter-spacing: -0.02em;
}

.campus-facilities__title-line--navy::after {
	content: ' ';
}

.campus-facilities__title-line--navy {
	color: var(--navy);
}

.campus-facilities__title-line--teal {
	color: var(--teal);
}

.campus-facilities__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(clamp(118px, 11vw, 158px), 1fr));
	gap: clamp(12px, 1.4vw, 18px);
	container-type: inline-size;
	container-name: campus-facilities-grid;
}

.campus-facility-card {
	--facility-accent: var(--teal);
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100%;
	padding: clamp(20px, 2.2vw, 28px) clamp(10px, 1.2vw, 14px) clamp(18px, 2vw, 22px);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 18px;
	box-shadow:
		0 4px 18px rgba(15, 42, 74, 0.05),
		0 1px 3px rgba(15, 42, 74, 0.04);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.campus-facility-card:hover {
	transform: translateY(-5px);
	border-color: rgba(226, 232, 240, 0.4);
	box-shadow:
		0 16px 36px rgba(15, 42, 74, 0.1),
		0 4px 12px rgba(15, 42, 74, 0.06);
}

.campus-facility-card__icon-slot {
	display: flex;
	justify-content: center;
	width: 100%;
	height: clamp(56px, 5vw, 64px);
	margin-bottom: 14px;
	overflow: hidden;
}

.campus-facility-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(56px, 5vw, 64px);
	height: clamp(56px, 5vw, 64px);
	margin-bottom: 0;
	border-radius: 50%;
	background: color-mix(in srgb, var(--facility-accent) 12%, transparent);
	color: var(--facility-accent);
	flex-shrink: 0;
}

.campus-facility-card__icon-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	transform: translateY(0);
	opacity: 1;
}

.campus-facility-icon {
	display: block;
	width: clamp(28px, 2.6vw, 32px);
	height: clamp(28px, 2.6vw, 32px);
	overflow: visible;
	color: inherit;
}

.campus-facility-icon__stroke {
	stroke: currentColor;
	stroke-dasharray: none;
	stroke-dashoffset: 0;
	opacity: 1;
}

.campus-facility-icon--detailed {
	width: clamp(30px, 2.8vw, 34px);
	height: clamp(30px, 2.8vw, 34px);
}

.campus-facility-card__label {
	margin: 0 0 14px;
	font-size: clamp(9px, 0.95cqi, 13px);
	font-weight: 700;
	line-height: 1.35;
	color: var(--navy);
	white-space: nowrap;
}

.campus-facility-card__accent {
	display: block;
	width: 30px;
	height: 3px;
	margin-top: auto;
	border-radius: 3px;
	background: var(--facility-accent);
}

.campus-facility-card--green { --facility-accent: var(--green); }
.campus-facility-card--blue { --facility-accent: var(--blue-accent); }
.campus-facility-card--purple { --facility-accent: var(--purple); }
.campus-facility-card--pink { --facility-accent: var(--pink); }
.campus-facility-card--orange { --facility-accent: var(--orange); }
.campus-facility-card--teal { --facility-accent: var(--teal); }

/* ==========================================================================
   MISSION
   ========================================================================== */

.mission {
	position: relative;
	z-index: 1;
	background: var(--navy-dark);
	padding: clamp(72px, 7vw, 96px) 0 90px;
}

.mission__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 48px;
}

.mission__video {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.mission__video img {
	width: 100%;
	aspect-ratio: 520/380;
	object-fit: cover;
}

.mission__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(255,255,255,0.95);
	border: none;
	color: var(--navy);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-lg);
	transition: transform var(--transition);
}

.mission__play:hover { transform: translate(-50%, -50%) scale(1.1); }

.mission__content p {
	color: rgba(255,255,255,0.75);
	margin-bottom: 24px;
	line-height: 1.7;
}

.mission__points li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: rgba(255,255,255,0.85);
	margin-bottom: 14px;
	font-size: 15px;
}

.mission__check {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: var(--teal);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.mission__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.mission-card {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 28px 24px;
	border-radius: var(--radius);
	color: var(--white);
	transition: transform var(--transition), box-shadow var(--transition);
}

.mission-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.mission-card--teal { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); }
.mission-card--purple { background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%); }
.mission-card--orange { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }

.mission-card__icon { opacity: 0.9; flex-shrink: 0; }

.mission-card h3 {
	font-size: 18px;
	font-weight: var(--font-weight-title);
	flex: 1;
}

.mission-card__arrow {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* ==========================================================================
   VISION
   ========================================================================== */

.vision {
	position: relative;
	z-index: 1;
	overflow: visible;
	background: linear-gradient(180deg, #08152b 0%, var(--navy-dark) 42%, #0a1e36 100%);
	padding: clamp(72px, 7vw, 96px) 0 clamp(72px, 6.5vw, 88px);
}

.vision__decor {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 18%, rgba(0, 168, 150, 0.14) 0%, transparent 24%),
		radial-gradient(circle at 88% 12%, rgba(59, 130, 246, 0.12) 0%, transparent 22%),
		radial-gradient(circle at 78% 82%, rgba(124, 58, 237, 0.1) 0%, transparent 24%);
}

.vision__pattern {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	opacity: 1;
}

.vision__pattern::before {
	content: '';
	position: absolute;
	inset: -8%;
	background:
		radial-gradient(circle at 74% 20%, transparent 0 17%, rgba(255, 255, 255, 0.034) 17% 17.12%, transparent 17.24%),
		radial-gradient(circle at 74% 20%, transparent 0 27%, rgba(255, 255, 255, 0.026) 27% 27.1%, transparent 27.2%),
		radial-gradient(circle at 74% 20%, transparent 0 37%, rgba(94, 234, 212, 0.022) 37% 37.09%, transparent 37.18%),
		radial-gradient(circle at 74% 20%, transparent 0 47%, rgba(255, 255, 255, 0.018) 47% 47.08%, transparent 47.16%),
		radial-gradient(circle at 74% 20%, transparent 0 58%, rgba(255, 255, 255, 0.014) 58% 58.07%, transparent 58.14%),
		radial-gradient(circle at 16% 64%, transparent 0 20%, rgba(255, 255, 255, 0.03) 20% 20.11%, transparent 20.22%),
		radial-gradient(circle at 16% 64%, transparent 0 32%, rgba(255, 255, 255, 0.022) 32% 32.09%, transparent 32.18%),
		radial-gradient(circle at 16% 64%, transparent 0 44%, rgba(94, 234, 212, 0.018) 44% 44.08%, transparent 44.16%),
		radial-gradient(circle at 48% 90%, transparent 0 24%, rgba(255, 255, 255, 0.024) 24% 24.1%, transparent 24.2%),
		radial-gradient(circle at 48% 90%, transparent 0 36%, rgba(255, 255, 255, 0.016) 36% 36.08%, transparent 36.16%);
	mask-image: radial-gradient(ellipse 125% 105% at 50% 50%, #000 35%, transparent 100%);
	-webkit-mask-image: radial-gradient(ellipse 125% 105% at 50% 50%, #000 35%, transparent 100%);
}

.vision__pattern::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.16) 0 1px, transparent 2px),
		radial-gradient(circle at 31% 38%, rgba(255, 255, 255, 0.11) 0 0.8px, transparent 1.6px),
		radial-gradient(circle at 86% 24%, rgba(94, 234, 212, 0.2) 0 1.2px, transparent 2px),
		radial-gradient(circle at 58% 10%, rgba(255, 255, 255, 0.13) 0 1px, transparent 1.8px),
		radial-gradient(circle at 94% 58%, rgba(255, 255, 255, 0.1) 0 0.9px, transparent 1.7px),
		radial-gradient(circle at 10% 74%, rgba(94, 234, 212, 0.14) 0 1px, transparent 1.8px),
		radial-gradient(circle at 42% 52%, rgba(255, 255, 255, 0.09) 0 0.7px, transparent 1.4px),
		radial-gradient(circle at 76% 84%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1.8px),
		radial-gradient(circle at 22% 92%, rgba(255, 255, 255, 0.08) 0 0.8px, transparent 1.5px),
		radial-gradient(circle at 68% 44%, rgba(94, 234, 212, 0.1) 0 0.8px, transparent 1.5px);
	opacity: 0.65;
}

.vision__shapes {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.vision__shape {
	--shape-x: 0px;
	--shape-y: 0px;
	position: absolute;
	left: var(--shape-left, 50%);
	top: var(--shape-top, 50%);
	width: var(--shape-size, 100px);
	height: var(--shape-size, 100px);
	margin-left: calc(var(--shape-size, 100px) * -0.5);
	margin-top: calc(var(--shape-size, 100px) * -0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate3d(var(--shape-x), var(--shape-y), 0);
	will-change: transform;
	opacity: var(--shape-opacity, 0.62);
	pointer-events: none;
}

.vision__shape svg {
	display: block;
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 0 14px var(--solar-glow, transparent));
}

.vision__shapes.is-live .vision__shape {
	transition: none;
	animation: visionShapeFadeIn 1.2s ease forwards;
}

@keyframes visionShapeFadeIn {
	from { opacity: 0; }
	to { opacity: var(--shape-opacity, 0.7); }
}

.vision__shape--sun {
	--shape-opacity: 0.88;
	--solar-glow: rgba(251, 191, 36, 0.35);
}

.vision__shape--mercury {
	--shape-opacity: 0.62;
	--solar-glow: rgba(156, 163, 175, 0.2);
}

.vision__shape--venus {
	--shape-opacity: 0.72;
	--solar-glow: rgba(252, 211, 77, 0.25);
}

.vision__shape--earth {
	--shape-opacity: 0.8;
	--solar-glow: rgba(59, 130, 246, 0.28);
}

.vision__shape--mars {
	--shape-opacity: 0.74;
	--solar-glow: rgba(239, 68, 68, 0.22);
}

.vision__shape--jupiter {
	--shape-opacity: 0.78;
	--solar-glow: rgba(217, 119, 6, 0.28);
}

.vision__shape--saturn {
	--shape-opacity: 0.78;
	--solar-glow: rgba(251, 191, 36, 0.22);
}

.vision__shape--uranus {
	--shape-opacity: 0.74;
	--solar-glow: rgba(34, 211, 238, 0.24);
}

.vision__shape--neptune {
	--shape-opacity: 0.76;
	--solar-glow: rgba(59, 130, 246, 0.26);
}

.vision__shape--moon {
	--shape-opacity: 0.58;
	--solar-glow: rgba(229, 231, 235, 0.18);
}

.vision__shape--orbit {
	--shape-opacity: 0.42;
	--solar-glow: rgba(94, 234, 212, 0.12);
}

.vision__shapes.is-static .vision__shape {
	transform: translate3d(0, 0, 0);
}

.vision__decor::before,
.vision__decor::after {
	display: none;
}

.vision .container {
	position: relative;
	z-index: 1;
}

.vision__top {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
	margin-bottom: 48px;
}

.vision__gallery,
.vision__content {
	min-width: 0;
}

.vision__content {
	container-type: inline-size;
}

.vision__gallery {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
	background: #0f2a4a;
}

.vision__gallery-track {
	position: relative;
	aspect-ratio: 640 / 480;
}

.vision__gallery-slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transform: scale(1.04);
	transition: opacity 0.9s ease, transform 1.1s ease;
}

.vision__gallery-slide.is-active {
	opacity: 1;
	transform: scale(1);
	z-index: 1;
}

.vision__gallery-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vision__gallery-slide--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px;
	background: linear-gradient(135deg, rgba(15, 42, 74, 0.95), rgba(0, 168, 150, 0.35));
	color: rgba(255, 255, 255, 0.82);
	text-align: center;
	font-size: 15px;
	line-height: 1.6;
}

.vision__gallery-dots {
	position: absolute;
	left: 50%;
	bottom: 18px;
	z-index: 3;
	display: flex;
	gap: 8px;
	transform: translateX(-50%);
}

.vision__gallery-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.vision__gallery-dot.is-active {
	background: var(--white);
	transform: scale(1.15);
}

.vision__gallery-badge {
	position: absolute;
	left: 20px;
	bottom: 20px;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: calc(100% - 40px);
	padding: 14px 16px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(0, 168, 150, 0.96), rgba(0, 143, 127, 0.96));
	color: var(--white);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.vision__gallery-badge-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.16);
	flex-shrink: 0;
}

.vision__gallery-badge-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.vision__gallery-badge-copy strong {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
}

.vision__gallery-badge-copy span {
	font-size: 12px;
	line-height: 1.4;
	opacity: 0.92;
}

.vision__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(251, 191, 36, 0.14);
	color: var(--yellow);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.vision__title {
	margin: 0 0 18px;
	color: var(--white);
	font-size: clamp(26px, 2.8vw, 38px);
	line-height: 1.2;
}

.vision__title-line {
	display: block;
}

.vision__title-line--primary {
	white-space: nowrap;
	letter-spacing: -0.025em;
	font-size: clamp(15px, 4.65cqi, 30px);
	line-height: 1.15;
	max-width: 100%;
}

.vision__title-line--accent {
	display: block;
	margin-top: 8px;
	font-size: clamp(24px, 2.8vw, 36px);
	font-weight: 700;
	line-height: 1.2;
	background: linear-gradient(120deg, #ccfbf1 0%, var(--teal-light) 42%, #2dd4bf 72%, #99f6e4 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.vision__description {
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.76);
	line-height: 1.75;
	font-size: 15px;
}

.vision__features {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vision__feature {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.9);
	font-size: 15px;
}

.vision__feature:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.vision__feature-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	flex-shrink: 0;
	background: color-mix(in srgb, var(--vision-feature-accent) 18%, transparent);
	color: var(--vision-feature-accent);
}

.vision__feature--architecture { --vision-feature-accent: var(--blue-accent); }
.vision__feature--technology { --vision-feature-accent: var(--teal-light); }
.vision__feature--sports { --vision-feature-accent: var(--purple); }
.vision__feature--hall { --vision-feature-accent: var(--yellow); }
.vision__feature--wellness { --vision-feature-accent: var(--teal-light); }
.vision__feature--community { --vision-feature-accent: var(--purple); }
.vision__feature--global { --vision-feature-accent: var(--yellow); }

.vision__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 332px));
	justify-content: center;
	justify-items: stretch;
	gap: 14px;
	margin-top: clamp(28px, 4.5vw, 48px);
	padding-bottom: 10px;
}

.vision-card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	max-width: 332px;
	margin-inline: auto;
	padding: 12px 12px;
	border-radius: calc(var(--radius) - 2px);
	color: var(--white);
	text-decoration: none;
	overflow: visible;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
	transition:
		transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
		color 0.42s ease;
}

.vision-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	opacity: 0;
	z-index: 0;
	pointer-events: none;
	transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.vision-card::after {
	content: '';
	position: absolute;
	left: 2px;
	right: 2px;
	bottom: 0;
	height: 0;
	opacity: 0;
	border-radius: 0 0 calc(var(--radius) - 1px) calc(var(--radius) - 1px);
	background: var(--vision-card-depth, rgba(0, 0, 0, 0.28));
	z-index: -1;
	transition:
		height 0.42s cubic-bezier(0.22, 1, 0.36, 1),
		bottom 0.42s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.vision-card > * {
	position: relative;
	z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
	.vision-card:hover {
		transform: translateY(-6px);
		box-shadow:
			inset 0 2px 0 rgba(255, 255, 255, 0.48),
			inset 0 -2px 0 rgba(0, 0, 0, 0.08),
			0 7px 0 var(--vision-card-depth, rgba(0, 0, 0, 0.3)),
			0 11px 20px rgba(0, 0, 0, 0.2);
	}

	.vision-card:hover::before {
		opacity: 1;
	}

	.vision-card:hover::after {
		bottom: -7px;
		height: 7px;
		opacity: 1;
	}
}

.vision-card:focus-visible {
	transform: translateY(-6px);
	box-shadow:
		inset 0 2px 0 rgba(255, 255, 255, 0.48),
		inset 0 -2px 0 rgba(0, 0, 0, 0.08),
		0 7px 0 var(--vision-card-depth, rgba(0, 0, 0, 0.3)),
		0 11px 20px rgba(0, 0, 0, 0.2);
}

.vision-card:focus-visible::before {
	opacity: 1;
}

.vision-card:focus-visible::after {
	bottom: -7px;
	height: 7px;
	opacity: 1;
}

.vision-card--teal {
	--vision-card-depth: #004d42;
	background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
	color: #ffffff;
}

.vision-card--teal::before {
	background: linear-gradient(180deg, #3de8d4 0%, #1fd8c0 38%, var(--teal) 100%);
}

.vision-card--teal .vision-card__title {
	color: #ffffff;
}

.vision-card--teal .vision-card__subtitle {
	color: rgba(255, 255, 255, 0.94);
	opacity: 1;
}

.vision-card--teal .vision-card__icon {
	--vision-card-icon-bg: #ffffff;
	--vision-card-icon-color: #00796b;
}

.vision-card--purple {
	--vision-card-depth: #3b0764;
	background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
	color: #ffffff;
}

.vision-card--purple::before {
	background: linear-gradient(180deg, #c4b5fd 0%, #a78bfa 40%, #7c3aed 100%);
}

.vision-card--purple .vision-card__title {
	color: #ffffff;
}

.vision-card--purple .vision-card__subtitle {
	color: rgba(255, 255, 255, 0.94);
	opacity: 1;
}

.vision-card--purple .vision-card__icon {
	--vision-card-icon-bg: #ffffff;
	--vision-card-icon-color: #6d28d9;
}

.vision-card--yellow {
	--vision-card-depth: #92400e;
	background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
	color: #ffffff;
}

.vision-card--yellow::before {
	background: linear-gradient(180deg, #fef3c7 0%, #fde68a 36%, #fbbf24 100%);
}

.vision-card--yellow .vision-card__title {
	color: #ffffff;
}

.vision-card--yellow .vision-card__subtitle {
	color: rgba(255, 255, 255, 0.94);
	opacity: 1;
}

.vision-card--yellow .vision-card__icon {
	--vision-card-icon-bg: #ffffff;
	--vision-card-icon-color: #c2410c;
}

.vision-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--vision-card-icon-bg, #ffffff);
	color: var(--vision-card-icon-color, var(--teal-dark));
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.45s ease;
}

.vision-card__icon svg {
	width: 22px;
	height: 22px;
}

.vision-card:hover .vision-card__icon {
	transform: scale(1.07);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.vision-card__copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex: 1;
	min-width: 0;
}

.vision-card__title {
	font-size: 15px;
	font-weight: var(--font-weight-title);
	line-height: 1.2;
}

.vision-card__subtitle {
	font-size: 11px;
	line-height: 1.25;
	white-space: nowrap;
	transition: color 0.45s ease;
}

.vision-card:hover .vision-card__subtitle {
	color: inherit;
}

.vision-card__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	flex-shrink: 0;
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		background 0.45s ease,
		color 0.45s ease;
}

.vision-card__arrow svg {
	width: 16px;
	height: 16px;
}

.vision-card:hover .vision-card__arrow {
	transform: translateX(4px);
	background: rgba(255, 255, 255, 0.28);
}

/* ==========================================================================
   LIFE AT IIS GALLERY
   ========================================================================== */

.life-gallery {
	position: relative;
	z-index: 1;
	padding: clamp(36px, 5vw, 56px) 0;
	background: var(--navy);
	overflow: visible;
	--life-bg-split-top: 62%;
	--life-bg-split-bottom: 38%;
	--life-gallery-ease-enter: cubic-bezier(0.22, 1, 0.32, 1);
	--life-gallery-ease-exit: cubic-bezier(0.45, 0, 0.15, 1);
	--life-gallery-duration-enter: 0.55s;
	--life-gallery-duration-exit: 0.65s;
}

.life-gallery__decor {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.life-gallery__bg {
	position: absolute;
	inset: 0;
}

.life-gallery__bg-navy,
.life-gallery__bg-teal,
.life-gallery__split-shadow,
.life-gallery__split-edge {
	position: absolute;
	inset: 0;
}

.life-gallery__bg-navy {
	z-index: 0;
	background: linear-gradient(135deg, #00c19d 0%, #0088cc 50%, #004a99 100%);
	clip-path: polygon(
		0 0,
		var(--life-bg-split-top) 0,
		var(--life-bg-split-bottom) 100%,
		0 100%
	);
}

.life-gallery__split-shadow {
	z-index: 1;
	clip-path: polygon(
		calc(var(--life-bg-split-top) - 5%) 0,
		calc(var(--life-bg-split-top) + 2.5%) 0,
		calc(var(--life-bg-split-bottom) + 2.5%) 100%,
		calc(var(--life-bg-split-bottom) - 5%) 100%
	);
	background: linear-gradient(
		118deg,
		rgba(0, 0, 0, 0.38) 0%,
		rgba(0, 0, 0, 0.18) 42%,
		transparent 100%
	);
	filter: blur(10px);
	opacity: 0.75;
	transform: translateX(-6px);
}

.life-gallery__bg-teal {
	z-index: 2;
	background: linear-gradient(
		148deg,
		var(--teal-dark) 0%,
		var(--teal) 46%,
		var(--teal-light) 100%
	);
	background-size: 220% 220%;
	clip-path: polygon(
		calc(var(--life-bg-split-top) - 0.8%) 0,
		100% 0,
		100% 100%,
		calc(var(--life-bg-split-bottom) - 0.8%) 100%
	);
	will-change: background-position;
	filter: drop-shadow(-10px 0 22px rgba(0, 0, 0, 0.28));
}

.life-gallery__split-edge {
	z-index: 3;
	clip-path: polygon(
		calc(var(--life-bg-split-top) - 0.45%) 0,
		calc(var(--life-bg-split-top) + 2.1%) 0,
		calc(var(--life-bg-split-bottom) + 2.1%) 100%,
		calc(var(--life-bg-split-bottom) - 0.45%) 100%
	);
	background: linear-gradient(
		118deg,
		rgba(255, 255, 255, 0.5) 0%,
		rgba(255, 255, 255, 0.22) 18%,
		rgba(2, 196, 174, 0.55) 46%,
		rgba(0, 95, 86, 0.45) 68%,
		rgba(0, 0, 0, 0.32) 100%
	);
	box-shadow:
		-8px 0 20px rgba(0, 0, 0, 0.3),
		4px 0 16px rgba(2, 196, 174, 0.22),
		inset 2px 0 0 rgba(255, 255, 255, 0.65),
		inset -2px 0 8px rgba(0, 0, 0, 0.25);
}

.life-gallery__split-edge::after {
	content: '';
	position: absolute;
	inset: 0;
	clip-path: polygon(
		calc(var(--life-bg-split-top) + 1.75%) 0,
		calc(var(--life-bg-split-top) + 2.05%) 0,
		calc(var(--life-bg-split-bottom) + 2.05%) 100%,
		calc(var(--life-bg-split-bottom) + 1.75%) 100%
	);
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.72) 0%,
		rgba(255, 255, 255, 0.28) 100%
	);
	opacity: 0.85;
}

.life-gallery__pattern {
	position: absolute;
	inset: 0;
	z-index: 4;
	opacity: 1;
}

.life-gallery__pattern::before {
	content: '';
	position: absolute;
	inset: -4% 0;
	background-image:
		repeating-radial-gradient(
			ellipse 130% 42% at 50% 100%,
			transparent 0 31px,
			rgba(255, 255, 255, 0.055) 31px 32px,
			transparent 32px 62px
		),
		repeating-radial-gradient(
			ellipse 115% 36% at 50% 0%,
			transparent 0 27px,
			rgba(2, 196, 174, 0.05) 27px 28px,
			transparent 28px 56px
		);
	background-size: 100% 62px, 100% 56px;
	background-position: 0 0, 0 28px;
	mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
	-webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.life-gallery__pattern::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle, rgba(2, 196, 174, 0.22) 1.5px, transparent 2px),
		linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
	background-size: 56px 56px, 56px 56px, 56px 56px;
	background-position: 28px 28px, 0 0, 0 0;
	mask-image: radial-gradient(ellipse 105% 80% at 50% 48%, #000 18%, transparent 88%);
	-webkit-mask-image: radial-gradient(ellipse 105% 80% at 50% 48%, #000 18%, transparent 88%);
	opacity: 0.85;
}

.life-gallery__shell {
	position: relative;
	z-index: 1;
	overflow: visible;
	padding-block: clamp(4px, 1vw, 10px) clamp(12px, 2vw, 22px);
}

.life-gallery__header {
	display: flex;
	justify-content: center;
	margin-bottom: clamp(14px, 2vw, 22px);
	text-align: center;
}

.life-gallery__title {
	margin: 0;
	line-height: 1.12;
	text-align: center;
}

.life-gallery__title-line {
	display: inline;
	font-size: clamp(28px, 4vw, 38px);
	font-weight: var(--font-weight-display);
	letter-spacing: -0.03em;
}

.life-gallery__title-line--navy::after {
	content: ' ';
}

.life-gallery__title-line--navy {
	color: var(--white);
}

.life-gallery__title-line--teal {
	color: var(--teal-light);
}

.life-gallery__mosaic {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: auto;
	gap: 0;
	overflow: hidden;
	border-radius: 14px;
	background: var(--gray-200);
	box-shadow:
		0 10px 28px rgba(15, 42, 74, 0.16),
		0 4px 12px rgba(0, 0, 0, 0.1);
}

.life-gallery__tile {
	position: relative;
	margin: 0;
	min-width: 0;
	min-height: 0;
	aspect-ratio: 4 / 3;
	overflow: visible;
	z-index: 1;
	outline: none;
	transition:
		opacity var(--life-gallery-duration-exit) var(--life-gallery-ease-exit),
		z-index 0s linear var(--life-gallery-duration-exit);
}

.life-gallery__tile.is-hover-active {
	z-index: 8;
}

.life-gallery__frame {
	overflow: hidden;
	background: var(--gray-200);
	transition:
		opacity var(--life-gallery-duration-exit) var(--life-gallery-ease-exit),
		transform var(--life-gallery-duration-exit) var(--life-gallery-ease-exit),
		box-shadow var(--life-gallery-duration-exit) var(--life-gallery-ease-exit),
		filter var(--life-gallery-duration-exit) var(--life-gallery-ease-exit),
		visibility 0s linear var(--life-gallery-duration-exit);
}

.life-gallery__frame--grid {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 1;
	visibility: visible;
	transform: translate3d(0, 0, 0);
	transform-origin: center center;
	background: var(--gray-200);
	transition:
		opacity var(--life-gallery-duration-exit) var(--life-gallery-ease-exit),
		transform var(--life-gallery-duration-exit) var(--life-gallery-ease-exit),
		filter var(--life-gallery-duration-exit) var(--life-gallery-ease-exit),
		visibility 0s linear 0s;
}

.life-gallery__frame--grid::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(8, 21, 38, 0.42);
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--life-gallery-duration-exit) var(--life-gallery-ease-exit);
}

.life-gallery__frame--hover {
	--life-gallery-ring: 3px;
	--life-gallery-radius: 16px;
	--life-gallery-shift-x: 0px;
	--life-gallery-shift-y: 0px;
	--life-gallery-preview-max-w: min(400px, 92vw);
	--life-gallery-preview-max-h: min(320px, 58vh);
	--life-gallery-preview-w: auto;
	--life-gallery-preview-h: auto;

	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: calc(var(--life-gallery-preview-w) + (var(--life-gallery-ring) * 2));
	height: calc(var(--life-gallery-preview-h) + (var(--life-gallery-ring) * 2));
	max-width: calc(var(--life-gallery-preview-max-w) + (var(--life-gallery-ring) * 2));
	max-height: calc(var(--life-gallery-preview-max-h) + (var(--life-gallery-ring) * 2));
	padding: var(--life-gallery-ring);
	border-radius: var(--life-gallery-radius);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform:
		translate(calc(-50% + var(--life-gallery-shift-x)), calc(-50% + var(--life-gallery-shift-y)))
		scale(0.98);
	transform-origin: center center;
	transition:
		opacity var(--life-gallery-duration-exit) var(--life-gallery-ease-exit),
		transform var(--life-gallery-duration-exit) var(--life-gallery-ease-exit),
		box-shadow var(--life-gallery-duration-exit) var(--life-gallery-ease-exit),
		visibility 0s linear var(--life-gallery-duration-exit);
	background: linear-gradient(
		135deg,
		var(--teal-light) 0%,
		var(--teal) 38%,
		#2a6a9e 62%,
		var(--navy) 100%
	);
	box-shadow:
		0 6px 18px rgba(15, 42, 74, 0.18),
		0 0 24px rgba(0, 168, 150, 0.12);
}

.life-gallery__frame--hover.is-measuring {
	opacity: 0 !important;
	visibility: hidden !important;
	transition: none !important;
}

.life-gallery__frame--hover.is-open {
	opacity: 1;
	visibility: visible;
	transform:
		translate(calc(-50% + var(--life-gallery-shift-x)), calc(-50% + var(--life-gallery-shift-y)))
		scale(1);
	transition:
		opacity var(--life-gallery-duration-enter) var(--life-gallery-ease-enter),
		transform var(--life-gallery-duration-enter) var(--life-gallery-ease-enter),
		box-shadow var(--life-gallery-duration-enter) var(--life-gallery-ease-enter),
		visibility 0s linear 0s;
	box-shadow:
		0 8px 22px rgba(15, 42, 74, 0.2),
		0 0 28px rgba(0, 168, 150, 0.16);
}

.life-gallery__frame--hover.is-open:not(.is-ready) {
	opacity: 0;
	visibility: hidden;
}

.life-gallery__frame--hover::before {
	content: '';
	position: absolute;
	inset: var(--life-gallery-ring);
	border-radius: calc(var(--life-gallery-radius) - var(--life-gallery-ring));
	pointer-events: none;
	z-index: 1;
	background: #081526;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}

.life-gallery__frame--hover::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--life-gallery-radius);
	pointer-events: none;
	z-index: 4;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.life-gallery__image {
	display: block;
}

.life-gallery__image--grid {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.life-gallery__image--full {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	width: var(--life-gallery-preview-w, auto);
	height: var(--life-gallery-preview-h, auto);
	max-width: var(--life-gallery-preview-max-w, min(400px, 92vw));
	max-height: var(--life-gallery-preview-max-h, min(320px, 58vh));
	object-fit: cover;
	object-position: center;
	border-radius: 13px;
	background: #081526;
}

@media (hover: hover) and (pointer: fine) {
	.life-gallery__mosaic:has(.life-gallery__tile.is-hover-active) .life-gallery__tile:not(.is-hover-active) {
		opacity: 0.82;
	}

	.life-gallery__tile.is-hover-active .life-gallery__frame--grid::after {
		opacity: 1;
		transition: opacity var(--life-gallery-duration-enter) var(--life-gallery-ease-enter);
	}
}

.life-gallery__tile:focus-visible .life-gallery__frame--grid::after {
	opacity: 1;
}

/* ==========================================================================
   CAMPUS LIFE
   ========================================================================== */

.campus-life {
	position: relative;
	padding: 90px 0 100px;
	background: var(--white);
	overflow: hidden;
}

.campus-life__wave {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 120px;
	background: linear-gradient(to top, rgba(232,244,248,0.6) 0%, transparent 100%);
	pointer-events: none;
}

.campus-life__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}

.campus-life__header p {
	line-height: 1.7;
}

.campus-life__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

.life-card {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform var(--transition), box-shadow var(--transition);
}

.life-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.life-card__image img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.life-card__footer {
	padding: 20px;
	color: var(--white);
}

.life-card__footer--blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.life-card__footer--green { background: linear-gradient(135deg, #10b981, #059669); }
.life-card__footer--purple { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.life-card__footer--orange { background: linear-gradient(135deg, #f59e0b, #d97706); }

.life-card__footer h3 {
	font-size: 18px;
	font-weight: var(--font-weight-title);
	margin-bottom: 6px;
}

.life-card__footer p {
	font-size: 13px;
	opacity: 0.9;
	line-height: 1.5;
}

.campus-life__icons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.facility-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 90px;
}

.facility-icon svg {
	width: 56px;
	height: 56px;
	padding: 14px;
	border-radius: 50%;
}

.facility-icon span {
	font-size: 11px;
	font-weight: 600;
	color: var(--gray-600);
	text-align: center;
}

.facility-icon--blue svg { background: rgba(59,130,246,0.12); color: var(--blue-accent); }
.facility-icon--purple svg { background: rgba(124,58,237,0.12); color: var(--purple); }
.facility-icon--green svg { background: rgba(16,185,129,0.12); color: var(--green); }
.facility-icon--orange svg { background: rgba(245,158,11,0.12); color: var(--orange); }
.facility-icon--teal svg { background: rgba(0,168,150,0.12); color: var(--teal); }
.facility-icon--pink svg { background: rgba(236,72,153,0.12); color: var(--pink); }
.facility-icon--red svg { background: rgba(239,68,68,0.12); color: var(--red); }
.facility-icon--yellow svg { background: rgba(251,191,36,0.12); color: var(--yellow); }

/* ==========================================================================
   STATS
   ========================================================================== */

.stats {
	position: relative;
	background: var(--navy-dark);
	padding: 70px 0;
	overflow: hidden;
}

.stats__map-bg {
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cpath d='M100,200 Q200,100 300,200 T500,200' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
	background-size: cover;
	opacity: 0.5;
	pointer-events: none;
}

.stats__inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: center;
}

.stats__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}

.stat-item {
	text-align: center;
	color: var(--white);
}

.stat-item__icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(251,191,36,0.15);
	color: var(--yellow);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
}

.stat-item__number {
	font-size: 32px;
	font-weight: var(--font-weight-display);
	line-height: 1;
	margin-bottom: 8px;
}

.stat-item__suffix { font-size: 24px; }

.stat-item__label {
	font-size: 13px;
	color: rgba(255,255,255,0.7);
	line-height: 1.4;
}

.stats__image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.stats__image img {
	width: 340px;
	height: 400px;
	object-fit: cover;
}

/* ==========================================================================
   EVENTS
   ========================================================================== */

.events {
	--events-bg: #eef3fb;
	--events-bg-soft: #f7f9fd;
	--events-bg-accent: #e6f7f4;
	--events-bg-bottom: #dceef0;
	--events-fade: #eef3fb;
	position: relative;
	isolation: isolate;
	padding: clamp(64px, 7vw, 96px) 0 clamp(88px, 10vw, 128px);
	overflow: hidden;
	background:
		radial-gradient(ellipse 72% 56% at 8% 14%, rgba(79, 70, 229, 0.14), transparent 58%),
		radial-gradient(ellipse 64% 48% at 92% 8%, rgba(14, 165, 233, 0.16), transparent 54%),
		radial-gradient(ellipse 90% 70% at 50% 100%, rgba(0, 168, 150, 0.16), transparent 72%),
		linear-gradient(180deg, var(--events-bg) 0%, var(--events-bg-soft) 42%, var(--events-bg-accent) 78%, var(--events-bg-bottom) 100%);
}

.events::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: clamp(72px, 10vw, 112px);
	background:
		radial-gradient(ellipse 85% 100% at 15% 100%, rgba(79, 70, 229, 0.1), transparent 68%),
		radial-gradient(ellipse 85% 100% at 85% 100%, rgba(14, 165, 233, 0.12), transparent 68%),
		linear-gradient(180deg, rgba(238, 243, 251, 0) 0%, var(--events-bg-bottom) 100%);
	pointer-events: none;
	z-index: 0;
}

.events__art {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	overflow: visible;
}

.events__art::before {
	content: '';
	position: absolute;
	inset: -12% -8%;
	background-image:
		linear-gradient(90deg, rgba(0, 136, 204, 0.08) 1px, transparent 1px),
		linear-gradient(0deg, rgba(0, 136, 204, 0.06) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(ellipse 88% 82% at 50% 50%, rgba(0, 0, 0, 0.82), transparent 100%);
	animation: eventsGridDrift 26s linear infinite;
}

.events__orb,
.events__ribbon,
.events__spark {
	position: absolute;
	display: block;
}

.events__orb {
	width: clamp(140px, 18vw, 280px);
	aspect-ratio: 1;
	border-radius: 50%;
	filter: blur(2px);
	opacity: 0.5;
	animation: eventsOrbFloat 12s ease-in-out infinite alternate;
}

.events__orb--one {
	left: -72px;
	top: 18%;
	background: radial-gradient(circle, rgba(79, 70, 229, 0.2), rgba(79, 70, 229, 0));
}

.events__orb--two {
	right: -40px;
	bottom: -24px;
	background: radial-gradient(circle, rgba(14, 165, 233, 0.26), rgba(14, 165, 233, 0));
	animation-delay: -4s;
}

.events__ribbon {
	width: clamp(140px, 16vw, 240px);
	height: 18px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(0, 168, 150, 0), rgba(0, 168, 150, 0.24), rgba(245, 179, 1, 0));
	transform: rotate(-18deg);
	animation: eventsRibbonSweep 9s ease-in-out infinite;
}

.events__ribbon--one {
	top: 18%;
	right: 18%;
}

.events__ribbon--two {
	left: 8%;
	bottom: 8%;
	transform: rotate(14deg);
	animation-delay: -3s;
}

.events__spark {
	width: 12px;
	height: 12px;
	border-radius: 4px;
	background: var(--teal);
	box-shadow: 0 0 24px rgba(0, 168, 150, 0.45);
	animation: eventsSparkTwinkle 4.8s ease-in-out infinite;
}

.events__spark--one { left: 18%; top: 24%; }
.events__spark--two { right: 12%; top: 40%; background: #f5b301; animation-delay: -1.4s; }
.events__spark--three { left: 50%; bottom: 6%; background: #38bdf8; animation-delay: -2.6s; }

.events__shell {
	position: relative;
	z-index: 2;
}

.events__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: clamp(28px, 4vw, 42px);
	flex-wrap: wrap;
}

.events__title {
	margin: 0;
	line-height: 1.15;
}

.events__title-line {
	display: inline;
	font-size: clamp(24px, 4vw, 38px);
	font-weight: var(--font-weight-display);
	letter-spacing: -0.02em;
}

.events__title-line--navy::after {
	content: ' ';
}

.events__title-line--navy {
	color: var(--navy);
}

.events__title-line--teal {
	color: var(--teal);
}

.events__btn.btn--teal {
	gap: 10px;
	padding: 12px 24px;
	border-radius: 999px;
	border: none;
	color: var(--white);
	background: linear-gradient(135deg, #4f46e5 0%, #0ea5e9 52%, #00a896 100%);
	box-shadow: 0 14px 32px rgba(79, 70, 229, 0.28);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		filter 0.3s ease;
}

.events__btn.btn--teal:hover {
	background: linear-gradient(135deg, #4338ca 0%, #0284c7 52%, #008f7f 100%);
	border-color: transparent;
	box-shadow: 0 18px 38px rgba(37, 99, 235, 0.34);
	transform: translateY(-2px);
}

.events__carousel {
	--events-visible: 4;
	--events-gap: clamp(18px, 2vw, 26px);
	position: relative;
	padding-bottom: clamp(12px, 2vw, 20px);
}

.events__viewport {
	position: relative;
	overflow: hidden;
	width: 100%;
	container-type: inline-size;
	padding-bottom: 4px;
}

.events__viewport::before,
.events__viewport::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: clamp(24px, 4vw, 48px);
	z-index: 2;
	pointer-events: none;
}

.events__viewport::before {
	left: 0;
	background: linear-gradient(90deg, var(--events-fade), rgba(238, 243, 251, 0));
}

.events__viewport::after {
	right: 0;
	background: linear-gradient(270deg, var(--events-fade), rgba(238, 243, 251, 0));
}

.events__track {
	display: flex;
	gap: var(--events-gap);
	will-change: transform;
}

.events__track .event-card {
	flex: 0 0 calc((100cqw - (var(--events-visible) - 1) * var(--events-gap)) / var(--events-visible));
	min-width: 0;
}

.events__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 26px);
	overflow: visible;
}

.event-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid rgba(0, 136, 204, 0.12);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 18px 44px rgba(15, 42, 74, 0.08);
	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.45s ease,
		background-color 0.45s ease;
}

.event-card::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 42%);
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.45s ease;
}

@media (hover: hover) {
	.event-card:hover {
		transform: translateY(-10px) scale(1.02);
		border-color: rgba(0, 168, 150, 0.34);
		box-shadow: 0 30px 68px rgba(15, 42, 74, 0.16);
	}

	.event-card:hover::before {
		opacity: 0.65;
	}
}

.event-card__image-link {
	display: block;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.4s ease;
}

@media (hover: hover) {
	.event-card:hover .event-card__image-link {
		opacity: 0.96;
	}
}

.event-card__image-link:focus-visible {
	outline: 2px solid var(--teal);
	outline-offset: 3px;
	border-radius: 20px 20px 0 0;
}

.event-card__image {
	position: relative;
	overflow: hidden;
}

.event-card__image--empty {
	min-height: clamp(170px, 13vw, 210px);
	background: linear-gradient(135deg, rgba(0, 168, 150, 0.12), rgba(0, 136, 204, 0.18));
}

.events__empty {
	margin: 0;
	padding: 20px 24px;
	border-radius: 16px;
	background: rgba(0, 136, 204, 0.08);
	color: var(--navy);
	font-size: 0.95rem;
	line-height: 1.6;
}

.event-card__image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 52%, rgba(15, 42, 74, 0.28) 100%);
	opacity: 0.75;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

@media (hover: hover) {
	.event-card:hover .event-card__image::after {
		opacity: 0.5;
	}
}

.event-card__image img,
.event-card__img {
	display: block;
	width: 100%;
	height: clamp(170px, 13vw, 210px);
	object-fit: cover;
	transform: scale(1.04);
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
	.event-card:hover .event-card__image img,
	.event-card:hover .event-card__img {
		transform: scale(1.1);
	}
}

.event-card__body {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	padding: 10px 14px 12px;
	text-align: center;
}

.event-card__body h3 {
	margin: 0;
	font-size: clamp(0.78rem, 0.9vw, 0.88rem);
	font-weight: 600;
	color: var(--navy);
	line-height: 1.4;
	text-align: center;
	transition: color 0.4s ease;
}

@media (hover: hover) {
	.event-card:hover .event-card__body h3 {
		color: var(--teal-dark);
	}
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(ellipse 75% 60% at 12% 0%, rgba(0, 168, 150, 0.14) 0%, transparent 58%),
		radial-gradient(ellipse 65% 55% at 88% 100%, rgba(59, 130, 246, 0.1) 0%, transparent 55%),
		linear-gradient(165deg, #0c2340 0%, #0f2a4a 48%, #0a1e36 100%);
	color: rgba(255, 255, 255, 0.88);
	padding-top: clamp(48px, 5vw, 64px);
}

.site-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 92%);
}

.site-footer__waves {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.site-footer__wave {
	position: absolute;
	left: -20%;
	width: 140%;
	height: clamp(90px, 12vw, 140px);
	fill: rgba(255, 255, 255, 0.045);
	will-change: transform;
}

.site-footer__wave--back {
	bottom: 18%;
	opacity: 0.55;
	animation: footerWaveDrift 28s linear infinite;
}

.site-footer__wave--mid {
	bottom: 10%;
	opacity: 0.75;
	fill: rgba(255, 255, 255, 0.06);
	animation: footerWaveDrift 20s linear infinite reverse;
}

.site-footer__wave--front {
	bottom: 0;
	opacity: 0.9;
	fill: rgba(255, 255, 255, 0.08);
	animation: footerWaveDrift 14s linear infinite;
}

.site-footer > .container,
.site-footer .footer-bottom {
	position: relative;
	z-index: 2;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1fr);
	gap: clamp(24px, 3vw, 40px);
	padding-bottom: clamp(40px, 4.5vw, 56px);
}

.footer-col {
	position: relative;
	min-width: 0;
}

.footer-col--links,
.footer-col--contact,
.footer-col--social {
	padding-left: clamp(20px, 2.5vw, 32px);
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
	display: inline-flex;
	align-items: flex-start;
	margin-bottom: 16px;
	color: var(--white);
	text-decoration: none;
}

.footer-brand__card {
	position: relative;
	display: block;
	width: fit-content;
	max-width: 100%;
	transform: perspective(900px) rotateX(5deg) rotateY(-4deg);
	transform-style: preserve-3d;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-brand:hover .footer-brand__card {
	transform: perspective(900px) rotateX(2deg) rotateY(-2deg) translateY(-2px);
}

.footer-brand__card-glow {
	position: absolute;
	inset: -6px;
	border-radius: 16px;
	background: radial-gradient(circle at 30% 20%, rgba(0, 168, 150, 0.28), transparent 58%);
	filter: blur(12px);
	opacity: 0.75;
	transform: translateZ(-8px);
}

.footer-brand__card-surface {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: clamp(10px, 1.2vw, 14px);
	width: fit-content;
	max-width: min(100%, 320px);
	padding: clamp(8px, 1vw, 12px) clamp(12px, 1.4vw, 16px);
	border-radius: 14px;
	background:
		linear-gradient(145deg, #ffffff 0%, #f3f8fc 48%, #e8f2fa 100%);
	border: 1px solid rgba(255, 255, 255, 0.92);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 10px 24px rgba(0, 0, 0, 0.22),
		0 4px 12px rgba(15, 42, 74, 0.14),
		0 0 0 1px rgba(255, 255, 255, 0.08);
	transform: translateZ(10px);
}

.footer-brand__card-surface::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, transparent 42%, rgba(255, 255, 255, 0.18) 100%);
	pointer-events: none;
}

.footer-brand__logo {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
	width: auto;
	height: clamp(44px, 4.2vw, 56px);
	max-height: 56px;
	max-width: min(72vw, 260px);
	object-fit: contain;
	object-position: left center;
	filter: drop-shadow(0 3px 8px rgba(15, 42, 74, 0.1));
}

.footer-brand__tagline {
	margin: 0;
	max-width: 36ch;
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
}

.footer-col__title {
	margin: 0 0 18px;
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.78);
	transition: color var(--transition);
}

.footer-links a:hover {
	color: var(--teal-light);
}

.footer-contact {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 14px;
	font-size: 14px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.78);
}

.footer-contact li:last-child {
	margin-bottom: 0;
}

.footer-contact a {
	color: inherit;
	transition: color var(--transition);
}

.footer-contact a:hover {
	color: var(--teal-light);
}

.footer-contact__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: var(--teal-light);
}

.footer-social {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 8px;
}

.footer-social__link {
	--social-accent: var(--teal);
	position: relative;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		color 0.25s ease,
		background 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

.footer-social__link:hover {
	color: var(--white);
	background: var(--social-accent);
	border-color: transparent;
	box-shadow: 0 10px 24px rgba(15, 42, 74, 0.14);
	transform: translateY(-3px);
}

.footer-social__link--facebook { --social-accent: #1877f2; }
.footer-social__link--instagram {
	--social-accent: #e4405f;
}
.footer-social__link--youtube { --social-accent: #ff0000; }
.footer-social__link--twitter { --social-accent: #0f1419; }
.footer-social__link--linkedin { --social-accent: #0a66c2; }

.footer-bottom {
	background: rgba(0, 0, 0, 0.22);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.82);
	padding: 18px 0;
}

.footer-bottom__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 13px;
}

.footer-bottom__copy {
	margin: 0;
}

.footer-bottom__links {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-bottom__links a {
	color: rgba(255, 255, 255, 0.82);
	transition: color var(--transition);
}

.footer-bottom__links a:hover {
	color: var(--teal-light);
}

.footer-bottom__sep {
	color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   PAGE CONTENT
   ========================================================================== */

.page-content {
	padding: 60px 0;
}

.page-content h1 {
	font-size: 32px;
	color: var(--navy);
	margin-bottom: 24px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (min-width: 1600px) {
	:root {
		--container-max: 1780px;
		--gutter: clamp(28px, 2.8vw, 64px);
	}

	.about {
		--about-card-max: 1540px;
	}
}

@media (min-width: 1920px) {
	:root {
		--container-max: 1920px;
	}

	.about {
		--about-card-max: 1680px;
	}
}

@media (min-width: 1400px) {
	.mission__top,
	.vision__top {
		gap: 72px;
	}

	.about {
		--about-card-max: 1360px;
	}

	.about__inner {
		gap: 52px;
		padding: 44px 48px;
	}

	.accreditations__inner {
		gap: 32px;
	}

	.events__carousel,
	.events__grid,
	.campus-life__grid {
		gap: 28px;
	}
}

@media (max-width: 1024px) {
	.about__inner,
	.mission__top,
	.vision__top,
	.accreditations__inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.campus-life__grid { grid-template-columns: repeat(2, 1fr); }

	.stats__inner { grid-template-columns: 1fr; }
	.stats__grid { grid-template-columns: repeat(3, 1fr); }
	.stats__image { display: none; }

	.events__carousel { --events-visible: 2; }
	.events__grid { grid-template-columns: repeat(2, 1fr); }

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.footer-col--social {
		grid-column: span 2;
	}

	.accreditations__inner {
		grid-template-columns: 1fr;
		gap: 28px;
		min-height: auto;
	}

	.accreditations__content {
		max-width: none;
	}

	.accreditations__left-icons {
		inset: 0;
		opacity: 0.55;
	}

	.accreditations__left-icon {
		pointer-events: auto;
	}

	.accreditations__showcase {
		width: 100%;
		margin-left: 0;
		min-height: 260px;
	}

	.accreditations__badges {
		min-height: 260px;
	}

	.accreditations__item {
		width: clamp(88px, 20vw, 124px);
		height: clamp(88px, 20vw, 124px);
	}

	.accreditations__item:nth-child(1) { left: 2%; top: 8%; }
	.accreditations__item:nth-child(2) { left: 28%; top: 52%; }
	.accreditations__item:nth-child(3) { left: 52%; top: 4%; }
	.accreditations__item:nth-child(4) { left: 68%; top: 48%; }
	.accreditations__item:nth-child(5) { left: 82%; top: 10%; }
	.accreditations__item:nth-child(6) { left: 12%; top: 68%; }
}

@media (max-width: 1024px) {
	.header__utilities {
		display: none;
		gap: 10px;
	}

	.header__contact-item--email {
		display: none;
	}

	.header__grid {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas: "branding toggle";
		align-items: center;
		column-gap: 10px;
		padding: 10px var(--gutter) 12px;
	}

	.site-branding {
		grid-area: branding;
		max-width: none;
		min-width: 0;
	}

	.header__aside {
		display: contents;
	}

	.header__top {
		display: contents;
	}

	.header__nav-row,
	#primary-nav-home,
	.header__nav-slot {
		display: none !important;
		height: 0 !important;
		overflow: hidden !important;
		visibility: hidden !important;
		pointer-events: none !important;
		padding: 0;
		margin: 0;
	}

	.site-header .primary-navigation,
	.site-header .primary-menu,
	.site-header .mobile-nav__scroll {
		display: none !important;
		visibility: hidden !important;
		height: 0 !important;
		overflow: hidden !important;
		pointer-events: none !important;
	}

	#primary-navigation:not(.is-open) {
		display: none !important;
	}

	.mobile-menu-toggle {
		grid-area: toggle;
		display: flex;
		flex-shrink: 0;
		justify-self: end;
		align-self: center;
		margin-left: 0;
	}

	body.nav-open .mobile-menu-close {
		position: fixed;
		top: max(12px, env(safe-area-inset-top, 0px));
		right: 14px;
		z-index: 10080;
		display: flex;
	}
}

@media (max-width: 1100px) {
	.about::before,
	.about::after {
		opacity: 0.85;
	}
}

@media (max-width: 768px) {
	.about::before,
	.about::after {
		display: none;
	}

	.about {
		background: transparent;
	}

	.accreditations__badges {
		min-height: 300px;
	}

	.accreditations__item {
		width: clamp(76px, 18vw, 104px);
		height: clamp(76px, 18vw, 104px);
	}

	.accreditations__item:nth-child(1) { left: 4%; top: 6%; }
	.accreditations__item:nth-child(2) { left: 32%; top: 48%; }
	.accreditations__item:nth-child(3) { left: 58%; top: 2%; }
	.accreditations__item:nth-child(4) { left: 72%; top: 44%; }
	.accreditations__item:nth-child(5) { left: 84%; top: 8%; }
	.accreditations__item:nth-child(6) { left: 18%; top: 62%; }

	@keyframes accreditationsDrift {
		0%,
		100% {
			transform: translate(0, 0) rotate(0deg);
		}
		50% {
			transform: translate(5px, -8px) rotate(1.5deg);
		}
	}

	.site-header {
		overflow: visible;
	}

	.site-logo {
		gap: 10px;
		min-width: 0;
	}

	.site-logo__text {
		min-width: 0;
	}

	.site-logo__line--top {
		font-size: 9px;
	}

	.site-logo__line--main {
		font-size: 15px;
	}

	.site-logo__line--bottom {
		font-size: 9px;
	}

	.site-logo__mark {
		width: 56px;
		height: 56px;
	}

	.hero { padding: 40px 0 60px; }

	.mission__cards {
		grid-template-columns: 1fr;
	}

	.vision__cards {
		grid-template-columns: repeat(2, minmax(0, 332px));
	}

	.life-gallery__mosaic {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.life-gallery__tile {
		aspect-ratio: 4 / 3;
	}

	.vision__title-line--primary {
		font-size: clamp(14px, 4.2cqi, 28px);
	}

	.vision__title-line--accent {
		font-size: clamp(20px, 5.2vw, 26px);
	}

	.campus-life__grid { grid-template-columns: 1fr; }

	.campus-facilities__grid {
		grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
		gap: 12px;
	}

	.stats__grid { grid-template-columns: repeat(2, 1fr); }

	.events__carousel { --events-visible: 1; }
	.events__grid { grid-template-columns: 1fr; }

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.footer-col--links,
	.footer-col--contact,
	.footer-col--social {
		padding-left: 0;
		border-left: none;
		padding-top: 24px;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.footer-col--social {
		grid-column: auto;
	}

	.footer-social {
		flex-wrap: wrap;
	}

	.footer-links {
		grid-template-columns: 1fr 1fr;
	}

	.about {
		--about-overlap-top: clamp(40px, 9vw, 56px);
		--about-overlap-bottom: clamp(40px, 10vw, 56px);
	}

	.about__inner {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: clamp(24px, 5vw, 36px);
		border-radius: 20px;
		max-width: 100%;
	}

	.about__collage {
		--about-collage-gap: 12px;
	}

	.about__shot--secondary {
		transform: rotate(-1.5deg);
	}

	.about__shot--tertiary {
		transform: rotate(1deg);
	}

	.about__collage:hover .about__shot--secondary {
		transform: rotate(-1.5deg);
	}

	.about__collage:hover .about__shot--tertiary {
		transform: rotate(1deg);
	}

	.about__years-celebration {
		top: var(--badge-intro-top, 50%);
	}

	.about__years-badge.is-intro:not(.is-settled) {
		top: var(--badge-intro-top, 50%);
		left: 50%;
		right: auto;
		transform: translate(-50%, -50%);
	}

	.about__years-badge.is-settled {
		top: auto;
		bottom: var(--badge-settle-bottom, 18%);
		right: var(--badge-settle-right, 4%);
		left: auto;
		transform: none;
	}

	.about__years-badge {
		padding: 10px 14px 10px 12px;
		gap: 10px;
	}

	.about__years-badge-icon {
		width: 34px;
		height: 34px;
	}

	.about__years-badge-copy span {
		white-space: normal;
		max-width: 12ch;
	}

	.footer-bottom__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
	.stat-item__number { font-size: 26px; }

	.vision__cards {
		grid-template-columns: minmax(0, 332px);
	}

	.vision-card__subtitle {
		white-space: normal;
	}

	.life-gallery__mosaic {
		grid-template-columns: 1fr;
	}

	.life-gallery__tile {
		aspect-ratio: 16 / 10;
	}
}

/* ==========================================================================
   Why Choose IIS
   ========================================================================== */

.why-choose {
	position: relative;
	isolation: isolate;
	background: #eef8ff;
	padding: clamp(48px, 6vw, 76px) 0 clamp(40px, 5vw, 64px);
	overflow: hidden;
}

.why-choose__shell {
	position: relative;
	z-index: 2;
}

.why-choose__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: clamp(24px, 4vw, 36px);
}

.why-choose__title {
	margin: 0;
	max-width: min(100%, 620px);
	line-height: 1.15;
}

.why-choose__title-line {
	display: inline;
	font-size: clamp(24px, 4vw, 38px);
	font-weight: var(--font-weight-display);
	letter-spacing: -0.02em;
}

.why-choose__title-line--navy {
	color: var(--navy);
	margin-right: 0.34em;
}

.why-choose__title-line--navy::after {
	content: none;
}

.why-choose__title-line--teal {
	color: var(--teal);
}

.why-choose__dots {
	display: grid;
	grid-template-columns: repeat(4, 8px);
	gap: 8px;
	flex-shrink: 0;
	margin-top: 8px;
}

.why-choose__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(0, 136, 204, 0.42);
}

.why-choose__bubbles {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	background: linear-gradient(180deg, #eef8ff 0%, #e4f2fb 100%);
	opacity: 0;
	transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-choose__bubbles.is-visible {
	opacity: 1;
}

.why-choose__bubble {
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50%;
	pointer-events: none;
	will-change: transform, opacity;
	opacity: 0.92;
	box-shadow:
		inset 0 0 28px rgba(255, 255, 255, 0.42),
		0 8px 24px rgba(15, 42, 74, 0.04);
}

.why-choose__bubbles.is-static .why-choose__bubble {
	will-change: auto;
}

.why-choose__bubbles-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0.24) 100%),
		radial-gradient(ellipse 90% 70% at 50% 100%, rgba(238, 248, 255, 0.35), transparent 70%);
}

.why-choose__body {
	display: block;
}

.why-choose__stage {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: flex-start;
	padding: 0;
	overflow: visible;
}

.why-choose__content {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	gap: clamp(16px, 2.4vw, 28px);
	width: 100%;
	margin: 0;
	overflow: visible;
}

.why-choose__stats-panel {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	column-gap: 6px;
	align-items: stretch;
	flex: 1 1 auto;
	min-width: 0;
	max-width: none;
	padding: clamp(18px, 2.5vw, 28px) clamp(12px, 1.8vw, 20px);
	border: 1.5px solid rgba(0, 136, 204, 0.34);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 18px 42px rgba(15, 42, 74, 0.08);
	backdrop-filter: blur(8px);
}

.why-choose__stat {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	min-width: 0;
	overflow: hidden;
	padding: 8px clamp(6px, 0.9vw, 10px);
	border-right: 1px solid rgba(15, 42, 74, 0.1);
}

.why-choose__stat:last-child {
	border-right: 0;
}

.why-choose__stat-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	margin-top: 2px;
	border-radius: 14px;
	position: relative;
	overflow: visible;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.why-choose__stat-icon::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: inherit;
	border: 1.5px solid currentColor;
	opacity: 0;
	transform: scale(0.88);
}

.why-choose__icon-svg {
	display: block;
	overflow: visible;
	filter: drop-shadow(0 2px 4px rgba(15, 42, 74, 0.08));
}

.why-choose__icon-inner {
	transform-origin: center;
}

.why-choose__icon-stroke {
	fill: none;
	stroke-dasharray: 100;
	stroke-dashoffset: 0;
}

.why-choose__icon-fill {
	transform-origin: center;
}

.why-choose__icon-accent {
	transform-origin: center;
}

.why-choose__icon-dot {
	transform-origin: center;
}

.why-choose__stat.is-icons-animated .why-choose__icon-inner {
	animation: whyChooseIconPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-delay: calc(var(--stat-index, 0) * 0.1s + 0.08s);
}

.why-choose__stat.is-icons-animated .why-choose__icon-stroke {
	animation: whyChooseIconDraw 4.2s cubic-bezier(0.42, 0.03, 0.24, 1) infinite;
	animation-delay: calc(var(--stat-index, 0) * 0.1s + 0.05s);
}

.why-choose__stat.is-icons-animated .why-choose__icon-accent,
.why-choose__stat.is-icons-animated .why-choose__icon-fill {
	animation: whyChooseIconGlow 3s ease-in-out infinite;
	animation-delay: calc(var(--stat-index, 0) * 0.12s);
}

.why-choose__stat.is-icons-animated .why-choose__icon-accent {
	animation-delay: calc(var(--stat-index, 0) * 0.12s);
}

.why-choose__stat.is-icons-animated .why-choose__icon-fill {
	animation-delay: calc(var(--stat-index, 0) * 0.12s + 0.08s);
}

.why-choose__stat.is-icons-animated .why-choose__icon-dot {
	animation: whyChooseIconDotPulse 2.2s ease-in-out infinite;
}

.why-choose__stat.is-icons-animated .why-choose__icon-orbit,
.why-choose__stat.is-icons-animated .why-choose__icon-meridian {
	fill: none;
	stroke-dasharray: 100;
	stroke-dashoffset: 0;
}

.why-choose__stat.is-icons-animated .why-choose__icon-orbit {
	animation: whyChooseIconDraw 4.2s cubic-bezier(0.42, 0.03, 0.24, 1) infinite, whyChooseIconSpin 14s linear infinite;
}

.why-choose__stat.is-icons-animated .why-choose__icon-meridian {
	animation: whyChooseIconDraw 4.2s cubic-bezier(0.42, 0.03, 0.24, 1) infinite, whyChooseIconSpin 14s linear infinite reverse;
}

.why-choose__stat.is-icons-animated .why-choose__stat-icon::after {
	animation: whyChooseIconRing 3.6s ease-out infinite;
	animation-delay: calc(var(--stat-index, 0) * 0.14s + 0.2s);
}

.why-choose__stat:hover .why-choose__stat-icon {
	transform: translateY(-2px) scale(1.05);
}

.why-choose__stat:hover.is-icons-animated .why-choose__icon-stroke,
.why-choose__stat:hover.is-icons-animated .why-choose__icon-orbit,
.why-choose__stat:hover.is-icons-animated .why-choose__icon-meridian {
	animation-duration: 3s;
}

.why-choose__stat--yellow .why-choose__stat-icon {
	color: #d97706;
	background: linear-gradient(145deg, rgba(251, 191, 36, 0.28), rgba(245, 179, 1, 0.12));
}

.why-choose__stat--blue .why-choose__stat-icon {
	color: #0284c7;
	background: linear-gradient(145deg, rgba(56, 189, 248, 0.24), rgba(0, 136, 204, 0.1));
}

.why-choose__stat--red .why-choose__stat-icon {
	color: #dc2626;
	background: linear-gradient(145deg, rgba(248, 113, 113, 0.24), rgba(229, 57, 53, 0.1));
}

.why-choose__stat--teal .why-choose__stat-icon {
	color: var(--teal-dark);
	background: linear-gradient(145deg, rgba(45, 212, 191, 0.24), rgba(0, 168, 150, 0.1));
}

.why-choose__stat--purple .why-choose__stat-icon {
	color: #7c3aed;
	background: linear-gradient(145deg, rgba(196, 181, 253, 0.28), rgba(124, 58, 237, 0.1));
}

.why-choose__stat-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3px;
	min-width: 0;
	flex: 1 1 auto;
	overflow: hidden;
}

.why-choose__stat-value {
	margin: 0;
	font-size: clamp(0.98rem, 1.35vw, 1.28rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--navy);
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.why-choose__stat--yellow .why-choose__stat-value {
	background: linear-gradient(135deg, #f5b301 0%, #d97706 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.why-choose__stat--blue .why-choose__stat-value {
	background: linear-gradient(135deg, #38bdf8 0%, #0077b3 55%, #004a99 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.why-choose__stat--red .why-choose__stat-value {
	background: linear-gradient(135deg, #f87171 0%, #dc2626 55%, #b91c1c 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.why-choose__stat--teal .why-choose__stat-value {
	background: linear-gradient(135deg, #2dd4bf 0%, var(--teal) 55%, var(--teal-dark) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.why-choose__stat--purple .why-choose__stat-value {
	background: linear-gradient(135deg, #c4b5fd 0%, #7c3aed 55%, #5b21b6 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.why-choose__stat-number,
.why-choose__stat-suffix {
	display: inline;
	white-space: nowrap;
}

.why-choose__stat-label {
	margin: 0;
	font-size: clamp(0.6rem, 0.8vw, 0.7rem);
	font-weight: 500;
	line-height: 1.25;
	color: rgba(15, 42, 74, 0.72);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.why-choose__photo {
	position: relative;
	flex: 0 0 auto;
	width: clamp(200px, 24vw, 300px);
	align-self: flex-end;
	margin-left: auto;
	z-index: 3;
	overflow: visible;
	opacity: 0;
	transform: translate3d(16px, 12px, 0);
	transition:
		opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-choose__photo.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.why-choose__photo-frame {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	overflow: visible;
	perspective: 1100px;
}

.why-choose__photo-3d {
	position: relative;
	z-index: 1;
	width: 100%;
	border-radius: 18px;
	transform: rotateY(-14deg) rotateX(5deg) translateZ(0);
	transform-style: preserve-3d;
	box-shadow:
		16px 22px 40px rgba(15, 42, 74, 0.28),
		6px 8px 18px rgba(0, 136, 204, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.65);
	transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-choose__photo-3d::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0%, transparent 42%, rgba(15, 42, 74, 0.12) 100%);
	pointer-events: none;
	z-index: 2;
}

.why-choose__photo-3d::after {
	content: '';
	position: absolute;
	left: -10px;
	bottom: 8%;
	width: 10px;
	height: 72%;
	border-radius: 4px 0 0 4px;
	background: linear-gradient(180deg, rgba(0, 136, 204, 0.35), rgba(15, 42, 74, 0.55));
	transform: translateZ(-12px) rotateY(90deg);
	transform-origin: right center;
	opacity: 0.75;
}

.why-choose__photo.is-visible .why-choose__photo-3d {
	animation: whyChoosePhotoTilt 7s ease-in-out infinite alternate;
}

.why-choose__students-img {
	display: block;
	width: 100%;
	height: auto;
	max-height: clamp(240px, 30vw, 340px);
	object-fit: cover;
	object-position: center;
	border-radius: 18px;
}

@media (max-width: 1180px) {
	.why-choose__content {
		flex-direction: column;
		align-items: stretch;
	}

	.why-choose__stats-panel {
		flex: 1 1 auto;
		width: 100%;
		max-width: 100%;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		row-gap: 12px;
	}

	.why-choose__stat {
		border-right: 0;
		border-bottom: 1px solid rgba(15, 42, 74, 0.08);
		padding-bottom: 14px;
	}

	.why-choose__stat:nth-child(3n) {
		border-right: 0;
	}

	.why-choose__stat:nth-last-child(-n+2) {
		border-bottom: 0;
	}

	.why-choose__photo {
		width: min(100%, 320px);
		margin-left: 0;
		align-self: flex-end;
	}
}

@media (max-width: 900px) {
	.why-choose__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.why-choose__stats-panel {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.why-choose__stat-value {
		white-space: normal;
	}

	.why-choose__stat-label {
		-webkit-line-clamp: 3;
	}

	.why-choose__stat:nth-child(3n) {
		border-right: 1px solid rgba(15, 42, 74, 0.1);
	}

	.why-choose__stat:nth-child(2n) {
		border-right: 0;
	}

	.why-choose__stat:nth-last-child(-n+2) {
		border-bottom: 1px solid rgba(15, 42, 74, 0.08);
	}

	.why-choose__stat:last-child {
		border-bottom: 0;
	}
}

@media (max-width: 560px) {
	.why-choose__stats-panel {
		grid-template-columns: 1fr;
	}

	.why-choose__stat,
	.why-choose__stat:nth-child(2n),
	.why-choose__stat:nth-child(3n) {
		border-right: 0;
		border-bottom: 1px solid rgba(15, 42, 74, 0.08);
	}

	.why-choose__stat:last-child {
		border-bottom: 0;
	}
}
