/* ============================================================== fonts === */

@font-face {
	font-family: 'Geist';
	src: url('../assets/fonts/Geist-Variable.woff2') format('woff2');
	font-weight: 100 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Geist Mono';
	src: url('../assets/fonts/GeistMono-Variable.woff2') format('woff2');
	font-weight: 100 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Instrument Serif';
	src: url('../assets/fonts/InstrumentSerif-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Instrument Serif';
	src: url('../assets/fonts/InstrumentSerif-Italic.woff2') format('woff2');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

/* ============================================================== tokens === */

:root {
	--ink: #f6f3ec;
	--ink-soft: rgba(246, 243, 236, 0.88);
	--ink-faint: rgba(246, 243, 236, 0.64);
	--accent: #6ec6e8;
	--line: rgba(246, 243, 236, 0.14);

	--gutter: clamp(1.4rem, 4.6vw, 6.5rem);
	--chapter-height: 125vh;

	--sans: 'Geist', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Noto Sans SC', 'Segoe UI', sans-serif;
	--mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, 'PingFang SC', 'Noto Sans SC', monospace;
	--display: 'Instrument Serif', 'Songti SC', 'Noto Serif SC', 'Times New Roman', serif;

	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================== base ==== */

*,
*::before,
*::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	overflow-x: clip;
}

body {
	margin: 0;
	background: #05070a;
	color: var(--ink);
	font-family: var(--sans);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: -0.004em;
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

::selection { background: var(--accent); color: #0a0906; }

a { color: inherit; text-decoration: none; }
h1, h2, p, dl, dd, figure { margin: 0; }
code { font-family: var(--mono); font-size: 0.92em; letter-spacing: 0; }
em { font-style: italic; }

/* ============================================================== canvas == */

#stage {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 0;
	opacity: 0;
	transition: opacity 1.6s var(--ease-out);
}

body.is-live #stage { opacity: 1; }

/* a whisper of extra depth on top of the render */
.atmosphere {
	position: fixed;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(120% 78% at 50% 8%, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.36) 100%),
		linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.5));
	opacity: 0;
	transition: opacity 2s var(--ease-out);
}

body.is-live .atmosphere { opacity: 1; }

/* ============================================================== chrome == */

.chrome {
	position: fixed;
	z-index: 20;
	opacity: 0;
	pointer-events: none;
}

body.is-live .chrome { opacity: 1; transition: opacity 1.2s var(--ease-out) 0.5s; }

.nav {
	top: 0;
	left: 0;
	right: 0;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: clamp(1.1rem, 2.4vw, 2.1rem) var(--gutter) 2.6rem;
	mix-blend-mode: normal;
	/* 渐隐只放在背景伪元素上，避免下拉产品菜单也被遮罩裁掉 */
	background: transparent;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
	overflow: visible;
}

.nav::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(to bottom, rgba(3, 9, 15, 0.66), rgba(3, 9, 15, 0));
	-webkit-backdrop-filter: blur(18px) saturate(1.1);
	backdrop-filter: blur(18px) saturate(1.1);
	-webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent);
	mask-image: linear-gradient(to bottom, #000 55%, transparent);
	pointer-events: none;
}

.nav > * { position: relative; z-index: 1; }

.nav__brand {
	pointer-events: auto;
	letter-spacing: 0;
	text-transform: none;
}

/* 左上角的品牌组合：全 logo 与 DE 动效都放到易读尺寸 */
.nav__brand .rl-brand-bar__primary {
	width: clamp(12rem, 16vw, 15.5rem);
	max-width: none;
}

.nav__brand .rl-brand-bar__divider { min-height: 3rem; }

.nav__brand .rl-de-host {
	flex-basis: 5.2rem;
	width: 5.2rem;
	/* 主品牌图片带有少量透明留白；DE 需要略收窄并下移，才能对齐可见边界 */
	--fan-de-desktop-top: 2px;
	transform: scale(0.65);
	transform-origin: left center;
	margin-right: 0;
}

.nav__meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--mono);
	font-size: 0.66rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--ink-faint);
	pointer-events: auto;
}

.nav__group {
	position: relative;
	display: flex;
	align-items: center;
}

.nav__label {
	display: inline-flex;
	align-items: center;
	min-height: 2rem;
	white-space: nowrap;
}

.nav__label::after {
	content: '';
	display: block;
	width: 0.28rem;
	height: 0.28rem;
	margin: 0 0 0.18rem 0.38rem;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg);
	opacity: 0.5;
}

.nav__meta a { transition: color 0.4s var(--ease-out); }
.nav__meta a:hover { color: var(--accent); }

.nav__submenu {
	position: absolute;
	top: calc(100% - 0.1rem);
	right: 0;
	display: grid;
	gap: 0.18rem;
	min-width: 9.5rem;
	padding: 0.62rem 0.72rem;
	border: 1px solid rgba(183, 224, 237, 0.16);
	background: rgba(3, 11, 18, 0.9);
	-webkit-backdrop-filter: blur(16px) saturate(1.15);
	backdrop-filter: blur(16px) saturate(1.15);
	box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.28);
	opacity: 0;
	transform: translateY(-0.35rem);
	pointer-events: none;
	transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.nav__group:hover .nav__submenu,
.nav__group:focus-within .nav__submenu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

/* 鼠标导航以 hover 为准：点击后的焦点不会让卡片悬停在页面上。 */
@media (hover: hover) and (pointer: fine) {
	.nav__group:focus-within:not(:hover) .nav__submenu {
		opacity: 0;
		transform: translateY(-0.35rem);
		pointer-events: none;
	}
}

.nav__submenu a {
	display: block;
	padding: 0.36rem 0.18rem;
	font-size: 0.58rem;
	letter-spacing: 0.12em;
	white-space: nowrap;
	color: var(--ink-soft);
}

.nav__submenu a:hover { color: var(--accent); }

.dot { opacity: 0.42; }

/* thin progress line at the very top */
.scrollbar {
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: rgba(255, 255, 255, 0.045);
}

.scrollbar i {
	display: block;
	height: 100%;
	width: 0%;
	background: var(--accent);
	box-shadow: 0 0 12px color-mix(in srgb, var(--accent) 80%, transparent);
	transition: background 0.8s linear;
}

/* chapter rail — sits opposite the readout so it never fights the copy */
.rail {
	right: var(--gutter);
	bottom: clamp(1rem, 2.2vw, 1.9rem);
}

.rail ol {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 1.5rem;
}

.rail li {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-faint);
	transition: color 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
	opacity: 0.45;
}

.rail li b {
	font-weight: 400;
	font-size: 0.58rem;
	color: inherit;
}

.rail li span {
	max-width: 0;
	overflow: hidden;
	white-space: nowrap;
	transition: max-width 0.7s var(--ease-out);
}

.rail li.is-active {
	opacity: 1;
	color: var(--accent);
}

.rail li.is-active span { max-width: 8rem; }

/* live readout */
.hud {
	left: var(--gutter);
	bottom: clamp(1rem, 2.2vw, 1.9rem);
	display: flex;
	gap: 0.55rem;
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

/* ============================================================== layout == */

main { position: relative; z-index: 10; }

.panel {
	position: relative;
	min-height: var(--chapter-height);
}

.panel__inner {
	position: sticky;
	top: 0;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(6rem, 12vh, 10rem) var(--gutter) clamp(5rem, 10vh, 8rem);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.72), 0 5px 20px rgba(0, 0, 0, 0.28);
}

.chapter--brand { min-height: 100svh; }

.chapter--brand .panel__inner {
	justify-content: center;
	align-items: flex-start;
	max-width: none;
	padding-top: clamp(7.5rem, 14vh, 10.5rem);
	padding-bottom: clamp(5rem, 9vh, 7rem);
}

.chapter--right .panel__inner { align-items: flex-end; text-align: right; }

.card {
	position: relative;
	max-width: 33rem;
}

/* ============================================================== home ==== */

.hero__copy {
	width: min(100%, 68rem);
	transform: translateY(clamp(-3rem, -4vh, -1.5rem));
}

.hero__eyebrow {
	margin-bottom: clamp(1rem, 2.2vh, 1.6rem);
}

.hero__title {
	max-width: 19ch;
	margin: 0;
	color: #dce9ec;
	font-family: var(--sans);
	font-size: clamp(2.55rem, 4.65vw, 5.2rem);
	font-weight: 300;
	line-height: 0.96;
	letter-spacing: -0.035em;
	text-shadow: 0 2px 22px rgba(1, 13, 19, 0.28);
	text-wrap: balance;
}

.hero__title span {
	display: block;
}

.hero__title span:last-child {
	color: #9bd2df;
	background: linear-gradient(92deg, #d3e8ec 0%, #abd9e2 48%, #79c7e2 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero__positioning {
	display: grid;
	grid-template-columns: minmax(0, 32rem) minmax(12rem, 18rem);
	gap: clamp(1.75rem, 3.3vw, 3.4rem);
	align-items: start;
	max-width: 56rem;
	margin-top: clamp(1.5rem, 2.7vh, 2.25rem);
}

.hero__lead {
	margin: 0;
	font-size: clamp(1rem, 1.08vw, 1.16rem);
	line-height: 1.62;
	color: var(--ink-soft);
}

.hero__note {
	margin: 0;
	padding-left: 1rem;
	border-left: 1px solid color-mix(in srgb, var(--accent) 70%, transparent);
	font-family: var(--mono);
	font-size: clamp(0.68rem, 0.78vw, 0.78rem);
	line-height: 1.75;
	letter-spacing: 0.035em;
	color: var(--ink-faint);
}

.hero__note b {
	font-weight: 500;
	color: var(--ink);
}

.product-button:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

/* ========================================================== products ==== */

.product-group {
	position: relative;
}

.product-card {
	max-width: 42rem;
}

.product-lead {
	max-width: 44ch;
}

.product-spec {
	max-width: 42rem;
}

.product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.5rem;
}

.product-actions--right {
	justify-content: flex-end;
}

.product-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.55rem;
	padding: 0.65rem 0.9rem;
	border: 1px solid var(--line);
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-soft);
	transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.product-button:hover {
	border-color: color-mix(in srgb, var(--accent) 68%, transparent);
	color: var(--ink);
}

.product-button--primary {
	border-color: color-mix(in srgb, var(--accent) 72%, transparent);
	background: color-mix(in srgb, var(--accent) 12%, transparent);
	color: var(--ink);
}

.product-button span {
	margin-left: 0.5rem;
	color: var(--accent);
}

/* soft local scrim so type always reads over the render — sized to the sticky
   frame itself, so nothing ever overhangs the viewport */
.panel__inner::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background: radial-gradient(66% 62% at 20% 52%, rgba(3, 7, 12, 0.58) 0%, rgba(3, 7, 12, 0.28) 42%, rgba(3, 7, 12, 0) 76%);
}

.chapter--right .panel__inner::before {
	background: radial-gradient(66% 62% at 80% 52%, rgba(3, 7, 12, 0.58) 0%, rgba(3, 7, 12, 0.28) 42%, rgba(3, 7, 12, 0) 76%);
}

/* 品牌首页不带局部暗角 —— logo 自带辉光，整屏的山脊剪影就是它的背景 */
.chapter--brand .panel__inner::before { content: none; }

.outro .panel__inner::before {
	background: radial-gradient(72% 68% at 22% 50%, rgba(3, 7, 12, 0.68) 0%, rgba(3, 7, 12, 0.34) 46%, rgba(3, 7, 12, 0) 82%);
}

/* ============================================================== type ==== */

.eyebrow {
	font-family: var(--mono);
	font-size: 0.68rem;
	font-weight: 400;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--ink-soft);
	margin-bottom: clamp(1.1rem, 2.4vh, 2rem);
}

.eyebrow b {
	font-weight: 400;
	color: var(--accent);
	transition: color 0.8s linear;
}

.display {
	font-family: var(--display);
	/* 与首屏标题同一路数：更小更细。行高 > 1，中文多行标题才不会相碰 */
	font-weight: 300;
	line-height: 1.12;
	letter-spacing: -0.012em;
	font-size: clamp(2rem, 4.4vw, 4.4rem);
	text-wrap: balance;
}

.display--outro {
	font-size: clamp(1.9rem, 4vw, 4rem);
	max-width: 20ch;
}

.chapter .display { margin-bottom: clamp(1.4rem, 3vh, 2.4rem); }

.lede {
	margin-top: clamp(1.6rem, 3.4vh, 2.6rem);
	max-width: 38ch;
	font-size: clamp(1rem, 1.05vw, 1.14rem);
	line-height: 1.62;
	color: var(--ink-soft);
}

.lede b {
	font-weight: 400;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}

.body {
	max-width: 40ch;
	font-size: clamp(0.95rem, 0.98vw, 1.06rem);
	line-height: 1.68;
	color: var(--ink-soft);
}

.chapter--right .body,
.chapter--right .spec { margin-left: auto; }

/* ============================================================== specs === */

.spec,
.colophon {
	margin-top: clamp(1.8rem, 3.6vh, 2.8rem);
	display: grid;
	gap: 0;
	border-top: 1px solid var(--line);
	max-width: 34rem;
}

.spec > div,
.colophon > div {
	display: grid;
	grid-template-columns: 9rem 1fr;
	gap: 1rem;
	padding: 0.62rem 0;
	border-bottom: 1px solid var(--line);
	font-family: var(--mono);
	font-size: 0.7rem;
	letter-spacing: 0.06em;
}

.chapter--right .spec > div { grid-template-columns: 1fr 9rem; }
.chapter--right .spec dt { order: 2; text-align: right; }
.chapter--right .spec dd { order: 1; text-align: right; }

.spec dt,
.colophon dt {
	color: var(--ink-faint);
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.62rem;
	align-self: center;
}

.spec dd,
.colophon dd {
	margin: 0;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}

.outro .panel__inner { max-width: 64rem; }

.colophon { margin-top: clamp(2.4rem, 5vh, 4rem); max-width: 44rem; }
.colophon > div { grid-template-columns: 10rem 1fr; }

.contact {
	margin: clamp(2.4rem, 5vh, 4rem) 0 0;
	max-width: 44rem;
	font-style: normal;
	border-top: 1px solid var(--line);
}

.contact__group + .contact__group { margin-top: 1.15rem; }

.contact__label {
	margin: 0;
	padding: 0.7rem 0;
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
}

.contact__people {
	display: grid;
	border-bottom: 1px solid var(--line);
}

.contact__people a {
	display: grid;
	grid-template-columns: 7rem minmax(0, 1fr);
	gap: 1rem;
	padding: 0.58rem 0;
	border-top: 1px solid var(--line);
	font-family: var(--mono);
	font-size: 0.68rem;
	letter-spacing: 0.035em;
	color: var(--ink-soft);
	transition: color 0.3s var(--ease-out);
}

.contact__people a span:first-child {
	color: var(--ink-faint);
	letter-spacing: 0.12em;
}

.contact__people a span:last-child {
	min-width: 0;
	overflow-wrap: anywhere;
}

.contact__people a:hover { color: var(--accent); }

.foot {
	margin-top: clamp(2.4rem, 5vh, 4rem);
	display: flex;
	gap: 0.6rem;
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

/* ============================================================== hero cue */

.hero__cue {
	position: absolute;
	left: var(--gutter);
	bottom: clamp(2.2rem, 5vh, 3.4rem);
	display: flex;
	align-items: center;
	gap: 0.9rem;
	font-family: var(--mono);
	font-size: 0.62rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--ink-faint);
	pointer-events: auto;
	white-space: nowrap;
	transition: color 0.25s var(--ease-out);
}

.hero__cue:hover { color: var(--ink); }

.hero__cue:focus-visible,
.fallback__dismiss:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 4px;
}

.hero__cue i {
	display: block;
	width: 3.4rem;
	height: 1px;
	background: linear-gradient(to right, var(--accent), transparent);
	transform-origin: left center;
	animation: cue 2.8s var(--ease-out) infinite;
}

@keyframes cue {
	0%, 100% { transform: scaleX(0.35); opacity: 0.45; }
	45% { transform: scaleX(1); opacity: 1; }
}

/* ============================================================== reveal == */

[data-reveal],
.split-line {
	will-change: transform, opacity;
}

.split-mask { overflow: hidden; display: block; }

/* ============================================================== boot ==== */

.boot {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	background: #05070a;
	transition: opacity 1.1s var(--ease-out), visibility 1.1s;
}

.boot.is-done { opacity: 0; visibility: hidden; }

.boot__inner { display: grid; justify-items: center; gap: 1.5rem; }

.boot__mark {
	font-family: var(--mono);
	font-size: 0.8rem;
	letter-spacing: 0.5em;
	text-indent: 0.5em;
	color: var(--ink);
}

.boot__bar {
	width: min(46vw, 14rem);
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
	overflow: hidden;
}

.boot__bar i {
	display: block;
	height: 100%;
	width: 30%;
	background: var(--accent);
	animation: boot 1.5s ease-in-out infinite;
}

@keyframes boot {
	0% { transform: translateX(-110%); }
	100% { transform: translateX(360%); }
}

.boot__note {
	font-family: var(--mono);
	font-size: 0.6rem;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

/* ============================================================== fallback  */

.fallback {
	position: fixed;
	left: var(--gutter);
	bottom: var(--gutter);
	z-index: 120;
	width: min(32rem, calc(100% - var(--gutter) * 2));
	padding: clamp(1.25rem, 3vw, 2rem);
	background: rgba(3, 9, 15, 0.94);
	border: 1px solid var(--line);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.fallback[hidden] { display: none; }
.fallback__inner { max-width: 40rem; display: grid; gap: 1.4rem; }
.fallback .display { font-size: clamp(1.5rem, 4vw, 2.4rem); }
.fallback__reason { font-family: var(--mono); font-size: 0.7rem; color: var(--ink-faint); }

.fallback__dismiss {
	justify-self: start;
	border: 1px solid var(--line);
	background: transparent;
	color: var(--ink);
	font: 400 0.72rem/1 var(--mono);
	letter-spacing: 0.12em;
	padding: 0.8rem 1rem;
	cursor: pointer;
}

body.is-fallback { background: #07131f; }
body.is-fallback #stage { display: none; }
body.is-fallback .atmosphere {
	opacity: 1;
	background: linear-gradient(160deg, #07131f, #0a2f45 48%, #05070a);
}

/* ============================================================== small === */

@media (max-width: 900px) {
	:root { --chapter-height: auto; }

	.nav {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.65rem;
		padding: 0.75rem var(--gutter) 1.5rem;
	}

	.nav__brand { gap: 0.65rem; }

	.nav__brand .rl-brand-bar__primary {
		width: clamp(8rem, 42vw, 12rem);
	}

	.nav__brand .rl-brand-bar__divider { min-height: 2.6rem; }

	.nav__brand .rl-de-host {
		flex-basis: 3.8rem;
		width: 3.8rem;
		height: 2.7rem;
		transform: scale(0.48);
		transform-origin: left center;
	}

	.nav__meta {
		display: flex;
		align-items: center;
		font-size: 0.58rem;
		letter-spacing: 0.13em;
		color: var(--ink-soft);
	}

	.nav__meta a { white-space: nowrap; }

	.panel { min-height: auto; }

	.panel__inner {
		position: relative;
		top: auto;
		min-height: 100svh;
		padding-top: clamp(8rem, 18vh, 9rem);
		padding-bottom: clamp(4rem, 10vh, 6rem);
	}

	.chapter--brand .panel__inner {
		justify-content: flex-start;
		padding-top: clamp(8.5rem, 19vh, 10rem);
		padding-bottom: 5.5rem;
	}

	.hero__title {
		max-width: 18ch;
		font-size: clamp(2rem, 7vw, 3.8rem);
		line-height: 1;
	}

	.hero__copy {
		transform: none;
	}

	.hero__positioning {
		grid-template-columns: 1fr;
		gap: 1.15rem;
		max-width: 38rem;
		margin-top: 2rem;
	}

	.hero__note {
		max-width: 28rem;
	}

	.product-actions,
	.product-actions--right {
		justify-content: flex-start;
	}

	.rail { display: none; }
	.card { max-width: 100%; }
	.chapter--right .panel__inner { align-items: flex-start; text-align: left; }
	.chapter--right .body, .chapter--right .spec { margin-left: 0; }
	.chapter--right .spec > div { grid-template-columns: 8rem 1fr; }
	.chapter--right .spec dt { order: 0; text-align: left; }
	.chapter--right .spec dd { order: 0; text-align: left; }
	.chapter--right .panel__inner::before { background: radial-gradient(88% 68% at 24% 52%, rgba(3, 7, 12, 0.62) 0%, rgba(3, 7, 12, 0.3) 48%, rgba(3, 7, 12, 0) 86%); }
	.spec > div, .colophon > div { grid-template-columns: 7.5rem 1fr; font-size: 0.66rem; }
	.contact__people a { grid-template-columns: 6.5rem minmax(0, 1fr); font-size: 0.64rem; }
	.hud { font-size: 0.55rem; letter-spacing: 0.12em; }
	.fallback { bottom: var(--gutter); }
}

@media (max-width: 420px) {
	.nav__meta .dot { display: none; }
	.nav__meta { gap: 0.85rem; }
	.spec > div,
	.colophon > div { grid-template-columns: minmax(5.5rem, 0.72fr) minmax(0, 1fr); }
	.foot { align-items: flex-start; flex-direction: column; }
	.foot .dot { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.hero__cue i { animation: none; }
	.boot__bar i { animation: none; width: 100%; }
	#stage, .atmosphere, .chrome { transition-duration: 0.01ms; }
}
