@font-face {
	font-family: "Poppins";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/static/fonts/Poppins-Regular.ttf") format("truetype");
}

@font-face {
	font-family: "Rajdhani";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("/static/fonts/Rajdhani-Regular.ttf") format("truetype");
}

@font-face {
	font-family: "Rajdhani";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url("/static/fonts/Rajdhani-SemiBold.ttf") format("truetype");
}

@font-face {
	font-family: "Rajdhani";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("/static/fonts/Rajdhani-Bold.ttf") format("truetype");
}

:root {
	color-scheme: dark;
	--obsidian: #050505;
	--obsidian-2: #0a0a0d;
	--glass: rgba(18, 18, 20, 0.66);
	--glass-strong: rgba(255, 255, 255, 0.07);
	--gold: #ffd700;
	--gold-soft: rgba(255, 215, 0, 0.28);
	--gold-line: rgba(255, 215, 0, 0.52);
	--green: #2ed573;
	--orange: #ffa33a;
	--violet: #8e7dff;
	--text: #f2f2f2;
	--muted: #8a8a9a;
	--dim: #5f5f6b;
	--border: rgba(255, 255, 255, 0.12);
	--border-soft: rgba(255, 255, 255, 0.07);
	--max: 1180px;
	--radius: 8px;
	--radius-sm: 6px;
	font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

[id] {
	scroll-margin-top: 96px;
}

body {
	margin: 0;
	min-width: 320px;
	color: var(--text);
	background:
		linear-gradient(180deg, rgba(255, 215, 0, 0.09) 0, rgba(5, 5, 5, 0) 360px),
		linear-gradient(180deg, #0b0b0d 0, var(--obsidian) 560px);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body::before {
	position: fixed;
	inset: 0;
	z-index: -1;
	content: "";
	background:
		linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: linear-gradient(180deg, #000, transparent 78%);
}

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

img {
	max-width: 100%;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 20;
	padding: 8px 12px;
	color: #000;
	background: var(--gold);
	transform: translateY(-140%);
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
	padding: 16px max(24px, calc((100% - var(--max)) / 2));
	border-bottom: 1px solid var(--border);
	background: rgba(5, 5, 5, 0.78);
	backdrop-filter: blur(18px);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 1.3px;
	text-transform: uppercase;
}

.brand-mark {
	width: 36px;
	height: 36px;
	object-fit: contain;
	filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.1));
}

.brand-name {
	color: var(--text);
}

.site-nav,
.site-footer nav {
	display: flex;
	align-items: center;
	gap: 20px;
	color: var(--muted);
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1.1px;
	text-transform: uppercase;
}

.site-nav a,
.site-footer a {
	transition: color 140ms ease, opacity 140ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
	color: var(--gold);
}

.github-link {
	display: inline-grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 0 0 1px var(--border);
	transition: background 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

.github-link svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.github-link:hover {
	background: var(--gold);
	color: #050505;
	box-shadow: 0 0 8px rgba(255, 215, 0, 0.12);
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
	align-items: center;
	gap: 54px;
	width: min(var(--max), calc(100% - 48px));
	min-height: calc(100svh - 72px);
	margin: 0 auto;
	padding: 68px 0 84px;
}

.hero-copy {
	max-width: 610px;
}

.eyebrow {
	margin: 0 0 18px;
	color: var(--gold);
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.build-strip h2,
.about-band h2 {
	margin: 0;
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-weight: 700;
	line-height: 0.92;
	letter-spacing: 0;
}

.hero h1 {
	max-width: 100%;
	font-size: 120px;
	color: var(--gold);
}

.hero-copy > p:not(.eyebrow) {
	max-width: 560px;
	margin: 26px 0 0;
	color: #d9d9df;
	font-size: 20px;
	line-height: 1.55;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 18px;
	border-radius: var(--radius-sm);
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1.1px;
	text-transform: uppercase;
	transition: background 140ms ease, color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button.primary {
	color: #050505;
	background: var(--gold);
	box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.button.secondary {
	color: var(--gold);
	background: transparent;
	box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.34);
}

.button.secondary:hover {
	background: rgba(255, 215, 0, 0.08);
	box-shadow: inset 0 0 0 1px var(--gold-line);
}

.hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 34px;
}

.hero-tags span,
.mock-tags span,
.surface-item span,
.support-card span {
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.hero-tags span {
	padding: 4px 8px;
	border: 1px solid var(--border);
	color: var(--muted);
	font-size: 12px;
	background: rgba(255, 255, 255, 0.04);
}

.hero-product {
	min-width: 0;
}

.app-shell {
	position: relative;
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) 220px;
	grid-template-rows: minmax(320px, auto) auto;
	gap: 14px;
	min-height: 560px;
	padding: 16px;
	border-radius: var(--radius);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
		rgba(10, 10, 13, 0.88);
	box-shadow:
		0 18px 48px rgba(0, 0, 0, 0.32),
		inset 0 0 0 1px var(--border);
}

.app-shell::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	border-radius: inherit;
	background:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 34px 34px;
	opacity: 0.32;
}

.app-rail,
.mock-library,
.mock-queue,
.mock-player,
.album-card {
	position: relative;
	z-index: 1;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.045);
	box-shadow: inset 0 0 0 1px var(--border-soft);
}

.app-rail {
	grid-row: 1 / 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 16px 10px;
}

.rail-glyph {
	display: block;
	width: 34px;
	height: 34px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: inset 0 0 0 1px var(--border);
}

.rail-glyph.active {
	background: var(--gold);
	box-shadow: 0 0 18px rgba(255, 215, 0, 0.28);
}

.mock-library {
	padding: 22px;
}

.mock-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 22px;
}

.mock-heading p {
	margin: 0;
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-size: 52px;
	font-weight: 700;
	line-height: 1;
	color: var(--gold);
}

.mock-tags {
	display: flex;
	gap: 6px;
}

.mock-tags span {
	padding: 3px 6px;
	border: 1px solid var(--gold-line);
	color: var(--gold);
	font-size: 10px;
	background: rgba(255, 255, 255, 0.04);
}

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

.album-card {
	display: grid;
	gap: 7px;
	min-height: 172px;
	padding: 12px;
}

.album-card span {
	display: block;
	aspect-ratio: 1;
	min-height: 0;
	border-radius: var(--radius-sm);
	background: var(--gold);
}

.album-card strong,
.album-card small,
.player-copy strong,
.player-copy span,
.queue-row p,
.queue-row small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.album-card strong,
.player-copy strong {
	color: var(--text);
	font-size: 14px;
	line-height: 1.2;
}

.album-card small,
.player-copy span,
.queue-row small {
	color: var(--muted);
	font-size: 12px;
}

.album-one span {
	background:
		linear-gradient(135deg, transparent 0 46%, #050505 46% 54%, transparent 54%),
		linear-gradient(180deg, #fff2a8, var(--gold));
}

.album-two span {
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0 25%, transparent 25% 50%, rgba(0, 0, 0, 0.2) 50% 75%, transparent 75%),
		linear-gradient(180deg, var(--violet), #24213f);
}

.album-three span {
	background:
		linear-gradient(45deg, rgba(255, 255, 255, 0.26) 0 12%, transparent 12% 24%, rgba(255, 255, 255, 0.18) 24% 36%, transparent 36%),
		linear-gradient(180deg, var(--green), #0e4d31);
}

.album-four span {
	background:
		linear-gradient(135deg, var(--orange), #42170a);
}

.mock-queue {
	padding: 18px;
}

.panel-label {
	margin: 0 0 14px;
	color: var(--muted);
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.queue-row {
	display: grid;
	grid-template-columns: 8px minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	padding: 11px 0;
	border-top: 1px solid var(--border-soft);
}

.queue-row span {
	width: 7px;
	height: 7px;
	background: var(--dim);
}

.queue-row.active span {
	background: var(--gold);
	box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.queue-row p {
	margin: 0;
	font-size: 13px;
}

.mock-player {
	grid-column: 2 / 4;
	display: grid;
	grid-template-columns: 86px minmax(0, 1fr) minmax(160px, 0.65fr) auto;
	align-items: center;
	gap: 18px;
	padding: 18px;
}

.player-art {
	aspect-ratio: 1;
	border-radius: var(--radius-sm);
	background:
		linear-gradient(135deg, transparent 0 48%, #050505 48% 52%, transparent 52%),
		linear-gradient(180deg, #fff2a8, var(--gold));
}

.player-copy .panel-label {
	margin-bottom: 2px;
}

.player-progress {
	height: 8px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
}

.player-progress span {
	display: block;
	width: 67%;
	height: 100%;
	background: var(--gold);
	box-shadow: 0 0 14px rgba(255, 215, 0, 0.45);
}

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

.player-controls span {
	display: block;
	width: 24px;
	height: 24px;
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.09);
	box-shadow: inset 0 0 0 1px var(--border);
}

.player-controls .play {
	width: 40px;
	height: 40px;
	background: var(--gold);
	box-shadow: 0 0 18px rgba(255, 215, 0, 0.34);
}

.section {
	width: min(var(--max), calc(100% - 48px));
	margin: 0 auto;
	padding: 86px 0;
}

.intro-strip {
	display: grid;
	grid-template-columns: minmax(240px, 0.95fr) minmax(300px, 1.05fr);
	gap: 56px;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.intro-strip p {
	margin: 0;
}

.intro-strip p:first-child {
	max-width: 520px;
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-size: 56px;
	font-weight: 700;
	line-height: 0.98;
	color: var(--text);
}

.intro-strip p:last-child {
	max-width: 590px;
	color: #d0d0d8;
	font-size: 20px;
	line-height: 1.6;
}

.surface-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	padding-top: 0;
}

.surface-item {
	min-height: 230px;
	padding: 24px 22px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.035);
	box-shadow: inset 0 0 0 1px var(--border-soft);
}

.surface-item span {
	display: inline-block;
	margin-bottom: 70px;
	color: var(--gold);
	font-size: 13px;
}

.surface-item p,
.problem-item p,
.principle-item p,
.note-item p,
.support-card p,
.support-step p,
.topic-item p,
.page-hero p,
.mission-copy {
	margin: 0;
	color: var(--muted);
}

.principles {
	display: grid;
	grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
	gap: 62px;
	border-top: 1px solid var(--border);
}

.problem-section {
	display: grid;
	grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
	gap: 62px;
	border-top: 1px solid var(--border);
}

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

.problem-item {
	min-height: 180px;
	padding: 22px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.03);
	box-shadow: inset 0 0 0 1px var(--border-soft);
}

.problem-item h3 {
	margin: 0 0 28px;
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.4px;
}

.feature-heading {
	padding-bottom: 36px;
	border-top: 1px solid var(--border);
}

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

.support-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 290px;
	padding: 24px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.04);
	box-shadow: inset 0 0 0 1px var(--border-soft);
}

.support-card::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.13), transparent 56%);
	opacity: 0.48;
}

.support-card span,
.support-card p,
.support-card a {
	position: relative;
	z-index: 1;
}

.support-card span {
	color: var(--gold);
	font-size: 13px;
}

.support-card p {
	margin-top: 62px;
	font-size: 15px;
	line-height: 1.65;
}

.support-card .button {
	width: max-content;
	margin-top: auto;
}

.support-process,
.support-topics {
	display: grid;
	grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1.14fr);
	gap: 62px;
	border-top: 1px solid var(--border);
}

.support-step-list,
.topic-list {
	display: grid;
	gap: 1px;
}

.support-step,
.topic-item {
	padding: 26px 0;
	border-top: 1px solid var(--border);
}

.support-step:last-child,
.topic-item:last-child {
	border-bottom: 1px solid var(--border);
}

.support-step h3,
.topic-item h3 {
	margin: 0 0 10px;
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.4px;
}

.support-topics h2 {
	max-width: 470px;
	margin: 0;
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-size: 54px;
	font-weight: 700;
	line-height: 0.92;
	letter-spacing: 0;
}

.section-heading h2,
.build-strip h2,
.about-band h2 {
	max-width: 520px;
	font-size: 54px;
}

.principle-list,
.note-list {
	display: grid;
	gap: 1px;
}

.principle-item,
.note-item {
	padding: 26px 0;
	border-top: 1px solid var(--border);
}

.principle-item:last-child,
.note-item:last-child {
	border-bottom: 1px solid var(--border);
}

.principle-item h3,
.note-item h2 {
	margin: 0 0 10px;
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.4px;
}

.build-strip {
	display: grid;
	grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.8fr);
	gap: 56px;
	align-items: center;
	border-top: 1px solid var(--border);
}

.mission-copy {
	max-width: 620px;
	font-size: 18px;
	line-height: 1.65;
}

.download-section {
	display: grid;
	grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
	gap: 56px;
	border-top: 1px solid var(--border);
}

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

.download-card {
	position: relative;
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 16px;
	min-height: 156px;
	padding: 20px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.035);
	box-shadow: inset 0 0 0 1px var(--border-soft);
}

.download-card::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 54%);
	opacity: 0.42;
}

.platform-icon,
.download-card h3,
.download-card p,
.download-status {
	position: relative;
	z-index: 1;
}

.platform-icon {
	width: 48px;
	height: 48px;
	color: var(--gold);
	fill: currentColor;
	stroke: currentColor;
	filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.12));
}

.platform-icon-macos {
	color: var(--orange);
}

.platform-icon-ios {
	color: #fff2a8;
}

.platform-icon-android {
	color: var(--green);
}

.download-card h3 {
	margin: 0 0 8px;
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
}

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

.download-status {
	grid-column: 2;
	align-self: end;
	width: max-content;
	padding: 3px 8px;
	border: 1px solid var(--gold-line);
	border-radius: 999px;
	color: var(--gold);
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.04);
}

.page-hero {
	width: min(var(--max), calc(100% - 48px));
	margin: 0 auto;
	padding: 104px 0 64px;
	border-bottom: 1px solid var(--border);
}

.page-hero h1 {
	max-width: 930px;
	font-size: 78px;
	color: var(--text);
}

.page-hero p:not(.eyebrow) {
	max-width: 680px;
	margin-top: 24px;
	font-size: 20px;
	line-height: 1.55;
}

.about-band {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	gap: 42px;
	align-items: center;
}

.about-logo {
	display: grid;
	width: 160px;
	aspect-ratio: 1;
	place-items: center;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 0 0 1px var(--border);
}

.about-logo img {
	width: 112px;
	height: 112px;
	object-fit: contain;
}

.note-list {
	width: min(920px, calc(100% - 48px));
	padding-top: 24px;
}

.site-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 30px max(24px, calc((100% - var(--max)) / 2));
	border-top: 1px solid var(--border);
	color: var(--muted);
	font-size: 14px;
}

.site-footer p {
	margin: 0;
}

.site-footer span {
	color: var(--text);
	font-family: "Rajdhani", ui-sans-serif, system-ui, sans-serif;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

@media (max-width: 1040px) {
	.hero {
		grid-template-columns: 1fr;
		min-height: auto;
		padding-top: 58px;
	}

	.hero-copy {
		max-width: 760px;
	}

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

	.app-shell {
		max-width: 760px;
		margin: 0 auto;
	}

	.intro-strip,
	.problem-section,
	.principles,
	.build-strip,
	.download-section,
	.support-process,
	.support-topics {
		grid-template-columns: 1fr;
	}

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

	.problem-list {
		grid-template-columns: 1fr;
	}

	.surface-item {
		min-height: auto;
	}

	.surface-item span {
		margin-bottom: 32px;
	}
}

@media (max-width: 760px) {
	.site-header,
	.site-footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-header {
		position: static;
	}

	.site-nav {
		width: 100%;
		max-width: 100%;
		flex-wrap: wrap;
		gap: 14px;
	}

	.hero,
	.section,
	.page-hero,
	.note-list {
		width: min(100% - 32px, var(--max));
	}

	.hero {
		padding: 46px 0 62px;
	}

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

	.hero-copy > p:not(.eyebrow),
	.intro-strip p:last-child,
	.page-hero p:not(.eyebrow) {
		font-size: 18px;
	}

	.app-shell {
		grid-template-columns: 56px minmax(0, 1fr);
		grid-template-rows: auto auto auto;
		min-height: auto;
		padding: 12px;
	}

	.app-rail {
		grid-row: 1 / 4;
	}

	.mock-library,
	.mock-queue,
	.mock-player {
		grid-column: 2;
	}

	.mock-queue {
		display: none;
	}

	.mock-player {
		grid-template-columns: 64px minmax(0, 1fr);
	}

	.player-progress,
	.player-controls {
		grid-column: 1 / 3;
	}

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

	.album-card {
		min-height: 0;
	}

	.album-card:nth-child(n+3) {
		display: none;
	}

	.mock-heading p {
		font-size: 38px;
	}

	.intro-strip p:first-child,
	.section-heading h2,
	.build-strip h2,
	.about-band h2,
	.support-topics h2 {
		font-size: 40px;
	}

	.support-card {
		min-height: 250px;
	}

	.support-card p {
		margin-top: 42px;
	}

	.page-hero {
		padding-top: 72px;
	}

	.page-hero h1 {
		font-size: 48px;
	}

	.section {
		padding: 64px 0;
	}

	.about-band {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 440px) {
	.brand {
		font-size: 21px;
	}

	.site-nav {
		display: grid;
		grid-template-columns: repeat(3, max-content);
		align-items: center;
		gap: 10px 12px;
		font-size: 13px;
	}

	.github-link {
		width: 30px;
		height: 30px;
	}

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

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.mock-tags {
		display: none;
	}
}
