@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
	--night: #020818;
	--navy: #04122c;
	--deep: #0a1d3f;
	--aqua: #7ae3ff;
	--sun: #ffd75d;
	--fuchsia: #ff6fae;
	--mint: rgba(190, 255, 247, 0.16);
	--white: #f6f8ff;
	--muted: rgba(214, 226, 255, 0.78);
	--glass: rgba(10, 22, 52, 0.68);
	--panel: rgba(6, 16, 42, 0.92);
	--outline: rgba(140, 206, 255, 0.22);
	--shadow-xl: 0 46px 80px rgba(2, 8, 24, 0.58);
	--shadow-lg: 0 32px 60px rgba(2, 8, 24, 0.48);
	--shadow-md: 0 22px 46px rgba(2, 8, 24, 0.38);
	--radius-xl: 32px;
	--radius-lg: 26px;
	--radius-md: 18px;
	--max-width: min(1180px, 92vw);
	--easing: cubic-bezier(.2, .82, .24, 1);
	font-family: 'Manrope', system-ui, sans-serif;
}

/* --- Base --- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html,
body {
	min-height: 100%;
	background: none;
	background-color: var(--night);
	color: var(--white);
	scroll-behavior: smooth;
}

body {
	position: relative;
	line-height: 1.6;
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(160% 180% at 16% 18%, rgba(122, 227, 255, 0.18), transparent 70%),
		radial-gradient(150% 160% at 84% 16%, rgba(255, 111, 174, 0.16), transparent 74%),
		linear-gradient(150deg, rgba(4, 10, 30, 0.6), rgba(2, 6, 16, 0.76));
	animation: auroraShift 26s ease-in-out infinite alternate;
	opacity: .22;
}

body::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -3;
	background:
			linear-gradient(150deg, rgba(2, 8, 21, 0.2) 0%, rgba(2, 20, 54, 0.24) 50%, rgba(4, 12, 36, 0.26) 100%),
			url('../images/Background_img.jpg') center/cover no-repeat fixed;
	opacity: .78;
	filter: saturate(1.08) brightness(1.08);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

/* --- Header / Navigation --- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(4, 14, 34, 0.86);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(18px);
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.46);
}

.site-nav {
	width: var(--max-width);
	margin-inline: auto;
	padding: .9rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
	position: relative;
}

.site-nav__brand {
	display: flex;
	align-items: center;
	gap: .9rem;
}

.site-nav__logo {
	width: 58px;
	height: 58px;
	border-radius: 18px;
	border: 2px solid rgba(255, 215, 93, 0.6);
	box-shadow: 0 16px 30px rgba(255, 215, 93, 0.24);
	object-fit: cover;
}

.site-nav__identity {
	display: flex;
	flex-direction: column;
	text-transform: uppercase;
	letter-spacing: .22em;
	font-size: .7rem;
	color: var(--muted);
}

.site-nav__name {
	font-size: .96rem;
	font-weight: 800;
	color: var(--white);
}

.site-nav__toggle {
	display: none;
	width: 46px;
	height: 46px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(6, 18, 44, 0.84);
	color: var(--white);
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	cursor: pointer;
}

.site-nav__menu {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.site-nav__search {
	position: relative;
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: .7rem 1.2rem;
	min-width: 260px;
	width: min(520px, 70vw);
	border-radius: 999px;
	background: linear-gradient(120deg, rgba(12, 32, 70, 0.92), rgba(7, 22, 52, 0.94));
	border: 1px solid rgba(122, 227, 255, 0.38);
	box-shadow: 0 20px 40px rgba(3, 8, 26, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.14);
	overflow: hidden;
	transition:
		border-color .24s var(--easing),
		box-shadow .24s var(--easing),
		transform .24s var(--easing);
}

.site-nav__search:focus-within {
	border-color: rgba(122, 227, 255, 0.78);
	box-shadow: 0 32px 64px rgba(3, 8, 26, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.18);
	transform: translateY(-1px);
}

.site-nav__search::before,
.site-nav__search::after {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	z-index: 0;
	pointer-events: none;
}

.site-nav__search::before {
	background: radial-gradient(circle at 18% 30%, rgba(122, 227, 255, 0.22), transparent 38%),
		radial-gradient(circle at 82% 70%, rgba(255, 111, 174, 0.24), transparent 36%);
	opacity: .7;
}

.site-nav__search::after {
	background: linear-gradient(120deg, rgba(122, 227, 255, 0.8), rgba(255, 215, 93, 0.66), rgba(255, 111, 174, 0.7));
	filter: blur(24px);
	opacity: .22;
}

.site-nav__search i {
	color: rgba(214, 226, 255, 0.74);
	font-size: .9rem;
	z-index: 1;
}

.site-nav__search input {
	background: transparent;
	border: 0;
	width: 100%;
	color: var(--white);
	font-size: .86rem;
	padding: .1rem 0;
	z-index: 1;
}

.site-nav__search input:focus,
.site-nav__search input:focus-visible {
	outline: none;
	box-shadow: none;
}

.site-nav__search input::placeholder {
	color: rgba(214, 226, 255, 0.56);
	letter-spacing: .16em;
	text-transform: uppercase;
}

.site-nav__search-results {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	right: 0;
	display: none;
	padding: .45rem 0;
	border-radius: 20px;
	background: linear-gradient(140deg, rgba(4, 12, 32, 0.98), rgba(7, 16, 44, 0.96));
	border: 1px solid rgba(122, 227, 255, 0.32);
	box-shadow: 0 32px 60px rgba(0, 0, 0, 0.46), 0 8px 30px rgba(122, 227, 255, 0.16);
	max-height: 320px;
	overflow-y: auto;
	backdrop-filter: blur(14px);
}

.site-nav__search-results.is-visible {
	display: block;
}

.site-nav__search-results li {
	list-style: none;
}

.site-nav__search-results a {
	display: flex;
	flex-direction: column;
	gap: .2rem;
	padding: .65rem 1rem;
	border-radius: 14px;
	color: var(--white);
	transition: background .2s var(--easing), transform .2s var(--easing), box-shadow .2s var(--easing);
}

.site-nav__search-results a span {
	font-size: .72rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(214, 226, 255, 0.6);
}

.site-nav__search-results a:hover,
.site-nav__search-results a.is-active {
	background: linear-gradient(120deg, rgba(122, 227, 255, 0.14), rgba(255, 215, 93, 0.08));
	transform: translateX(4px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-nav__search-empty {
	padding: .65rem 1rem;
	font-size: .8rem;
	color: rgba(214, 226, 255, 0.68);
	text-align: center;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.site-nav__links {
	display: flex;
	align-items: center;
	gap: .8rem;
}

.site-nav__links a {
	padding: .55rem .9rem;
	border-radius: 999px;
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: rgba(214, 226, 255, 0.76);
	transition: background .24s var(--easing), color .24s var(--easing), transform .24s var(--easing);
}

.site-nav__links a:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--sun);
	transform: translateY(-2px);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	padding: .8rem 1.85rem;
	border-radius: 18px;
	text-transform: uppercase;
	letter-spacing: .16em;
	font-weight: 700;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .28s var(--easing), box-shadow .28s var(--easing), border-color .28s var(--easing);
}

.btn--accent {
	background: linear-gradient(135deg, var(--sun), var(--aqua));
	color: #041226;
	box-shadow: 0 28px 52px rgba(3, 8, 26, 0.42);
}

.btn--accent:hover {
	transform: translateY(-4px);
	box-shadow: 0 36px 64px rgba(3, 8, 26, 0.48);
}

.btn--ghost {
	background: transparent;
	color: var(--white);
	border-color: rgba(214, 226, 255, 0.38);
}

.btn--ghost:hover {
	transform: translateY(-4px);
	border-color: rgba(214, 226, 255, 0.62);
}

.btn--outline {
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.32);
}

.btn--outline:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.54);
}

/* --- Sections --- */
main {
	display: flex;
	flex-direction: column;
	gap: clamp(2.6rem, 6vw, 3.6rem);
	padding: calc(76px + 1.6rem) 0 clamp(2.6rem, 6vw, 3.4rem);
}

.section {
	width: var(--max-width);
	margin-inline: auto;
	padding: clamp(2.2rem, 6vw, 3.4rem);
	border-radius: var(--radius-xl);
	background: var(--glass);
	border: 1px solid var(--outline);
	box-shadow: var(--shadow-xl);
	backdrop-filter: blur(22px);
	display: grid;
	gap: clamp(1.6rem, 4vw, 2.6rem);
	position: relative;
	overflow: hidden;
}

.section::after {
	content: "";
	position: absolute;
	inset: auto 18% -46% 18%;
	height: 60%;
	background: radial-gradient(60% 60% at 50% 0%, rgba(248, 252, 255, 0.18), transparent 70%);
	filter: blur(30px);
	pointer-events: none;
}

.section__header {
	display: grid;
	gap: .6rem;
	text-align: center;
	max-width: 720px;
	margin-inline: auto;
}

.section__eyebrow {
	text-transform: uppercase;
	letter-spacing: .34em;
	font-size: .72rem;
	color: var(--muted);
}

.section__title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .16em;
}

.section__lead {
	color: var(--muted);
	line-height: 1.7;
}

/* --- Hero --- */
.section--hero {
	background: linear-gradient(135deg, rgba(14, 34, 80, 0.88), rgba(6, 14, 42, 0.93));
	position: relative;
	overflow: hidden;
	gap: clamp(1.8rem, 6vw, 3rem);
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: clamp(1.8rem, 6vw, 3rem);
	position: relative;
	z-index: 1;
}

.hero__aura {
	position: absolute;
	inset: -32% -26%;
	background: radial-gradient(60% 58% at 32% 40%, rgba(255, 215, 93, 0.2), transparent 68%),
		radial-gradient(56% 56% at 72% 28%, rgba(122, 227, 255, 0.18), transparent 72%);
	filter: blur(62px);
	opacity: .55;
	animation: orbitSpin 22s linear infinite;
}

.hero__content {
	display: grid;
	gap: clamp(1.1rem, 3vw, 1.8rem);
	max-width: 640px;
	position: relative;
	z-index: 1;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	padding: .45rem 1.1rem;
	border-radius: 999px;
	background: rgba(122, 227, 255, 0.2);
	border: 1px solid rgba(122, 227, 255, 0.36);
	text-transform: uppercase;
	letter-spacing: .28em;
	font-size: .7rem;
	color: var(--muted);
}

.hero__title {
	font-size: clamp(2.6rem, 6.6vw, 3.9rem);
	text-transform: uppercase;
	letter-spacing: .18em;
	line-height: 1.06;
}

.hero__title span {
	color: var(--sun);
}

.hero__lead {
	color: var(--muted);
	max-width: 58ch;
}

.hero__subtitle {
	font-size: 1.05rem;
	color: rgba(214, 226, 255, 0.88);
	letter-spacing: .08em;
	max-width: 50ch;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: .9rem;
}

.hero__meta-note {
	display: flex;
	gap: .55rem;
	align-items: center;
	font-size: .84rem;
	color: rgba(214, 226, 255, 0.74);
	text-transform: uppercase;
	letter-spacing: .18em;
}

.hero__meta-note i {
	color: var(--aqua);
}

.hero__highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.hero__highlights li {
	padding: 1.1rem;
	border-radius: var(--radius-md);
	background: rgba(6, 16, 44, 0.84);
	border: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
	box-shadow: var(--shadow-md);
}

.hero__highlights strong {
	display: block;
	font-size: 1.6rem;
	color: var(--sun);
}

.hero__highlights span {
	display: block;
	margin-top: .35rem;
	font-size: .84rem;
	color: var(--muted);
}

.hero__media {
	display: grid;
	gap: clamp(1rem, 3vw, 1.6rem);
	justify-items: center;
	text-align: center;
	max-width: 420px;
	margin-inline: auto;
	position: relative;
	z-index: 1;
}

.hero__orbit {
	position: relative;
	display: grid;
	place-items: center;
	width: 220px;
	height: 220px;
	animation: floatPulse 9s ease-in-out infinite;
}

.hero__pulse {
	position: absolute;
	width: 92%;
	height: 92%;
	border-radius: 50%;
	border: 2px solid rgba(255, 215, 93, 0.24);
	box-shadow: 0 0 60px rgba(255, 215, 93, 0.22);
	animation: pulseRing 4s ease-in-out infinite;
}

.hero__crest {
	position: relative;
	padding: 1rem;
	border-radius: 26px;
	background: rgba(6, 18, 44, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 30px 58px rgba(3, 8, 26, 0.48);
}

.hero__crest::after {
	content: "";
	position: absolute;
	inset: -18% -16%;
	border-radius: 30px;
	background: conic-gradient(from 90deg, var(--sun), var(--aqua), var(--fuchsia), var(--sun));
	filter: blur(28px);
	opacity: .45;
	z-index: -1;
}

.hero__crest img {
	width: 160px;
	height: 160px;
	border-radius: 22px;
	object-fit: cover;
	border: 3px solid rgba(255, 255, 255, 0.18);
}

.hero__scorecard {
	display: grid;
	gap: .8rem;
	padding: 1.4rem;
	max-width: 320px;
	border-radius: 24px;
	background: rgba(6, 18, 44, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 28px 54px rgba(3, 8, 26, 0.46);
	position: relative;
	animation: cardFloat 8s ease-in-out infinite;
}

.hero__scorecard-glow {
	position: absolute;
	inset: -12%;
	border-radius: 32px;
	background: radial-gradient(60% 60% at 32% 28%, rgba(255, 215, 93, 0.42), transparent 76%),
		radial-gradient(56% 56% at 74% 68%, rgba(122, 227, 255, 0.3), transparent 74%);
	filter: blur(26px);
	opacity: .48;
	z-index: -1;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .35rem .9rem;
	border-radius: 999px;
	font-size: .72rem;
	text-transform: uppercase;
	letter-spacing: .22em;
}

.pill--live {
	background: rgba(255, 111, 174, 0.22);
	border: 1px solid rgba(255, 111, 174, 0.42);
	color: var(--fuchsia);
}

.score-line {
	display: grid;
	gap: .7rem;
}

.score-team {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: .65rem .9rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
}

.score-team__name {
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: .74rem;
	color: var(--muted);
}

.score-team__run {
	font-size: 1.2rem;
	color: var(--sun);
	font-weight: 700;
}

.score-meta,
.score-broadcast {
	display: flex;
	gap: .5rem;
	align-items: center;
	justify-content: center;
	font-size: .82rem;
	color: rgba(214, 226, 255, 0.76);
	letter-spacing: .14em;
	text-transform: uppercase;
}

.score-broadcast i {
	color: var(--aqua);
}

.hero__ticker {
	display: flex;
	flex-wrap: nowrap;
	gap: 1rem;
	margin-top: .6rem;
	padding: .85rem;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--muted);
	font-size: .84rem;
	overflow: hidden;
}

.hero__ticker[data-marquee] li {
	flex: 0 0 auto;
	min-width: max(280px, 38vw);
	display: flex;
	gap: .45rem;
	align-items: center;
	animation: tickerSlide 18s linear infinite;
	white-space: nowrap;
}

.hero__ticker[data-marquee]:hover li {
	animation-play-state: paused;
}

/* --- About, Ventures, Stats, etc. --- */
.about__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(1.4rem, 4vw, 2rem);
	align-items: start;
}

.about__story {
	display: grid;
	gap: 1rem;
	color: var(--muted);
}

.about__story p + p {
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about__pillars {
	display: grid;
	gap: 1rem;
}

.about__pillar {
	display: grid;
	gap: .6rem;
	padding: 1.2rem;
	border-radius: 22px;
	background: rgba(6, 18, 44, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--shadow-md);
}

.about__icon {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: rgba(122, 227, 255, 0.16);
	color: var(--aqua);
	font-size: 1.2rem;
}

.logo-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 4vw, 1.6rem);
	justify-items: center;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-inline: auto;
}

.logo-grid--ventures {
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	justify-items: stretch;
}

.logo-grid--partners,
.logo-grid--recognitions {
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	justify-items: center;
	justify-content: center;
}

.logo-item {
	display: grid;
	gap: .6rem;
	text-align: center;
}

.logo-item img {
	width: 100%;
	max-width: 160px;
	filter: saturate(.96) brightness(.98);
	transition: transform .28s var(--easing), filter .28s var(--easing);
	margin-inline: auto;
}

.logo-item img:hover {
	transform: translateY(-6px);
	filter: saturate(1.05) brightness(1.04);
}

.logo-item__link {
	padding: 1.2rem 1rem;
	border-radius: var(--radius-md);
	background: rgba(6, 18, 44, 0.84);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--shadow-md);
	display: grid;
	gap: .6rem;
	justify-items: center;
	animation: cardFloat 10s ease-in-out infinite alternate;
}

.logo-item__link span {
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: .78rem;
	color: var(--muted);
}

.stats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1rem, 3vw, 1.6rem);
}

.stat-card {
	display: grid;
	gap: .6rem;
	padding: 1.3rem;
	border-radius: 24px;
	background: rgba(6, 18, 44, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.12);
	text-align: center;
	box-shadow: var(--shadow-md);
}

.stat-card i {
	font-size: 1.6rem;
	color: var(--aqua);
}

.stat-card strong {
	font-size: 1.6rem;
	color: var(--sun);
}

.stat-card p {
	color: var(--muted);
	font-size: .9rem;
}

.stats__timeline {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 3vw, 1.6rem);
}

.stats__timeline-item {
	position: relative;
	padding: 1.3rem;
	border-radius: 24px;
	background: rgba(6, 18, 44, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--shadow-md);
	display: grid;
	gap: .6rem;
}

.stats__timeline-badge {
	position: absolute;
	top: -18px;
	left: 24px;
	padding: .35rem .8rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--sun), var(--fuchsia));
	color: #041226;
	font-size: .7rem;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.ambassador__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 3vw, 1.4rem);
}

.ambassador-card {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 1rem;
	padding: 1.4rem;
	border-radius: 24px;
	background: rgba(6, 18, 44, 0.88);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--shadow-md);
}

.sponsor__card {
	position: relative;
	display: grid;
	gap: 1rem;
	padding: 1.6rem;
	border-radius: 26px;
	background: linear-gradient(140deg, rgba(6, 18, 44, 0.92), rgba(12, 32, 70, 0.92));
	border: 1px solid rgba(122, 227, 255, 0.18);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}

.sponsor__card::after {
	content: "";
	position: absolute;
	inset: -30% 10% auto;
	height: 80%;
	background: radial-gradient(40% 40% at 50% 0%, rgba(255, 215, 93, 0.22), transparent 70%);
	filter: blur(42px);
	pointer-events: none;
}

.sponsor__ribbon {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	padding: .4rem .9rem;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--sun), var(--aqua));
	color: #041226;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-size: .7rem;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32);
}

.sponsor__brand {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 1rem;
	align-items: center;
	padding: .2rem;
	border-radius: 18px;
	transition: transform .2s var(--easing), box-shadow .2s var(--easing), border-color .2s var(--easing);
}

.sponsor__brand:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
	border: 1px solid rgba(122, 227, 255, 0.22);
}

.sponsor__logo {
	width: 88px;
	height: 88px;
	display: grid;
	place-items: center;
	border-radius: 24px;
	background: rgba(122, 227, 255, 0.14);
	border: 1px solid rgba(122, 227, 255, 0.26);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
	overflow: hidden;
}

.sponsor__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.sponsor__cta {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	margin-top: .4rem;
	padding: .55rem 1rem;
	border-radius: 14px;
	border: 1px solid rgba(122, 227, 255, 0.32);
	color: var(--white);
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	transition: transform .2s var(--easing), box-shadow .2s var(--easing), border-color .2s var(--easing);
}

.sponsor__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
	border-color: rgba(122, 227, 255, 0.52);
}

.sponsor__text h3 {
	font-size: 1.4rem;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.sponsor__text p {
	color: var(--muted);
	margin-top: .2rem;
}

.sponsor__overview {
	max-width: 820px;
	margin: 0 auto;
	display: grid;
	gap: .7rem;
	color: var(--muted);
}

.sponsor__highlights {
	display: grid;
	gap: .6rem;
	color: var(--muted);
}

.sponsor__highlights li {
	display: flex;
	gap: .6rem;
	align-items: flex-start;
}

.sponsor__highlights i {
	color: var(--aqua);
	margin-top: .12rem;
}

.president__card {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 1.4rem;
	padding: 1.6rem;
	border-radius: 26px;
	background: rgba(6, 18, 44, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--shadow-md);
}

.members__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 3vw, 1.4rem);
}

.member-card {
	display: grid;
	grid-template-columns: 140px 1fr;
	align-items: center;
	gap: 1rem;
	padding: 1.2rem;
	border-radius: 22px;
	background: rgba(6, 18, 44, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: var(--shadow-md);
	transition: transform .22s var(--easing), box-shadow .22s var(--easing), border-color .22s var(--easing);
}

.member-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 38px rgba(0, 0, 0, 0.32);
	border-color: rgba(122, 227, 255, 0.26);
}

.member-card img {
	width: 140px;
	height: 140px;
	object-fit: cover;
	border-radius: 18px;
	border: 2px solid rgba(122, 227, 255, 0.3);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 10px 20px rgba(0, 0, 0, 0.28);
}

.member-role {
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: .78rem;
	color: var(--muted);
}

.member-bio {
	color: var(--muted);
	line-height: 1.5;
}

.contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(1.2rem, 4vw, 2rem);
	align-items: start;
}

.contact-card,
.contact-details {
	display: grid;
	gap: .9rem;
	padding: 1.5rem;
	border-radius: 24px;
	background: rgba(6, 18, 44, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--shadow-md);
}

.contact-fields {
	display: grid;
	gap: .8rem;
}

.contact-fields input,
.contact-fields textarea {
	width: 100%;
	padding: .9rem;
	border-radius: 16px;
	background: rgba(5, 14, 36, 0.84);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: var(--white);
}

.contact-fields textarea {
	min-height: 160px;
	resize: vertical;
}

.contact-details__channels {
	display: grid;
	gap: .75rem;
}

.contact-channel {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: .75rem .9rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--muted);
}

.contact-channel i {
	color: var(--aqua);
}

.contact-note {
	font-size: .85rem;
	color: var(--muted);
}

.blog-card {
	display: grid;
	gap: 0;
	border-radius: 28px;
	background: rgba(6, 18, 44, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--shadow-md);
	overflow: hidden;
	max-width: 760px;
	margin-inline: auto;
}

.blog-card__body {
	display: grid;
	gap: .8rem;
	padding: 1.6rem;
}

.blog-card__label {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: .35rem .8rem;
	border-radius: 999px;
	background: rgba(122, 227, 255, 0.18);
	border: 1px solid rgba(122, 227, 255, 0.32);
	text-transform: uppercase;
	letter-spacing: .22em;
	font-size: .7rem;
	color: var(--aqua);
}

.blog-card__meta {
	font-size: .78rem;
	color: var(--muted);
	letter-spacing: .16em;
	text-transform: uppercase;
}

/* --- Footer --- */
.site-footer {
	margin-top: clamp(2.6rem, 6vw, 3.6rem);
	padding: clamp(2.8rem, 6vw, 3.6rem) 0 clamp(2rem, 6vw, 3rem);
	background: rgba(4, 12, 32, 0.94);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 -28px 52px rgba(0, 0, 0, 0.48);
}

.footer-shell {
	width: var(--max-width);
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: clamp(1.4rem, 4vw, 2.4rem);
}

.footer-panel {
	display: grid;
	gap: .8rem;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: .9rem;
}

.footer-brand__logo {
	width: 68px;
	height: 68px;
	border-radius: 20px;
	border: 2px solid rgba(255, 215, 93, 0.6);
	box-shadow: 0 16px 32px rgba(255, 215, 93, 0.24);
}

.footer-brand__copy {
	color: var(--muted);
}

.footer-links {
	display: grid;
	gap: .55rem;
}

.footer-links a {
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .12em;
	font-size: .82rem;
}

.footer-contact {
	display: grid;
	gap: .55rem;
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: .6rem;
	color: var(--muted);
}

.footer-cta-link {
	width: max-content;
}

.footer-bottom {
	margin-top: clamp(1.4rem, 4vw, 2rem);
	text-align: center;
	color: rgba(214, 226, 255, 0.66);
	letter-spacing: .12em;
	text-transform: uppercase;
	font-size: .82rem;
}

.footer-social {
	display: flex;
	gap: .55rem;
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	transition: transform .24s var(--easing), background .24s var(--easing);
}

.footer-social a:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.16);
}

/* --- Reveal Animations (disabled for scroll-in) --- */
[data-animate],
[data-animate].is-visible,
[data-animate-child],
.is-visible [data-animate-child] {
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
	transition: none !important;
	animation: none !important;
	will-change: auto;
	pointer-events: auto;
}

/* Keep layout hooks intact while removing scroll motion */
[data-animate="fade-right"],
[data-animate="fade-left"],
[data-animate="fade-up"],
[data-animate-child="1"],
[data-animate-child="2"],
[data-animate-child="3"],
[data-animate-child="4"],
[data-animate-child="5"] {
	transform: none !important;
	transition-delay: 0s !important;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
	.hero {
		grid-template-columns: minmax(0, 1fr);
		text-align: center;
	}

	.hero__media {
		order: -1;
		max-width: 360px;
	}

	.hero__actions {
		justify-content: center;
	}

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

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

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

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

@media (max-width: 900px) {
	.site-nav__toggle {
		display: inline-flex;
	}

	.site-nav__menu {
		position: absolute;
		top: calc(100% + 12px);
		right: 0;
		left: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		padding: 1.2rem;
		border-radius: 26px;
		background: rgba(4, 12, 32, 0.95);
		border: 1px solid rgba(255, 255, 255, 0.12);
		box-shadow: 0 30px 54px rgba(0, 0, 0, 0.48);
		max-height: 0;
		opacity: 0;
		overflow: hidden;
		pointer-events: none;
		transition: max-height .28s ease, opacity .24s ease;
	}

	.site-nav.is-open .site-nav__menu {
		max-height: 360px;
		opacity: 1;
		pointer-events: auto;
	}

	.site-nav__search {
		width: 100%;
		min-width: 0;
	}

	.site-nav__links {
		flex-direction: column;
	}

	.site-nav__links a {
		width: 100%;
		text-align: center;
	}

	.site-nav__search-results {
		max-height: 260px;
	}

	.hero__orbit {
		width: 200px;
		height: 200px;
	}

	.hero__crest img {
		width: 140px;
		height: 140px;
	}
}

@media (max-width: 760px) {
	main {
		padding-top: calc(64px + 1.4rem);
		gap: clamp(2rem, 9vw, 2.8rem);
	}

	.section {
		padding: clamp(1.9rem, 8vw, 2.4rem);
		border-radius: 26px;
	}

	.hero__content {
		justify-items: center;
		gap: 1.4rem;
		padding-inline: .4rem;
	}

	.hero__title {
		font-size: clamp(2.1rem, 8vw, 3.2rem);
	}

	.hero__subtitle,
	.hero__meta-note {
		text-align: center;
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero__actions .btn {
		width: 100%;
	}

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

	.hero__media {
		max-width: 320px;
	}

	.hero__ticker[data-marquee] li {
		min-width: 100%;
	}

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

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

	.ambassador__grid,
	.contact__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.contact-details {
		order: -1;
	}

	.logo-grid--ventures {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
}

@media (max-width: 560px) {
	.logo-grid,
	.logo-grid--ventures {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.logo-grid--partners,
	.logo-grid--recognitions {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		justify-items: center;
		justify-content: center;
	}

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

	.president__card,
	.ambassador-card {
		grid-template-columns: minmax(0, 1fr);
		text-align: center;
	}

	.hero__scorecard {
		padding: 1.15rem;
	}

	.footer-shell {
		text-align: center;
	}

	.footer-brand {
		justify-content: center;
	}

	.footer-cta-link {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 440px) {
	.logo-grid:not(.logo-grid--partners):not(.logo-grid--recognitions),
	.logo-grid--ventures {
		grid-template-columns: minmax(0, 1fr);
	}

	.hero__orbit {
		width: 180px;
		height: 180px;
	}
}

/* --- Motion Fallback --- */
@media (prefers-reduced-motion: reduce) {
	body::before,
	.hero__aura,
	.hero__orbit,
	.hero__pulse,
	.hero__scorecard,
	.logo-item__link,
	.hero__ticker[data-marquee] li {
		animation: none !important;
	}
}

/* --- Keyframes --- */
@keyframes auroraShift {
	0% {
		background-position: 0% 50%, 100% 50%, center;
	}

	50% {
		background-position: 50% 60%, 60% 40%, center;
	}

	100% {
		background-position: 100% 50%, 0% 50%, center;
	}
}

@keyframes orbitSpin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes floatPulse {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(0, -10px, 0);
	}
}

@keyframes pulseRing {
	0%,
	100% {
		transform: scale(.94);
		opacity: .68;
	}

	50% {
		transform: scale(1);
		opacity: .32;
	}
}

@keyframes cardFloat {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(0, -8px, 0);
	}
}

@keyframes tickerSlide {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-120%);
	}
}
