/* ==========================================================================
   Syncfully — syncfullytech.com
   Hand-written stylesheet. No frameworks, no build step, no external fonts.
   ========================================================================== */

:root {
	color-scheme: dark;

	--bg: #0a0f1c;
	--bg-alt: #0d1526;
	--surface: #111b2f;
	--surface-2: #16223a;

	--border: rgba(148, 163, 184, 0.16);
	--border-strong: rgba(148, 163, 184, 0.32);

	--text: #e9eef8;
	--text-muted: #a4b2ca;
	--text-faint: #7a89a3;

	--accent: #f97316;
	--accent-bright: #fb923c;
	--accent-deep: #ea580c;
	--accent-soft: rgba(249, 115, 22, 0.12);
	--accent-ring: rgba(249, 115, 22, 0.45);

	--radius-xl: 22px;
	--radius-lg: 16px;
	--radius: 12px;
	--radius-sm: 9px;
	--radius-pill: 999px;

	--shadow-lg: 0 34px 70px -34px rgba(2, 6, 23, 0.95);
	--shadow: 0 18px 44px -26px rgba(2, 6, 23, 0.9);

	--container: 1120px;
	--container-narrow: 780px;
	--header-height: 72px;

	--font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
		Arial, "Noto Sans", sans-serif;
	--font-mono: ui-monospace, SFMono-Regular, "Cascadia Mono", "Segoe UI Mono",
		Menlo, Consolas, "Liberation Mono", monospace;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

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

img {
	max-width: 100%;
	height: auto;
	display: block;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	line-height: 1.15;
	letter-spacing: -0.02em;
	font-weight: 650;
	text-wrap: balance;
}

p {
	margin: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

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

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

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

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

[id] {
	scroll-margin-top: calc(var(--header-height) + 24px);
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 32px);
}

.container-narrow {
	max-width: var(--container-narrow);
}

.section {
	padding-block: clamp(64px, 9vw, 112px);
}

.section-alt {
	background: var(--bg-alt);
	border-block: 1px solid var(--border);
}

.section-head {
	max-width: 720px;
	margin: 0 auto clamp(40px, 6vw, 64px);
	text-align: center;
}

.eyebrow {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 14px;
}

.section-title {
	font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem);
}

.section-lead {
	margin-top: 16px;
	color: var(--text-muted);
	font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
}

.lead {
	font-size: clamp(1.05rem, 1rem + 0.5vw, 1.25rem);
	color: var(--text-muted);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -100px;
	z-index: 100;
	padding: 12px 18px;
	border-radius: var(--radius-sm);
	background: var(--accent);
	color: #fff;
	font-weight: 600;
	transition: top 0.15s ease;
}

.skip-link:focus {
	top: 16px;
	color: #fff;
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(10, 15, 28, 0.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
	border-bottom-color: var(--border);
	background: rgba(10, 15, 28, 0.94);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	height: var(--header-height);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-right: auto;
	font-family: var(--font-mono);
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--text);
}

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

.brand img {
	width: 30px;
	height: 30px;
}

.brand span em {
	font-style: normal;
	color: var(--accent);
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
}

.nav-list a {
	display: inline-block;
	padding: 9px 14px;
	border-radius: var(--radius-sm);
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text-muted);
	transition: color 0.15s ease, background 0.15s ease;
}

.nav-list a:hover {
	color: var(--text);
	background: rgba(148, 163, 184, 0.08);
}

.nav-list a[aria-current="page"] {
	color: var(--text);
	background: var(--accent-soft);
}

.nav-cta {
	display: inline-flex;
}

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

.nav-toggle:hover {
	border-color: var(--border-strong);
}

.nav-toggle svg {
	width: 20px;
	height: 20px;
}

.nav-toggle .icon-close,
.nav-toggle[aria-expanded="true"] .icon-open {
	display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
	display: block;
}

.nav-mobile {
	display: none;
	border-top: 1px solid var(--border);
	background: var(--bg-alt);
	padding: 12px clamp(20px, 4vw, 32px) 24px;
}

.nav-mobile[hidden] {
	display: none;
}

.nav-mobile ul {
	list-style: none;
	display: grid;
	gap: 2px;
	margin-bottom: 18px;
}

.nav-mobile a:not(.btn) {
	display: block;
	padding: 13px 4px;
	border-bottom: 1px solid var(--border);
	font-size: 1.05rem;
	font-weight: 500;
}

.nav-mobile a[aria-current="page"] {
	color: var(--accent);
}

.nav-mobile .btn {
	width: 100%;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 24px;
	border: 1px solid transparent;
	border-radius: var(--radius-sm);
	font-family: var(--font-sans);
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease,
		color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
	transform: translateY(1px);
}

.btn-primary {
	background: var(--accent);
	color: #fff;
	box-shadow: 0 12px 28px -14px rgba(249, 115, 22, 0.85);
}

.btn-primary:hover {
	background: var(--accent-deep);
	color: #fff;
}

.btn-secondary {
	border-color: var(--border-strong);
	color: var(--text);
	background: transparent;
}

.btn-secondary:hover {
	border-color: var(--accent);
	color: var(--accent-bright);
}

.btn-sm {
	padding: 10px 18px;
	font-size: 0.9rem;
}

.btn-lg {
	padding: 16px 30px;
	font-size: 1.05rem;
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.btn-row.is-centred {
	justify-content: center;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(72px, 12vw, 136px) clamp(56px, 9vw, 104px);
}

.hero::before,
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero::before {
	background-image: linear-gradient(
			rgba(148, 163, 184, 0.06) 1px,
			transparent 1px
		),
		linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(
		ellipse 90% 70% at 50% 0%,
		#000 30%,
		transparent 75%
	);
	-webkit-mask-image: radial-gradient(
		ellipse 90% 70% at 50% 0%,
		#000 30%,
		transparent 75%
	);
}

.hero::after {
	background: radial-gradient(
		620px 320px at 50% -80px,
		rgba(249, 115, 22, 0.22),
		transparent 70%
	),
		radial-gradient(
			520px 280px at 85% 20%,
			rgba(56, 130, 246, 0.12),
			transparent 70%
		);
}

.hero > .container {
	position: relative;
	z-index: 1;
}

.hero-inner {
	max-width: 800px;
	margin-inline: auto;
	text-align: center;
}

.hero-title {
	font-size: clamp(2.4rem, 1.5rem + 4.4vw, 4.25rem);
	letter-spacing: -0.035em;
}

.hero-title .accent {
	color: var(--accent);
}

.hero-lead {
	margin-top: 22px;
	font-size: clamp(1.05rem, 1rem + 0.6vw, 1.3rem);
	color: var(--text-muted);
}

.hero-note {
	margin-top: 20px;
	font-size: 0.9rem;
	color: var(--text-faint);
}

.hero .btn-row {
	justify-content: center;
}

.hero-split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
	text-align: left;
	max-width: none;
}

.hero-split .hero-title,
.hero-split .hero-lead {
	max-width: 620px;
}

.hero-split .btn-row {
	justify-content: flex-start;
}

/* Small keyword strip under the hero */

.stat-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 28px;
	margin-top: 36px;
	list-style: none;
	color: var(--text-muted);
	font-size: 0.92rem;
}

.stat-strip li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.stat-strip svg {
	width: 16px;
	height: 16px;
	flex: none;
	color: var(--accent);
}

/* --------------------------------------------------------------------------
   Cards and grids
   -------------------------------------------------------------------------- */

.grid {
	display: grid;
	gap: clamp(18px, 2.4vw, 26px);
}

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

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

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

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: clamp(22px, 2.6vw, 30px);
	background: linear-gradient(
		160deg,
		rgba(22, 34, 58, 0.85),
		rgba(17, 27, 47, 0.55)
	);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	transition: border-color 0.2s ease, transform 0.2s ease,
		box-shadow 0.2s ease;
}

.card:hover {
	border-color: rgba(249, 115, 22, 0.45);
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.card h3 {
	font-size: 1.2rem;
}

.card p {
	color: var(--text-muted);
	font-size: 0.99rem;
}

code {
	font-family: var(--font-mono);
	font-size: 0.87em;
	padding: 2px 6px;
	border: 1px solid var(--border);
	border-radius: 5px;
	background: rgba(10, 15, 28, 0.6);
	color: var(--accent-bright);
}

.card .card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: var(--radius-sm);
	background: var(--accent-soft);
	color: var(--accent);
	margin-bottom: 4px;
}

.card .card-icon svg {
	width: 21px;
	height: 21px;
}

.feature-block + .feature-block {
	margin-top: clamp(52px, 7vw, 84px);
}

.feature-block-head {
	max-width: 640px;
	margin: 0 auto clamp(28px, 4vw, 44px);
	text-align: center;
}

.feature-block-head h3 {
	font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.85rem);
}

.feature-block-head p {
	margin-top: 12px;
	color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Media / figure
   -------------------------------------------------------------------------- */

.media-frame {
	margin: 0;
	position: relative;
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	overflow: hidden;
	background: var(--surface);
	box-shadow: var(--shadow-lg);
}

.media-frame img {
	width: 100%;
}

.media-frame figcaption {
	padding: 14px 20px;
	border-top: 1px solid var(--border);
	background: rgba(10, 15, 28, 0.6);
	color: var(--text-faint);
	font-size: 0.85rem;
	text-align: center;
}

.media-frame-plain {
	border: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.media-frame-plain img {
	border-radius: var(--radius-xl);
}

/* --------------------------------------------------------------------------
   Steps
   -------------------------------------------------------------------------- */

.steps {
	counter-reset: step;
	display: grid;
	gap: clamp(18px, 2.4vw, 26px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	list-style: none;
}

.steps li {
	position: relative;
	padding: clamp(22px, 2.6vw, 30px);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	counter-increment: step;
}

.steps li::before {
	content: counter(step, decimal-leading-zero);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 16px;
	border-radius: var(--radius-sm);
	background: var(--accent-soft);
	color: var(--accent);
	font-family: var(--font-mono);
	font-size: 0.95rem;
	font-weight: 700;
}

.steps h3 {
	font-size: 1.15rem;
	margin-bottom: 10px;
}

.steps p {
	color: var(--text-muted);
	font-size: 0.97rem;
}

/* --------------------------------------------------------------------------
   Highlighted inline text
   -------------------------------------------------------------------------- */

.highlight {
	position: relative;
	white-space: nowrap;
	color: var(--text);
	font-weight: 600;
	background-image: linear-gradient(
		0deg,
		var(--accent) 0,
		var(--accent) 0.18em,
		transparent 0.18em
	);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

/* --------------------------------------------------------------------------
   Table
   -------------------------------------------------------------------------- */

.table-wrap {
	overflow-x: auto;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--surface);
	-webkit-overflow-scrolling: touch;
}

table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	font-size: 0.98rem;
}

caption {
	text-align: left;
}

th,
td {
	padding: 16px 22px;
	text-align: left;
	border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

thead th {
	font-size: 0.82rem;
	font-family: var(--font-mono);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--text-muted);
	background: rgba(10, 15, 28, 0.55);
}

tbody th {
	font-weight: 600;
	color: var(--text);
}

tbody td {
	color: var(--text-muted);
}

tbody tr:last-child th,
tbody tr:last-child td {
	border-bottom: 0;
}

tbody tr:hover {
	background: rgba(148, 163, 184, 0.05);
}

.col-accent {
	color: var(--accent) !important;
	font-weight: 600;
	background: rgba(249, 115, 22, 0.06);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
	position: relative;
	overflow: hidden;
	padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 56px);
	border: 1px solid rgba(249, 115, 22, 0.35);
	border-radius: var(--radius-xl);
	background: radial-gradient(
			520px 260px at 50% 0%,
			rgba(249, 115, 22, 0.22),
			transparent 70%
		),
		linear-gradient(160deg, rgba(22, 34, 58, 0.9), rgba(17, 27, 47, 0.6));
	text-align: center;
	box-shadow: var(--shadow-lg);
}

.cta-band h2 {
	font-size: clamp(1.6rem, 1.25rem + 1.7vw, 2.35rem);
}

.cta-band p {
	margin-top: 14px;
	color: var(--text-muted);
	font-size: clamp(1rem, 0.95rem + 0.3vw, 1.12rem);
}

.cta-band .btn-row {
	justify-content: center;
}

/* --------------------------------------------------------------------------
   Prose (legal pages)
   -------------------------------------------------------------------------- */

.prose {
	max-width: var(--container-narrow);
	margin-inline: auto;
}

.prose h2 {
	margin-top: 52px;
	margin-bottom: 14px;
	font-size: clamp(1.3rem, 1.15rem + 0.7vw, 1.6rem);
}

.prose h3 {
	margin-top: 30px;
	margin-bottom: 10px;
	font-size: 1.12rem;
}

.prose p,
.prose ul,
.prose ol {
	margin-bottom: 16px;
	color: var(--text-muted);
}

.prose ul,
.prose ol {
	padding-left: 22px;
}

.prose li {
	margin-bottom: 8px;
}

.prose li::marker {
	color: var(--accent);
}

.prose a {
	color: var(--accent-bright);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-color: rgba(251, 146, 60, 0.4);
}

.prose a:hover {
	text-decoration-color: currentColor;
}

.prose strong {
	color: var(--text);
}

.prose .meta {
	margin-top: 10px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--border);
	color: var(--text-faint);
	font-size: 0.9rem;
}

.prose .callout {
	margin: 26px 0;
	padding: 20px 24px;
	border: 1px solid var(--border);
	border-left: 3px solid var(--accent);
	border-radius: var(--radius);
	background: var(--surface);
}

.prose .callout p {
	margin: 0;
	color: var(--text);
}

.legal-toc {
	margin-top: 32px;
	padding: 22px 26px;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: var(--surface);
}

.legal-toc h2 {
	margin: 0 0 12px;
	font-size: 0.82rem;
	font-family: var(--font-mono);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.legal-toc ol {
	margin: 0;
	padding-left: 20px;
	columns: 2;
	column-gap: 32px;
}

.legal-toc li {
	margin-bottom: 6px;
}

.legal-toc a {
	color: var(--text-muted);
	text-decoration: none;
}

.legal-toc a:hover {
	color: var(--accent-bright);
}

/* --------------------------------------------------------------------------
   Page hero (interior pages)
   -------------------------------------------------------------------------- */

.page-hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(64px, 9vw, 104px) clamp(40px, 6vw, 64px);
	text-align: center;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		560px 260px at 50% -60px,
		rgba(249, 115, 22, 0.18),
		transparent 70%
	);
	pointer-events: none;
}

.page-hero > .container {
	position: relative;
	z-index: 1;
}

.page-hero h1 {
	font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.4rem);
	max-width: 860px;
	margin-inline: auto;
}

.page-hero .lead {
	max-width: 720px;
	margin: 22px auto 0;
}

.page-hero .btn-row {
	justify-content: center;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(20px, 3vw, 32px);
	align-items: start;
}

.contact-email {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 6px;
	font-size: clamp(1.15rem, 1rem + 0.9vw, 1.6rem);
	font-weight: 650;
	color: var(--accent);
	word-break: break-word;
}

.contact-email:hover {
	color: var(--accent-bright);
}

.check-list {
	list-style: none;
	display: grid;
	gap: 12px;
}

.check-list li {
	display: flex;
	gap: 12px;
	color: var(--text-muted);
}

.check-list svg {
	width: 18px;
	height: 18px;
	flex: none;
	margin-top: 4px;
	color: var(--accent);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
	border-top: 1px solid var(--border);
	background: #080d18;
	padding-block: clamp(48px, 6vw, 72px) 28px;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
	gap: clamp(28px, 4vw, 48px);
}

.footer-brand p {
	margin-top: 16px;
	max-width: 320px;
	color: var(--text-muted);
	font-size: 0.93rem;
}

.footer-heading {
	font-family: var(--font-mono);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--text-faint);
	margin-bottom: 16px;
}

.footer-links {
	list-style: none;
	display: grid;
	gap: 10px;
}

.footer-links a {
	color: var(--text-muted);
	font-size: 0.95rem;
	transition: color 0.15s ease;
}

.footer-links a:hover {
	color: var(--accent-bright);
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: clamp(40px, 5vw, 56px);
	padding-top: 24px;
	border-top: 1px solid var(--border);
	color: var(--text-faint);
	font-size: 0.87rem;
}

.footer-bottom a {
	color: var(--text-faint);
}

.footer-bottom a:hover {
	color: var(--accent-bright);
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */

.mt-0 {
	margin-top: 0;
}

.pt-0 {
	padding-top: 0;
}

.mt-1 {
	margin-top: 12px;
}

.mt-2 {
	margin-top: 24px;
}

.mt-3 {
	margin-top: 36px;
}

.text-centre {
	text-align: center;
}

.nowrap {
	white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

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

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

	.hero-split {
		grid-template-columns: minmax(0, 1fr);
		text-align: center;
	}

	.hero-split .hero-title,
	.hero-split .hero-lead {
		margin-inline: auto;
	}

	.hero-split .btn-row {
		justify-content: center;
	}

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

	.contact-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 860px) {
	.nav-desktop,
	.nav-cta {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.nav-mobile.is-open {
		display: block;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}

	.grid-2,
	.grid-3,
	.grid-4,
	.steps {
		grid-template-columns: minmax(0, 1fr);
	}

	.footer-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.legal-toc ol {
		columns: 1;
	}

	.btn {
		width: 100%;
	}

	.btn-row {
		flex-direction: column;
	}

	.hero .btn-row,
	.cta-band .btn-row {
		align-items: stretch;
	}
}

/* --------------------------------------------------------------------------
   Reduced motion & print
   -------------------------------------------------------------------------- */

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

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

@media print {
	.site-header,
	.site-footer,
	.btn-row {
		display: none;
	}

	body {
		background: #fff;
		color: #111;
	}

	.prose p,
	.prose ul,
	.prose li {
		color: #333;
	}
}
