:root {
	--bg: #060606;
	--bg-alt: #0e0e0e;
	--fg: #ffffff;
	--fg-muted: #b1b1b1;
	--accent: #EE772F;
	--accent-dark: #D25408;
	--card-bg: rgba(255, 255, 255, 0.045);
	--card-border: rgba(255, 255, 255, 0.09);
	--max-width: 1180px;
	--drop-outline: drop-shadow(-4px 0 16px rgba(0, 0, 0, 0.5)) drop-shadow(4px 0 16px rgba(0, 0, 0, 0.5)) drop-shadow(0 -4px 16px rgba(0, 0, 0, 0.5)) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
	--text-outline: 1px 1px 3px rgba(0, 0, 0, 0.7), -1px -1px 3px rgba(0, 0, 0, 0.7), 1px -1px 3px rgba(0, 0, 0, 0.7), -1px 1px 3px rgba(0, 0, 0, 0.7);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: Rubik, Arial, sans-serif;
	font-weight: 400;
	background-color: var(--bg);
	color: var(--fg);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
}

/* ═══════════════════════ HEADER / NAV ═══════════════════════ */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(6, 6, 6, 0.75);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-header-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 14px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	white-space: nowrap;
}

.brand-logo {
	height: 30px;
	width: auto;
}

.brand-name {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.brand-name em {
	font-style: normal;
	color: var(--accent);
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 15px;
}

.site-nav a {
	text-decoration: none;
	color: var(--fg-muted);
	transition: color 0.2s ease;
}

.site-nav a:hover {
	color: var(--fg);
}

.nav-cta {
	color: var(--fg) !important;
	background: var(--accent);
	padding: 9px 18px;
	border-radius: 30px;
	font-weight: 500;
}

.nav-cta:hover {
	background: var(--accent-dark);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 34px;
	height: 34px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.nav-toggle span {
	display: block;
	height: 2px;
	width: 100%;
	background: var(--fg);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════ HERO ═══════════════════════ */

.hero {
	position: relative;
	min-height: 92vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 24px;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.55;
}

.hero-bg div {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	animation: crossfade 30s linear infinite;
}

.hero-bg div:nth-child(1) { background-image: url('/img/bg1.jpeg'); opacity: 1; animation-delay: 0s; }
.hero-bg div:nth-child(2) { background-image: url('/img/bg4.jpeg'); animation-delay: 10s; }
.hero-bg div:nth-child(3) { background-image: url('/img/bg2.jpeg'); animation-delay: 20s; }

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(6,6,6,0.35) 0%, rgba(6,6,6,0.55) 55%, var(--bg) 100%);
}

@keyframes crossfade {
	0% { opacity: 0; }
	4% { opacity: 1; }
	30% { opacity: 1; }
	34% { opacity: 0; }
	100% { opacity: 0; }
}

.hero-content {
	max-width: 760px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.hero-logo {
	width: 440px;
	max-width: 60vw;
	filter: var(--drop-outline);
	margin-bottom: 8px;
}

.kicker {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 33px;
	color: var(--accent);
	font-weight: 500;
	text-shadow: var(--text-outline);
	margin-bottom: 15px;
}

.hero-content h1 {
	font-size: 34px;
	line-height: 1.15;
	font-weight: 700;
	text-shadow: var(--text-outline);
}


.hero-sub {
	font-size: 17px;
	line-height: 1.6;
	color: var(--fg-muted);
	max-width: 620px;
	text-shadow: var(--text-outline);
}

.hero-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 10px;
}

/* ═══════════════════════ BUTTONS ═══════════════════════ */

.btn {
	display: inline-block;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	padding: 15px 32px;
	border-radius: 32px;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.btn-primary {
	background: var(--accent);
	color: #fff;
}

.btn-primary:hover {
	background: var(--accent-dark);
	transform: translateY(-1px);
}

.btn-ghost {
	background: transparent;
	color: var(--fg);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
	border-color: var(--fg);
	background: rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════ SECTION LAYOUT ═══════════════════════ */

.section {
	padding: 90px 24px;
}

.section-alt {
	background: var(--bg-alt);
}

.section-inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 13px;
	color: var(--accent);
	font-weight: 500;
	margin-bottom: 10px;
}

.section h2 {
	font-size: clamp(26px, 3.6vw, 38px);
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 18px;
}

.section-lede {
	color: var(--fg-muted);
	font-size: 16px;
	line-height: 1.6;
	max-width: 640px;
	margin-bottom: 35px;
}

.section-lede:has(+ .section-lede) {
	margin-bottom: 25px;
}

.section-lede.accent {
	color: var(--accent);
	font-size: 14px;
}

/* ═══════════════════════ ABOUT ═══════════════════════ */

.about-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
	align-items: start;
}

.about-text p {
	color: var(--fg-muted);
	line-height: 1.7;
	margin-bottom: 16px;
	font-size: 16px;
}

.about-stats {
	display: grid;
	gap: 18px;
}

.stat-card {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 14px;
	padding: 22px 24px;
}

.stat-card h3 {
	font-size: 17px;
	margin-bottom: 8px;
	color: var(--accent);
}

.stat-card p {
	color: var(--fg-muted);
	font-size: 14.5px;
	line-height: 1.55;
}

/* ═══════════════════════ SERVICES ═══════════════════════ */

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 40px;
}

.service-card {
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 16px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
	border-color: var(--accent);
	transform: translateY(-3px);
}

.service-card h3 {
	font-size: 20px;
	margin-bottom: 12px;
}

.service-card p {
	color: var(--fg-muted);
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 20px;
}

.link-arrow {
	display: inline-block;
	color: var(--accent);
	text-decoration: none;
	font-weight: 500;
	font-size: 14.5px;
	margin-top: auto;
	padding-top: 20px;
}

.link-arrow:hover {
	color: var(--fg);
}

/* ═══════════════════════ DEMOS ═══════════════════════ */

.demos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 10px;
}

.demo-card {
	position: relative;
	background: var(--card-bg);
	border: 1px solid var(--card-border);
	border-radius: 16px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.demo-info h3 {
	font-size: 17px;
	margin-bottom: 4px;
}

.demo-genre {
	font-size: 13px;
	color: var(--fg-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.ab-toggle {
	display: flex;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 30px;
	padding: 4px;
	gap: 4px;
}

.ab-btn {
	flex: 1;
	background: transparent;
	border: none;
	color: var(--fg-muted);
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 500;
	padding: 9px 10px;
	border-radius: 24px;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease;
}

.ab-btn.active {
	background: var(--accent);
	color: #fff;
}

.volume-controls {
	display: flex;
	gap: 18px;
}

.volume-control {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.volume-controls-title {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--fg-muted);
}

.vol-slider {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 3px;
	border-radius: 2px;
	background: linear-gradient(to right, var(--accent) var(--vol-fill, 100%), rgba(255, 255, 255, 0.15) var(--vol-fill, 100%));
	outline: none;
	cursor: pointer;
}

.vol-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: var(--accent);
	cursor: pointer;
	transition: transform 0.15s ease;
}

.vol-slider::-webkit-slider-thumb:hover {
	transform: scale(1.15);
}

.vol-slider::-moz-range-thumb {
	width: 13px;
	height: 13px;
	border: none;
	border-radius: 50%;
	background: var(--accent);
	cursor: pointer;
}

.player {
	display: flex;
	align-items: center;
	gap: 12px;
}

.play-btn {
	flex: none;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--accent);
	border: none;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease;
}

.play-btn:hover {
	background: var(--accent-dark);
}

.play-btn.is-loading {
	opacity: 0.6;
	cursor: wait;
}

.play-btn svg {
	width: 18px;
	height: 18px;
	fill: #fff;
}

.play-btn .icon-pause {
	display: none;
}

.play-btn.is-playing .icon-play {
	display: none;
}

.play-btn.is-playing .icon-pause {
	display: block;
}

.waveform {
	flex: 1;
	min-width: 0;
	height: 48px;
	cursor: pointer;
}

.player-time {
	flex: none;
	font-size: 12.5px;
	color: var(--fg-muted);
	font-variant-numeric: tabular-nums;
}

.demo-placeholder {
	display: none;
	position: absolute;
	inset: 0;
	border-radius: 16px;
	background: rgba(6, 6, 6, 0.72);
	backdrop-filter: blur(2px);
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 13.5px;
	color: var(--fg-muted);
	padding: 20px;
}

.demo-card.is-unavailable .demo-placeholder {
	display: flex;
}

.demo-card.is-unavailable .player,
.demo-card.is-unavailable .ab-toggle {
	opacity: 0.35;
	pointer-events: none;
}

/* ═══════════════════════ RELEASES ═══════════════════════ */

.links-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}

.links-container.stacked {
	flex-direction: column;
}

.links-container a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	padding: 16px 32px;
	background-color: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--card-border);
	border-radius: 35px;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.links-container a:hover {
	background-color: var(--accent);
	border-color: var(--accent);
}

/* ═══════════════════════ PROCESS ═══════════════════════ */

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

.process-step {
	position: relative;
	padding-top: 8px;
}

.process-num {
	display: block;
	font-size: 34px;
	font-weight: 700;
	color: var(--accent);
	opacity: 0.5;
	margin-bottom: 8px;
}

.process-step h3 {
	font-size: 17px;
	margin-bottom: 8px;
}

.process-step p {
	color: var(--fg-muted);
	font-size: 14.5px;
	line-height: 1.6;
}

/* ═══════════════════════ CTA ═══════════════════════ */

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

.cta-section .btn {
	margin-top: 10px;
}

.quote-placeholder {
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.quote-placeholder .section-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

/* ═══════════════════════ FOOTER ═══════════════════════ */

.site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	padding: 50px 24px 36px;
	text-align: center;
}

.footer-logo {
	width: 125px;
	margin: 0 auto 18px;
	opacity: 0.9;
}

.site-footer p {
	color: var(--fg-muted);
	font-size: 14px;
	line-height: 1.6;
	max-width: 480px;
	margin: 0 auto 6px;
}

.site-footer a {
	color: var(--accent);
	text-decoration: none;
}

.footer-copy {
	margin-top: 14px;
	font-size: 13px;
	opacity: 0.6;
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */

@media (max-width: 900px) {
	.about-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

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

	.process-grid {
		grid-template-columns: 1fr 1fr;
		row-gap: 32px;
	}

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

@media (max-width: 720px) {
	.site-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(6, 6, 6, 0.97);
		backdrop-filter: blur(10px);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.site-nav.is-open {
		max-height: 400px;
	}

	.site-nav a {
		padding: 16px 24px;
		border-top: 1px solid rgba(255, 255, 255, 0.06);
	}

	.nav-cta {
		margin: 14px 24px;
		text-align: center;
	}

	.nav-toggle {
		display: flex;
	}

	.section {
		padding: 64px 20px;
	}

	.services-grid,
	.demos-grid,
	.process-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		min-height: 88vh;
	}

	.links-container a {
		font-size: 15px;
		padding: 13px 22px;
	}
}
