/* ========== Tokens ========== */

:root {
	--parchment: #f5f4ed;
	--ivory: #faf9f5;
	--warm-sand: #e8e6dc;

	--brand: #1b365d;
	--brand-light: #2d5a8a;
	--brand-tint: #eef2f7;

	--near-black: #141413;
	--dark-warm: #3d3d3a;
	--olive: #504e49;
	--stone: #6b6a64;

	--border: #e8e6dc;
	--border-soft: #e5e3d8;
	--line: #d8d5c8;

	--serif: Charter, Georgia, Palatino, "Times New Roman", serif;
	--sans: var(--serif);
	--mono: "JetBrains Mono", "Fira Code", "SF Mono", Consolas, Monaco, monospace;
	--latin-ui: system-ui, -apple-system, "Segoe UI", sans-serif;

	--shot-bg: #141318;
}

* {
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	padding: 0;
}

body {
	background: var(--parchment);
	color: var(--near-black);
	font-family: var(--serif);
	font-size: 15px;
	line-height: 1.55;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a {
	color: var(--brand);
	text-decoration: none;
	transition: color 0.15s;
}
a:hover {
	color: var(--brand-light);
}

.page {
	max-width: 1120px;
	margin: 0 auto;
	padding: 88px 64px 120px;
}

/* ========== Buttons ========== */

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--brand);
	color: var(--ivory);
	font-family: var(--serif);
	font-weight: 500;
	font-size: 15px;
	letter-spacing: 0.2px;
	padding: 13px 28px;
	border-radius: 999px;
	border: 1.5px solid var(--brand);
	transition:
		background 0.15s,
		border-color 0.15s,
		transform 0.15s;
	cursor: pointer;
	min-width: 158px;
}
.btn-primary:hover {
	background: var(--brand-light);
	border-color: var(--brand-light);
	color: var(--ivory);
	transform: translateY(-1px);
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-family: var(--serif);
	font-weight: 500;
	font-size: 15px;
	color: var(--brand);
	background: transparent;
	padding: 13px 28px;
	border-radius: 999px;
	border: 1.5px solid var(--brand);
	transition:
		background 0.15s,
		color 0.15s,
		transform 0.15s;
	cursor: pointer;
	min-width: 158px;
}
.btn-ghost:hover {
	background: var(--brand-tint);
	color: var(--brand);
	transform: translateY(-1px);
}

/* ========== Hero ========== */

.hero {
	padding-bottom: 48px;
	border-bottom: 1px solid var(--border-soft);
	margin-bottom: 80px;
}
.eyebrow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	font-family: var(--latin-ui);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--stone);
	margin: 0 0 22px;
}
.version-link {
	color: var(--brand);
	font-weight: 600;
}
.version-link:hover {
	color: var(--brand-light);
}

.hero-links {
	display: flex;
	gap: 12px;
	align-items: center;
}
.hero-links a {
	color: var(--stone);
	display: flex;
	align-items: center;
}
.hero-links a:hover {
	color: var(--dark-warm);
}

.hero h1 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 96px;
	line-height: 1.05;
	letter-spacing: 0;
	margin: 0 0 18px;
	color: var(--near-black);
	opacity: 0;
	transform: translateY(10px);
	filter: blur(6px);
	animation: hero-rise 900ms cubic-bezier(0.16, 1, 0.3, 1) 120ms forwards;
}
@keyframes hero-rise {
	to {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

.hero .tagline {
	font-family: var(--serif);
	font-weight: 400;
	font-size: 21px;
	line-height: 1.4;
	color: var(--olive);
	letter-spacing: 0.2px;
	margin: 0 0 28px;
	max-width: 820px;
}

.hero-tokens {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin: 0 0 32px;
	font-family: var(--latin-ui);
	font-size: 13px;
	color: var(--stone);
}
.hero-tokens span {
	display: inline-flex;
	gap: 6px;
	align-items: baseline;
}
.hero-tokens b {
	color: var(--dark-warm);
	font-weight: 500;
}

.hero-cta {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 4px;
}

/* ========== Section primitives ========== */

section {
	margin-bottom: 72px;
}
.section-head {
	margin-bottom: 24px;
}
.section-num {
	font-family: var(--latin-ui);
	font-weight: 400;
	font-size: 13px;
	color: var(--brand);
	letter-spacing: 0.4px;
	margin: 0 0 6px;
	text-transform: uppercase;
}
.section-title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 32px;
	line-height: 1.2;
	color: var(--near-black);
	margin: 0;
	letter-spacing: 0;
}
.section-lede {
	font-family: var(--serif);
	font-weight: 400;
	font-size: 17px;
	line-height: 1.55;
	color: var(--olive);
	margin: 14px 0 0;
}
.section-versus {
	font-family: var(--serif);
	font-size: 14px;
	color: var(--stone);
	margin: 14px 0 0;
	letter-spacing: 0.1px;
	line-height: 1.55;
}
.section-versus b {
	color: var(--brand);
	font-weight: 500;
}

/* ========== Gallery (interactive screenshot carousel) ========== */

.gallery {
	--enter-from-x: 44px;
	--exit-to-x: -34px;
	--sweep-angle: 100deg;
	--sweep-from: -45%;
	--sweep-to: 65%;
	--caption-shift: -2px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	column-gap: 24px;
	align-items: baseline;
	margin: 0;
	padding: 0;
}
.gallery[data-direction="prev"] {
	--enter-from-x: -44px;
	--exit-to-x: 34px;
	--sweep-angle: 260deg;
	--sweep-from: 65%;
	--sweep-to: -45%;
	--caption-shift: 2px;
}

.gallery-frame {
	grid-column: 1 / -1;
	position: relative;
	background: var(--shot-bg);
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(20, 19, 19, 0.1);
	cursor: ew-resize;
}
.gallery-frame::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 4;
	pointer-events: none;
	background: linear-gradient(
		var(--sweep-angle),
		rgba(245, 244, 237, 0) 32%,
		rgba(245, 244, 237, 0.16) 50%,
		rgba(245, 244, 237, 0) 68%
	);
	opacity: 0;
	transform: translate3d(var(--sweep-from), 0, 0);
	transition:
		opacity 540ms ease,
		transform 920ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery.is-switching .gallery-frame::after {
	opacity: 1;
	transform: translate3d(var(--sweep-to), 0, 0);
}
.gallery-panel {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	transform: translate3d(var(--enter-from-x), 0, 0) scale(0.985);
	transition:
		opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 880ms cubic-bezier(0.22, 1, 0.36, 1),
		visibility 620ms;
	will-change: opacity, transform;
}
.gallery-panel.is-active {
	opacity: 1;
	visibility: visible;
	position: relative;
	z-index: 2;
	transform: translate3d(0, 0, 0) scale(1);
}
.gallery-panel.was-active {
	opacity: 0;
	visibility: visible;
	position: absolute;
	inset: 0;
	z-index: 3;
	transform: translate3d(var(--exit-to-x), 0, 0) scale(0.985);
	pointer-events: none;
}
.gallery-panel img {
	width: 100%;
	height: auto;
	display: block;
}

.gallery-caption {
	grid-column: 1;
	grid-row: 2;
	min-height: 48px;
	padding: 12px 2px 0;
	display: flex;
	align-items: baseline;
	gap: 14px;
	transition:
		opacity 420ms ease,
		transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery.is-switching .gallery-caption {
	opacity: 0.72;
	transform: translate3d(var(--caption-shift), 0, 0);
}
.gallery-caption .title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 17px;
	color: var(--near-black);
	margin: 0;
	letter-spacing: 0.1px;
	flex: 0 0 auto;
}
.gallery-caption .line {
	font-family: var(--serif);
	font-size: 14px;
	color: var(--olive);
	font-style: italic;
	margin: 0;
}

.gallery-tabs {
	grid-column: 2;
	grid-row: 2;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 12px;
	justify-content: flex-end;
}
.gallery-tabs button {
	appearance: none;
	border: 1px solid var(--border-soft);
	border-radius: 999px;
	background: transparent;
	color: var(--olive);
	font-family: var(--latin-ui);
	font-size: 12px;
	line-height: 1;
	padding: 8px 12px;
	cursor: pointer;
	transition:
		color 0.18s ease,
		border-color 0.18s ease,
		background 0.18s ease;
}
.gallery-tabs button:hover {
	color: var(--brand);
	border-color: var(--line);
}
.gallery-tabs button.is-active {
	color: var(--brand);
	background: var(--brand-tint);
	border-color: var(--line);
}

/* Terminal / code surfaces inside the gallery frame.
   Palette per design.md §11 «Code Block» dark-surface tokens. No new colors. */
/* Keep the wide, scrollable terminal from widening the grid track on mobile
   (the shipped img panels are fluid; a pre with white-space:pre is not). */
.gallery,
.gallery-frame,
.gallery-panel,
.install-steps > li > div,
.step-shot {
	min-width: 0;
}
.gallery-frame {
	max-width: 100%;
}
/* §11 no-horizontal-scroll hardening: let long tokens (e.g. an install URL) in
   FAQ answers wrap instead of forcing overflow at 320-375px. */
.faq dd {
	overflow-wrap: break-word;
}
.faq dd code {
	overflow-wrap: anywhere;
}
pre.term {
	margin: 0;
	padding: 26px 30px;
	min-height: 328px;
	font-family: var(--mono);
	font-size: 13px;
	line-height: 1.72;
	font-variant-numeric: lining-nums tabular-nums;
	color: #d7d3c7;
	background: var(--shot-bg);
	white-space: pre;
	overflow-x: auto;
	-webkit-font-smoothing: antialiased;
}
pre.term .c {
	color: #79756a;
	font-style: italic;
}
pre.term .k {
	color: #84aad6;
}
pre.term .s {
	color: #8cbb91;
}
pre.term .num {
	color: #cbab86;
}
pre.term .fn {
	color: #d6c78c;
}
pre.term .bi {
	color: #b59ccd;
}
pre.term .ok {
	color: #8cbb91;
}
pre.term .pr {
	color: #84aad6;
}
pre.term .dim {
	color: #79756a;
}

@media (max-width: 480px) {
	pre.term {
		font-size: 11.5px;
		padding: 20px 18px;
		min-height: 300px;
	}
}

/* Static terminal surface for the usage steps — the gallery frame look
   without the carousel machinery (single, always-visible panel). */
.step-shot {
	position: relative;
	background: var(--shot-bg);
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(20, 19, 19, 0.1);
	margin-top: 6px;
}
.step-shot pre.term {
	min-height: 0;
}

/* ========== Features (2-column numbered grid) ========== */

.features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	border-top: 1px solid var(--border-soft);
}
.features li {
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: 8px;
	padding: 22px 28px 22px 0;
	border-bottom: 1px solid var(--border-soft);
	align-items: baseline;
}
.features li:nth-child(odd) {
	padding-right: 32px;
	border-right: 1px solid var(--border-soft);
}
.features li:nth-child(even) {
	padding-left: 32px;
}
.features li:last-child:nth-child(odd) {
	grid-column: 1 / -1;
	border-right: none;
	padding-right: 0;
}
.features .n {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 18px;
	color: var(--brand);
	line-height: 1;
}
.features .body b {
	display: block;
	font-family: var(--serif);
	font-weight: 500;
	font-size: 15px;
	color: var(--near-black);
	margin-bottom: 4px;
	letter-spacing: 0.1px;
}
.features .body span {
	font-size: 13px;
	color: var(--olive);
	line-height: 1.5;
	font-weight: 400;
}

/* ========== Manifesto (brand philosophy paragraph) ========== */

.manifesto {
	font-family: var(--serif);
	font-size: 20px;
	line-height: 1.55;
	letter-spacing: 0.05em;
	color: var(--near-black);
	margin: 0 0 28px;
	font-weight: 400;
}
.manifesto em {
	color: var(--brand);
	font-style: normal;
}

/* ========== Code block (install instructions) ========== */

pre.code {
	background: var(--ivory);
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 18px 22px;
	font-family: var(--mono);
	font-size: 13.5px;
	line-height: 1.55;
	font-variant-numeric: lining-nums tabular-nums;
	color: var(--near-black);
	overflow-x: auto;
	margin: 0;
}
pre.code .c {
	color: var(--stone);
}
pre.code .k {
	color: var(--brand);
}

/* ========== Metrics (key numbers) ========== */

.metrics {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
}
.metric {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.metric-value {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 36px;
	line-height: 1;
	color: var(--near-black);
	font-variant-numeric: lining-nums tabular-nums;
}
.metric-label {
	font-family: var(--latin-ui);
	font-size: 13px;
	color: var(--stone);
}

/* ========== Demo card grid (static showcase) ========== */

.demo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 18px;
}
.demo-card {
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
	background: var(--ivory);
	transition: box-shadow 0.2s;
}
.demo-card:hover {
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}
.demo-card img {
	width: 100%;
	height: auto;
	display: block;
	border-bottom: 1px solid var(--border);
}
.demo-card .demo-title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 15px;
	color: var(--near-black);
	margin: 12px 14px 4px;
}
.demo-card .demo-desc {
	font-size: 12px;
	color: var(--olive);
	margin: 0 14px 14px;
	line-height: 1.4;
}

/* ========== Copyable command block (hero + install) ========== */

.copy-btn {
	flex: 0 0 auto;
	border: none;
	background: transparent;
	color: #9fb6cf;
	font-family: var(--latin-ui);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.3px;
	cursor: pointer;
	transition:
		color 0.15s,
		background 0.15s;
}
.copy-btn:hover {
	color: #cfe0f0;
}
.copy-btn.copied {
	color: #8cbb91;
}

/* Hero install one-liner */
.hero-install {
	display: flex;
	align-items: stretch;
	/* max-width: 620px; */
	margin: 0 0 30px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--shot-bg);
	overflow: hidden;
}
.hero-install .cmd {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	padding: 15px 18px;
	font-family: var(--mono);
	font-size: 13.5px;
	line-height: 1.5;
	color: #d7d3c7;
	background: transparent;
	overflow-wrap: anywhere;
	word-break: break-word;
}
.hero-install .cmd .pr {
	color: #79756a;
	margin-right: 10px;
	user-select: none;
}
.hero-install .copy-btn {
	align-self: stretch;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
	padding: 0 18px;
}
.hero-install .copy-btn:hover {
	background: rgba(255, 255, 255, 0.05);
}

/* ========== Install section (get started) ========== */

.install-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: step;
	border-top: 1px solid var(--border-soft);
}
.install-steps > li {
	display: grid;
	grid-template-columns: 40px 1fr;
	column-gap: 22px;
	padding: 30px 0;
	border-bottom: 1px solid var(--border-soft);
	align-items: start;
}
.install-steps > li::before {
	counter-increment: step;
	content: counter(step);
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	font-weight: 500;
	font-size: 17px;
	color: var(--brand);
	border: 1.5px solid var(--line);
	border-radius: 999px;
}
.step-title {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 19px;
	color: var(--near-black);
	margin: 4px 0 6px;
	line-height: 1.25;
}
.step-desc {
	font-family: var(--serif);
	font-size: 14.5px;
	color: var(--olive);
	line-height: 1.55;
	margin: 0 0 14px;
}
.step-desc code,
.section-lede code,
.install-tail code {
	font-family: var(--mono);
	font-size: 12.5px;
	color: var(--brand);
	background: var(--brand-tint);
	padding: 1px 6px;
	border-radius: 3px;
	overflow-wrap: anywhere;
}
.cmd-block {
	position: relative;
	background: var(--shot-bg);
	border: 1px solid var(--border);
	border-radius: 6px;
	margin: 0 0 12px;
}
.cmd-block:last-child {
	margin-bottom: 0;
}
.cmd-block pre {
	margin: 0;
	padding: 16px 74px 16px 18px;
	font-family: var(--mono);
	font-size: 13px;
	line-height: 1.72;
	color: #d7d3c7;
	background: transparent;
	white-space: pre-wrap;
	overflow-wrap: anywhere;
	word-break: break-word;
}
.cmd-block pre .c {
	color: #79756a;
	font-style: italic;
}
.cmd-block pre .pr {
	color: #84aad6;
	user-select: none;
}
.cmd-block pre .s {
	color: #8cbb91;
}
.cmd-block pre .k {
	color: #84aad6;
}
.cmd-block pre .bi {
	color: #b59ccd;
}
.cmd-block pre .dim {
	color: #79756a;
}
.cmd-block .copy-btn {
	position: absolute;
	top: 8px;
	right: 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 5px;
	padding: 5px 11px;
	background: rgba(255, 255, 255, 0.04);
}
.cmd-block .copy-btn:hover {
	background: rgba(255, 255, 255, 0.09);
}
.install-tail {
	font-family: var(--serif);
	font-size: 14px;
	color: var(--stone);
	margin: 28px 0 0;
}
.install-tail a {
	color: var(--brand);
}

/* ========== FAQ ========== */

.faq-pair {
	margin-bottom: 24px;
}
.faq-pair:last-child {
	margin-bottom: 0;
}
.faq dt {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 16px;
	color: var(--near-black);
	margin: 0 0 6px;
	letter-spacing: 0.1px;
}
.faq dd {
	font-family: var(--serif);
	font-size: 14px;
	line-height: 1.55;
	color: var(--olive);
	margin: 0;
}
.faq code {
	font-family: var(--mono);
	font-size: 12px;
	color: var(--brand);
	background: var(--brand-tint);
	padding: 1px 6px;
	border-radius: 3px;
}
.faq-tail {
	font-family: var(--serif);
	font-size: 13px;
	color: var(--stone);
	margin: 28px 0 0;
}
.faq-tail a {
	color: var(--brand);
}

/* ========== Footer ========== */

footer.foot {
	margin-top: 56px;
	padding-top: 40px;
	border-top: 1px solid var(--border-soft);
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 48px;
	font-family: var(--serif);
	font-size: 13px;
	color: var(--stone);
}
.foot .mark {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.foot .mark .wm-name {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 28px;
	color: var(--near-black);
	line-height: 1.1;
	letter-spacing: 0;
}
.foot .mark .wm-line {
	font-size: 13px;
	color: var(--olive);
	margin-top: 2px;
}
.foot .colophon {
	text-align: right;
	max-width: 480px;
}
.foot .colophon .links {
	font-family: var(--latin-ui);
	color: var(--dark-warm);
	margin-bottom: 16px;
	line-height: 1.55;
}
.foot .colophon .links a {
	color: var(--dark-warm);
}
.foot .colophon .links a:hover {
	color: var(--brand);
}
.foot .colophon .ethos {
	color: var(--olive);
	font-style: italic;
	line-height: 1.55;
	max-width: 360px;
	margin-left: auto;
}

/* ========== Print ========== */

@media print {
	body {
		background: #f5f4ed;
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
	}
	.page {
		padding: 0;
		max-width: 100%;
	}
	section {
		page-break-inside: auto;
		margin-bottom: 36px;
	}
	.hero,
	.section-head,
	.demo-card,
	.cmd-block,
	blockquote,
	pre {
		break-inside: avoid;
		page-break-inside: avoid;
	}
	.gallery-frame::after {
		display: none;
	}
}

/* ========== Responsive ========== */

@media (max-width: 880px) {
	.page {
		padding: 64px 32px 80px;
	}
	.hero {
		margin-bottom: 56px;
		padding-bottom: 32px;
	}
	.hero h1 {
		font-size: 64px;
		letter-spacing: 0;
	}
	.hero .tagline {
		font-size: 18px;
	}

	section {
		margin-bottom: 56px;
	}
	.section-title {
		font-size: 26px;
	}

	.gallery {
		grid-template-columns: 1fr;
	}
	.gallery-caption,
	.gallery-tabs {
		grid-column: 1;
		grid-row: auto;
	}
	.gallery-tabs {
		gap: 6px;
		justify-content: flex-start;
	}
	.gallery-tabs button {
		padding: 8px 10px;
	}

	.features {
		grid-template-columns: 1fr;
	}
	.features li:nth-child(odd) {
		border-right: none;
		padding-right: 0;
	}
	.features li:nth-child(even) {
		padding-left: 0;
	}

	.install-steps > li {
		grid-template-columns: 30px 1fr;
		column-gap: 16px;
		padding: 26px 0;
	}
	.install-steps > li::before {
		width: 28px;
		height: 28px;
		font-size: 15px;
	}
	.step-title {
		font-size: 17px;
	}

	.foot {
		flex-direction: column;
		align-items: flex-start;
		gap: 32px;
		padding-top: 32px;
		margin-top: 48px;
	}
	.foot .colophon {
		text-align: left;
		max-width: 100%;
	}
	.foot .colophon .ethos {
		margin-left: 0;
	}
	.foot {
		align-items: flex-start;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 56px;
	}
	.hero .tagline {
		font-size: 17px;
	}
	.hero-cta {
		flex-direction: row;
		align-items: center;
		gap: 12px;
	}
	.btn-primary,
	.btn-ghost {
		min-width: 0;
		flex: 1;
		padding: 13px 16px;
		justify-content: center;
	}
	.gallery-caption {
		min-height: auto;
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero h1 {
		animation: none;
		opacity: 1;
		transform: none;
		filter: none;
	}
	.gallery-frame::after {
		display: none;
	}
	.gallery-panel,
	.gallery-caption {
		transition: none;
		transform: none;
	}
}
