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

@font-face {
	font-family: 'League Spartan';
	src: url('league-spartan.bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--bg-from: #ffffff;
	--bg-to: #ffffff;
	--ink: #0d0d0d;
	--ink-mid: rgba(13,13,13,0.5);
	--ink-light: rgba(13,13,13,0.25);
	--pill-bg: #181818;
	--pill-txt: #fff;
}

html, body {
	height: 100%;
	overflow: hidden;
}

body {
	font-family: 'Montserrat', sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	position: relative;
}

/* ── Floating orbs ── */
.orb {
	position: fixed;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.18;
	pointer-events: none;
	animation: drift linear infinite;
}
.orb1 { width: 500px; height: 500px; background: #888; top: -100px; left: -120px; animation-duration: 22s; }
.orb2 { width: 380px; height: 380px; background: #bbb; bottom: -80px; right: -60px; animation-duration: 30s; animation-delay: -10s; }
.orb3 { width: 260px; height: 260px; background: #999; top: 40%; left: 55%; animation-duration: 18s; animation-delay: -5s; }

@keyframes drift {
	0%   { transform: translate(0,0) scale(1); }
	33%  { transform: translate(40px,-30px) scale(1.05); }
	66%  { transform: translate(-30px,40px) scale(0.95); }
	100% { transform: translate(0,0) scale(1); }
}

/* ── Particle canvas ── */
#particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

/* ── Header ── */
header {
	padding: 36px 48px;
	position: relative;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	opacity: 0;
	animation: slideDown 0.8s cubic-bezier(0.22,1,0.36,1) forwards 0.3s;
}

.logo {
	font-family: 'League Spartan', sans-serif;
	font-weight: 700;
	font-size: 2.4rem;
	color: var(--ink);
	letter-spacing: -1px;
}

.status-dot {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-mid);
}

.dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: #0d0d0d;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: 0.35; transform: scale(0.75); }
}

/* ── Main ── */
main {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 32px 80px;
	position: relative;
	z-index: 10;
	gap: 0;
}

/* ── Headline ── */
.headline-wrap {
	overflow: hidden;
	margin-bottom: 6px;
}

.headline {
	font-family: 'League Spartan', sans-serif;
	font-weight: 900;
	font-size: clamp(5.5rem, 15vw, 12rem);
	color: var(--ink);
	line-height: 0.9;
	letter-spacing: -3px;
	display: block;
	transform: translateY(120%);
	animation: slideUp 1s cubic-bezier(0.22,1,0.36,1) forwards 0.55s;
}

.headline.glitch-active {
	animation: slideUp 1s cubic-bezier(0.22,1,0.36,1) forwards 0.55s, glitch 0.45s steps(2) 1;
}

@keyframes glitch {
	0%   { text-shadow: 3px 0 #a6a6a6, -3px 0 #fff; }
	25%  { text-shadow:-3px 0 #a6a6a6,  3px 0 #fff; }
	50%  { text-shadow: 3px 0 #a6a6a6, -3px 0 #fff; }
	75%  { text-shadow:-2px 0 #a6a6a6,  2px 0 #fff; }
	100% { text-shadow: none; }
}

/* ── Divider line ── */
.divider {
	width: 0;
	height: 1px;
	background: var(--ink-light);
	margin: 28px auto 24px;
	animation: expandLine 0.9s cubic-bezier(0.22,1,0.36,1) forwards 1.05s;
}

@keyframes expandLine {
	to { width: min(640px, 80vw); }
}

/* ── Tagline ── */
.tagline {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: clamp(0.65rem, 1.2vw, 0.85rem);
	color: var(--ink);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	opacity: 0;
	animation: fadeIn 0.7s ease forwards 1.2s;
}

/* ── Countdown ── */
.countdown {
	display: flex;
	gap: clamp(16px, 3vw, 40px);
	margin-top: 40px;
	opacity: 0;
	animation: fadeIn 0.7s ease forwards 1.4s;
}

.cd-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	position: relative;
}

.cd-num {
	font-family: 'League Spartan', sans-serif;
	font-weight: 900;
	font-size: clamp(2.2rem, 5vw, 4rem);
	color: var(--ink);
	line-height: 1;
	min-width: 2ch;
	transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.cd-num.flip {
	transform: rotateX(90deg);
}

.cd-label {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.6rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-mid);
}

.cd-sep {
	font-family: 'League Spartan', sans-serif;
	font-weight: 900;
	font-size: clamp(2rem, 4vw, 3.5rem);
	color: var(--ink-light);
	line-height: 1;
	align-self: flex-start;
	margin-top: 4px;
}

/* ── Email section ── */
.email-section {
	margin-top: 44px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	opacity: 0;
	animation: fadeIn 0.7s ease forwards 1.6s;
}

.stay-label {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ink-mid);
}

.form-row {
	display: flex;
	position: relative;
	align-items: center;
}

.email-input {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--pill-txt);
	background: var(--pill-bg);
	border: none;
	border-radius: 50px;
	padding: 17px 130px 17px 32px;
	width: clamp(280px, 38vw, 440px);
	outline: none;
	caret-color: #fff;
	transition: background 0.3s, box-shadow 0.3s;
}

.email-input::placeholder { color: rgba(255,255,255,0.4); }

.email-input:focus {
	background: #252525;
	box-shadow: 0 0 0 2px rgba(0,0,0,0.2), 0 8px 32px rgba(0,0,0,0.12);
}

.submit-btn {
	position: absolute;
	right: 6px;
	background: #fff;
	color: #0d0d0d;
	border: none;
	border-radius: 50px;
	padding: 11px 22px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 0.65rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.submit-btn:hover {
	background: #e8e8e8;
	transform: scale(1.04);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.submit-btn:active { transform: scale(0.97); }

.success-msg {
	display: none;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-mid);
	animation: fadeIn 0.4s ease;
}

/* ── Scroll hint ── */
.scroll-hint {
	position: fixed;
	bottom: 72px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	opacity: 0;
	animation: fadeIn 1s ease forwards 2.2s;
	z-index: 10;
}

.scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(to bottom, transparent, var(--ink-mid));
	animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
	0%, 100% { opacity: 0.4; transform: scaleY(1); }
	50%       { opacity: 1; transform: scaleY(1.15); }
}

/* ── Shared animations ── */
@keyframes slideDown {
	from { opacity: 0; transform: translateY(-20px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
	to { transform: translateY(0); }
}

@keyframes fadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

/* ── Cursor trail ── */
.cursor-dot {
	position: fixed;
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--ink);
	pointer-events: none;
	z-index: 999;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s;
	opacity: 0;
}

/* ── Footer ── */
.site-footer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10;
	padding: 20px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	opacity: 0;
	animation: fadeIn 0.7s ease forwards 2.4s;
}

.footer-copy {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: var(--ink-mid);
	text-transform: uppercase;
}

.footer-links {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-links a {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-mid);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-links a:hover { color: var(--ink); }

.footer-sep {
	color: var(--ink-light);
	font-size: 0.75rem;
}

/* ── Legal page ── */
.legal-wrap {
	max-width: 720px;
	margin: 0 auto;
	padding: 60px 32px 80px;
	position: relative;
	z-index: 10;
}

.legal-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-mid);
	text-decoration: none;
	margin-bottom: 48px;
	transition: color 0.2s;
}

.legal-back:hover { color: var(--ink); }

.legal-title {
	font-family: 'League Spartan', sans-serif;
	font-weight: 900;
	font-size: clamp(2.8rem, 7vw, 5rem);
	color: var(--ink);
	letter-spacing: -2px;
	line-height: 0.95;
	margin-bottom: 12px;
}

.legal-updated {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.65rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-mid);
	margin-bottom: 40px;
}

.legal-divider {
	width: 48px;
	height: 2px;
	background: var(--ink-light);
	margin-bottom: 40px;
}

.legal-wrap h2 {
	font-family: 'League Spartan', sans-serif;
	font-weight: 700;
	font-size: 1.1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink);
	margin: 36px 0 10px;
}

.legal-wrap p,
.legal-wrap li {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.82rem;
	font-weight: 400;
	line-height: 1.85;
	color: rgba(13,13,13,0.7);
}

.legal-wrap ul {
	padding-left: 20px;
	margin: 8px 0;
}

.legal-wrap li { margin-bottom: 6px; }

.legal-wrap a {
	color: var(--ink);
	font-weight: 600;
	text-underline-offset: 3px;
}

.legal-wrap h3 {
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 700;
	color: var(--ink);
	margin: 24px 0 8px;
}

.legal-table {
	width: 100%;
	border-collapse: collapse;
	margin: 16px 0 24px;
	font-family: var(--font-body);
	font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
	border: 1px solid rgba(255,255,255,0.12);
	padding: 10px 14px;
	text-align: left;
	vertical-align: top;
	color: var(--ink);
	line-height: 1.5;
}

.legal-table th {
	background: rgba(255,255,255,0.06);
	font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 600px) {
	header { padding: 24px 24px; }
	.logo { font-size: 1.8rem; }
	.headline { letter-spacing: -1px; }
	.email-input { width: 84vw; padding-right: 110px; }
	.site-footer { padding: 16px 24px; flex-direction: column; align-items: center; gap: 8px; }
	.legal-wrap { padding: 40px 20px 60px; }
}

