:root {
	--bg: #0b0e13;
	--bg-elev: #11151c;
	--text: #e6edf3;
	--muted: #9aa4b2;
	--primary: #e11d48;
	--primary-600: #be123c;
	--secondary: #2dd4bf;
	--card: #0f1319;
	--border: #1f2833;
}

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--text);
	font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	line-height: 1.6;
}

/* Topbar removed as per request */

img {
	max-width: 100%;
	display: block;
	border-radius: 12px;
}

.container {
	width: min(1100px, 92%);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	background: rgba(11, 14, 19, 0.8);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border);
	z-index: 50;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text);
	text-decoration: none;
	font-weight: 700;
	letter-spacing: .2px;
}

.logo {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 18px;
}

.nav-list a {
	color: var(--muted);
	text-decoration: none;
	font-weight: 500;
}

.nav-list a:hover {
	color: var(--text);
}

.nav-toggle {
	display: none;
	background: transparent;
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 6px 10px;
}

.hero {
	padding: 72px 0 32px 0;
	background: radial-gradient(1200px 600px at 10% -10%, rgba(225, 29, 72, .15), transparent 60%),
		radial-gradient(900px 500px at 90% -20%, rgba(45, 212, 191, .12), transparent 60%);
}

.hero--ref { background: linear-gradient(180deg, #0b0e13 0%, #0d1220 100%); }

.hero-inner {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 24px;
	align-items: flex-start;
}

.hero-copy h1 {
	margin: 0 0 12px 0;
	font-size: clamp(28px, 4.6vw, 48px);
	line-height: 1.1;
}

.hero-copy h1 span { display: block; }
.title-break { margin-top: 6px; }

.subtitle {
	color: var(--muted);
	margin: 0 0 22px 0;
}

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.stat-card { display: flex; align-items: center; gap: 12px; background: #0d1422; border: 1px solid var(--border); border-radius: 16px; padding: 12px 14px; box-shadow: inset 0 1px 0 rgba(255,255,255,.03); }
.stat-icon { width: 48px; height: 48px; display: grid; place-items: center; background: #101a2e; border-radius: 12px; font-size: 22px; }
.stat-label { color: var(--muted); font-weight: 600; font-size: 14px; margin-bottom: 2px; }
.stat-value { font-weight: 800; font-size: 18px; }

.cta-vertical { display: grid; gap: 10px; margin-top: 18px; }
.hero-copy { max-width: 780px; }
.cta-vertical .btn { width: 100%; max-width: 820px; justify-self: center; }
.btn-gradient { color: white; background: linear-gradient(90deg, #4f46e5 0%, #ef4444 100%); border: none; }
.btn-gradient-alt { color: white; background: linear-gradient(90deg, #ef4444 0%, #f59e0b 100%); border: none; }

.cta-group {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	padding: 12px 16px;
	text-decoration: none;
	font-weight: 700;
	border: 1px solid var(--border);
	transition: transform .08s ease, background .2s ease, color .2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--primary); color: white; border-color: transparent; }
.btn-primary:hover { background: var(--primary-600); }

.btn-secondary { background: var(--bg-elev); color: var(--text); }
.btn-ghost { background: transparent; color: var(--text); }

.btn-wide { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 14px; }
.btn-badge { width: 34px; height: 34px; display: grid; place-items: center; background: rgba(255,255,255,.15); border-radius: 999px; }
.btn-label { text-align: left; }

.meta-list {
	padding: 0;
	margin: 12px 0 0 0;
	list-style: none;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	color: var(--muted);
}

.hero-media { display: flex; justify-content: center; align-items: flex-start; }
.hero-media img {
	border: 1px solid var(--border);
	box-shadow: 0 18px 55px rgba(0,0,0,.38);
	width: min(780px, 100%);
	height: auto;
}

.hero-art { position: relative; padding: 12px; border-radius: 18px; background: var(--card); border: 1px solid rgba(255,255,255,.05); box-shadow: 0 18px 50px rgba(0,0,0,.35); }
.hero-art img { border-radius: 14px; }

.section { padding: 36px 0; }

/* Section: About – heading style to match reference */
.about h2 {
	text-align: center;
	font-size: clamp(24px, 3.2vw, 36px);
	font-weight: 800;
	margin: 0 0 12px 0;
	padding: 12px 16px;
	color: var(--text);
	background: #0f1322;
	border: 1px solid var(--border);
	border-radius: 16px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.02), 0 8px 24px rgba(0,0,0,.25);
}

.intro p { margin: 8px 0; }
.about p { margin: 10px 0; color: var(--text); opacity: .9; }

/* Conclusion spacing tweak */
.conclusion p { margin: 10px 0; color: var(--text); opacity: .9; }

.about p { color: var(--text); opacity: .9; }

.download-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 18px;
	box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}

.install-steps ol { padding-left: 18px; }

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

.feature-item {
	background: var(--bg-elev);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px;
}

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

/* Slider */
.slider-title { text-align: center; margin: 0 0 14px 0; font-weight: 800; font-size: clamp(20px, 2.6vw, 30px); padding: 12px 16px; background: #0f1322; border: 1px solid var(--border); border-radius: 16px; box-shadow: inset 0 1px 0 rgba(255,255,255,.02), 0 8px 24px rgba(0,0,0,.25); }
.slider-wrap { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: 16px; background: var(--card); }
.slides { display: flex; transition: transform .5s ease; }
.slides img { width: 100%; height: 220px; flex: 0 0 25%; object-fit: cover; }
.slide-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,.5); color: white; border: none; width: 36px; height: 36px; border-radius: 999px; cursor: pointer; }
.slide-btn.prev { left: 10px; }
.slide-btn.next { right: 10px; }

/* Compare table */
.compare-title { text-align: center; margin: 0 0 14px 0; font-weight: 800; font-size: clamp(20px, 2.6vw, 30px); padding: 12px 16px; background: #0f1322; border: 1px solid var(--border); border-radius: 16px; box-shadow: inset 0 1px 0 rgba(255,255,255,.02), 0 8px 24px rgba(0,0,0,.25); }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 16px; }
.cmp-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.cmp-table th, .cmp-table td { padding: 12px 14px; text-align: center; border-bottom: 1px solid var(--border); }
.cmp-table thead th { background: #0f1322; color: var(--text); position: sticky; top: 0; }
.cmp-table tr:nth-child(odd) td { background: #0c1118; }
.cmp-table tr:nth-child(even) td { background: #0b0f16; }
.cmp-table th:first-child, .cmp-table td:first-child { border-right: 1px solid #614f12; }

/* Feature checklist section */
.boxed-title { text-align: center; font-weight: 800; font-size: clamp(20px, 2.6vw, 30px); padding: 12px 16px; background: #0f1322; border: 1px solid var(--border); border-radius: 16px; box-shadow: inset 0 1px 0 rgba(255,255,255,.02), 0 8px 24px rgba(0,0,0,.25); margin: 0 0 14px 0; }
.feature-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-checks ul { list-style: none; margin: 0; padding: 0; }
.feature-checks li { position: relative; padding-left: 26px; margin: 8px 0; }
.feature-checks li:before { content: "✓"; position: absolute; left: 0; top: 0; color: #22c55e; font-weight: 800; }

@media (max-width: 780px) {
	.feature-checks { grid-template-columns: 1fr; }
}

/* Key points grid */
.kp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.kp-col h3 { margin: 8px 0; font-size: 20px; }
.kp-list { list-style: none; margin: 0; padding: 0; }
.kp-list li { position: relative; padding-left: 20px; margin: 8px 0; }
.kp-list li:before { content: "›"; position: absolute; left: 0; top: 0; color: #22c55e; font-weight: 900; }

/* Bolt style list for audio section */
.bolt-list { list-style: none; margin: 0; padding: 0; }
.bolt-list li { position: relative; padding-left: 22px; margin: 8px 0; }
.bolt-list li:before { content: "⚡"; position: absolute; left: 0; top: 0; color: #22c55e; }

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

/* Controls & gameplay */
.cg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cg-gap { margin-top: 10px; }
.cg-col {}
.boxed-sub { background: #0f1322; border: 1px solid var(--border); border-radius: 12px; padding: 8px 12px; display: inline-block; margin: 0 0 8px 0; }
.num-list { margin: 0; padding-left: 18px; }
.num-list li { margin: 6px 0; }
.note { color: var(--muted); margin-top: 6px; }

.section-head { font-weight: 800; margin: 0 0 10px 0; font-size: clamp(18px, 2.2vw, 24px); }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { position: relative; padding-left: 24px; margin: 8px 0; }
.check-list li:before { content: "✔"; position: absolute; left: 0; top: 0; color: #22c55e; }

.guide-block { margin-bottom: 16px; }

/* Tips headings styled like pills/bars */
.pill-head { background: #0f1322; border: 1px solid var(--border); border-radius: 14px; padding: 10px 12px; margin: 16px 0 8px 0; font-weight: 800; }

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

.spec-list { color: var(--muted); }

.changelog-list { color: var(--muted); }

.accordion details {
	background: var(--bg-elev);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 12px 14px;
	margin-bottom: 10px;
}

.accordion summary {
	cursor: pointer;
	font-weight: 600;
}

.site-footer {
	border-top: 1px solid var(--border);
	background: #0a0d12;
	padding: 40px 0 20px;
}

.footer-inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	text-align: center;
	gap: 12px;
	height: 72px;
}

.footer-inner nav a {
	color: var(--muted);
	margin-left: 12px;
	text-decoration: none;
}

@media (max-width: 980px) {
	.hero-inner { grid-template-columns: 1fr; }
	.download-cards { grid-template-columns: 1fr 1fr; }
	.feature-grid { grid-template-columns: 1fr 1fr; }
	.shots-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
	.nav-toggle { display: inline-flex; }
	.nav-list { display: none; position: absolute; right: 4%; top: 64px; background: var(--bg-elev); border: 1px solid var(--border); border-radius: 10px; padding: 10px; flex-direction: column; gap: 8px; }
	.nav-list.show { display: flex; }
	.download-cards { grid-template-columns: 1fr; }
	.feature-grid { grid-template-columns: 1fr; }
	.shots-grid { grid-template-columns: 1fr; }
	.stats { grid-template-columns: 1fr; }
	.footer-inner { flex-direction: column; height: auto; padding: 16px 0; }
}

a:focus, button:focus { outline: 2px solid var(--secondary); outline-offset: 2px; }

