/* ============================================================== 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.66);
	--ink-faint: rgba(246, 243, 236, 0.38);
	--accent: #e8c37a;
	--line: rgba(246, 243, 236, 0.14);

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

	--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%; }

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: hidden;
	-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;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: clamp(1.1rem, 2.4vw, 2.1rem) var(--gutter);
	mix-blend-mode: normal;
}

.nav__brand {
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-family: var(--mono);
	font-weight: 400;
	font-size: 0.78rem;
	letter-spacing: 0.34em;
	text-transform: uppercase;
}

.nav__mark {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 14px 2px color-mix(in srgb, var(--accent) 70%, transparent);
	transition: background 0.8s linear, box-shadow 0.8s linear;
}

/* small cross mark next to the brand name */
.nav__cross {
	position: relative;
	width: 11px;
	height: 15px;
	flex: none;
	transition: filter 0.8s linear;
	filter: drop-shadow(0 0 6px color-mix(in srgb, var(--accent) 65%, transparent));
}

.nav__cross::before,
.nav__cross::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	background: var(--accent);
	border-radius: 1px;
	transition: background 0.8s linear;
}

.nav__cross::before { width: 2px; height: 100%; transform: translateX(-50%); }
.nav__cross::after { width: 100%; height: 2px; top: 4.5px; transform: translateX(-50%); }

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

.dot { opacity: 0.42; }

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

.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);
}

.hero {
	min-height: 100svh;
}

.hero .panel__inner {
	min-height: 100svh;
	justify-content: flex-end;
	padding-bottom: clamp(6rem, 16vh, 11rem);
	max-width: 62rem;
}

/* organisation lockup, pinned to the top of the hero — clean white card */
.hero__logo {
	margin-bottom: auto;
	margin-top: clamp(4.5rem, 9vh, 7rem);
	width: min(14rem, 44vw);
	padding: 0.55rem;
	border-radius: 1.1rem;
	background: rgba(250, 248, 243, 0.96);
	box-shadow:
		0 22px 60px rgba(2, 6, 12, 0.5),
		0 0 0 1px rgba(255, 255, 255, 0.1),
		0 0 44px color-mix(in srgb, var(--accent) 24%, transparent);
	transition: box-shadow 0.8s linear;
}

.hero__logo img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0.65rem;
}

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

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

/* 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% 58% at 24% 52%, rgba(4, 6, 9, 0.74), rgba(4, 6, 9, 0) 72%);
}

.chapter--right .panel__inner::before {
	background: radial-gradient(66% 58% at 76% 52%, rgba(4, 6, 9, 0.74), rgba(4, 6, 9, 0) 72%);
}

/* the hero carries no scrim of its own — its inner is width-capped, so any
   fill here shows its own edge. The full-viewport .atmosphere gradient is
   what keeps the headline legible. */
.hero .panel__inner::before { content: none; }

.outro .panel__inner::before {
	background: radial-gradient(72% 62% at 26% 50%, rgba(4, 6, 9, 0.8), rgba(4, 6, 9, 0) 74%);
}

/* ============================================================== 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--hero {
	/* 四个汉字整体成行，字号随视口收敛，窄屏下也不会折行叠字 */
	font-size: clamp(2.6rem, 6vw, 6rem);
	line-height: 1;
	white-space: nowrap;
	font-weight: 300;
	max-width: none;
}

.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; }

.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);
}

.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; }
}

/* ============================================================== cross === */

/* glowing cross on the hero — the Gospel element anchoring the whole page */
.hero-cross {
	position: absolute;
	right: clamp(2rem, 12vw, 14rem);
	top: 16vh;
	width: clamp(120px, 16vw, 220px);
	aspect-ratio: 3 / 4.4;
	z-index: 5;
	pointer-events: none;
	opacity: 0;
	transition: opacity 2.4s var(--ease-out) 0.9s;
}

body.is-live .hero-cross { opacity: 1; }

/* the two beams share one gradient and carry a soft blur, so the cross reads
   as a single shaft of light rather than two bars stacked on each other */
.hero-cross__v,
.hero-cross__h {
	position: absolute;
	left: 50%;
	top: 0;
	background: linear-gradient(to bottom,
		rgba(255, 244, 218, 0.95),
		color-mix(in srgb, var(--accent) 96%, #fff) 45%,
		color-mix(in srgb, var(--accent) 80%, #8a6a34));
	border-radius: 999px;
	filter: blur(2.5px);
	opacity: 0.92;
	box-shadow:
		0 0 26px color-mix(in srgb, var(--accent) 75%, transparent),
		0 0 90px color-mix(in srgb, var(--accent) 40%, transparent),
		0 0 190px color-mix(in srgb, var(--accent) 22%, transparent);
	transition: background 0.8s linear, box-shadow 0.8s linear;
	animation: crossBreathe 6s ease-in-out infinite;
}

.hero-cross__v {
	width: 10%;
	height: 100%;
	transform: translateX(-50%);
	-webkit-mask: linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
	mask: linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.hero-cross__h {
	width: 72%;
	height: 7.4%;
	top: 26%;
	transform: translateX(-50%);
	animation-delay: -3s;
	-webkit-mask: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
	mask: linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

/* soft orb of light at the junction — glues the two beams into one form */
.hero-cross__core {
	position: absolute;
	left: 50%;
	top: 29.5%;
	width: 46%;
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle,
		rgba(255, 246, 224, 0.9) 0%,
		color-mix(in srgb, var(--accent) 55%, transparent) 42%,
		transparent 72%);
	filter: blur(6px);
	transition: background 0.8s linear;
	animation: crossBreathe 6s ease-in-out infinite;
}

@keyframes crossBreathe {
	0%, 100% { filter: brightness(1); }
	50% { filter: brightness(1.22); }
}

.hero-cross__halo {
	position: absolute;
	left: 50%;
	top: 38%;
	width: 380%;
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle,
		color-mix(in srgb, var(--accent) 34%, transparent) 0%,
		color-mix(in srgb, var(--accent) 13%, transparent) 36%,
		transparent 70%);
	filter: blur(10px);
	transition: background 0.8s linear;
}

.hero-cross__rays {
	position: absolute;
	left: 50%;
	top: 38%;
	width: 430%;
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: repeating-conic-gradient(from 0deg,
		color-mix(in srgb, var(--accent) 9%, transparent) 0deg 5deg,
		transparent 5deg 22.5deg);
	-webkit-mask: radial-gradient(circle, #000 0%, transparent 62%);
	mask: radial-gradient(circle, #000 0%, transparent 62%);
	animation: raysSpin 90s linear infinite;
	transition: background 0.8s linear;
}

@keyframes raysSpin {
	to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================================== doves === */

/* a small flock of white doves gliding across the hero sky, echoing the
   dove in the GraceWorks mark */
.hero-doves {
	position: absolute;
	inset: 0;
	z-index: 6;
	pointer-events: none;
	overflow: hidden;
	opacity: 0;
	transition: opacity 2.4s var(--ease-out) 1.6s;
}

body.is-live .hero-doves { opacity: 1; }

.dove {
	position: absolute;
	top: 0;
	left: 0;
	color: rgba(255, 253, 246, 0.88);
	filter: drop-shadow(0 0 12px rgba(255, 250, 235, 0.4));
	animation: doveGlide 30s linear infinite;
}

.dove--1 {
	width: clamp(44px, 4.6vw, 68px);
	top: 22%;
	animation-delay: -7s;
	animation-duration: 32s;
}

.dove--2 {
	width: clamp(30px, 3.2vw, 48px);
	top: 31%;
	color: rgba(255, 253, 246, 0.6);
	animation-delay: -19s;
	animation-duration: 40s;
}

.dove--3 {
	width: clamp(22px, 2.4vw, 36px);
	top: 15%;
	color: rgba(255, 253, 246, 0.45);
	animation-delay: -28s;
	animation-duration: 48s;
}

.dove g { animation: doveBob 3.4s ease-in-out infinite; transform-origin: 50% 60%; }
.dove--2 g { animation-duration: 4.1s; animation-delay: -1.2s; }
.dove--3 g { animation-duration: 4.8s; animation-delay: -2.4s; }

/* wing flap — the upper wing beats around its shoulder joint */
.dove .wing {
	transform-box: view-box;
	transform-origin: 57px 37px;
	animation: doveFlap 0.9s ease-in-out infinite;
}

.dove--2 .wing { animation-duration: 1.05s; animation-delay: -0.4s; }
.dove--3 .wing { animation-duration: 1.2s; animation-delay: -0.7s; }

@keyframes doveFlap {
	0%, 100% { transform: rotate(14deg); }
	50% { transform: rotate(-42deg); }
}

@keyframes doveGlide {
	0%   { transform: translate(-14vw, 6vh); opacity: 0; }
	6%   { opacity: 1; }
	90%  { opacity: 1; }
	100% { transform: translate(108vw, -5vh); opacity: 0; }
}

@keyframes doveBob {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-6px) rotate(-4deg); }
}

/* faint outline cross resting behind the outro */
.outro-cross {
	position: absolute;
	right: clamp(3rem, 12vw, 14rem);
	top: 50%;
	transform: translateY(-50%);
	width: clamp(130px, 17vw, 260px);
	aspect-ratio: 3 / 4.4;
	z-index: -1;
	pointer-events: none;
	opacity: 0.14;
}

.outro-cross .v,
.outro-cross .h {
	position: absolute;
	left: 50%;
	top: 0;
	border: 1px solid var(--accent);
	transition: border-color 0.8s linear;
}

.outro-cross .v { width: 11%; height: 100%; transform: translateX(-50%); }
.outro-cross .h { width: 72%; height: 7.6%; top: 26%; transform: translateX(-50%); }

/* ============================================================== verse === */

.verse {
	margin-top: clamp(1.6rem, 3.2vh, 2.4rem);
	max-width: 40ch;
	font-family: var(--display);
	font-style: italic;
	font-size: clamp(0.98rem, 1.05vw, 1.12rem);
	line-height: 1.7;
	color: color-mix(in srgb, var(--accent) 82%, var(--ink));
	border-left: 2px solid color-mix(in srgb, var(--accent) 55%, transparent);
	padding-left: 1.1rem;
	transition: color 0.8s linear, border-color 0.8s linear;
}

.verse cite {
	display: block;
	margin-top: 0.5rem;
	font-family: var(--mono);
	font-style: normal;
	font-size: 0.62rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ink-faint);
}

.verse--outro { max-width: 46ch; }

/* ============================================================== events == */

.events {
	margin-top: clamp(1.8rem, 3.6vh, 2.6rem);
	max-width: 34rem;
	border-top: 1px solid var(--line);
}

.events > div {
	display: grid;
	gap: 0.18rem;
	padding: 0.68rem 0;
	border-bottom: 1px solid var(--line);
}

.ev-name {
	font-size: 0.94rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	color: var(--ink);
}

.ev-time {
	font-family: var(--mono);
	font-size: 0.66rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	transition: color 0.8s linear;
}

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

/* ============================================================== 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;
	inset: 0;
	z-index: 120;
	display: grid;
	place-items: center;
	padding: var(--gutter);
	background:
		radial-gradient(120% 90% at 30% 10%, #16202c, #05070a 70%);
}

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

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

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

	.rail { display: none; }
	.card { max-width: 100%; }
	.chapter--right .events { margin-left: 0; text-align: left; }
	.chapter--right .verse { margin-left: 0; }
	.hero-cross {
		right: 6vw;
		top: 12vh;
		width: clamp(88px, 22vw, 130px);
		opacity: 0;
	}
	body.is-live .hero-cross { opacity: 0.55; }
	.dove--2, .dove--3 { display: none; }
	.dove--1 { width: clamp(30px, 8vw, 44px); top: 18%; }
	.outro-cross { right: 4vw; opacity: 0.09; }
	.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(80% 58% at 30% 52%, rgba(4, 6, 9, 0.76), rgba(4, 6, 9, 0) 74%); }
	.spec > div, .colophon > div { grid-template-columns: 7.5rem 1fr; font-size: 0.66rem; }
	.hud { font-size: 0.55rem; letter-spacing: 0.12em; }
	.nav__meta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.hero__cue i { animation: none; }
	.boot__bar i { animation: none; width: 100%; }
	.hero-cross__rays, .hero-cross__v, .hero-cross__h, .hero-cross__core { animation: none; }
	.dove, .dove g, .dove .wing { animation: none; }
	.dove--1 { left: 58%; }
	.dove--2 { left: 38%; }
	.dove--3 { left: 74%; }
	#stage, .atmosphere, .chrome { transition-duration: 0.01ms; }
}
