:root {
	--nf-bg: #f7f9f8;
	--nf-ink: #111a20;
	--nf-muted: #5c6870;
	--nf-panel: #ffffff;
	--nf-dark: #0b1216;
	--nf-dark-2: #17232b;
	--nf-line: #dce5e3;
	--nf-blue: #7bc7dc;
	--nf-cyan: #a7e0ea;
	--nf-lime: #9eb9a1;
	--nf-focus: #ffbf47;
	--nf-radius: 8px;
	--nf-shadow: 0 24px 70px rgba(11, 18, 22, 0.18);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--nf-bg);
	color: var(--nf-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.65;
}

body.nav-open {
	overflow: hidden;
}

a {
	color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--nf-focus);
	outline-offset: 4px;
}

.skip-link {
	position: fixed;
	left: 1rem;
	top: 1rem;
	z-index: 20;
	transform: translateY(-160%);
	background: var(--nf-focus);
	color: #111;
	padding: 0.6rem 0.85rem;
	border-radius: 6px;
	font-weight: 800;
}

.skip-link:focus {
	transform: translateY(0);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(11, 18, 22, 0.94);
	backdrop-filter: blur(16px);
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner,
.site-footer__inner,
.site-footer__bottom,
.hero-grid,
.section,
.page-hero {
	width: min(1120px, calc(100% - 32px));
	margin-inline: auto;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 1rem;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	color: inherit;
	text-decoration: none;
	font-weight: 850;
	letter-spacing: 0;
}

.site-brand__mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--nf-cyan), var(--nf-lime));
	color: var(--nf-dark);
	font-size: 0.75rem;
}

.site-brand__text {
	display: grid;
	gap: 0;
	font-size: 1.02rem;
	line-height: 1.05;
}

.site-brand__text small {
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.7rem;
	font-weight: 740;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-brand--footer .site-brand__text small {
	color: rgba(255, 255, 255, 0.6);
}

.site-brand__logo {
	display: block;
	width: auto;
	max-width: 180px;
	max-height: 44px;
	object-fit: contain;
}

.site-brand--footer .site-brand__logo {
	max-width: 190px;
	max-height: 48px;
}

.primary-nav__list,
.footer-nav {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a,
.footer-nav a {
	display: inline-flex;
	padding: 0.65rem 0.85rem;
	border-radius: 999px;
	color: inherit;
	text-decoration: none;
	font-weight: 720;
	font-size: 0.95rem;
}

.primary-nav a:hover,
.footer-nav a:hover {
	background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	background: transparent;
	color: #fff;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
	display: block;
	width: 20px;
	height: 2px;
	margin: auto;
	background: currentColor;
	content: "";
}

.nav-toggle__bar::before {
	transform: translateY(-7px);
}

.nav-toggle__bar::after {
	transform: translateY(5px);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.hero,
.page-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 20% 20%, rgba(36, 168, 255, 0.23), transparent 30%),
		linear-gradient(145deg, var(--nf-dark), var(--nf-dark-2));
	color: #fff;
}

.hero::after,
.page-hero::after {
	position: absolute;
	inset: auto -10% -40% 45%;
	height: 320px;
	background:
		repeating-linear-gradient(90deg, rgba(167, 224, 234, 0.18) 0 2px, transparent 2px 34px),
		repeating-radial-gradient(ellipse at center, rgba(158, 185, 161, 0.12) 0 1px, transparent 1px 22px);
	transform: rotate(-8deg);
	content: "";
	pointer-events: none;
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
	gap: clamp(2rem, 6vw, 5rem);
	align-items: center;
	min-height: 690px;
	padding-block: clamp(4rem, 9vw, 7rem);
}

.hero-copy,
.page-hero > * {
	position: relative;
	z-index: 1;
}

.eyebrow {
	margin: 0 0 1rem;
	color: var(--nf-lime);
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.78rem;
}

h1,
h2,
h3 {
	margin: 0 0 1rem;
	line-height: 1.08;
	letter-spacing: 0;
}

h1 {
	font-size: clamp(2.65rem, 6vw, 5.8rem);
	max-width: 11ch;
}

h2 {
	font-size: clamp(2rem, 3.2vw, 3.4rem);
}

h3 {
	font-size: 1.2rem;
}

p {
	margin-top: 0;
}

.lead {
	max-width: 660px;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.section-light .lead,
.content-narrow .lead {
	color: var(--nf-muted);
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.8rem;
}

.button,
.placeholder-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.75rem 1.1rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 850;
	text-decoration: none;
	line-height: 1.2;
}

.button-primary {
	background: var(--nf-lime);
	color: #07111f;
}

.button-secondary {
	border-color: rgba(255, 255, 255, 0.24);
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.section-light .button-secondary {
	border-color: var(--nf-line);
	color: var(--nf-ink);
	background: #fff;
}

.small-note,
.form-note {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.92rem;
}

.hero-art {
	position: relative;
}

.hero-art::before {
	position: absolute;
	inset: -12%;
	border-radius: 40px;
	background: linear-gradient(135deg, rgba(36, 168, 255, 0.24), rgba(198, 255, 77, 0.18));
	filter: blur(20px);
	content: "";
}

.launch-logo-card {
	position: relative;
	overflow: hidden;
	max-width: 470px;
	margin-inline: auto;
	padding: clamp(1.2rem, 3vw, 2rem);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--nf-radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 248, 0.92)),
		radial-gradient(circle at 20% 20%, rgba(167, 224, 234, 0.32), transparent 42%);
	box-shadow: var(--nf-shadow);
}

.launch-logo-card img {
	position: relative;
	z-index: 1;
	display: block;
	width: min(100%, 360px);
	height: auto;
	margin: 0 auto;
}

.launch-logo-card p {
	position: relative;
	z-index: 1;
	max-width: 330px;
	margin: 1.2rem auto 0;
	color: var(--nf-muted);
	font-weight: 720;
	text-align: center;
}

.launch-card-lines {
	position: absolute;
	inset: auto -18% -24% 22%;
	display: grid;
	gap: 0.6rem;
	transform: rotate(-10deg);
	opacity: 0.3;
}

.launch-card-lines i {
	display: block;
	width: 360px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, transparent, var(--nf-blue), transparent);
}

.launch-note {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.2rem 0.75rem;
	max-width: 420px;
	margin-top: 1.8rem;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--nf-radius);
	background: rgba(255, 255, 255, 0.08);
}

.launch-note span {
	grid-row: span 2;
	width: 11px;
	height: 11px;
	margin-top: 0.45rem;
	border-radius: 50%;
	background: var(--nf-lime);
	box-shadow: 0 0 22px rgba(158, 185, 161, 0.8);
}

.launch-note strong {
	line-height: 1.2;
}

.launch-note small {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.92rem;
}

.mockup-card,
.device-frame,
.mini-panel {
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--nf-radius);
	background: rgba(8, 19, 34, 0.86);
	box-shadow: var(--nf-shadow);
}

.mockup-card {
	padding: clamp(1.2rem, 3vw, 2rem);
}

.mockup-status {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: rgba(255, 255, 255, 0.74);
	font-size: 0.88rem;
}

.mockup-status span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--nf-lime);
	box-shadow: 0 0 22px var(--nf-lime);
}

.mockup-title {
	margin: 1.5rem 0;
	font-size: clamp(2.4rem, 5vw, 4.2rem);
	font-weight: 900;
}

.mockup-queue,
.soundboard-grid,
.control-grid {
	display: grid;
	gap: 0.75rem;
}

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

.mockup-queue div,
.soundboard-grid span,
.control-grid span,
.queue-card,
.now-playing {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--nf-radius);
	background: rgba(255, 255, 255, 0.08);
}

.mockup-queue div,
.soundboard-grid span {
	padding: 0.8rem;
	font-weight: 760;
}

.soundboard-grid {
	grid-template-columns: repeat(2, 1fr);
	margin-top: 0.75rem;
}

.device-frame {
	max-width: 420px;
	margin-inline: auto;
	padding: 1rem;
}

.device-top,
.queue-card {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.device-top {
	margin-bottom: 1rem;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
}

.device-top strong {
	color: var(--nf-lime);
}

.now-playing {
	padding: 1rem;
}

.now-playing small,
.queue-card span {
	display: block;
	color: rgba(255, 255, 255, 0.65);
}

.now-playing strong {
	display: block;
	font-size: 2rem;
}

.wave {
	display: flex;
	align-items: end;
	gap: 0.35rem;
	height: 54px;
	margin-top: 1rem;
}

.wave i {
	display: block;
	width: 12px;
	border-radius: 999px;
	background: linear-gradient(var(--nf-cyan), var(--nf-blue));
}

.wave i:nth-child(1) { height: 34%; }
.wave i:nth-child(2) { height: 78%; }
.wave i:nth-child(3) { height: 52%; }
.wave i:nth-child(4) { height: 92%; }
.wave i:nth-child(5) { height: 44%; }

.queue-card {
	align-items: center;
	margin: 0.75rem 0;
	padding: 0.9rem;
}

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

.control-grid span {
	display: grid;
	place-items: center;
	min-height: 74px;
	color: #fff;
	font-weight: 820;
	text-align: center;
}

.section {
	padding-block: clamp(3.5rem, 7vw, 6rem);
}

.section-light {
	width: 100%;
	background: #fff;
}

.section-contact,
.section-light:has(.contact-layout) {
	width: 100%;
	background:
		radial-gradient(circle at 88% 8%, rgba(123, 199, 220, 0.18), transparent 28%),
		linear-gradient(180deg, #f7f9f8, #eef5f3);
}

.section-light > * {
	width: min(1120px, calc(100% - 32px));
	margin-inline: auto;
}

.section-contact > *,
.section-light:has(.contact-layout) > * {
	width: min(1120px, calc(100% - 32px));
	margin-inline: auto;
}

.section-dark {
	width: 100%;
	background: var(--nf-dark);
	color: #fff;
}

.section-dark > * {
	width: min(1120px, calc(100% - 32px));
	margin-inline: auto;
}

.content-narrow {
	max-width: 780px;
}

.content-narrow p,
.feature-card p,
.mini-panel p,
.contact-layout p,
.faq-list p {
	color: var(--nf-muted);
}

.section-dark p,
.section-dark .mini-panel p {
	color: rgba(255, 255, 255, 0.78);
}

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

.feature-grid.six {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
	padding: 1.25rem;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius);
	background: var(--nf-panel);
}

.feature-icon {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 1.2rem;
	border-radius: 8px;
	background: #e8f7ff;
	color: #006aa8;
	font-weight: 900;
}

.split,
.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
	gap: clamp(1.5rem, 5vw, 4rem);
	align-items: start;
}

.contact-layout > div:first-child {
	padding: 1.35rem;
	border: 1px solid rgba(11, 18, 22, 0.08);
	border-radius: var(--nf-radius);
	background: rgba(255, 255, 255, 0.72);
	box-shadow: 0 18px 50px rgba(11, 18, 22, 0.08);
}

.mini-panel {
	padding: 1.3rem;
}

.badge {
	display: inline-flex;
	margin-bottom: 1rem;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: rgba(198, 255, 77, 0.14);
	color: var(--nf-lime);
	font-weight: 850;
}

.page-hero {
	min-height: 360px;
	padding-block: clamp(4rem, 8vw, 6rem);
	padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.page-hero h1 {
	max-width: 14ch;
}

.placeholder-form {
	display: grid;
	gap: 0.6rem;
	padding: 1.25rem;
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 18px 50px rgba(11, 18, 22, 0.08);
}

.placeholder-form label {
	font-weight: 780;
}

.placeholder-form input,
.placeholder-form textarea {
	width: 100%;
	border: 1px solid var(--nf-line);
	border-radius: 8px;
	padding: 0.8rem;
	font: inherit;
	background: #f7f9fc;
}

.placeholder-form textarea {
	min-height: 140px;
	resize: vertical;
}

.placeholder-form button {
	background: #dce4ef;
	color: #516074;
	cursor: not-allowed;
}

.faq-list {
	display: grid;
	gap: 0.8rem;
	max-width: 880px;
}

.faq-list details {
	border: 1px solid var(--nf-line);
	border-radius: var(--nf-radius);
	background: #fff;
	padding: 1rem 1.1rem;
}

.faq-list summary {
	cursor: pointer;
	font-weight: 850;
}

.faq-list p {
	margin: 0.75rem 0 0;
}

.site-footer {
	background: #050b14;
	color: #fff;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 2rem;
	padding-block: 2rem;
}

.site-footer p {
	max-width: 460px;
	color: rgba(255, 255, 255, 0.7);
}

.footer-nav {
	flex-wrap: wrap;
	justify-content: flex-end;
}

.site-footer__bottom {
	padding: 1rem 0 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.92rem;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@media (max-width: 860px) {
	.nav-toggle {
		display: inline-grid;
		place-items: center;
	}

	.primary-nav {
		position: fixed;
		inset: 76px 0 auto;
		display: none;
		background: #07111f;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.nav-open .primary-nav {
		display: block;
	}

	.primary-nav__list {
		display: grid;
		width: min(100% - 32px, 1120px);
		margin-inline: auto;
		padding: 1rem 0 1.5rem;
	}

	.primary-nav a {
		width: 100%;
		border-radius: 8px;
	}

	.hero-grid,
	.split,
	.contact-layout,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.hero-grid {
		min-height: auto;
	}

	h1 {
		max-width: 12ch;
	}

	.feature-grid,
	.feature-grid.six {
		grid-template-columns: 1fr;
	}

	.site-footer__inner,
	.footer-nav {
		justify-content: start;
	}
}

@media (max-width: 560px) {
	.site-header__inner,
	.site-footer__inner,
	.site-footer__bottom,
	.hero-grid,
	.section,
	.page-hero,
	.section-light > *,
	.section-dark > * {
		width: min(100% - 24px, 1120px);
	}

	.button-row,
	.button {
		width: 100%;
	}

	.mockup-queue,
	.soundboard-grid,
	.control-grid {
		grid-template-columns: 1fr;
	}

	.site-brand__text {
		font-size: 0.98rem;
	}
}
