/* =======================================================
   VARIABLES
======================================================= */

/* =======================================================
   RESET
======================================================= */

/* =======================================================
   BACKGROUND
======================================================= */

/* =======================================================
   HEADER
======================================================= */

/* =======================================================
   HERO
======================================================= */

/* =======================================================
   VIDEO
======================================================= */

/* =======================================================
   COUNTDOWN
======================================================= */

/* =======================================================
   TICKER
======================================================= */

/* =======================================================
   FORM
======================================================= */

/* =======================================================
   BENEFITS
======================================================= */

/* =======================================================
   FOOTER
======================================================= */

/* =======================================================
   ANIMATIONS
======================================================= */

/* =======================================================
   RESPONSIVE
======================================================= */
/*
:root {
	--bg: #061423;

	--bg-light: #0a2540;

	--primary: #2a6df4;

	--primary-light: #57a4ff;

	--accent: #18c3ff;

	--white: #ffffff;

	--text: #dce8f5;

	--muted: #9fb4c9;

	--glass: rgba(255, 255, 255, 0.08);

	--glass-border: rgba(255, 255, 255, 0.12);

	--shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background:
		radial-gradient(
			circle at 14% 5%,
			rgba(212, 175, 55, 0.16),
			transparent 30rem
		),
		radial-gradient(
			circle at 92% 18%,
			rgba(10, 37, 64, 0.12),
			transparent 28rem
		),
		linear-gradient(180deg, #ffffff 0%, #f4f6f8 54%, #ffffff 100%);
	font-family:
		Inter,
		ui-sans-serif,
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		sans-serif;
	-webkit-font-smoothing: antialiased;
}

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

button,
input,
select {
	font: inherit;
}

button,
a,
input,
select {
	transition:
		border-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease,
		background 180ms ease,
		color 180ms ease;
}

:focus-visible {
	outline: 3px solid rgba(212, 175, 55, 0.56);
	outline-offset: 3px;
}

.page-shell {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 12px;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 20px 0 40px;
	padding: 18px 24px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 16px 50px rgba(10, 37, 64, 0.08);
	backdrop-filter: blur(18px);
}

.brand {
	display: inline-flex;
	min-width: 0;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	color: var(--blue);
}

.brand-mark {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	color: var(--white);
	background: linear-gradient(145deg, var(--blue), #11395e);
	box-shadow:
		inset 0 0 0 1px rgba(212, 175, 55, 0.35),
		0 10px 30px rgba(10, 37, 64, 0.2);
	font-size: 0.76rem;
	letter-spacing: 0.06em;
}

.brand-logo {
	width: auto;
	max-width: 260px;
	max-height: 70px;
	object-fit: contain;
}

.brand-text {
	display: none;
	color: rgba(10, 37, 64, 0.72);
	font-size: 0.84rem;
	font-weight: 700;
}

.header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	color: var(--white);
	background: var(--blue);
	font-size: 0.86rem;
	font-weight: 800;
	box-shadow: 0 14px 28px rgba(10, 37, 64, 0.2);
}

.header-cta:hover,
.primary-button:hover,
.submit-button:hover {
	transform: translateY(-2px);
}

.hero-section {
	position: relative;
	display: grid;
	gap: 18px;
	padding: 18px 0 30px;
}

.hero-copy {
	position: relative;
	overflow: hidden;
	padding: 80px 60px;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 28px;
	color: var(--white);
	background:
		linear-gradient(135deg, rgba(10, 37, 64, 0.96), rgba(10, 37, 64, 0.84)),
		radial-gradient(
			circle at top right,
			rgba(212, 175, 55, 0.36),
			transparent 24rem
		);
	box-shadow: var(--shadow);
}

.hero-copy::after {
	content: '';
	position: absolute;
	inset: auto -35% -42% 18%;
	height: 250px;
	border-radius: 999px;
	background: rgba(212, 175, 55, 0.16);
	filter: blur(34px);
}

.eyebrow,
.section-kicker,
.form-topline,
.countdown-label {
	margin: 0 0 12px;
	color: var(--gold);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

h1,
h2 {
	margin: 0;
	color: inherit;
	line-height: 1.02;
	letter-spacing: -0.03em;
}

h1 {
	position: relative;
	z-index: 1;
	max-width: 850px;
	font-size: clamp(3rem, 8vw, 6rem);
}

.hero-subtitle {
	position: relative;
	z-index: 1;
	max-width: 710px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1rem, 4vw, 1.28rem);
	line-height: 1.68;
}

.hero-actions {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 12px;
	margin-top: 26px;
}

.primary-button,
.submit-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	width: 100%;
	border: 0;
	border-radius: 999px;
	color: var(--blue);
	background: linear-gradient(135deg, #f2d778, var(--gold) 54%, #b99223);
	box-shadow: 0 18px 42px rgba(212, 175, 55, 0.28);
	font-size: 0.95rem;
	font-weight: 950;
	letter-spacing: 0.02em;
	cursor: pointer;
}

.primary-button.large {
	max-width: 460px;
	margin: 0 auto;
}

.trust-note {
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.88rem;
	line-height: 1.5;
}

.countdown-card {
	display: grid;
	gap: 16px;
	padding: 18px;
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 24px;
	background: var(--glass);
	box-shadow: 0 18px 50px rgba(10, 37, 64, 0.08);
	backdrop-filter: blur(18px);
}

.countdown-date {
	margin: 0;
	color: var(--blue);
	font-size: 1.08rem;
	font-weight: 850;
}

.countdown-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.countdown-grid div {
	display: grid;
	min-height: 76px;
	place-items: center;
	padding: 10px 6px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.72);
}

.countdown-grid strong {
	color: var(--blue);
	font-size: clamp(1.42rem, 7vw, 2.2rem);
	line-height: 1;
}

.countdown-grid span {
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 750;
}

.conversion-section {
	display: grid;
	gap: 18px;
	align-items: start;
	padding: 22px 0 54px;
}

.video-card,
.form-card,
.benefit-card,
.final-cta {
	border: 1px solid rgba(255, 255, 255, 0.78);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: var(--shadow);
	backdrop-filter: blur(18px);
}

.video-card {
	padding: 16px;
	border-radius: 28px;
}

.tiktok-frame {
	overflow: hidden;
	display: grid;
	max-height: 630px;
	place-items: center;
	border: 1px solid rgba(10, 37, 64, 0.08);
	border-radius: 24px;
	background: linear-gradient(180deg, #ffffff, #edf2f7);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.tiktok-frame iframe,
.tiktok-embed {
	width: 100% !important;
	margin: 0 auto !important;
	border-radius: 22px !important;
}

.form-card {
	position: relative;
	padding: 24px 18px 18px;
	border-color: rgba(212, 175, 55, 0.46);
	border-radius: 30px;
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.9),
			rgba(255, 255, 255, 0.72)
		),
		radial-gradient(
			circle at 90% 0%,
			rgba(212, 175, 55, 0.18),
			transparent 18rem
		);
}

.form-card h2,
.section-heading h2,
.final-cta h2 {
	color: var(--blue);
	font-size: clamp(2rem, 8vw, 3.4rem);
}

.form-card > p,
.final-cta > p {
	margin: 12px 0 22px;
	color: var(--muted);
	line-height: 1.6;
}

form {
	display: grid;
	gap: 14px;
}

.field-group {
	display: grid;
	gap: 7px;
}

.field-group label {
	color: var(--blue);
	font-size: 0.86rem;
	font-weight: 850;
}

.field-group input,
.field-group select {
	width: 100%;
	min-height: 54px;
	border: 1px solid rgba(10, 37, 64, 0.14);
	border-radius: 16px;
	padding: 0 15px;
	color: var(--blue);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 10px 25px rgba(10, 37, 64, 0.04);
}

.field-group input:hover,
.field-group select:hover {
	border-color: rgba(212, 175, 55, 0.6);
}

.field-group input:focus,
.field-group select:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
	outline: none;
}

.field-group input::placeholder {
	color: rgba(95, 108, 123, 0.7);
}

.submit-button {
	position: relative;
	margin-top: 4px;
}

.submit-button[disabled] {
	cursor: wait;
	opacity: 0.72;
	transform: none;
}

.button-loader {
	display: none;
	width: 18px;
	height: 18px;
	margin-left: 10px;
	border: 2px solid rgba(10, 37, 64, 0.26);
	border-top-color: var(--blue);
	border-radius: 50%;
	animation: spin 700ms linear infinite;
}

.submit-button.is-loading .button-loader {
	display: inline-block;
}

.form-status {
	min-height: 22px;
	margin: 0;
	color: var(--blue);
	font-size: 0.9rem;
	font-weight: 760;
	text-align: center;
}

.form-status.error {
	color: #a83232;
}

.benefits-section {
	padding: 6px 0 54px;
}

.section-heading {
	display: grid;
	gap: 10px;
	margin-bottom: 18px;
}

.section-heading h2 {
	max-width: 760px;
}

.benefit-grid {
	display: grid;
	gap: 14px;
}

.benefit-card {
	display: grid;
	gap: 14px;
	min-height: 176px;
	padding: 22px;
	border-radius: 24px;
}

.benefit-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 80px rgba(10, 37, 64, 0.16);
}

.benefit-icon {
	display: inline-grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border-radius: 16px;
	color: var(--blue);
	background: rgba(212, 175, 55, 0.22);
	font-size: 0.78rem;
	font-weight: 950;
}

.benefit-card p {
	margin: 0;
	color: var(--blue);
	font-size: 1.08rem;
	font-weight: 780;
	line-height: 1.45;
}

.final-cta {
	display: grid;
	gap: 14px;
	margin: 6px 0 44px;
	padding: 32px 22px;
	border-radius: 30px;
	text-align: center;
}

.site-footer {
	margin-bottom: 28px;
	padding: 24px 8px 32px;
	color: rgba(10, 37, 64, 0.72);
	text-align: center;
}

.site-footer h2 {
	margin: 0 0 10px;
	color: var(--blue);
	font-size: 1rem;
	letter-spacing: 0;
}

.site-footer p {
	max-width: 900px;
	margin: 0 auto;
	font-size: 0.86rem;
	line-height: 1.7;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 650ms ease,
		transform 650ms ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

@media (min-width: 640px) {
	.page-shell {
		width: min(1180px, calc(100% - 48px));
	}

	.brand-text {
		display: inline;
	}

	.brand-logo {
		max-width: 300px;
		max-height: 85px;
	}

	.hero-actions {
		grid-template-columns: minmax(250px, 340px) 1fr;
		align-items: center;
	}
}

@media (min-width: 900px) {
	.site-header {
		top: 18px;
		margin-top: 18px;
		padding: 12px 14px;
	}

	.hero-section {
		padding-top: 26px;
	}

	.hero-copy {
		padding: 110px 80px;
		border-radius: 38px;
	}

	.countdown-card {
		grid-template-columns: 0.86fr 1.14fr;
		align-items: center;
		padding: 22px;
	}

	.conversion-section {
		grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
		gap: 24px;
	}

	.form-card {
		position: sticky;
		top: 104px;
		padding: 30px;
	}

	.video-card {
		padding: 20px;
	}

	.benefit-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.final-cta {
		padding: 56px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
*/

/* ==========================================================
   KYK LANDING V2
   Design System
========================================================== */

/* ==========================================================
   ROOT
========================================================== */

:root {
	/* Brand */

	--color-bg: #061423;
	--color-bg-secondary: #0a2540;
	--color-surface: rgba(255, 255, 255, 0.06);

	--color-primary: #1d4ed8;
	--color-primary-light: #3b82f6;
	--color-accent: #60a5fa;

	--color-gold: #d4af37;

	--color-white: #ffffff;

	--color-text: #e8eef7;
	--color-text-muted: #9fb4c8;

	--color-border: rgba(255, 255, 255, 0.1);

	/* Glass */

	--glass-bg: rgba(255, 255, 255, 0.05);

	--glass-border: rgba(255, 255, 255, 0.08);

	--glass-blur: blur(24px);

	/* Radius */

	--radius-sm: 12px;
	--radius-md: 18px;
	--radius-lg: 28px;
	--radius-xl: 40px;
	--radius-pill: 999px;

	/* Shadows */

	--shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.2);

	--shadow-medium: 0 25px 70px rgba(0, 0, 0, 0.3);

	--shadow-glow: 0 0 80px rgba(59, 130, 246, 0.18);

	/* Layout */

	--container: 1240px;

	--section-space: 140px;

	--gap-xs: 0.5rem;
	--gap-sm: 1rem;
	--gap-md: 1.5rem;
	--gap-lg: 2rem;
	--gap-xl: 4rem;

	/* Transition */

	--transition: 0.35s ease;
}

/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after {
	margin: 0;
	padding: 0;

	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', sans-serif;

	background: var(--color-bg);

	color: var(--color-text);

	overflow-x: hidden;

	-webkit-font-smoothing: antialiased;

	text-rendering: optimizeLegibility;
}

img {
	display: block;

	max-width: 100%;
}

picture {
	display: block;
}

video {
	display: block;

	width: 100%;
}

button,
input,
select,
textarea {
	font: inherit;
}

button {
	cursor: pointer;

	border: none;

	background: none;
}

a {
	color: inherit;

	text-decoration: none;
}

ul {
	list-style: none;
}

section {
	position: relative;

	padding: var(--section-space) 0;
}

/* ==========================================================
   TYPOGRAPHY
========================================================== */

h1,
h2,
h3,
h4 {
	font-family: 'Space Grotesk', sans-serif;

	font-weight: 700;

	line-height: 1.05;

	letter-spacing: -0.03em;
}

h1 {
	font-size: clamp(3rem, 6vw, 5.8rem);
}

h2 {
	font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
	font-size: clamp(1.3rem, 2vw, 1.8rem);
}

p {
	color: var(--color-text-muted);

	font-size: 1.05rem;

	line-height: 1.8;
}

.section__eyebrow {
	display: inline-flex;

	align-items: center;

	gap: 0.5rem;

	margin-bottom: 1rem;

	color: var(--color-gold);

	font-size: 0.82rem;

	font-weight: 700;

	text-transform: uppercase;

	letter-spacing: 0.18em;
}

.section__title {
	max-width: 900px;

	margin-bottom: 1.5rem;
}

.section__title span {
	color: var(--color-accent);
}

.section__subtitle {
	max-width: 700px;
}

/* ==========================================================
   LAYOUT
========================================================== */

.page {
	position: relative;

	width: min(var(--container), calc(100% - 40px));

	margin: auto;

	z-index: 2;
}

.hero__container,
.registration__container,
.host__container {
	display: grid;

	gap: 4rem;
}

/* ==========================================================
   BACKGROUND
========================================================== */

.background {
	position: fixed;

	inset: 0;

	overflow: hidden;

	z-index: -3;

	background: radial-gradient(circle at top, #102f59 0%, #061423 65%);
}

/* GRID */

.background__grid {
	position: absolute;

	inset: 0;

	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);

	background-size: 80px 80px;

	opacity: 0.18;

	mask-image: radial-gradient(circle, #fff 20%, transparent 90%);
}

/* NOISE */

.background__noise {
	position: absolute;

	inset: 0;

	opacity: 0.03;

	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

/* ==========================================================
   AURORAS
========================================================== */

.aurora {
	position: absolute;

	border-radius: 50%;

	filter: blur(130px);

	opacity: 0.28;

	animation: auroraFloat 22s ease-in-out infinite alternate;
}

.aurora--one {
	width: 700px;
	height: 700px;

	top: -250px;
	left: -180px;

	background: #1d4ed8;
}

.aurora--two {
	width: 600px;
	height: 600px;

	right: -120px;
	top: 120px;

	background: #60a5fa;

	animation-delay: 5s;
}

.aurora--three {
	width: 550px;
	height: 550px;

	bottom: -180px;
	left: 35%;

	background: #0ea5e9;

	animation-delay: 10s;
}

/* ==========================================================
   CONTAINER HELPERS
========================================================== */

.container {
	width: min(var(--container), calc(100% - 40px));

	margin: auto;
}

/* ==========================================================
   KEYFRAMES
========================================================== */

@keyframes auroraFloat {
	from {
		transform: translate3d(0, 0, 0) scale(1);
	}

	to {
		transform: translate3d(80px, -40px, 0) scale(1.2);
	}
}
/* ==========================================================
   HEADER
========================================================== */

.header {
	position: sticky;

	top: 20px;

	z-index: 1000;

	margin-bottom: 80px;
}

.header__container {
	display: flex;

	justify-content: space-between;

	align-items: center;

	min-height: 96px;

	padding: 0 28px;

	border: 1px solid rgba(255, 255, 255, 0.08);

	border-radius: 999px;

	background: rgba(8, 22, 40, 0.55);

	backdrop-filter: blur(22px);

	box-shadow:
		var(--shadow-soft),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header__brand img {
	width: auto;

	height: 78px;
}

.header__nav {
	display: flex;

	align-items: center;

	gap: 20px;
}

.header__badge {
	color: var(--color-gold);

	font-size: 0.82rem;

	font-weight: 700;

	text-transform: uppercase;

	letter-spacing: 0.16em;
}

/* ==========================================================
   BUTTONS
========================================================== */

.button {
	position: relative;

	display: inline-flex;

	align-items: center;

	justify-content: center;

	overflow: hidden;

	transition: all 0.35s ease;
}

.button::before {
	content: '';

	position: absolute;

	inset: 0;

	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.35),
		transparent
	);

	transform: translateX(-130%);
}

.button:hover::before {
	transform: translateX(130%);

	transition: 1s;
}

.button--primary {
	min-width: 270px;

	height: 64px;

	border-radius: 999px;

	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-light)
	);

	color: white;

	font-weight: 700;

	letter-spacing: 0.06em;

	box-shadow: var(--shadow-glow);
}

.button--primary:hover {
	transform: translateY(-4px);

	box-shadow: 0 0 80px rgba(59, 130, 246, 0.35);
}

.button--small {
	height: 48px;

	padding: 0 28px;

	border-radius: 999px;

	background: rgba(255, 255, 255, 0.08);

	border: 1px solid rgba(255, 255, 255, 0.08);

	color: white;

	font-weight: 600;
}

.button--small:hover {
	background: rgba(255, 255, 255, 0.12);
}

/* ==========================================================
   HERO
========================================================== */

.hero {
	padding-top: 30px;
}

.hero__container {
	display: grid;

	grid-template-columns:
		1.05fr
		0.95fr;

	align-items: center;

	gap: 70px;
}

.hero__content {
	display: flex;

	flex-direction: column;

	justify-content: center;
}

.hero__eyebrow {
	display: inline-flex;

	width: max-content;

	padding: 10px 18px;

	margin-bottom: 24px;

	border-radius: 999px;

	border: 1px solid rgba(212, 175, 55, 0.25);

	background: rgba(212, 175, 55, 0.08);

	color: var(--color-gold);

	font-size: 0.8rem;

	letter-spacing: 0.15em;
}

.hero__title {
	max-width: 620px;

	margin-bottom: 30px;

	text-align: center;
}

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

.hero__subtitle {
	max-width: 600px;

	font-size: 1.5rem;

	line-height: 1.9;

	text-align: justify;
}

.hero__actions {
	display: flex;

	gap: 18px;

	margin-bottom: 50px;
}

/* ==========================================================
   HERO VIDEO
========================================================== */

.hero__media {
	display: flex;

	justify-content: center;

	align-items: center;
}

.video-card {
	position: relative;

	width: 75%;

	overflow: hidden;

	border-radius: 32px;

	background: var(--glass-bg);

	border: 1px solid rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(18px);

	box-shadow: var(--shadow-medium);
}

.video-card::before {
	content: '';

	position: absolute;

	inset: -1px;

	border-radius: 32px;

	background: linear-gradient(
		145deg,
		rgba(96, 165, 250, 0.35),
		transparent,
		rgba(29, 78, 216, 0.35)
	);

	opacity: 0.6;

	pointer-events: none;
}

.hero__video {
	position: relative;

	border-radius: 32px;

	overflow: hidden;
}

/* ==========================================================
   EVENT CARDS
========================================================== */

.hero__event {
	display: grid;

	grid-template-columns: repeat(4, 1fr);

	gap: 16px;
}

.event-card {
	padding: 22px;

	border-radius: 24px;

	background: rgba(255, 255, 255, 0.05);

	border: 1px solid rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(18px);

	transition: all 0.35s ease;
}

.event-card:hover {
	transform: translateY(-6px);

	border-color: rgba(96, 165, 250, 0.35);

	box-shadow: var(--shadow-glow);
}

.event-card small {
	display: block;

	margin-bottom: 10px;

	color: var(--color-text-muted);

	text-transform: uppercase;

	letter-spacing: 0.12em;
}

.event-card strong {
	color: white;

	font-size: 1.1rem;
}

/* ==========================================================
   HERO SPACING
========================================================== */

.hero > .countdown {
	margin-top: 80px;
}

.hero > .ticker {
	margin-top: 60px;
}
/* ==========================================================
   COUNTDOWN
========================================================== */

.countdown {
	max-width: 1100px;

	margin: 90px auto 0;

	padding: 45px;

	border-radius: 32px;

	background: rgba(255, 255, 255, 0.05);

	border: 1px solid rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(22px);

	box-shadow: var(--shadow-medium);
}

.countdown h3 {
	margin-bottom: 35px;

	text-align: center;

	color: var(--color-white);
}

.countdown__grid {
	display: grid;

	grid-template-columns: repeat(4, 1fr);

	gap: 22px;
}

.countdown__grid article {
	position: relative;

	overflow: hidden;

	display: flex;

	flex-direction: column;

	align-items: center;

	justify-content: center;

	min-height: 150px;

	border-radius: 28px;

	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.08),
		rgba(255, 255, 255, 0.03)
	);

	border: 1px solid rgba(255, 255, 255, 0.08);

	transition: 0.35s;
}

.countdown__grid article::before {
	content: '';

	position: absolute;

	inset: 0;

	background: radial-gradient(
		circle at top,

		rgba(96, 165, 250, 0.2),
		transparent 70%
	);

	opacity: 0;

	transition: 0.35s;
}

.countdown__grid article:hover {
	transform: translateY(-8px);

	border-color: rgba(96, 165, 250, 0.25);
}

.countdown__grid article:hover::before {
	opacity: 1;
}

.countdown__grid strong {
	font-size: 4rem;

	font-family: 'Space Grotesk';

	color: var(--color-white);

	line-height: 1;
}

.countdown__grid span {
	margin-top: 12px;

	color: var(--color-text-muted);

	text-transform: uppercase;

	letter-spacing: 0.14em;

	font-size: 0.8rem;
}

/* ==========================================================
   TICKER
========================================================== */

.ticker {
	position: relative;

	overflow: hidden;

	margin-top: 80px;

	padding: 18px 0;

	border-top: 1px solid rgba(255, 255, 255, 0.08);

	border-bottom: 1px solid rgba(255, 255, 255, 0.08);

	background: rgba(255, 255, 255, 0.03);
}

.ticker__track {
	display: flex;

	align-items: center;

	gap: 45px;

	width: max-content;

	animation: tickerMove 28s linear infinite;
}

.ticker span {
	white-space: nowrap;

	font-size: 1rem;

	color: var(--color-text-muted);

	letter-spacing: 0.08em;
}

.ticker span:nth-child(even) {
	color: var(--color-primary-light);
}

/* ==========================================================
   GLASS HELPERS
========================================================== */

.glass {
	background: rgba(255, 255, 255, 0.05);

	border: 1px solid rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(20px);
}

.glass-hover {
	transition: 0.35s;
}

.glass-hover:hover {
	transform: translateY(-6px);

	box-shadow: var(--shadow-glow);
}

/* ==========================================================
   REVEAL
========================================================== */

.reveal {
	opacity: 0;

	transform: translateY(40px);

	transition:
		opacity 0.9s ease,
		transform 0.9s ease;
}

.reveal.active {
	opacity: 1;

	transform: none;
}

/* ==========================================================
   FLOAT EFFECT
========================================================== */

.float {
	animation: floatY 6s ease-in-out infinite;
}

/* ==========================================================
   HOVER GLOW
========================================================== */

.glow {
	position: relative;
}

.glow::after {
	content: '';

	position: absolute;

	inset: -2px;

	border-radius: inherit;

	background: radial-gradient(
		circle,
		rgba(59, 130, 246, 0.45),
		transparent 70%
	);

	opacity: 0;

	transition: 0.4s;

	z-index: -1;
}

.glow:hover::after {
	opacity: 1;
}

/* ==========================================================
   KEYFRAMES
========================================================== */

@keyframes tickerMove {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@keyframes floatY {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-12px);
	}

	100% {
		transform: translateY(0px);
	}
}
/* ==========================================================
   REGISTRATION
========================================================== */

.registration {
	padding-top: 150px;
}

.registration__container {
	display: grid;

	grid-template-columns: 1fr 520px;

	align-items: start;

	gap: 70px;
}

.registration__content {
	display: flex;

	flex-direction: column;

	justify-content: center;
}

.registration__content .section__title {
	max-width: 650px;
}

.registration__content .section__subtitle {
	max-width: 560px;

	margin-bottom: 42px;
}

/* ==========================================================
   TRUST ITEMS
========================================================== */

.registration__trust {
	display: flex;

	flex-direction: column;

	gap: 22px;
}

.trust-item {
	display: flex;

	align-items: flex-start;

	gap: 18px;

	padding: 22px 24px;

	border-radius: 22px;

	background: rgba(255, 255, 255, 0.04);

	border: 1px solid rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(18px);

	transition: 0.35s;
}

.trust-item:hover {
	transform: translateX(10px);

	border-color: rgba(96, 165, 250, 0.25);
}

.trust-item span {
	display: flex;

	align-items: center;

	justify-content: center;

	width: 42px;

	height: 42px;

	border-radius: 50%;

	background: rgba(59, 130, 246, 0.15);

	color: var(--color-accent);

	font-weight: 700;

	flex-shrink: 0;
}

.trust-item strong {
	display: block;

	margin-bottom: 6px;

	color: var(--color-white);
}

.trust-item small {
	color: var(--color-text-muted);
}

/* ==========================================================
   FORM CARD
========================================================== */

.form-card {
	position: relative;

	top: auto;

	padding: 42px;

	border-radius: 32px;

	background: rgba(255, 255, 255, 0.06);

	border: 1px solid rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(24px);

	box-shadow: var(--shadow-medium);
}

.form-card::before {
	content: '';

	position: absolute;

	inset: -1px;

	border-radius: 32px;

	background: linear-gradient(
		145deg,
		rgba(96, 165, 250, 0.25),
		transparent,
		rgba(29, 78, 216, 0.18)
	);

	pointer-events: none;

	opacity: 0.8;
}

.form-card > * {
	position: relative;

	z-index: 2;
}

.form-card__badge {
	display: inline-flex;

	align-items: center;

	justify-content: center;

	margin-bottom: 22px;

	padding: 10px 18px;

	border-radius: 999px;

	background: rgba(212, 175, 55, 0.1);

	color: var(--color-gold);

	font-size: 0.8rem;

	font-weight: 700;

	letter-spacing: 0.15em;

	text-transform: uppercase;
}

.form-card h3 {
	margin-bottom: 14px;

	color: white;
}

.form-card p {
	margin-bottom: 36px;
}

/* ==========================================================
   FORM
========================================================== */

#registrationForm {
	display: flex;

	flex-direction: column;

	gap: 22px;
}

.field-group {
	display: flex;

	flex-direction: column;

	gap: 10px;
}

.field-group label {
	font-size: 0.9rem;

	color: var(--color-white);

	font-weight: 600;
}

.field-group input,
.field-group select {
	height: 60px;

	padding: 0 20px;

	border-radius: 18px;

	border: 1px solid rgba(255, 255, 255, 0.08);

	background: rgba(255, 255, 255, 0.04);

	color: white;

	transition: 0.35s;

	outline: none;
}
.field-group select option {
	background: #0a2540;

	color: #ffffff;
}

.field-group input::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.field-group input:focus,
.field-group select:focus {
	border-color: var(--color-primary-light);

	box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.button--full {
	width: 100%;
}

.submit-button {
	margin-top: 16px;
}

.form-status {
	min-height: 24px;

	text-align: center;

	font-size: 0.95rem;

	color: var(--color-accent);
}

.form-status.error {
	color: #ff7070;
}
/* ==========================================================
   SECTION HEADINGS
========================================================== */

.section-heading {
	display: flex;

	flex-direction: column;

	align-items: center;

	text-align: center;

	margin-bottom: 80px;
}

.section-heading .section__title {
	max-width: 760px;

	margin-bottom: 18px;
}

.section-heading p {
	max-width: 680px;
}

/* ==========================================================
   REALITY SECTION
========================================================== */

.reality {
	position: relative;

	padding-top: 170px;
}

.reality__grid {
	display: grid;

	grid-template-columns: repeat(3, 1fr);

	gap: 30px;
}

.reality-card {
	position: relative;

	overflow: hidden;

	padding: 42px;

	border-radius: 30px;

	background: rgba(255, 255, 255, 0.04);

	border: 1px solid rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(18px);

	transition: 0.4s ease;
}

.reality-card:hover {
	transform: translateY(-10px);

	border-color: rgba(96, 165, 250, 0.35);

	box-shadow: var(--shadow-glow);
}

.reality-card::before {
	content: '';

	position: absolute;

	top: -120px;

	right: -120px;

	width: 240px;

	height: 240px;

	border-radius: 50%;

	background: radial-gradient(circle, rgba(96, 165, 250, 0.15), transparent);
}

.reality-card span {
	display: block;

	margin-bottom: 28px;

	font-size: 4rem;

	font-family: 'Space Grotesk';

	color: rgba(96, 165, 250, 0.25);

	line-height: 1;
}

.reality-card h3 {
	margin-bottom: 18px;

	color: white;
}

.reality-card p {
	line-height: 1.8;
}

/* ==========================================================
   BENEFITS
========================================================== */

.benefits {
	padding-top: 170px;
}

.benefits__grid {
	display: grid;

	grid-template-columns: repeat(3, 1fr);

	gap: 30px;
}

.benefit-card {
	position: relative;

	overflow: hidden;

	padding: 42px;

	border-radius: 30px;

	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.06),
		rgba(255, 255, 255, 0.03)
	);

	border: 1px solid rgba(255, 255, 255, 0.08);

	transition: 0.35s ease;
}

.benefit-card:hover {
	transform: translateY(-12px);

	border-color: rgba(96, 165, 250, 0.3);

	box-shadow: var(--shadow-glow);
}

.benefit-card::after {
	content: '';

	position: absolute;

	inset: 0;

	background: radial-gradient(
		circle at top,

		rgba(96, 165, 250, 0.12),
		transparent 70%
	);

	opacity: 0;

	transition: 0.35s;
}

.benefit-card:hover::after {
	opacity: 1;
}

.benefit-card span {
	display: inline-flex;

	align-items: center;

	justify-content: center;

	width: 74px;

	height: 74px;

	margin-bottom: 30px;

	border-radius: 50%;

	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-light)
	);

	color: white;

	font-size: 1.35rem;

	font-weight: 700;

	box-shadow: var(--shadow-glow);
}

.benefit-card h3 {
	position: relative;

	z-index: 2;

	color: white;

	line-height: 1.4;
}

/* ==========================================================
   DIVIDERS
========================================================== */

.reality::after,
.benefits::after {
	content: '';

	position: absolute;

	left: 50%;

	bottom: -80px;

	width: 2px;

	height: 80px;

	transform: translateX(-50%);

	background: linear-gradient(
		transparent,
		rgba(96, 165, 250, 0.45),
		transparent
	);
}

/* ==========================================================
   SECTION ANIMATION
========================================================== */

.reality-card,
.benefit-card {
	will-change: transform;
}

/* ==========================================================
   HOVER MICRO INTERACTION
========================================================== */

.reality-card:hover span {
	color: rgba(96, 165, 250, 0.6);
}

.benefit-card:hover span {
	transform: rotate(8deg) scale(1.08);
}
/* ==========================================================
   HOST SECTION
========================================================== */

.host {
	position: relative;

	padding-top: 180px;

	padding-bottom: 180px;
}

.host::before {
	content: '';

	position: absolute;

	width: 620px;

	height: 620px;

	left: -220px;

	top: 80px;

	border-radius: 50%;

	background: radial-gradient(circle, rgba(29, 78, 216, 0.22), transparent 72%);

	filter: blur(90px);

	pointer-events: none;
}

.host::after {
	content: '';

	position: absolute;

	width: 500px;

	height: 500px;

	right: -180px;

	bottom: -120px;

	border-radius: 50%;

	background: radial-gradient(
		circle,
		rgba(96, 165, 250, 0.16),
		transparent 72%
	);

	filter: blur(80px);

	pointer-events: none;
}

.host__container {
	position: relative;

	display: grid;

	grid-template-columns:
		520px
		1fr;

	gap: 80px;

	align-items: center;
}

/* ==========================================================
   AUTHORITY VISUAL
========================================================== */

.host__visual {
	display: flex;

	flex-direction: column;

	gap: 28px;
}

.authority-card {
	padding: 42px;

	border-radius: 32px;

	background: rgba(255, 255, 255, 0.05);

	border: 1px solid rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(20px);

	box-shadow: var(--shadow-medium);
}

.authority-card__eyebrow {
	display: inline-block;

	margin-bottom: 18px;

	color: var(--color-gold);

	font-size: 0.8rem;

	font-weight: 700;

	letter-spacing: 0.15em;

	text-transform: uppercase;
}

.authority-card h3 {
	line-height: 1.5;

	font-size: 1.8rem;

	color: white;
}

.authority-grid {
	display: grid;

	grid-template-columns: repeat(2, 1fr);

	gap: 20px;
}

.authority-item {
	padding: 28px;

	border-radius: 24px;

	background: rgba(255, 255, 255, 0.04);

	border: 1px solid rgba(255, 255, 255, 0.08);

	transition: 0.35s;
}

.authority-item:hover {
	transform: translateY(-6px);

	border-color: rgba(96, 165, 250, 0.25);

	box-shadow: var(--shadow-glow);
}

.authority-item span {
	display: block;

	font-size: 2rem;

	margin-bottom: 18px;
}

.authority-item strong {
	display: block;

	margin-bottom: 10px;

	color: white;

	font-size: 1.1rem;
}

.authority-item small {
	color: var(--color-text-muted);

	line-height: 1.6;
}

/* ==========================================================
   HOST IMAGE
========================================================== */

.host__image {
	position: relative;
}

.host__image::before {
	content: '';

	position: absolute;

	inset: -12px;

	border-radius: 36px;

	background: linear-gradient(
		135deg,
		rgba(96, 165, 250, 0.35),
		rgba(29, 78, 216, 0.12)
	);

	z-index: -1;
}

.host__image img {
	width: 100%;

	border-radius: 34px;

	border: 1px solid rgba(255, 255, 255, 0.08);

	box-shadow: var(--shadow-medium);
}

.host__image::after {
	content: '';

	position: absolute;

	width: 220px;

	height: 220px;

	right: -50px;

	bottom: -40px;

	border-radius: 50%;

	background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent);

	filter: blur(60px);
}

/* ==========================================================
   HOST CONTENT
========================================================== */

.host__content {
	position: relative;

	z-index: 2;
}

.host__content p {
	max-width: 680px;

	margin-bottom: 40px;
}

/* ==========================================================
   HOST LIST
========================================================== */

.host__list {
	display: grid;

	grid-template-columns: repeat(2, 1fr);

	gap: 18px;
}

.host__list li {
	display: flex;

	align-items: center;

	gap: 14px;

	padding: 18px 20px;

	border-radius: 18px;

	background: rgba(255, 255, 255, 0.04);

	border: 1px solid rgba(255, 255, 255, 0.08);

	transition: 0.35s;

	color: white;
}

.host__list li:hover {
	transform: translateY(-5px);

	border-color: rgba(96, 165, 250, 0.25);

	box-shadow: var(--shadow-glow);
}

.host__list li::before {
	content: '';

	width: 10px;

	height: 10px;

	border-radius: 50%;

	background: var(--color-gold);

	flex-shrink: 0;
}

/* ==========================================================
   GLOBAL SECTION HALOS
========================================================== */

.reality::before,
.benefits::before {
	content: '';

	position: absolute;

	width: 500px;

	height: 500px;

	border-radius: 50%;

	background: radial-gradient(circle, rgba(96, 165, 250, 0.1), transparent 70%);

	filter: blur(80px);

	pointer-events: none;
}

.reality::before {
	right: -180px;

	top: 120px;
}

.benefits::before {
	left: -180px;

	bottom: 40px;
}

/* ==========================================================
   FADE SEPARATORS
========================================================== */

.host,
.reality,
.benefits {
	isolation: isolate;
}

/* ==========================================================
   PREMIUM DIVIDER
========================================================== */

.section-divider {
	width: 120px;

	height: 2px;

	margin: 40px auto;

	background: linear-gradient(transparent, var(--color-gold), transparent);
}

/* ==========================================================
   HOVER POLISH
========================================================== */

.host__image {
	transition: transform 0.45s ease;
}

.host__image:hover {
	transform: rotate(-1deg) translateY(-8px);
}

.host__list li {
	position: relative;

	overflow: hidden;
}

.host__list li::after {
	content: '';

	position: absolute;

	inset: 0;

	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.08),
		transparent
	);

	transform: translateX(-120%);
}

.host__list li:hover::after {
	transform: translateX(120%);

	transition: 1s;
}
/* ==========================================================
   TIMELINE
========================================================== */

.timeline {
	position: relative;

	padding: 180px 0;
}

.timeline__container {
	position: relative;

	max-width: 920px;

	margin: auto;
}

.timeline__container::before {
	content: '';

	position: absolute;

	left: 32px;

	top: 0;

	bottom: 0;

	width: 2px;

	background: linear-gradient(
		transparent,
		rgba(212, 175, 55, 0.45),
		rgba(96, 165, 250, 0.45),
		transparent
	);
}

.timeline-item {
	position: relative;

	display: flex;

	gap: 40px;

	margin-bottom: 70px;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-item__number {
	position: relative;

	z-index: 2;

	width: 64px;

	height: 64px;

	border-radius: 50%;

	flex-shrink: 0;

	display: flex;

	align-items: center;

	justify-content: center;

	font-family: 'Space Grotesk';

	font-size: 1.3rem;

	font-weight: 700;

	color: #fff;

	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-primary-light)
	);

	box-shadow: var(--shadow-glow);
}

.timeline-item__content {
	flex: 1;

	padding: 34px;

	border-radius: 28px;

	background: rgba(255, 255, 255, 0.05);

	border: 1px solid rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(20px);

	transition: 0.35s;
}

.timeline-item__content:hover {
	transform: translateY(-6px);

	border-color: rgba(96, 165, 250, 0.3);
}

.timeline-item__content h3 {
	margin-bottom: 18px;

	color: #fff;
}

.timeline-item__content p {
	margin: 0;
}

/* ==========================================================
   TESTIMONIALS
========================================================== */

.testimonials {
	padding: 180px 0;
}

.testimonials__grid {
	display: grid;

	grid-template-columns: repeat(3, 1fr);

	gap: 32px;
}

.testimonial-card {
	position: relative;

	overflow: hidden;

	padding: 40px;

	border-radius: 30px;

	background: rgba(255, 255, 255, 0.05);

	border: 1px solid rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(20px);

	transition: 0.35s;
}

.testimonial-card:hover {
	transform: translateY(-8px);

	box-shadow: var(--shadow-glow);
}

.testimonial-card::before {
	content: '★★★★★';

	display: block;

	margin-bottom: 28px;

	color: var(--color-gold);

	letter-spacing: 0.3rem;
}

.testimonial-card p {
	margin-bottom: 30px;

	color: #fff;

	font-size: 1rem;

	line-height: 1.9;
}

.testimonial-footer {
	display: flex;

	align-items: center;

	gap: 16px;
}

.testimonial-footer img {
	width: 64px;

	height: 64px;

	border-radius: 50%;

	object-fit: cover;
}

.testimonial-name {
	display: block;

	color: #fff;

	font-weight: 700;
}

.testimonial-role {
	color: var(--color-text-muted);

	font-size: 0.9rem;
}

/* ==========================================================
   FAQ
========================================================== */

.faq {
	padding: 180px 0;
}

.faq__container {
	max-width: 900px;

	margin: auto;
}

.faq-item {
	margin-bottom: 22px;

	border-radius: 24px;

	overflow: hidden;

	background: rgba(255, 255, 255, 0.05);

	border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
	cursor: pointer;

	list-style: none;

	padding: 26px 30px;

	color: #fff;

	font-weight: 600;

	position: relative;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary::after {
	content: '+';

	position: absolute;

	right: 30px;

	top: 50%;

	transform: translateY(-50%);

	color: var(--color-accent);

	font-size: 1.5rem;

	transition: 0.3s;
}

.faq-item[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
	padding: 0 30px 28px;

	margin: 0;
}
/* ==========================================================
   FINAL CTA
========================================================== */

.final-cta {
	position: relative;

	padding: 200px 0;

	text-align: center;

	overflow: hidden;
}

.final-cta::before {
	content: '';

	position: absolute;

	width: 900px;

	height: 900px;

	left: 50%;

	top: 50%;

	transform: translate(-50%, -50%);

	border-radius: 50%;

	background: radial-gradient(circle, rgba(29, 78, 216, 0.22), transparent 72%);

	filter: blur(90px);

	z-index: -1;
}

.final-cta h2 {
	max-width: 900px;

	margin: 0 auto 28px;
}

.final-cta p {
	max-width: 720px;

	margin: 0 auto 50px;
}

.final-cta .button {
	transform: scale(1.05);
}

.final-cta .button:hover {
	transform: scale(1.09) translateY(-3px);
}

/* ==========================================================
   FOOTER
========================================================== */

.site-footer {
	padding: 80px 0;

	border-top: 1px solid rgba(255, 255, 255, 0.08);

	text-align: center;
}

.site-footer h2 {
	margin-bottom: 18px;

	color: white;
}

.site-footer p {
	max-width: 900px;

	margin: auto;

	line-height: 1.9;
}

/* ==========================================================
   UTILITIES
========================================================== */

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

.mt-xl {
	margin-top: 120px;
}

.mt-lg {
	margin-top: 80px;
}

.mt-md {
	margin-top: 50px;
}

.mb-xl {
	margin-bottom: 120px;
}

.mb-lg {
	margin-bottom: 80px;
}

.mb-md {
	margin-bottom: 40px;
}

/* ==========================================================
   GLOBAL TRANSITIONS
========================================================== */

a,
button,
input,
select,
textarea {
	transition:
		background 0.35s ease,
		color 0.35s ease,
		border-color 0.35s ease,
		transform 0.35s ease,
		box-shadow 0.35s ease;
}

/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #061423;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(var(--color-primary), var(--color-primary-light));

	border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--color-accent);
}

/* ==========================================================
   TEXT SELECTION
========================================================== */

::selection {
	background: rgba(96, 165, 250, 0.35);

	color: white;
}

/* ==========================================================
   FOCUS STATES
========================================================== */

:focus-visible {
	outline: 2px solid var(--color-accent);

	outline-offset: 4px;
}

/* ==========================================================
   IMAGE POLISH
========================================================== */

img {
	user-select: none;

	-webkit-user-drag: none;
}

/* ==========================================================
   HOVER LINKS
========================================================== */

a {
	position: relative;
}

a:not(.button)::after {
	content: '';

	position: absolute;

	left: 0;

	bottom: -4px;

	width: 0;

	height: 2px;

	background: var(--color-accent);

	transition: 0.35s;
}

a:not(.button):hover::after {
	width: 100%;
}

/* ==========================================================
   PREMIUM SHADOW HELPERS
========================================================== */

.shadow-soft {
	box-shadow: var(--shadow-soft);
}

.shadow-medium {
	box-shadow: var(--shadow-medium);
}

.shadow-glow {
	box-shadow: var(--shadow-glow);
}

/* ==========================================================
   BORDER HELPERS
========================================================== */

.border-glass {
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.round-lg {
	border-radius: 32px;
}

.round-xl {
	border-radius: 42px;
}

/* ==========================================================
   PERFORMANCE
========================================================== */

.hero,
.registration,
.reality,
.benefits,
.host,
.timeline,
.testimonials,
.faq,
.final-cta {
	contain: layout;
}
/* ==========================================================
   EXPERIENCE LAYER
   (Microinteracciones Premium)
========================================================== */

/* ==========================================================
   REVEAL ANIMATION
========================================================== */

.reveal {
	opacity: 0;

	transform: translateY(50px);

	transition:
		opacity 0.9s ease,
		transform 0.9s ease;

	will-change: transform, opacity;
}

.reveal.is-visible {
	opacity: 1;

	transform: none;
}

/* ==========================================================
   STAGGER DELAYS
========================================================== */

.delay-1 {
	transition-delay: 0.08s;
}
.delay-2 {
	transition-delay: 0.16s;
}
.delay-3 {
	transition-delay: 0.24s;
}
.delay-4 {
	transition-delay: 0.32s;
}
.delay-5 {
	transition-delay: 0.4s;
}

/* ==========================================================
   HOVER LIFT
========================================================== */

.hover-lift {
	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease;
}

.hover-lift:hover {
	transform: translateY(-10px);

	box-shadow: var(--shadow-glow);
}

/* ==========================================================
   PREMIUM SCALE
========================================================== */

.hover-scale {
	transition: transform 0.35s ease;
}

.hover-scale:hover {
	transform: scale(1.03);
}

/* ==========================================================
   GLOW BORDER
========================================================== */

.glow-border {
	position: relative;
}

.glow-border::before {
	content: '';

	position: absolute;

	inset: -1px;

	border-radius: inherit;

	background: linear-gradient(
		135deg,
		rgba(96, 165, 250, 0.3),
		transparent,
		rgba(29, 78, 216, 0.3)
	);

	opacity: 0;

	transition: 0.4s;

	z-index: -1;
}

.glow-border:hover::before {
	opacity: 1;
}

/* ==========================================================
   MOUSE GLOW
========================================================== */

.mouse-glow {
	position: relative;

	overflow: hidden;
}

.mouse-glow::after {
	content: '';

	position: absolute;

	width: 280px;

	height: 280px;

	left: var(--mouse-x, 50%);

	top: var(--mouse-y, 50%);

	transform: translate(-50%, -50%);

	border-radius: 50%;

	background: radial-gradient(
		circle,
		rgba(96, 165, 250, 0.14),
		transparent 70%
	);

	opacity: 0;

	transition: opacity 0.35s ease;

	pointer-events: none;
}

.mouse-glow:hover::after {
	opacity: 1;
}

/* ==========================================================
   FLOATING ELEMENTS
========================================================== */

.float-slow {
	animation: floatSlow 10s ease-in-out infinite;
}

.float-medium {
	animation: floatMedium 7s ease-in-out infinite;
}

.float-fast {
	animation: floatFast 5s ease-in-out infinite;
}

/* ==========================================================
   GRADIENT TEXT
========================================================== */

.gradient-text {
	background: linear-gradient(135deg, #ffffff, #9dd6ff, #60a5fa);

	-webkit-background-clip: text;

	-webkit-text-fill-color: transparent;
}

/* ==========================================================
   IMAGE PARALLAX PREP
========================================================== */

.parallax {
	transform: translateY(var(--parallax, 0));

	transition: transform 0.12s linear;
}

/* ==========================================================
   BUTTON PRESS
========================================================== */

.button:active {
	transform: scale(0.97);
}

/* ==========================================================
   CARD SHINE
========================================================== */

.card-shine {
	position: relative;

	overflow: hidden;
}

.card-shine::after {
	content: '';

	position: absolute;

	top: -120%;

	left: -120%;

	width: 250%;

	height: 250%;

	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.08),
		transparent
	);

	transform: rotate(20deg);
}

.card-shine:hover::after {
	transition: 1s;

	left: 100%;
}

/* ==========================================================
   FADE IN
========================================================== */

.fade-in {
	animation: fadeIn 0.8s ease forwards;
}

/* ==========================================================
   PULSE
========================================================== */

.pulse {
	animation: pulseGlow 2.6s infinite;
}

/* ==========================================================
   ACCESSIBILITY
========================================================== */

@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;

		transition: none !important;

		scroll-behavior: auto !important;
	}
}

/* ==========================================================
   KEYFRAMES
========================================================== */

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes floatSlow {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-12px);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes floatMedium {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-18px);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes floatFast {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-8px);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes pulseGlow {
	0% {
		box-shadow: 0 0 0 rgba(59, 130, 246, 0.15);
	}

	50% {
		box-shadow: 0 0 45px rgba(59, 130, 246, 0.3);
	}

	100% {
		box-shadow: 0 0 0 rgba(59, 130, 246, 0.15);
	}
}
/* ==========================================================
   RESPONSIVE
   RC1
========================================================== */

/* ==========================
   LARGE DESKTOP
========================== */

@media (max-width: 1440px) {
	:root {
		--container: 1180px;
	}
}

/* ==========================
   DESKTOP
========================== */

@media (max-width: 1280px) {
	.hero__container {
		gap: 50px;
	}

	.registration__container {
		grid-template-columns:
			1fr
			460px;
	}
}

/* ==========================
   LAPTOP
========================== */

@media (max-width: 1100px) {
	:root {
		--section-space: 110px;
	}

	.hero__container {
		grid-template-columns: 1fr;

		text-align: center;
	}

	.hero__content {
		align-items: center;
	}

	.hero__subtitle {
		max-width: 720px;
	}

	.hero__event {
		width: 100%;
	}

	.hero__media {
		order: 2;
	}

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

	.form-card {
		position: relative;

		top: auto;
	}

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

	.host__image {
		max-width: 520px;

		margin: auto;
	}
}

/* ==========================
   TABLET
========================== */

@media (max-width: 900px) {
	h1 {
		font-size: 3.6rem;
	}

	h2 {
		font-size: 2.7rem;
	}

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

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

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

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

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

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

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {
	:root {
		--section-space: 90px;
	}

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

	.header {
		top: 10px;
	}

	.header__container {
		min-height: 72px;

		padding: 0 18px;
	}

	.header__badge {
		display: none;
	}

	.header__brand img {
		height: 46px;
	}

	.button--small {
		padding: 0 18px;
	}

	.hero {
		padding-top: 10px;
	}

	.hero__actions {
		width: 100%;
	}

	.button--primary {
		width: 100%;

		min-width: unset;
	}

	.event-card {
		padding: 18px;
	}

	.countdown {
		padding: 28px;
	}

	.countdown__grid strong {
		font-size: 3rem;
	}

	.ticker span {
		font-size: 0.9rem;
	}

	.timeline__container::before {
		left: 26px;
	}

	.timeline-item {
		gap: 22px;
	}

	.timeline-item__content {
		padding: 26px;
	}
}

/* ==========================
   SMALL MOBILE
========================== */

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

	h2 {
		font-size: 2.2rem;
	}

	h3 {
		font-size: 1.3rem;
	}

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

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

	.countdown__grid article {
		min-height: 120px;
	}

	.timeline-item {
		flex-direction: column;
	}

	.timeline__container::before {
		display: none;
	}

	.timeline-item__number {
		margin-bottom: 10px;
	}

	.form-card {
		padding: 28px;
	}
}

/* ==========================
   EXTRA SMALL
========================== */

@media (max-width: 400px) {
	h1 {
		font-size: 2.4rem;
	}

	.header__container {
		border-radius: 26px;
	}

	.button--small {
		display: none;
	}
}
.tick {
	animation: tick 0.25s ease;
}

@keyframes tick {
	0% {
		transform: scale(0.9);
	}

	50% {
		transform: scale(1.08);
	}

	100% {
		transform: scale(1);
	}
}

.header--scrolled {
	transform: translateY(-4px);

	backdrop-filter: blur(26px);

	background: rgba(6, 20, 35, 0.82);

	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}
/* ==========================================================
   PRIVACY NOTICE
========================================================== */

.privacy-notice {
	margin: 1.5rem 0;

	font-size: 0.85rem;

	line-height: 1.7;

	color: var(--text-muted);

	text-align: center;
}

.privacy-notice a {
	color: var(--primary-light);

	font-weight: 700;

	text-decoration: none;
}

.privacy-notice a:hover {
	color: white;

	text-decoration: underline;
}

/* ==========================================================
   FOOTER LINKS
========================================================== */

.footer-links {
	margin-top: 1rem;
}

.footer-links a {
	color: var(--primary-light);

	font-weight: 600;
}

.footer-links a:hover {
	color: white;
}
@media (max-width: 768px) {
	.ticker {
		display: none;
	}
}
.hero-video {
	padding: 40px 20px;
}

.hero-video .hero__media {
	display: flex;
	justify-content: center;
}
.hero-video {
	padding: 80px 0;
}

.hero-video .hero__media {
	max-width: 900px;
	margin: 0 auto;
}
