:root {
	--bg-gradient-top: #05050a;
	--bg-gradient-bottom: #0c0e1a;
	--surface-overlay: rgba(18, 21, 35, 0.86);
	--surface-glow: rgba(71, 104, 255, 0.35);
	--text-primary: #f5f7ff;
	--text-muted: #a7adc8;
	--accent-primary: #6a7dff;
	--accent-primary-strong: #8b9bff;
	--accent-secondary: rgba(255, 255, 255, 0.12);
	--divider: rgba(255, 255, 255, 0.08);
	--nav-height: 88px;
	--hero-badge-size: clamp(110px, 11vw, 170px);
}

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

html {
	font-size: 16px;
}

body {
	margin: 0;
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	-webkit-font-smoothing: antialiased;
	background: #000;
	color: var(--text-primary);
	line-height: 1.6;
	min-height: 100vh;
}

main {
	padding-top: calc(var(--nav-height) + clamp(2rem, 5vw, 3rem));
}

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

button {
	font-family: inherit;
}

.top-nav {
	position: fixed;
	top: clamp(1.25rem, 4vw, 2rem);
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
	width: min(1040px, calc(100% - clamp(2.5rem, 8vw, 6rem)));
	padding: 0;
}

.nav-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: var(--nav-height);
	padding: 0 clamp(1.5rem, 4vw, 2.75rem);
	background: rgba(24, 25, 28, 0.92);
	border-radius: 999px;
	border: 1px solid rgba(120, 141, 255, 0.6);
	box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--nav-accent);
	font-weight: 600;
	font-size: 1.05rem;
	text-decoration: none;
}

.brand-label {
	color: #fff;
	letter-spacing: 0.01em;
}

.brand-logo {
	width: 36px;
	height: 36px;
	display: block;
	border-radius: 50%;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.brand:focus-visible {
	outline: 2px solid rgba(118, 255, 193, 0.35);
	outline-offset: 4px;
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 12px;
	background: rgba(19, 20, 34, 0.85);	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--text-primary);
	border-radius: 999px;
}

.nav-links {
	display: flex;
	align-items: center;
	flex: 1;
	gap: clamp(1.25rem, 3vw, 2.5rem);
	min-width: 0;
}

.nav-links ul {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	gap: clamp(1.5rem, 3vw, 3rem);
	margin: 0;
	padding: 0;
	flex: 1;
	font-size: 0.95rem;
	color: var(--text-muted);}

.nav-links a {
	color: var(--text-primary);	
	font-weight: 500;
	letter-spacing: 0.01em;
	position: relative;
	padding: 0.25rem 0;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	transition: color 0.2s ease;
}

.nav-links a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -0.35rem;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, rgba(138, 161, 255, 0), rgba(138, 161, 255, 0.9), rgba(138, 161, 255, 0));
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
}

.nav-links a:focus-visible,
.nav-links a:hover {
	color: var(--text-primary);
}

.nav-links a:focus-visible::after,
.nav-links a:hover::after {
	transform: scaleX(1);
}


.nav-placeholder {
	display: inline-flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.28);
	font-weight: 500;
	letter-spacing: 0.01em;
	cursor: not-allowed;
	position: relative;
	padding: 0.3rem 0;
}

.nav-placeholder::after {
	content: '';
	margin-left: 0.45rem;
	font-size: 0.9rem;
	opacity: 0.5;
}

.nav-links ul > li:last-child .nav-placeholder::after {
	content: none;
	margin: 0;
}

.cta-link {
	padding: 0.55rem 1.4rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(109, 120, 255, 0.12);
	color: var(--nav-accent);
	font-weight: 600;
	letter-spacing: 0.01em;
	font-size: 0.95rem;
	text-transform: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
	margin-left: clamp(1rem, 3vw, 2.5rem);
	flex-shrink: 0;
}

.nav-links .cta-link {
	margin-left: auto;
}

.cta-link:hover {
	background: rgba(109, 120, 255, 0.22);
	transform: translateY(-1px);
	box-shadow: 0 12px 32px rgba(78, 101, 255, 0.18);
}

.hero {
	min-height: calc(90vh - var(--nav-height));
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(2.5rem, 5vw, 4rem);
	padding: clamp(4rem, 9vh, 6.5rem) clamp(1.5rem, 5vw, 5.5rem) clamp(3rem, 6vh, 4.5rem);
	position: relative;
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0 0 -5% 0;
	background: radial-gradient(ellipse at center, rgba(108, 148, 255, 0.12), transparent 60%);
	z-index: -1;
}

.hero-content {
	max-width: 720px;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-top: 0;
}


.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(118, 131, 255, 0.45);
	background: rgba(118, 131, 255, 0.1);
	color: var(--accent-primary-strong);
	font-size: 0.82rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent-primary-strong);
	box-shadow: 0 0 10px rgba(120, 141, 255, 0.6);
}

.hero h1 {
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	line-height: 1.1;
	margin: 0 0 1.25rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.hero-subheadline {
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	color: var(--text-muted);
	margin-bottom: 1.75rem;
}

.hero-highlights {
	list-style: none;
	margin: 0 0 2.25rem;
	padding: 0;
	display: grid;
	gap: 1rem;
	color: var(--text-muted);
	font-size: 1rem;
}

.hero-highlights li {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.hero-highlights li::before {
	content: '';
	margin-top: 0.45rem;
	min-width: 12px;
	height: 12px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(116, 139, 255, 0.8), rgba(170, 190, 255, 0.4));
	box-shadow: 0 0 12px rgba(123, 147, 255, 0.6);
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.5rem;
}

.primary-cta,
.secondary-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.4rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	min-width: 220px;
	border: none;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	background: linear-gradient(135deg, #7c8cff, #5364ff);
	color: var(--text-primary);
	box-shadow: 0 18px 46px rgba(83, 100, 255, 0.35);
}

.primary-cta:hover,
.secondary-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 50px rgba(83, 100, 255, 0.45);
}

.secondary-cta {
	background: rgba(118, 131, 255, 0.12);
		color: var(--text-muted);
		border: 1px solid rgba(129, 143, 255, 0.25);
}

.secondary-cta[disabled],
.secondary-cta[disabled]:hover {
	cursor: not-allowed;
	opacity: 0.7;
	transform: none;
	box-shadow: none;
}

.hero-caption {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.9rem;
}

.hero-visual {
	position: relative;
	border-radius: 28px;
	background: rgba(17, 20, 34, 0.9);
	padding: 0.85rem;
	overflow: hidden;
	box-shadow: 0 40px 80px rgba(26, 36, 80, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	width: 100%;
}

.hero-visual::before {
	content: '';
	position: absolute;
	inset: 12% 14%;
	background: radial-gradient(circle at 30% 20%, rgba(118, 255, 193, 0.28), transparent 55%);
	filter: blur(8px);
	z-index: 0;
}

.hero-visual img,
.hero-visual video {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 20px;
	position: relative;
	z-index: 1;
}

.hero-visual video {
	height: 100%;
	object-fit: cover;
}

.media-showcase {
	margin-top: clamp(3rem, 8vw, 6rem);
	padding: 0 clamp(1.5rem, 5vw, 5.5rem) clamp(4rem, 10vw, 7rem);
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
}

.media-copy h2 {
	font-size: clamp(2rem, 4vw, 2.8rem);
	margin-bottom: 1.2rem;
}

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	border: 1px solid rgba(118, 131, 255, 0.35);
	background: rgba(118, 131, 255, 0.12);
	color: var(--accent-primary-strong);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.section-eyebrow::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent-primary-strong);
	box-shadow: 0 0 12px rgba(120, 141, 255, 0.6);
}

.media-copy {
	max-width: 720px;
}

.media-copy p:not(.section-eyebrow) {
	font-size: 1.05rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
}

.media-copy ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.9rem;
}

.media-copy li {
	display: inline-flex;
	gap: 0.75rem;
	align-items: flex-start;
	color: var(--text-muted);
}

.media-copy li::before {
	content: '';
	margin-top: 0.35rem;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(116, 139, 255, 0.8), rgba(170, 190, 255, 0.4));
	box-shadow: 0 0 10px rgba(123, 147, 255, 0.6);
	flex-shrink: 0;
}

.media-player {
	position: relative;
	border-radius: 28px;
	background: rgba(17, 20, 34, 0.9);
	padding: 0.85rem;
	overflow: hidden;
	box-shadow: 0 40px 80px rgba(26, 36, 80, 0.45);	
	display: flex;
	align-items: center;
	justify-content: center;
}

.media-player::before {
	content: '';
	position: absolute;
	inset: 12% 14%;
	background: radial-gradient(circle at 30% 20%, rgba(137, 160, 255, 0.25), transparent 55%);
	filter: blur(8px);
	z-index: 0;
}

.media-player video {
	width: 100%;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	z-index: 1;
}

.media-caption {
	margin-top: 0.9rem;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.48);
}

.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(5, 8, 18, 0.74);
	backdrop-filter: blur(16px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	z-index: 20;
}

.modal-dialog {
	position: relative;
	width: min(520px, 95vw);
	background: rgba(12, 15, 30, 0.95);
	border: 1px solid rgba(129, 143, 255, 0.25);
	border-radius: 28px;
	padding: clamp(1.75rem, 4vw, 2.5rem);
	box-shadow: 0 32px 64px rgba(12, 18, 40, 0.6);
}

.modal-close {
	position: absolute;
	top: 1.1rem;
	right: 1.2rem;
	border: none;
	background: transparent;
	color: rgba(255, 255, 255, 0.6);
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
}

.modal-close:hover {
	color: rgba(255, 255, 255, 0.85);
}

.modal-dialog h2 {
	margin: 0 0 0.65rem;
	font-size: 2rem;
}

.modal-subtext {
	margin: 0 0 1.5rem;
	color: var(--text-muted);
}

.waitlist-form {
	display: grid;
	gap: 1.25rem;
}

.form-row {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.form-row label {
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.form-row input,
.form-row textarea {
	background: rgba(14, 18, 36, 0.8);
	border: 1px solid rgba(129, 143, 255, 0.25);
	border-radius: 14px;
	padding: 0.85rem 1rem;
	color: var(--text-primary);
	font-size: 1rem;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.form-row input:focus,
.form-row textarea:focus {
	outline: none;
	border-color: rgba(137, 154, 255, 0.7);
	box-shadow: 0 0 0 2px rgba(137, 154, 255, 0.25);
}

.waitlist-submit {
	padding: 0.95rem 1.6rem;
	border-radius: 999px;
	border: none;
	background: linear-gradient(135deg, #7c8cff, #5364ff);
	color: var(--text-primary);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 44px rgba(83, 100, 255, 0.35);
}

.form-feedback {
	font-size: 0.9rem;
	color: var(--text-muted);
	text-align: center;
}

[hidden] {
	display: none !important;
}

.placeholder-section {
	display: none;
}

.site-footer {
	padding: 1.5rem 1.5rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.32);
	font-size: 0.85rem;
	letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
	.top-nav {
		position: sticky;
		top: 0;
		left: 0;
		transform: none;
		width: 100%;
		padding: 0 clamp(1.5rem, 5vw, 2.25rem);
	}

	.nav-shell {
		position: relative;
		border-radius: 0;
		border: none;
		box-shadow: none;
		padding: 0 clamp(1.5rem, 6vw, 2.5rem);
		background: rgba(8, 9, 11, 0.96);
	}

	.nav-links {
		flex: initial;
		position: absolute;
		top: calc(var(--nav-height) - 6px);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
		background: var(--surface-overlay);
		border: 1px solid var(--divider);
		border-radius: 20px;
		padding: 1.5rem;
		margin: 0 clamp(1.5rem, 6vw, 2.5rem);
		transform: translateY(-12px) scale(0.97);
		transform-origin: top center;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.2s ease, transform 0.2s ease;
	}

	.nav-links ul {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		gap: 0.9rem;
	}

	.nav-links a,
	.nav-placeholder {
		width: 100%;
	}

	.nav-links .cta-link {
		align-self: stretch;
		justify-content: center;
		margin-left: 0;
	}

	.top-nav[data-open='true'] .nav-links {
		opacity: 1;
		transform: translateY(0) scale(1);
		pointer-events: auto;
	}

	.nav-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.hero {
		grid-template-columns: 1fr;
		align-items: center;
		text-align: center;
		padding-top: clamp(3.5rem, 9vh, 5rem);
		gap: clamp(2.5rem, 6vh, 3.5rem);
	}

	.hero-content {
		margin: 0 auto;
		align-items: center;
		max-width: 680px;
	}

	.hero-highlights {
		text-align: left;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-visual {
		max-width: min(520px, 92vw);
		margin: 0 auto;
	}

	.media-showcase {
		grid-template-columns: 1fr;
		margin-top: clamp(2.5rem, 7vw, 4rem);
	}
}

@media (max-width: 620px) {
	:root {
		--nav-height: 76px;
	}

	.top-nav {
		padding: 0 1.25rem;
	}
	.nav-shell {
		padding: 0 1.25rem;
	}

	.hero {
		padding: clamp(4.5rem, 11vh, 6rem) 1.25rem clamp(2rem, 6vh, 2.75rem);
	}

	.hero-highlights {
		gap: 0.85rem;
	}

	.primary-cta,
	.secondary-cta {
		min-width: unset;
		width: 100%;
	}

	.media-showcase {
		padding: 0 1.25rem clamp(3rem, 10vw, 4rem);
		gap: 2rem;
	}
}
