/* ==========================================================================
   IISAUH THEME2026 — Hero (scroll-reveal)
   ========================================================================== */

.hero {
	position: relative;
	z-index: 1;
	background: #0f2a4a;
	overflow: hidden;
	max-width: 100%;
}

.hero.is-logo-bump-active {
	overflow: visible;
}

.hero.is-logo-bump-active .hero__logo-flight {
	z-index: 12;
}

/* Hero flying logo — top → center → bottom center with live idle effects */
.hero__logo-flight {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	overflow: visible;
}

.hero__logo-flight.is-complete {
	display: none;
}

.hero__logo-flight-inner {
	position: absolute;
	left: var(--logo-x, 50%);
	top: var(--logo-y, 11%);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	transform:
		translate(-50%, -50%)
		scale(var(--logo-scale, 0.72))
		rotate(var(--logo-rotate, -2deg));
	opacity: 0;
	filter: blur(var(--logo-blur, 0px));
	transition:
		left 2.6s cubic-bezier(0.22, 1, 0.36, 1),
		top 2.6s cubic-bezier(0.22, 1, 0.36, 1),
		transform 2.6s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.65s ease,
		filter 1.2s ease;
	will-change: left, top, transform, opacity;
}

.hero__logo-flight-bounce {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

.hero__logo-flight-img {
	display: block;
	position: relative;
	z-index: 2;
	width: clamp(110px, 12vw, 170px);
	max-width: 170px;
	height: auto;
	object-fit: contain;
	filter:
		drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35))
		drop-shadow(0 0 18px rgba(94, 240, 220, 0.25));
}

.hero__logo-flight-glow {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 0;
	width: clamp(85px, 10vw, 135px);
	height: clamp(85px, 10vw, 135px);
	transform: translate(-50%, -50%) scale(0.4);
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(94, 240, 220, 0.42) 0%,
		rgba(59, 143, 217, 0.2) 38%,
		transparent 72%
	);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero__logo-flight-ring {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 0;
	width: clamp(65px, 7vw, 100px);
	height: clamp(65px, 7vw, 100px);
	transform: translate(-50%, -50%) scale(0.5);
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
}

.hero__logo-flight-ring--2 {
	width: clamp(75px, 8vw, 118px);
	height: clamp(75px, 8vw, 118px);
	border-color: rgba(94, 240, 220, 0.35);
}

.hero__logo-flight-sparkles {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 0;
	width: 10px;
	height: 10px;
	transform: translate(-50%, -50%);
	opacity: 0;
	pointer-events: none;
}

.hero__logo-flight-sparkles::before,
.hero__logo-flight-sparkles::after {
	content: '';
	position: absolute;
	inset: -20px;
	border-radius: 50%;
	background:
		radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1px, transparent 2px),
		radial-gradient(circle, rgba(94, 240, 220, 0.9) 0 1px, transparent 2px);
	background-size: 28px 28px, 36px 36px;
	background-position: 0 0, 12px 14px;
}

.hero__logo-flight.is-waiting .hero__logo-flight-inner {
	opacity: 0;
	visibility: hidden;
}

.hero__logo-flight.is-launching .hero__logo-flight-inner,
.hero__logo-flight.is-intro-visible .hero__logo-flight-inner {
	opacity: 1;
	visibility: visible;
}

.hero__logo-flight.is-flying-to-center .hero__logo-flight-inner,
.hero__logo-flight.is-drifting-down .hero__logo-flight-inner {
	--logo-blur: 0px;
}

.hero__logo-flight.is-flying-to-center .hero__logo-flight-glow,
.hero__logo-flight.is-at-center .hero__logo-flight-glow {
	opacity: 0.85;
	transform: translate(-50%, -50%) scale(1);
}

.hero__logo-flight.is-settled-bottom .hero__logo-flight-inner,
.hero__logo-flight.is-drifting-down .hero__logo-flight-inner {
	--logo-blur: 0px;
}

.hero__logo-flight.is-bump-loop .hero__logo-flight-bounce,
.hero__logo-flight.is-bump-loop .hero__logo-flight-burst {
	animation: heroLogoFlightBump 6s infinite;
	animation-delay: var(--bump-start-offset, 0s);
	animation-timing-function:
		linear,
		cubic-bezier(0.42, 0, 0.58, 1),
		cubic-bezier(0.28, 1.12, 0.48, 1),
		cubic-bezier(0.22, 1, 0.36, 1),
		cubic-bezier(0.22, 1, 0.36, 1),
		linear;
}

.hero__logo-flight-burst {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 4;
	width: 0;
	height: 0;
	pointer-events: none;
	overflow: visible;
	transform: translate3d(0, 0, 0);
	will-change: transform;
}

.hero__logo-flight-burst.is-impact::before,
.hero__logo-flight-burst.is-impact::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 96px;
	height: 96px;
	margin: -48px 0 0 -48px;
	border-radius: 50%;
	pointer-events: none;
}

.hero__logo-flight-burst.is-impact::before {
	background: radial-gradient(circle, rgba(245, 158, 11, 0.42) 0%, transparent 70%);
	animation: heroLogoFlightImpactGlow 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__logo-flight-burst.is-impact::after {
	border: 2px solid rgba(0, 168, 150, 0.5);
	animation: heroLogoFlightImpactRing 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__logo-flight-burst-wave {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero__logo-flight-burst-wave.is-out .hero__logo-flight-burst-icon {
	opacity: 0 !important;
	transition: opacity 0.65s ease;
}

.hero__logo-flight-burst-icon {
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin: -16px 0 0 -16px;
	font-size: var(--burst-size, 16px);
	line-height: 1;
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, 0, 0);
	will-change: transform, opacity;
	animation: heroLogoFlightBurst 3s cubic-bezier(0.1, 0.82, 0.18, 1) forwards;
	animation-delay: var(--burst-delay, 0ms);
}

.hero__logo-flight-burst-icon--near {
	--burst-size: 14px;
}

.hero__logo-flight-burst-icon--mid {
	--burst-size: 17px;
}

.hero__logo-flight-burst-icon--far {
	--burst-size: 20px;
}

.hero__logo-flight-burst-icon--outer {
	--burst-size: 22px;
}

.hero__logo-flight.is-bump-loop .hero__logo-flight-glow {
	opacity: 0.55;
	transform: translate(-50%, -50%) scale(1.05);
	animation: heroLogoFlightGlowPulse 4s ease-in-out infinite;
}

.hero__logo-flight.is-bump-loop .hero__logo-flight-ring--1 {
	opacity: 0.7;
	animation: heroLogoFlightRing 6s ease-out infinite;
}

.hero__logo-flight.is-bump-loop .hero__logo-flight-ring--2 {
	opacity: 0.45;
	animation: heroLogoFlightRing 6s ease-out 1.5s infinite;
}

.hero__logo-flight.is-bump-loop .hero__logo-flight-sparkles {
	opacity: 1;
	animation: heroLogoFlightSparkleSpin 12s linear infinite;
}

@keyframes heroLogoFlightBump {
	0%,
	55%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}

	63% {
		transform: translate3d(0, 12px, 0) scale(0.985);
	}

	71% {
		transform: translate3d(0, -6px, 0) scale(1.015);
	}

	79% {
		transform: translate3d(0, 2px, 0) scale(0.998);
	}

	87% {
		transform: translate3d(0, 0, 0) scale(1);
	}
}

@keyframes heroLogoFlightImpactGlow {
	0% {
		transform: scale(0.35);
		opacity: 0;
	}

	22% {
		opacity: 1;
	}

	100% {
		transform: scale(3.2);
		opacity: 0;
	}
}

@keyframes heroLogoFlightImpactRing {
	0% {
		transform: scale(0.55);
		opacity: 0;
	}

	18% {
		opacity: 1;
	}

	100% {
		transform: scale(3.6);
		opacity: 0;
	}
}

@keyframes heroLogoFlightBurst {
	0% {
		opacity: 0;
		transform: translate3d(0, 0, 0) scale(0.08) rotate(0deg);
	}

	8% {
		opacity: 0.9;
		transform: translate3d(0, 0, 0) scale(0.4) rotate(0deg);
	}

	35% {
		opacity: 0.85;
		transform: translate3d(calc(var(--burst-x, 0px) * 0.42), calc(var(--burst-y, 0px) * 0.42), 0) scale(0.72) rotate(0deg);
	}

	70% {
		opacity: 0.55;
		transform: translate3d(calc(var(--burst-x, 0px) * 0.82), calc(var(--burst-y, 0px) * 0.82), 0) scale(0.95) rotate(0deg);
	}

	100% {
		opacity: 0;
		transform: translate3d(var(--burst-x, 0), var(--burst-y, 0), 0) scale(1.05) rotate(var(--burst-r, 0deg));
	}
}

@keyframes heroLogoFlightGlowPulse {
	0%,
	100% {
		opacity: 0.45;
		transform: translate(-50%, -50%) scale(1);
	}

	50% {
		opacity: 0.72;
		transform: translate(-50%, -50%) scale(1.08);
	}
}

@keyframes heroLogoFlightRing {
	0% {
		transform: translate(-50%, -50%) scale(0.72);
		opacity: 0.65;
	}

	100% {
		transform: translate(-50%, -50%) scale(1.35);
		opacity: 0;
	}
}

@keyframes heroLogoFlightSparkleSpin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@media (max-width: 1024px) {
	.hero__logo-flight {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__logo-flight.is-bump-loop .hero__logo-flight-bounce,
	.hero__logo-flight.is-bump-loop .hero__logo-flight-glow,
	.hero__logo-flight.is-bump-loop .hero__logo-flight-ring,
	.hero__logo-flight.is-bump-loop .hero__logo-flight-sparkles {
		animation: none;
	}

	.hero__logo-flight-burst {
		display: none;
	}
}

/* Full-bleed background slides */
.hero__backgrounds {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	background: #0f2a4a;
}

.hero__bg-slide {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #0f2a4a;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0;
	transform: scale(1.06);
	overflow: hidden;
	transition:
		opacity 2.2s cubic-bezier(0.45, 0.05, 0.25, 1),
		transform 16s cubic-bezier(0.25, 0.1, 0.25, 1),
		width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform, width;
	pointer-events: none;
}

.hero__bg-slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.hero.is-card-revealed .hero__bg-slide {
	width: 50%;
}

.hero.is-card-revealed .hero__bg-slide.is-active {
	transform: scale(1);
	transition:
		opacity 2.2s cubic-bezier(0.45, 0.05, 0.25, 1),
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__bg-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(
			90deg,
			rgba(8, 22, 48, 0.78) 0%,
			rgba(8, 22, 48, 0.58) 18%,
			rgba(8, 22, 48, 0.34) 34%,
			rgba(8, 22, 48, 0.1) 46%,
			rgba(255, 255, 255, 0.06) 50%,
			transparent 58%
		),
		linear-gradient(
			180deg,
			rgba(8, 22, 48, 0.2) 0%,
			transparent 42%,
			rgba(8, 22, 48, 0.28) 100%
		);
	pointer-events: none;
	transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.is-card-revealed .hero__bg-overlay {
	width: 50%;
	background:
		linear-gradient(
			90deg,
			rgba(8, 22, 48, 0.78) 0%,
			rgba(8, 22, 48, 0.58) 18%,
			rgba(8, 22, 48, 0.34) 34%,
			rgba(8, 22, 48, 0.1) 46%,
			transparent 100%
		),
		linear-gradient(
			180deg,
			rgba(8, 22, 48, 0.2) 0%,
			transparent 42%,
			rgba(8, 22, 48, 0.28) 100%
		);
}

.hero__track {
	position: relative;
	z-index: 1;
	height: calc(100vh - var(--hero-sticky-top, 140px));
	min-height: 420px;
}

.hero__sticky {
	position: relative;
	height: 100%;
	min-height: inherit;
	overflow: hidden;
}

.hero__content-panel {
	position: relative;
	z-index: 2;
	width: 50%;
	height: 100%;
	display: flex;
	align-items: center;
	transition:
		opacity 0.55s ease,
		visibility 0.55s ease,
		transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.65s ease;
}

.hero__content-panel::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		90deg,
		rgba(8, 22, 48, 0.28) 0%,
		rgba(8, 22, 48, 0.12) 55%,
		transparent 100%
	);
	pointer-events: none;
}

.hero__content-wrap {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: clamp(16px, 2.5vw, 28px) clamp(20px, 3vw, 40px) clamp(16px, 2.5vw, 28px) clamp(20px, 2.5vw, 28px);
}

/* Content card */
.hero__content {
	position: relative;
	z-index: 1;
	will-change: transform;
	width: 100%;
}

.hero__content-card {
	position: relative;
	padding: clamp(8px, 1.5vw, 16px) 0;
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.hero__content-card::before {
	display: none;
}

.hero__content-card::after {
	display: none;
}

.hero__eyebrow {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	padding: 7px 16px 7px 12px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.98);
	border-radius: 50px;
	overflow: hidden;
	isolation: isolate;
	background: linear-gradient(
		120deg,
		#0d9488 0%,
		#0891b2 18%,
		#3b82f6 36%,
		#6366f1 54%,
		#00a693 72%,
		#14b8a6 86%,
		#0d9488 100%
	);
	background-size: 320% 320%;
	animation: heroEyebrowGradient 7s ease-in-out infinite;
	border: 1px solid rgba(255, 255, 255, 0.38);
	box-shadow:
		0 4px 18px rgba(8, 22, 48, 0.28),
		0 0 24px rgba(13, 148, 136, 0.22);
}

.hero__eyebrow::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		transparent 0%,
		rgba(255, 255, 255, 0.16) 48%,
		transparent 58%
	);
	transform: translateX(-120%);
	animation: heroEyebrowShine 4.5s ease-in-out infinite;
	pointer-events: none;
	z-index: 0;
}

.hero__eyebrow > * {
	position: relative;
	z-index: 1;
}

@keyframes heroEyebrowGradient {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

@keyframes heroEyebrowShine {
	0%,
	72%,
	100% {
		transform: translateX(-120%);
	}
	38% {
		transform: translateX(130%);
	}
}

.hero__eyebrow-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow:
		0 0 0 3px rgba(255, 255, 255, 0.28),
		0 0 10px rgba(255, 255, 255, 0.55);
	flex-shrink: 0;
	animation: heroEyebrowDotPulse 2.2s ease-in-out infinite;
}

@keyframes heroEyebrowDotPulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.15);
		opacity: 0.88;
	}
}

.hero__title {
	margin-bottom: 16px;
}

.hero__title-line {
	display: block;
	font-size: clamp(32px, 4.6vw, 56px);
	font-weight: var(--font-weight-display);
	line-height: 1.08;
	letter-spacing: -0.03em;
	min-height: 1.08em;
}

.hero__typing-text {
	display: inline;
}

.hero__typing-cursor {
	display: inline-block;
	width: 3px;
	height: 0.9em;
	margin-left: 3px;
	vertical-align: -0.08em;
	border-radius: 2px;
	background: currentColor;
	opacity: 0;
}

.hero__typing-cursor.is-active {
	opacity: 1;
	animation: heroTypingCursorBlink 0.85s step-end infinite;
}

.hero__title-line--teal .hero__typing-cursor {
	background: #5ef0dc;
	box-shadow: 0 0 10px rgba(94, 240, 220, 0.45);
}

@keyframes heroTypingCursorBlink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__typing-cursor {
		display: none;
	}

	.hero__eyebrow {
		animation: none;
		background: linear-gradient(120deg, #0d9488, #3b82f6, #00a693);
	}

	.hero__eyebrow::after {
		animation: none;
		display: none;
	}

	.hero__eyebrow-dot {
		animation: none;
		background: linear-gradient(135deg, var(--teal), #3b8fd9);
		box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.2);
	}
}

.hero__title-line--navy {
	color: #fff;
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.65),
		0 3px 12px rgba(0, 0, 0, 0.45),
		0 6px 32px rgba(0, 0, 0, 0.35);
}

.hero__title-line--navy em {
	font-style: normal;
	color: #fff;
}

.hero__title-line--teal {
	margin-top: 4px;
	background: linear-gradient(135deg, #5ef0dc 0%, #7ec8ff 52%, #a8d4ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
}

.hero__desc {
	font-size: clamp(15px, 1.5vw, 17px);
	line-height: 1.7;
	color: #fff;
	max-width: 440px;
	margin-bottom: 24px;
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.65),
		0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.btn--hero {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 50px;
	border: 2px solid transparent;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn--hero-primary {
	color: #fff;
	background: linear-gradient(135deg, #00c19d 0%, #0088cc 52%, #004a99 100%);
	box-shadow: 0 8px 22px rgba(0, 74, 153, 0.28);
}

.btn--hero-primary:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 74, 153, 0.34);
}

.btn--hero-secondary {
	color: #fff;
	background: rgba(8, 22, 48, 0.4);
	border-color: rgba(255, 255, 255, 0.4);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.btn--hero-secondary:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.btn--hero svg {
	flex-shrink: 0;
}

.hero-btn-icon {
	display: block;
	overflow: visible;
}

.hero-btn-icon__stroke {
	stroke: currentColor;
	stroke-dasharray: none;
	stroke-dashoffset: 0;
	opacity: 1;
}

.btn--hero-primary.is-icon-animated .hero-btn-icon__stroke {
	stroke-dasharray: 100;
	animation: campusFacilityIconDrawLoop 4.4s cubic-bezier(0.42, 0.03, 0.24, 1) infinite;
}

.btn--hero-primary.is-icon-animated .hero-btn-icon__stroke:nth-child(1) { animation-delay: 0s; }
.btn--hero-primary.is-icon-animated .hero-btn-icon__stroke:nth-child(2) { animation-delay: 0.08s; }
.btn--hero-primary.is-icon-animated .hero-btn-icon__stroke:nth-child(3) { animation-delay: 0.16s; }
.btn--hero-primary.is-icon-animated .hero-btn-icon__stroke:nth-child(4) { animation-delay: 0.24s; }

.btn--hero-primary.is-icon-animated:hover .hero-btn-icon__stroke {
	animation-duration: 3.2s;
}

.hero__features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	list-style: none;
	margin: 0 0 22px 14px;
	padding: 0;
}

.hero__feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 10px;
	text-align: center;
	background: rgba(8, 22, 48, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero__feature:hover {
	transform: translateY(-3px);
	background: rgba(8, 22, 48, 0.68);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.hero__feature-label {
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.95);
}

.hero__feature-icon {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.hero__feature-icon--hex {
	color: #93c5fd;
	background: linear-gradient(135deg, rgba(147, 197, 253, 0.22), rgba(147, 197, 253, 0.08));
}

.hero__feature-icon--shield {
	color: #5ef0dc;
	background: linear-gradient(135deg, rgba(94, 240, 220, 0.22), rgba(94, 240, 220, 0.08));
}

.hero__feature-icon--nodes {
	color: #e2e8f0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
}

.hero__content-footer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 4px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__scroll-hint {
	position: absolute;
	left: 50%;
	bottom: clamp(16px, 2.5vh, 28px);
	z-index: 4;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	font-size: 11px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.85);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	background: rgba(8, 22, 48, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	transform: translateX(-50%);
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.hero__scroll-hint svg {
	animation: heroHintBounce 2s ease-in-out infinite;
}

.hero__slide-dots {
	display: flex;
	gap: 8px;
	margin: 0;
}

.hero__slide-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	transition: width 0.3s ease, background 0.3s ease;
}

.hero__slide-dot.is-active {
	width: 28px;
	border-radius: 5px;
	background: linear-gradient(90deg, #1ab5a5, #3b8fd9);
}

.hero.is-revealed .hero__scroll-hint {
	opacity: 0;
	pointer-events: none;
}

@keyframes heroHintBounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(5px); }
}

/* Right-half video panel — cinematic scroll reveal */
.hero__visual {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
	background: transparent;
}

.hero__visual::after {
	content: '';
	position: absolute;
	top: 8%;
	bottom: 8%;
	left: 0;
	width: 4px;
	z-index: 6;
	border-radius: 4px;
	background: linear-gradient(180deg, #1ab5a5 0%, #3b8fd9 50%, #2a5496 100%);
	box-shadow: 0 0 24px rgba(26, 181, 165, 0.55);
	transform: scaleY(0);
	transform-origin: center top;
	opacity: 0;
	pointer-events: none;
	transition:
		transform 0.55s cubic-bezier(0.55, 0, 1, 0.45),
		opacity 0.45s ease;
}

.hero.is-card-revealed .hero__visual {
	pointer-events: auto;
}

.hero.is-card-revealed .hero__visual::after {
	animation: heroAccentLine 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
	transition: none;
}

.hero__visual-reveal {
	width: 100%;
	height: 100%;
	transform: translate3d(108%, 0, 0) scale(0.96);
	opacity: 0;
	filter: blur(14px) brightness(0.92) saturate(0.82);
	clip-path: inset(0 0 0 100% round 0);
	transition:
		transform 0.9s cubic-bezier(0.55, 0, 1, 0.45),
		opacity 0.7s ease,
		filter 0.8s ease,
		clip-path 0.9s cubic-bezier(0.55, 0, 1, 0.45);
	will-change: transform, opacity, filter, clip-path;
	visibility: visible;
	pointer-events: none;
}

.hero__visual-reveal::before,
.hero__visual-reveal::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 14%;
	background: linear-gradient(180deg, #060f1f 0%, rgba(6, 15, 31, 0.92) 100%);
	z-index: 5;
	pointer-events: none;
	opacity: 0;
}

.hero__visual-reveal::before {
	top: 0;
	transform: translateY(-100%);
}

.hero__visual-reveal::after {
	top: auto;
	bottom: 0;
	transform: translateY(100%);
	background: linear-gradient(0deg, #060f1f 0%, rgba(6, 15, 31, 0.92) 100%);
}

.hero.is-card-revealed .hero__visual-reveal {
	transform: translate3d(0, 0, 0) scale(1);
	opacity: 1;
	filter: blur(0) brightness(1) saturate(1);
	clip-path: inset(0 0 0 0 round 0);
	pointer-events: auto;
	transition:
		transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.8s ease,
		filter 1s ease,
		clip-path 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.is-card-revealed .hero__visual-reveal::before {
	animation: heroCineBarTop 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero.is-card-revealed .hero__visual-reveal::after {
	animation: heroCineBarBottom 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroAccentLine {
	0% {
		transform: scaleY(0);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	100% {
		transform: scaleY(1);
		opacity: 1;
	}
}

@keyframes heroCineBarTop {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	75% {
		opacity: 0.85;
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateY(-100%);
	}
}

@keyframes heroCineBarBottom {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	75% {
		opacity: 0.85;
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateY(100%);
	}
}

@keyframes heroVideoShimmer {
	0% {
		transform: translateX(-130%) skewX(-12deg);
		opacity: 0;
	}
	15% {
		opacity: 1;
	}
	100% {
		transform: translateX(130%) skewX(-12deg);
		opacity: 0;
	}
}

@keyframes heroPlayPop {
	0% {
		transform: scale(0.4) rotate(-12deg);
		opacity: 0;
	}
	70% {
		transform: scale(1.08) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: scale(1) rotate(0deg);
		opacity: 1;
	}
}

@keyframes heroVideoShimmerExit {
	0% {
		transform: translateX(35%) skewX(-12deg);
		opacity: 0.5;
	}
	100% {
		transform: translateX(-140%) skewX(-12deg);
		opacity: 0;
	}
}

@keyframes heroFrameGlow {
	0% {
		box-shadow: inset 0 0 0 rgba(26, 181, 165, 0);
	}
	50% {
		box-shadow: inset 0 0 60px rgba(26, 181, 165, 0.22);
	}
	100% {
		box-shadow: inset 0 0 0 rgba(26, 181, 165, 0);
	}
}

.hero__image-card,
.hero__video-card {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 0;
	overflow: hidden;
	box-shadow: -12px 0 40px rgba(15, 42, 74, 0.12);
	background: #0a1628;
	z-index: 1;
	transition: box-shadow 0.75s ease;
}

.hero.is-card-revealed .hero__video-card {
	animation: heroFrameGlow 1.15s ease-out 0.15s;
	box-shadow: -8px 0 28px rgba(15, 42, 74, 0.08);
}

.hero__video-card::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 4;
	pointer-events: none;
	background: linear-gradient(
		105deg,
		transparent 42%,
		rgba(255, 255, 255, 0.42) 50%,
		transparent 58%
	);
	transform: translateX(-130%) skewX(-12deg);
	opacity: 0;
}

.hero.is-card-revealed .hero__video-card::before {
	animation: heroVideoShimmer 1.15s ease-out 0.4s forwards;
}

.hero.is-card-exiting .hero__video-card::before {
	animation: heroVideoShimmerExit 0.75s ease-out forwards;
}

.hero__video-card .hero__video,
.hero__video-card .hero__video-fallback,
.hero__image-card .hero__image {
	transform: scale(1.14);
	transition: transform 0.85s cubic-bezier(0.55, 0, 1, 0.45);
}

.hero.is-card-revealed .hero__video-card .hero__video,
.hero.is-card-revealed .hero__video-card .hero__video-fallback,
.hero.is-card-revealed .hero__image-card .hero__image {
	transform: scale(1);
	transition: transform 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.hero__image-card::after,
.hero__video-card::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(8, 22, 48, 0.5) 0%,
		rgba(8, 22, 48, 0.22) 14%,
		rgba(255, 255, 255, 0.14) 28%,
		rgba(255, 255, 255, 0.04) 40%,
		transparent 52%
	);
	transition: opacity 0.5s ease;
}

.hero.is-card-revealed .hero__video-card::after {
	opacity: 0;
}

.hero__video,
.hero__video-fallback,
.hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero__video {
	pointer-events: none;
}

.hero__play {
	position: absolute;
	z-index: 5;
	bottom: clamp(20px, 4vh, 36px);
	right: clamp(20px, 3vw, 36px);
	width: 52px;
	height: 52px;
	border: none;
	border-radius: 50%;
	background: #fff;
	color: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
	transform: scale(0.45) rotate(-10deg);
	opacity: 0;
	transition:
		transform 0.5s cubic-bezier(0.55, 0, 1, 0.45),
		opacity 0.45s ease,
		box-shadow 0.3s ease;
}

.hero.is-card-revealed .hero__play:not(.is-disabled):not(:disabled) {
	transform: scale(1) rotate(0deg);
	opacity: 1;
	transition:
		transform 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s,
		opacity 0.55s ease 0.55s,
		box-shadow 0.3s ease;
}

.hero.is-card-revealed .hero__play.is-disabled,
.hero.is-card-revealed .hero__play:disabled {
	opacity: 0.45;
	animation: none;
	transform: none;
}

.hero__play svg {
	margin-left: 2px;
}

.hero__play:hover {
	transform: scale(1.08);
}

.hero__play.is-disabled,
.hero__play:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
}

/* Video lightbox */
.hero-video-modal {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(16px, 4vw, 40px);
}

.hero-video-modal[hidden] {
	display: none;
}

.hero-video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 20, 38, 0.82);
	backdrop-filter: blur(6px);
}

.hero-video-modal__panel {
	position: relative;
	width: min(1100px, 100%);
	background: #000;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
	z-index: 1;
}

.hero-video-modal__player {
	display: block;
	width: 100%;
	max-height: min(78vh, 720px);
	background: #000;
}

.hero-video-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: var(--navy);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.25s ease, background 0.25s ease;
}

.hero-video-modal__close:hover {
	transform: scale(1.06);
	background: #fff;
}

body.hero-video-open {
	overflow: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero__bg-overlay {
		background:
			linear-gradient(
				180deg,
				rgba(8, 22, 48, 0.72) 0%,
				rgba(8, 22, 48, 0.45) 45%,
				rgba(8, 22, 48, 0.28) 100%
			);
	}

	.hero__content-panel::before {
		background: linear-gradient(
			180deg,
			rgba(8, 22, 48, 0.2) 0%,
			transparent 100%
		);
	}

	.hero__track {
		height: auto;
		min-height: 0;
	}

	.hero__sticky {
		height: auto;
		min-height: 0;
		padding: clamp(28px, 6vw, 48px) 0 clamp(40px, 8vw, 72px);
	}

	.hero__content-panel {
		width: 100%;
		height: auto;
	}

	.hero__content-wrap {
		max-width: var(--container-max);
		margin: 0 auto;
		padding: 0 var(--gutter);
	}

	.hero__content-card {
		padding: 0;
	}

	.hero__features {
		grid-template-columns: 1fr;
	}

	.hero__feature {
		flex-direction: row;
		justify-content: flex-start;
		text-align: left;
		padding: 12px 14px;
	}

	.hero__content-footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero__visual {
		display: none !important;
	}

	.hero__scroll-hint {
		display: none;
	}

	.hero__backgrounds {
		height: 100%;
		min-height: min(62vh, 480px);
	}

	.hero__bg-slide {
		background-position: center center;
	}

	.hero.is-card-revealed .hero__bg-slide,
	.hero.is-card-revealed .hero__bg-overlay {
		width: 100%;
	}

	.hero__content {
		transform: none !important;
		opacity: 1 !important;
		text-align: left;
	}

	.hero__desc {
		margin-left: 0;
		margin-right: 0;
	}

	.hero__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 768px) {
	.hero__actions {
		flex-direction: row;
		align-items: center;
	}

	.hero__actions .btn {
		width: auto;
		max-width: 100%;
		align-self: flex-start;
		justify-content: center;
	}

	.hero__actions .btn--hero {
		padding: 9px 16px;
		font-size: 12px;
		gap: 7px;
		border-radius: 999px;
	}

	.hero__actions .btn--hero svg {
		width: 14px;
		height: 14px;
	}

	.hero__actions .btn--hero-primary {
		position: relative;
		overflow: hidden;
		isolation: isolate;
		animation: heroApplyGlow 2.8s ease-in-out infinite;
	}

	.hero__actions .btn--hero-primary::before {
		content: '';
		position: absolute;
		top: 0;
		left: -120%;
		width: 55%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
		transform: skewX(-18deg);
		pointer-events: none;
		z-index: 0;
		animation: heroApplyShine 3.6s ease-in-out infinite;
	}

	.hero__actions .btn--hero-primary > * {
		position: relative;
		z-index: 1;
	}
}

@keyframes heroApplyGlow {
	0%, 100% {
		box-shadow: 0 5px 14px rgba(0, 74, 153, 0.22);
		transform: scale(1);
	}
	50% {
		box-shadow: 0 7px 20px rgba(0, 193, 157, 0.34);
		transform: scale(1.03);
	}
}

@keyframes heroApplyShine {
	0%, 68%, 100% {
		left: -120%;
	}
	82% {
		left: 140%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__track {
		height: auto;
	}

	.hero__bg-slide {
		transform: none !important;
		transition: opacity 0.45s ease !important;
	}

	.hero__sticky {
		position: relative;
		height: auto;
		padding: 48px 0;
	}

	.hero__visual-reveal {
		transform: none !important;
		opacity: 1 !important;
		filter: none !important;
		clip-path: none !important;
		transition: none !important;
		visibility: visible !important;
	}

	.hero__visual-reveal::before,
	.hero__visual-reveal::after,
	.hero__visual::after,
	.hero__video-card::before {
		display: none !important;
		animation: none !important;
	}

	.hero__video-card .hero__video,
	.hero__video-card .hero__video-fallback,
	.hero__image-card .hero__image {
		transform: none !important;
	}

	.hero.is-card-revealed .hero__video-card {
		animation: none !important;
	}

	.hero__play {
		transform: none !important;
		opacity: 1 !important;
		animation: none !important;
	}

	.hero__content {
		transform: none !important;
		opacity: 1 !important;
	}

	.hero__scroll-hint {
		display: none;
	}

	.hero__scroll-hint svg {
		animation: none;
	}

	.hero__actions .btn--hero-primary {
		animation: none !important;
		transform: none !important;
	}

	.hero__actions .btn--hero-primary::before {
		display: none !important;
		animation: none !important;
	}
}
