/* DXNest theme — black & white with the amber accent (#f0a32a) from the
   application's dark UI. Light pages, dark "canvas" bands; .band-dark
   re-maps the shared custom properties so every component adapts without
   per-band overrides. */

/* ── Tokens ──────────────────────────────────────────────────────────── */

:root {
	/* light surfaces */
	--bg: #ffffff;
	--tx: #19191b;
	--mut: #5f5f66;
	--line: #e3e3e7;
	--tint: #f7f7f8;
	--card-bg: #ffffff;
	--in-bg: #ffffff;
	--in-bd: #c6c6cb;
	--btn-bd: #c6c6cb;

	/* dark surfaces (from ui/theme.py dark palette) */
	--ink: #141416;
	--ink-2: #1b1b1d;
	--canvas: #101012;
	--ink-line: #333338;
	--ink-tx: #ededf0;
	--ink-mut: #97979e;

	/* accent */
	--acc: #f0a32a;
	--acc-ink: #141416;
	--acc-soft: rgba(240, 163, 42, 0.12);

	--r: 10px;
	--r-lg: 16px;
	--head-h: 72px;
	--font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--mono: "Cascadia Code", Consolas, "SF Mono", ui-monospace, Menlo, monospace;
}

.band-dark {
	--tx: var(--ink-tx);
	--mut: var(--ink-mut);
	--line: var(--ink-line);
	--tint: #1f1f22;
	--card-bg: var(--ink-2);
	--in-bg: #121214;
	--in-bd: #3f3f44;
	--btn-bd: #3f3f44;
	background: var(--ink);
	color: var(--tx);
}

/* ── Base ────────────────────────────────────────────────────────────── */

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--head-h) + 16px);
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--tx);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
	margin: 0 0 0.5em;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.02em;
}

h1 { font-size: clamp(34px, 4.6vw, 52px); }
h2 { font-size: clamp(26px, 3.4vw, 38px); }
h3 { font-size: 18px; letter-spacing: -0.01em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; height: auto; vertical-align: middle; }
button { font: inherit; }

::selection { background: var(--acc); color: var(--acc-ink); }

:focus-visible {
	outline: 2px solid var(--acc);
	outline-offset: 2px;
	border-radius: 2px;
}

.wrap {
	max-width: 1160px;
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 32px);
}

.wrap-narrow { max-width: 860px; }

.icon { width: 24px; height: 24px; flex: none; }
.icon-xl { width: 76px; height: 76px; stroke-width: 1.1; }
.i-acc { stroke: var(--acc); }

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	padding: 10px 16px;
	background: var(--ink);
	color: var(--ink-tx);
	border-radius: 0 0 var(--r) 0;
}

.skip-link:focus { left: 0; }

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

/* ── Type helpers ────────────────────────────────────────────────────── */

.kicker {
	margin: 0 0 14px;
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--acc);
}

.lead {
	font-size: 18px;
	line-height: 1.65;
	color: var(--mut);
	max-width: 58ch;
}

.lead-secondary {
	color: var(--mut);
	max-width: 62ch;
}

.chip {
	display: inline-block;
	padding: 1px 8px;
	border: 1px solid var(--acc);
	border-radius: 999px;
	background: var(--acc-soft);
	color: var(--acc);
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.7;
	vertical-align: middle;
}

.chip-lg { font-size: 12px; padding: 4px 12px; }

.text-link {
	font-weight: 600;
	border-bottom: 2px solid var(--acc);
	padding-bottom: 2px;
	transition: color 0.15s ease;
}

.text-link::after { content: " \2192"; color: var(--acc); }
.text-link:hover { color: var(--acc); }

/* ── Buttons ─────────────────────────────────────────────────────────── */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.btn:active { transform: translateY(1px); }
.btn-sm { padding: 7px 14px; font-size: 14px; }
.btn-lg { padding: 13px 26px; font-size: 16px; }

.btn-solid {
	background: var(--acc);
	border-color: var(--acc);
	color: var(--acc-ink);
}

.btn-solid:hover { background: #ffb53f; border-color: #ffb53f; }

.btn-ghost {
	border-color: var(--btn-bd);
	color: var(--tx);
	background: transparent;
}

.btn-ghost:hover { border-color: var(--acc); background: var(--acc-soft); }

.btn-ink {
	background: #242428;
	border-color: #3f3f44;
	color: var(--ink-tx);
}

.btn-ink:hover { border-color: var(--acc); }

.btn.is-soon { opacity: 0.72; }
.btn-ghost.is-soon { border-style: dashed; }

/* ── Header ──────────────────────────────────────────────────────────── */

.site-head {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.96);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow 0.2s ease;
}

.site-head.is-scrolled { box-shadow: 0 6px 24px rgba(20, 20, 22, 0.08); }

.head-row {
	display: flex;
	align-items: center;
	gap: 36px;
	height: var(--head-h);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.brand-mark svg { width: 32px; height: 32px; display: block; }
.lm-bg { fill: var(--ink); }
.lm-acc { fill: var(--acc); }

.brand-name {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.brand-accent { color: var(--acc); }

.nav-list {
	display: flex;
	align-items: center;
	gap: 28px;
}

.nav-link {
	font-size: 15px;
	font-weight: 500;
	color: var(--mut);
	padding: 6px 0;
	border-bottom: 2px solid transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-link:hover { color: var(--tx); }

.nav-link.is-current {
	color: var(--tx);
	border-bottom-color: var(--acc);
}

.nav-link.is-soon { color: var(--mut); }

.head-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.nav-auth { display: none; }

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: transparent;
	color: var(--tx);
	cursor: pointer;
	align-items: center;
	justify-content: center;
}

.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-menu { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

@media (max-width: 960px) {
	.head-row { gap: 16px; }
	.nav-toggle { display: inline-flex; }

	.site-nav {
		position: fixed;
		inset: var(--head-h) 0 auto 0;
		display: none;
		flex-direction: column;
		gap: 20px;
		padding: 24px clamp(20px, 4vw, 32px) 32px;
		background: var(--bg);
		border-bottom: 1px solid var(--line);
		box-shadow: 0 24px 48px rgba(20, 20, 22, 0.12);
	}

	body.nav-open .site-nav { display: flex; }

	.nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}

	.nav-list a {
		display: block;
		padding: 10px 0;
		font-size: 17px;
		border-bottom: none;
	}

	.nav-link.is-current { color: var(--acc); }

	.nav-auth {
		display: flex;
		gap: 10px;
		padding-top: 16px;
		border-top: 1px solid var(--line);
	}

	.nav-auth .btn { flex: 1; justify-content: center; }
}

@media (max-width: 720px) {
	.head-actions .btn { display: none; }
}

/* ── Sections ────────────────────────────────────────────────────────── */

.section { padding: clamp(64px, 9vw, 104px) 0; }
.section-tint { background: var(--tint); }

.sec-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 48px); }
.sec-sub { margin-top: 12px; font-size: 17px; color: var(--mut); }
.sec-foot { margin-top: 40px; }

.grid { display: grid; gap: 18px; }

/* ── Hero ────────────────────────────────────────────────────────────── */

.hero { padding: clamp(64px, 9vw, 110px) 0; }

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}

.hero h1 { margin-bottom: 20px; }

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.hero-note {
	margin-top: 22px;
	font-size: 14px;
	color: var(--mut);
}

.hero-canvas,
.sheet-canvas {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 14px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

@media (max-width: 960px) {
	.hero-grid { grid-template-columns: 1fr; }
	.hero-art { order: 2; }
}

/* ── Feature cards ───────────────────────────────────────────────────── */

.features-grid { grid-template-columns: repeat(4, 1fr); }

.adv-card,
.pillar-card {
	background: var(--card-bg);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 24px;
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.adv-card:hover {
	border-color: var(--acc);
	transform: translateY(-3px);
	box-shadow: 0 14px 36px rgba(20, 20, 22, 0.08);
}

.card-icon {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: var(--acc-soft);
	color: var(--tx);
}

.adv-card h3,
.pillar-card h3 { margin: 16px 0 8px; }

.adv-card p {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.55;
	color: var(--mut);
}

@media (max-width: 1100px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ── Time savings ────────────────────────────────────────────────────── */

.time-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }

.time-card {
	background: var(--card-bg);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 28px;
}

.time-size {
	margin: 0 0 14px;
	font-family: var(--mono);
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mut);
}

.time-fast {
	margin: 0;
	font-size: clamp(30px, 3.6vw, 42px);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--acc);
}

.time-manual { margin: 6px 0 0; font-size: 14.5px; color: var(--mut); }

@media (max-width: 860px) { .time-grid { grid-template-columns: 1fr; } }

/* ── Workflow steps ──────────────────────────────────────────────────── */

.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	counter-reset: step;
}

.step-card {
	background: var(--card-bg);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 24px;
}

.step-num {
	display: inline-flex;
	align-items: center;
	font-family: var(--mono);
	font-size: 13px;
	font-weight: 600;
	color: var(--acc);
}

.step-num::after {
	content: "";
	display: inline-block;
	width: 36px;
	height: 1px;
	margin-left: 10px;
	background: var(--acc);
	opacity: 0.6;
}

.step-card h3 { margin: 14px 0 8px; }
.step-card p { margin: 0; font-size: 14.5px; color: var(--mut); }

@media (max-width: 1000px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps-grid { grid-template-columns: 1fr; } }

/* ── Get DXNest ──────────────────────────────────────────────────────── */

.get-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: start;
}

.get-card {
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: clamp(24px, 3.5vw, 36px);
	background: var(--card-bg);
}

.get-card.band-dark { border-color: var(--ink-line); }
.get-card h3 { font-size: 22px; margin: 18px 0 10px; }
.get-card > p { color: var(--mut); }

.check-list { margin: 18px 0 22px; }

.check-list li {
	position: relative;
	padding-left: 26px;
	margin: 9px 0;
	font-size: 15px;
}

.check-list li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--acc);
	font-weight: 700;
}

.get-soon {
	margin-top: 22px;
	padding-top: 20px;
	border-top: 1px dashed var(--line);
}

.get-soon p { margin: 12px 0 16px; font-size: 14.5px; color: var(--mut); }

@media (max-width: 900px) { .get-grid { grid-template-columns: 1fr; } }

/* ── FAQ ─────────────────────────────────────────────────────────────── */

.faq-list { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-item summary {
	position: relative;
	padding: 18px 44px 18px 0;
	font-size: 16.5px;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
	content: "+";
	position: absolute;
	right: 6px;
	top: 50%;
	transform: translateY(-50%);
	font-family: var(--mono);
	font-size: 22px;
	color: var(--acc);
	transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-item > p {
	margin: 0;
	padding: 0 0 20px;
	max-width: 70ch;
	color: var(--mut);
}

/* ── Contact ─────────────────────────────────────────────────────────── */

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(32px, 5vw, 64px);
	align-items: start;
}

.contact-list { margin-top: 28px; }

.contact-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 14px 0;
	font-size: 16px;
}

.contact-list .icon { color: var(--mut); }
.contact-list a:hover { color: var(--acc); }

.contact-form {
	background: var(--card-bg);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: clamp(22px, 3vw, 32px);
}

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ── Forms ───────────────────────────────────────────────────────────── */

.dx-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

@media (max-width: 600px) { .dx-form .form-row { grid-template-columns: 1fr; } }

.form-field { margin: 0 0 14px; }

.form-field label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--mut);
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 11px 14px;
	font: inherit;
	font-size: 15px;
	color: var(--tx);
	background: var(--in-bg);
	border: 1px solid var(--in-bd);
	border-radius: 8px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-field textarea { resize: vertical; min-height: 96px; }

.form-field input:focus,
.form-field textarea:focus {
	outline: none;
	border-color: var(--acc);
	box-shadow: 0 0 0 3px var(--acc-soft);
}

.form-actions { margin: 6px 0 0; }

.hp-field {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-note {
	margin: 14px 0 0;
	padding: 10px 14px;
	border: 1px solid var(--line);
	border-radius: 8px;
	font-size: 14.5px;
}

.form-note:empty { display: none; }
.form-note.is-ok { border-color: var(--acc); background: var(--acc-soft); }
.form-note.is-err { border-color: #d2473f; background: rgba(210, 71, 63, 0.08); }

/* ── Inner pages ─────────────────────────────────────────────────────── */

.page-hero {
	padding: clamp(56px, 8vw, 96px) 0 clamp(32px, 5vw, 56px);
	border-bottom: 1px solid var(--line);
}

.page-hero .lead { margin-top: 8px; }
.lead-secondary { margin-top: 16px; }

.pillars-grid { grid-template-columns: repeat(4, 1fr); }

.pillar-card ul li {
	position: relative;
	padding-left: 18px;
	margin: 8px 0;
	font-size: 14.5px;
	color: var(--mut);
}

.pillar-card ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	background: var(--acc);
}

@media (max-width: 1100px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pillars-grid { grid-template-columns: 1fr; } }

.feature-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
	margin-top: clamp(40px, 6vw, 72px);
}

.feature-row:first-of-type { margin-top: 0; }
.feature-row.is-wide { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); }
.feature-row.is-reversed .feature-text { order: 2; }
.feature-row.is-reversed .feature-media { order: 1; }

.feature-text h3 { font-size: 22px; }
.feature-text p { color: var(--mut); max-width: 56ch; }

.media-tile {
	display: grid;
	place-items: center;
	min-height: 240px;
	border: 1px solid var(--ink-line);
	border-radius: var(--r-lg);
	background: var(--canvas);
	color: var(--ink-tx);
}

@media (max-width: 860px) {
	.feature-row,
	.feature-row.is-wide { grid-template-columns: 1fr; }
	.feature-row.is-reversed .feature-text { order: 1; }
	.feature-row.is-reversed .feature-media { order: 2; }
}

/* ── Specs table ─────────────────────────────────────────────────────── */

.specs {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid var(--line);
}

.specs th,
.specs td {
	padding: 14px 16px 14px 0;
	border-bottom: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
}

.specs th {
	width: 32%;
	font-family: var(--mono);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mut);
}

.specs td { font-size: 15px; }

/* ── CTA band ────────────────────────────────────────────────────────── */

.section-cta { padding: clamp(56px, 8vw, 88px) 0; }

.cta-band { text-align: center; }
.cta-band p { color: var(--mut); max-width: 52ch; margin-inline: auto; }
.cta-band .cta-row { justify-content: center; }

/* ── Pricing ─────────────────────────────────────────────────────────── */

.pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }

.price-card {
	display: flex;
	flex-direction: column;
	background: var(--card-bg);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 30px;
}

.price-card.is-featured {
	border-color: var(--acc);
	box-shadow: 0 16px 48px rgba(240, 163, 42, 0.14);
}

.price-name { font-size: 19px; margin-bottom: 14px; }

.price-value { margin: 0 0 6px; }

.price-amount {
	display: block;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.price-period {
	display: block;
	margin-top: 2px;
	font-family: var(--mono);
	font-size: 12.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mut);
}

.price-tagline { font-size: 14.5px; color: var(--mut); }

.price-card .check-list { flex: 1; }
.price-card .btn { justify-content: center; }

.pricing-note {
	margin-top: 28px;
	font-size: 14px;
	color: var(--mut);
	text-align: center;
}

@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; } }

.teaser-card {
	border: 1px dashed var(--acc);
	border-radius: var(--r-lg);
	background: var(--tint);
	padding: clamp(24px, 4vw, 40px);
}

.teaser-card h2 { font-size: 24px; }
.teaser-card p { color: var(--mut); }

/* ── Generic content / 404 ───────────────────────────────────────────── */

.prose { max-width: 70ch; }
.prose h2 { font-size: 26px; margin-top: 1.4em; }
.prose h3 { margin-top: 1.2em; }
.prose ul { list-style: disc; padding-left: 1.2em; margin-bottom: 1em; }
.prose ol { list-style: decimal; padding-left: 1.2em; margin-bottom: 1em; }
.prose a { color: var(--acc); text-decoration: underline; }

.archive-item { margin-bottom: 36px; }
.archive-item h2 a:hover { color: var(--acc); }

.center-404 { text-align: center; padding: clamp(32px, 6vw, 64px) 0; }
.center-404 .lead { margin-inline: auto; }
.center-404 .cta-row { justify-content: center; margin-top: 28px; }

/* ── Footer ──────────────────────────────────────────────────────────── */

.site-foot { padding: clamp(48px, 7vw, 72px) 0 0; }

.foot-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: clamp(28px, 5vw, 56px);
	padding-bottom: clamp(36px, 5vw, 56px);
}

.foot-brand .brand-name { color: var(--ink-tx); }
.foot-brand .lm-bg { fill: #242428; }

.foot-tagline {
	margin-top: 16px;
	max-width: 40ch;
	font-size: 14.5px;
	color: var(--ink-mut);
}

.foot-title {
	margin: 4px 0 16px;
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-mut);
}

.foot-nav li,
.foot-contact li { margin: 9px 0; }

.foot-nav a { color: var(--ink-mut); transition: color 0.15s ease; }
.foot-nav a:hover { color: var(--ink-tx); }

.foot-contact li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--ink-mut);
	font-size: 14.5px;
}

.foot-contact .icon { width: 18px; height: 18px; }
.foot-contact a:hover { color: var(--acc); }

.foot-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
	padding-top: 20px;
	padding-bottom: 24px;
	border-top: 1px solid var(--ink-line);
	font-size: 13.5px;
	color: #6a6a72;
}

.foot-bottom p { margin: 0; }
.foot-bottom a { color: inherit; }
.foot-bottom a:hover { color: var(--ink-tx); }

@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr; } }

/* ── Motion preferences ──────────────────────────────────────────────── */

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

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}
}
