:root {
	--bg-1: #f7fbff;
	--bg-2: #e8f2fb;
	--surface: rgba(255, 255, 255, 0.78);
	--surface-strong: rgba(255, 255, 255, 0.9);
	--surface-soft: rgba(255, 255, 255, 0.58);
	--text: #1c1f27;
	--muted: rgba(28, 31, 39, 0.7);
	--border: rgba(28, 31, 39, 0.1);
	--border-strong: rgba(28, 31, 39, 0.16);
	--accent: #188aeb;
	--accent-strong: #0f73c5;
	--accent-soft: rgba(24, 138, 235, 0.12);
	--secondary: #1c1f27;
	--green: #0f9d7a;
	--coral: #ff8f5a;
	--danger: #d45a5a;
	--shadow: 0 18px 48px rgba(16, 55, 96, 0.12);
	--shadow-soft: 0 10px 24px rgba(16, 55, 96, 0.08);
	--radius-xl: 30px;
	--radius-lg: 22px;
	--radius-md: 16px;
	--radius-sm: 12px;
	--pill-radius: 999px;
	--header-height: 72px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scrollbar-gutter: stable;
}

body {
	margin: 0;
	min-height: 100%;
	font-family: "Space Grotesk", "Segoe UI", "Trebuchet MS", sans-serif;
	color: var(--text);
	background:
		radial-gradient(circle at 18% 8%, rgba(24, 138, 235, 0.16), transparent 30%),
		radial-gradient(circle at 86% 44%, rgba(15, 157, 122, 0.12), transparent 28%),
		linear-gradient(145deg, var(--bg-1), var(--bg-2));
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: inherit;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: var(--header-height);
	padding: 12px 28px;
	border-bottom: 1px solid rgba(28, 31, 39, 0.08);
	background: rgba(247, 251, 255, 0.74);
	backdrop-filter: blur(18px);
}

.brand-link {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	text-decoration: none;
}

.brand-link img {
	width: 168px;
	height: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 1 1 auto;
}

.site-nav a {
	padding: 8px 12px;
	border-radius: var(--pill-radius);
	color: var(--muted);
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
	transition:
		background 150ms ease,
		color 150ms ease,
		transform 150ms ease;
}

.site-nav a:hover {
	color: var(--text);
	background: var(--surface-soft);
	transform: translateY(-1px);
}

.site-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	flex: 0 0 auto;
}

.language-switcher {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 12px;
	border: 1px solid var(--border);
	border-radius: var(--pill-radius);
	background: var(--surface-soft);
	box-shadow: var(--shadow-soft);
	color: var(--text);
}

.language-switcher select {
	width: auto;
	min-width: 44px;
	height: 38px;
	padding: 0 3px 0 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: inherit;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-align-last: center;
	cursor: pointer;
	appearance: none;
}

.language-switcher option {
	text-align: center;
}

.pill-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 40px;
	padding: 9px 14px;
	border: 1px solid var(--border);
	border-radius: var(--pill-radius);
	background: var(--surface-strong);
	box-shadow: var(--shadow-soft);
	color: var(--text);
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition:
		transform 150ms ease,
		border-color 150ms ease,
		box-shadow 150ms ease;
}

.pill-button:hover {
	transform: translateY(-1px);
	border-color: var(--border-strong);
}

.pill-button.primary {
	border-color: transparent;
	background: linear-gradient(135deg, var(--secondary), var(--accent));
	color: #f6fbff;
	box-shadow: 0 14px 28px rgba(24, 138, 235, 0.24);
}

.pill-button.ghost {
	background: rgba(255, 255, 255, 0.6);
}

.pill-button.large {
	min-height: 46px;
	padding-inline: 18px;
	font-size: 14px;
}

.icon {
	--icon-url: none;
	display: inline-block;
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	background: currentColor;
	mask: var(--icon-url) center / contain no-repeat;
	-webkit-mask: var(--icon-url) center / contain no-repeat;
}

.icon-download {
	--icon-url: url("assets/icons/download.svg");
}

.icon-open {
	--icon-url: url("assets/icons/open.svg");
}

.icon-support {
	--icon-url: url("assets/icons/cart.svg");
}

.icon-expand {
	--icon-url: url("assets/icons/expand.svg");
}

.icon-prev {
	--icon-url: url("assets/icons/prev.svg");
}

.icon-next {
	--icon-url: url("assets/icons/next.svg");
}

.icon-play {
	--icon-url: url("assets/icons/play.svg");
}

.icon-plus {
	--icon-url: url("assets/icons/plus.svg");
}

.icon-now {
	--icon-url: url("assets/icons/now.svg");
}

.icon-history {
	--icon-url: url("assets/icons/history.svg");
}

.icon-language {
	--icon-url: url("assets/icons/language.svg");
}

.icon-snooze {
	--icon-url: url("assets/icons/snooze.svg");
}

.icon-connect {
	--icon-url: url("assets/icons/connect.svg");
}

.icon-settings {
	--icon-url: url("assets/icons/settings.svg");
}

.icon-info {
	--icon-url: url("assets/icons/info.svg");
}

.hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: calc(100svh - var(--header-height));
	padding: 82px 28px 92px;
	overflow: hidden;
}

.hero-image,
.hero-wash {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-image {
	object-fit: cover;
	object-position: center center;
}

.hero-wash {
	background:
		linear-gradient(90deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.9) 38%, rgba(247, 251, 255, 0.36) 70%, rgba(247, 251, 255, 0.04) 100%),
		linear-gradient(0deg, rgba(232, 242, 251, 0.92) 0%, rgba(232, 242, 251, 0) 28%);
}

.hero-content {
	position: relative;
	z-index: 1;
	width: min(100%, 620px);
	margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.signal-dot {
	width: 10px;
	height: 10px;
	border-radius: var(--pill-radius);
	background: var(--accent);
	box-shadow: 0 0 0 5px rgba(24, 138, 235, 0.12);
}

.hero h1 {
	margin: 0;
	font-size: 82px;
	line-height: 0.95;
	letter-spacing: 0;
}

.hero-copy {
	max-width: 520px;
	margin: 22px 0 0;
	color: rgba(28, 31, 39, 0.78);
	font-size: 22px;
	line-height: 1.35;
	font-weight: 700;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 28px;
}

.hero-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	max-width: 620px;
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
}

.hero-facts li {
	padding: 12px 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.58);
	backdrop-filter: blur(12px);
	box-shadow: var(--shadow-soft);
}

.hero-facts strong,
.hero-facts span {
	display: block;
}

.hero-facts strong {
	font-size: 14px;
	line-height: 1.1;
}

.hero-facts span {
	margin-top: 4px;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.3;
}

.section {
	width: min(100% - 48px, 1180px);
	margin: 0 auto;
	padding: 82px 0;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 30px;
}

.section-heading.compact {
	margin-bottom: 0;
}

.section-heading h2,
.install-copy h2 {
	margin: 0;
	font-size: 42px;
	line-height: 1.05;
	letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.install-copy p:not(.eyebrow) {
	margin: 14px 0 0;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.55;
}

.product-snapshot {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
	align-items: center;
	gap: 34px;
	padding-top: 70px;
}

.snapshot-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.16fr) minmax(240px, 0.84fr);
	gap: 14px;
}

.mini-panel {
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04)),
		var(--surface);
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow);
}

.now-panel {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr);
	gap: 16px;
	padding: 16px;
}

.mini-cover {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	border-radius: 26px;
	background: linear-gradient(145deg, var(--coral), var(--green));
	box-shadow: 0 18px 40px rgba(15, 41, 48, 0.2);
}

.mini-cover span {
	color: rgba(255, 255, 255, 0.9);
	font-size: 42px;
	font-weight: 900;
}

.mini-copy {
	min-width: 0;
}

.mini-chips {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.mini-chips span:first-child {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 8px;
	border-radius: var(--pill-radius);
	background: var(--accent-soft);
	color: var(--accent-strong);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.mini-chips span:first-child::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: var(--pill-radius);
	background: currentColor;
}

.mini-chips span:last-child,
.panel-title span,
.card-topline span {
	color: var(--muted);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.mini-copy h3,
.panel-title h3 {
	margin: 0;
	font-size: 22px;
	line-height: 1.1;
	letter-spacing: 0;
}

.mini-copy p {
	margin: 5px 0 0;
	color: var(--muted);
	font-size: 13px;
	font-weight: 700;
}

.mini-progress {
	height: 12px;
	margin: 20px 0 14px;
	border-radius: var(--pill-radius);
	background: rgba(28, 31, 39, 0.08);
	overflow: hidden;
}

.mini-progress span {
	display: block;
	width: 72%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.mini-controls {
	display: flex;
	gap: 8px;
}

.mini-controls button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--border);
	border-radius: var(--pill-radius);
	background: var(--surface-strong);
	color: var(--text);
	box-shadow: var(--shadow-soft);
	cursor: pointer;
}

.mini-controls .is-playing {
	width: 82px;
	border-color: transparent;
	background: linear-gradient(135deg, var(--secondary), var(--accent));
	color: #fff;
}

.queue-panel {
	padding: 16px;
}

.queue-panel ul {
	display: grid;
	gap: 9px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.queue-panel li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--surface-strong);
}

.queue-panel strong,
.queue-panel small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.queue-panel strong {
	font-size: 13px;
	line-height: 1.2;
}

.queue-panel small {
	color: var(--muted);
	font-size: 12px;
}

.tiny-art {
	width: 38px;
	height: 38px;
	flex: 0 0 auto;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--coral), var(--accent));
}

.tiny-art.second {
	background: linear-gradient(135deg, #ffd666, var(--green));
}

.tiny-art.third {
	background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.feature-card {
	padding: 22px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--surface);
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow-soft);
}

.feature-icon {
	width: 26px;
	height: 26px;
	color: var(--accent-strong);
}

.feature-card:nth-child(2n) .feature-icon {
	color: var(--green);
}

.feature-card:nth-child(3n) .feature-icon {
	color: var(--coral);
}

.feature-card h3 {
	margin: 16px 0 0;
	font-size: 19px;
	line-height: 1.2;
	letter-spacing: 0;
}

.feature-card p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.55;
}

.flow-section {
	width: min(100% - 48px, 1240px);
}

.flow-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
	gap: 18px;
	align-items: stretch;
}

.flow-stage {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 44px 1fr;
	grid-template-rows: auto 44px auto;
	align-items: center;
	gap: 14px;
	min-height: 430px;
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	background: var(--surface);
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow);
}

.bandcamp-card,
.queue-card,
.player-card,
.sync-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--surface-strong);
	box-shadow: var(--shadow-soft);
	transition:
		transform 220ms ease,
		border-color 220ms ease,
		box-shadow 220ms ease;
}

.bandcamp-card {
	padding: 16px;
}

.card-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 18px;
}

.track-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	border: 1px dashed var(--border-strong);
	border-radius: var(--radius-md);
}

.track-row button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--border);
	border-radius: var(--pill-radius);
	background: var(--accent);
	color: #fff;
	box-shadow: var(--shadow-soft);
}

.track-row strong,
.track-row small {
	display: block;
}

.track-row small {
	margin-top: 3px;
	color: var(--muted);
}

.flow-arrow {
	width: 100%;
	height: 3px;
	border-radius: var(--pill-radius);
	background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.flow-arrow.to-queue {
	grid-column: 2;
	grid-row: 1;
}

.flow-arrow.to-sync {
	grid-column: 2;
	grid-row: 3;
}

.queue-card {
	grid-column: 3;
	grid-row: 1;
	padding: 16px;
}

.queue-stack {
	display: grid;
	gap: 8px;
}

.queue-stack span {
	height: 36px;
	border-radius: var(--radius-sm);
	background:
		linear-gradient(90deg, rgba(24, 138, 235, 0.18), transparent),
		rgba(28, 31, 39, 0.06);
}

.player-card {
	grid-column: 1;
	grid-row: 3;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px;
}

.play-disc {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: 22px;
	background: linear-gradient(145deg, var(--secondary), var(--accent));
	color: #fff;
	box-shadow: 0 16px 34px rgba(24, 138, 235, 0.24);
}

.player-lines {
	display: grid;
	gap: 8px;
	flex: 1;
}

.player-lines span {
	height: 11px;
	border-radius: var(--pill-radius);
	background: rgba(28, 31, 39, 0.1);
}

.player-lines span:last-child {
	width: 62%;
	background: rgba(15, 157, 122, 0.18);
}

.sync-card {
	grid-column: 3;
	grid-row: 3;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px;
}

.status-light {
	width: 12px;
	height: 12px;
	border-radius: var(--pill-radius);
	background: var(--accent);
	box-shadow: 0 0 0 6px rgba(24, 138, 235, 0.12);
}

.flow-stage[data-flow-stage="0"] .bandcamp-card,
.flow-stage[data-flow-stage="1"] .queue-card,
.flow-stage[data-flow-stage="2"] .player-card,
.flow-stage[data-flow-stage="3"] .sync-card {
	transform: translateY(-3px);
	border-color: rgba(24, 138, 235, 0.34);
	box-shadow: 0 18px 38px rgba(24, 138, 235, 0.16);
}

.flow-stage[data-flow-stage="2"] .play-disc {
	animation: playPulse 1.4s ease-in-out infinite;
}

@keyframes playPulse {
	0%,
	100% {
		transform: scale(0.96);
	}
	50% {
		transform: scale(1.05);
	}
}

.flow-steps {
	display: grid;
	gap: 10px;
}

.flow-steps button {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 6px 12px;
	width: 100%;
	padding: 16px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--surface);
	color: var(--text);
	box-shadow: var(--shadow-soft);
	text-align: left;
	cursor: pointer;
	transition:
		transform 150ms ease,
		border-color 150ms ease,
		background 150ms ease;
}

.flow-steps button:hover,
.flow-steps button[aria-selected="true"] {
	transform: translateY(-1px);
	border-color: rgba(24, 138, 235, 0.28);
	background: var(--surface-strong);
}

.flow-steps span {
	grid-row: span 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: var(--pill-radius);
	background: var(--accent-soft);
	color: var(--accent-strong);
	font-size: 12px;
	font-weight: 900;
}

.flow-steps strong {
	font-size: 15px;
	line-height: 1.2;
}

.flow-steps small {
	color: var(--muted);
	font-size: 13px;
	line-height: 1.4;
}

.screens-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 230px;
	gap: 16px;
	align-items: start;
}

.screen-main {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	background: var(--surface);
	box-shadow: var(--shadow);
}

.screen-main img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	object-position: top center;
	background: #dcebf7;
}

.screen-main figcaption {
	display: grid;
	gap: 4px;
	padding: 16px 18px 18px;
}

.screen-main strong {
	font-size: 18px;
	line-height: 1.2;
}

.screen-main span {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
}

.screen-thumbs {
	display: grid;
	gap: 10px;
}

.screen-thumb {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 8px;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--surface);
	color: var(--text);
	box-shadow: var(--shadow-soft);
	text-align: left;
	cursor: pointer;
	transition:
		transform 150ms ease,
		border-color 150ms ease,
		background 150ms ease;
}

.screen-thumb:hover,
.screen-thumb.is-active {
	transform: translateY(-1px);
	border-color: rgba(24, 138, 235, 0.34);
	background: var(--surface-strong);
}

.screen-thumb img {
	width: 64px;
	height: 48px;
	border-radius: 10px;
	object-fit: cover;
	object-position: top center;
}

.screen-thumb span {
	min-width: 0;
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.support-section {
	width: min(100% - 48px, 1240px);
}

.support-layout {
	display: grid;
	grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
	gap: 16px;
	align-items: stretch;
}

.support-contact,
.support-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--surface);
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow-soft);
}

.support-contact {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 22px;
	padding: 24px;
}

.support-contact h3,
.support-card h3 {
	margin: 16px 0 0;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0;
}

.support-contact p,
.support-card p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.55;
}

.support-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.support-card {
	padding: 20px;
}

.support-card code {
	padding: 2px 5px;
	border-radius: 6px;
	background: rgba(28, 31, 39, 0.06);
	color: var(--text);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.92em;
}

.install-section {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
	gap: 20px;
	align-items: center;
	padding-bottom: 96px;
}

.install-copy .pill-button {
	margin-top: 24px;
}

.install-steps {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.install-steps li {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--surface);
	box-shadow: var(--shadow-soft);
}

.install-steps span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: var(--pill-radius);
	background: var(--secondary);
	color: #fff;
	font-weight: 900;
}

.install-steps p {
	margin: 0;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.45;
}

.install-steps strong {
	color: var(--text);
}

.credits-section {
	padding-top: 0;
	padding-bottom: 96px;
}

.credits-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	padding: 26px;
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	background: rgba(255, 255, 255, 0.74);
	box-shadow: var(--shadow-soft);
	backdrop-filter: blur(20px);
}

.credits-copy h2 {
	margin: 6px 0 10px;
	font-size: clamp(28px, 3vw, 44px);
	letter-spacing: 0;
}

.credits-copy p:not(.eyebrow) {
	max-width: 680px;
	margin: 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.65;
}

.credits-actions {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
}

.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 28px;
	border-top: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.36);
}

.site-footer img {
	width: 138px;
}

.site-footer p {
	margin: 0;
	color: var(--muted);
	font-size: 13px;
}

.site-footer a {
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

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

.footer-link-button {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--accent-strong);
	font: inherit;
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
}

.analytics-consent {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 20;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 16px;
	width: min(calc(100vw - 36px), 720px);
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--shadow);
	backdrop-filter: blur(20px);
}

.analytics-consent[hidden] {
	display: none;
}

.analytics-consent h2 {
	margin: 0;
	font-size: 16px;
	line-height: 1.2;
}

.analytics-consent p {
	margin: 6px 0 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.45;
}

.analytics-consent-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.analytics-consent button {
	min-height: 38px;
	padding: 8px 14px;
	border: 1px solid var(--border);
	border-radius: var(--pill-radius);
	background: var(--surface-strong);
	color: var(--text);
	font-size: 13px;
	font-weight: 900;
	cursor: pointer;
}

.analytics-consent button[data-analytics-accept] {
	border-color: transparent;
	background: linear-gradient(135deg, var(--secondary), var(--accent));
	color: #fff;
}

.privacy-page .site-header {
	position: sticky;
}

.privacy-shell {
	width: min(100% - 48px, 980px);
	margin: 0 auto;
	padding: 74px 0 96px;
}

.privacy-hero {
	margin-bottom: 22px;
}

.privacy-title {
	margin: 0;
	font-size: 52px;
	line-height: 1.02;
	letter-spacing: 0;
}

.privacy-subtitle {
	margin: 16px 0 0;
	max-width: 760px;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.55;
}

.privacy-meta {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 24px;
}

.privacy-meta div,
.policy-section,
.policy-note {
	border: 1px solid var(--border);
	background: var(--surface);
	backdrop-filter: blur(18px);
	box-shadow: var(--shadow-soft);
}

.privacy-meta div {
	padding: 12px 14px;
	border-radius: var(--radius-md);
}

.privacy-meta span {
	display: block;
	color: var(--muted);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.privacy-meta strong {
	display: block;
	margin-top: 5px;
	font-size: 14px;
	line-height: 1.25;
}

.policy-card {
	display: grid;
	gap: 14px;
}

.policy-section {
	padding: 22px;
	border-radius: var(--radius-lg);
}

.policy-section h2 {
	margin: 0;
	font-size: 24px;
	line-height: 1.16;
	letter-spacing: 0;
}

.policy-section h3 {
	margin: 18px 0 0;
	font-size: 16px;
	line-height: 1.2;
}

.policy-section p,
.policy-section li {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.58;
}

.policy-section p {
	margin: 12px 0 0;
}

.policy-section ul {
	display: grid;
	gap: 7px;
	margin: 12px 0 0;
	padding-left: 1.2rem;
}

.policy-note {
	padding: 16px 18px;
	border-radius: var(--radius-md);
	color: var(--text);
	font-size: 14px;
	line-height: 1.5;
}

.policy-section code,
.policy-note code {
	padding: 2px 5px;
	border-radius: 6px;
	background: rgba(28, 31, 39, 0.06);
	color: var(--text);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.92em;
}

.policy-section a,
.policy-note a {
	color: var(--accent-strong);
	font-weight: 900;
}

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

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

@media (max-width: 980px) {
	.site-header {
		padding-inline: 18px;
	}

	.site-nav {
		display: none;
	}

	.hero {
		min-height: 86svh;
		padding-top: 72px;
	}

	.hero h1 {
		font-size: 62px;
	}

	.hero-copy {
		font-size: 19px;
	}

	.product-snapshot,
	.flow-layout,
	.screens-layout,
	.support-layout,
	.install-section {
		grid-template-columns: 1fr;
	}

	.credits-card {
		grid-template-columns: 1fr;
	}

	.credits-actions {
		justify-content: flex-start;
	}

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

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

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

	.screen-thumb {
		grid-template-columns: 1fr;
	}

	.screen-thumb img {
		width: 100%;
		height: 72px;
	}
}

@media (max-width: 680px) {
	:root {
		--header-height: 66px;
	}

	.site-header {
		gap: 10px;
		padding: 10px 14px;
	}

	.brand-link img {
		width: 144px;
	}

	.site-actions .pill-button span:last-child {
		display: none;
	}

	.hero {
		align-items: flex-end;
		min-height: 82svh;
		padding: 72px 18px 58px;
	}

	.hero-image {
		object-position: 57% top;
	}

	.hero-wash {
		background:
			linear-gradient(0deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.92) 52%, rgba(247, 251, 255, 0.2) 100%),
			linear-gradient(90deg, rgba(247, 251, 255, 0.96), rgba(247, 251, 255, 0.28));
	}

	.hero h1 {
		font-size: 46px;
	}

	.hero-copy {
		font-size: 17px;
	}

	.hero-facts {
		grid-template-columns: 1fr;
		margin-top: 22px;
	}

	.section,
	.flow-section {
		width: min(100% - 28px, 1180px);
		padding: 58px 0;
	}

	.support-section {
		width: min(100% - 28px, 1240px);
	}

	.section-heading h2,
	.install-copy h2 {
		font-size: 32px;
	}

	.section-heading p:not(.eyebrow),
	.install-copy p:not(.eyebrow) {
		font-size: 15px;
	}

	.now-panel {
		grid-template-columns: 92px minmax(0, 1fr);
		padding: 12px;
	}

	.mini-copy h3 {
		font-size: 18px;
	}

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

	.flow-stage {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		min-height: 0;
	}

	.flow-arrow {
		grid-column: auto;
		grid-row: auto;
		width: 3px;
		height: 34px;
		justify-self: center;
		background: linear-gradient(180deg, transparent, var(--accent), transparent);
	}

	.flow-arrow.to-queue,
	.flow-arrow.to-sync {
		grid-column: auto;
		grid-row: auto;
	}

	.queue-card,
	.player-card,
	.sync-card {
		grid-column: auto;
		grid-row: auto;
	}

	.screen-main img {
		aspect-ratio: 4 / 3;
	}

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

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

	.install-steps li {
		padding: 14px;
	}

	.credits-section {
		padding-bottom: 64px;
	}

	.credits-card {
		padding: 20px;
	}

	.credits-actions,
	.credits-actions .pill-button {
		width: 100%;
	}

	.site-footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.analytics-consent {
		left: 14px;
		right: 14px;
		bottom: 14px;
		grid-template-columns: 1fr;
		width: auto;
	}

	.analytics-consent-actions {
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.privacy-shell {
		width: min(100% - 28px, 980px);
		padding: 54px 0 70px;
	}

	.privacy-title {
		font-size: 34px;
	}

	.privacy-meta {
		grid-template-columns: 1fr;
	}

	.policy-section {
		padding: 18px;
	}
}

@media (max-width: 430px) {
	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-actions .pill-button {
		width: 100%;
	}

	.now-panel {
		grid-template-columns: 1fr;
	}

	.mini-cover {
		width: 104px;
	}

	.screen-thumbs {
		grid-template-columns: 1fr;
	}
}
