/* ==========================================================================
   Beartooth Labs — Design System
   Clean, intelligent, fast, friendly, modern, trustworthy, slightly futuristic.
   Light open backgrounds · charcoal/navy type · electric blue & cyan accents
   ========================================================================== */

:root {
	/* Color */
	--ink: #16233a;            /* dark navy-charcoal type */
	--ink-soft: #44536b;       /* secondary text */
	--ink-faint: #67758c;      /* meta text */
	--bg: #f6f8fb;             /* page background */
	--surface: #ffffff;        /* cards */
	--surface-alt: #eef3f9;    /* tinted panels */
	--line: #dde5ef;           /* borders */
	--line-soft: #e8eef6;

	--blue: #1256e8;           /* electric blue */
	--blue-deep: #0c3fb0;
	--cyan: #0aa6c9;           /* cyan accent */
	--violet: #6d4de0;         /* subtle highlight */
	--green: #0e9f6e;          /* logo-adjacent green */
	--amber: #b97207;          /* amber highlight (AA on light bg) */

	--blue-tint: #e8effe;
	--cyan-tint: #e2f6fb;
	--violet-tint: #efeafd;
	--green-tint: #e2f6ee;
	--amber-tint: #fdf1dc;

	--grad-accent: linear-gradient(120deg, var(--blue) 0%, var(--cyan) 100%);
	--grad-soft: linear-gradient(160deg, #f2f7ff 0%, #f6f8fb 45%, #f0fbf7 100%);

	/* Type */
	--font-sans: "Avenir Next", Avenir, "Segoe UI", "Helvetica Neue", Inter, Roboto,
		system-ui, -apple-system, sans-serif;
	--font-mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;

	/* Scale */
	--radius-sm: 8px;
	--radius: 14px;
	--radius-lg: 22px;
	--shadow-sm: 0 1px 2px rgba(22, 35, 58, 0.06);
	--shadow: 0 6px 24px -8px rgba(22, 35, 58, 0.14);
	--shadow-lg: 0 18px 48px -16px rgba(22, 35, 58, 0.22);
	--container: 1120px;
	--gutter: clamp(1.25rem, 4vw, 2rem);
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */

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

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

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--bg);
	text-rendering: optimizeLegibility;
}

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

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

h1 { font-size: clamp(2.1rem, 5.4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.35rem); }

p,
ul,
ol {
	margin: 0 0 1.1em;
}

a {
	color: var(--blue);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--blue-deep);
}

strong {
	font-weight: 700;
}

/* Visible focus for keyboard users — WCAG 2.2 */
:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 3px;
	border-radius: 4px;
}

::selection {
	background: var(--blue-tint);
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	z-index: 200;
	background: var(--ink);
	color: #fff;
	padding: 0.75rem 1.25rem;
	border-radius: 0 0 var(--radius-sm) 0;
}

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

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

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

.container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.container--narrow {
	max-width: 760px;
}

.section {
	padding-block: clamp(3.5rem, 8vw, 6rem);
}

.section--tint {
	background: var(--surface-alt);
}

.section--soft {
	background: var(--grad-soft);
}

.section-head {
	max-width: 640px;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head--center {
	margin-inline: auto;
	text-align: center;
}

.kicker {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 0.85rem;
}

.lede {
	font-size: clamp(1.1rem, 2vw, 1.25rem);
	color: var(--ink-soft);
	text-wrap: pretty;
}

.grid {
	display: grid;
	gap: clamp(1rem, 2.5vw, 1.5rem);
}

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

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

@media (max-width: 620px) {
	.grid--2,
	.grid--3,
	.grid--4 { grid-template-columns: 1fr; }
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: saturate(1.4) blur(10px);
	-webkit-backdrop-filter: saturate(1.4) blur(10px);
	border-bottom: 1px solid var(--line-soft);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 72px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-weight: 800;
	font-size: 1.2rem;
	letter-spacing: -0.02em;
	color: var(--ink);
	text-decoration: none;
}

.brand img {
	width: 40px;
	height: 33px;
}

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

.nav-toggle {
	display: none;
	appearance: none;
	background: none;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 0.6rem 0.7rem;
	cursor: pointer;
	line-height: 0;
	color: var(--ink);
	min-width: 44px;
	min-height: 44px;
}

.site-nav ul {
	display: flex;
	align-items: center;
	gap: clamp(0.25rem, 1.5vw, 0.75rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav li {
	display: flex;
	align-items: center;
}

.site-nav a:not(.btn) {
	display: inline-block;
	padding: 0.55rem 0.75rem;
	color: var(--ink-soft);
	font-weight: 600;
	font-size: 0.975rem;
	text-decoration: none;
	border-radius: var(--radius-sm);
}

.site-nav a:not(.btn):hover {
	color: var(--ink);
	background: var(--surface-alt);
}

.site-nav a[aria-current="page"]:not(.btn) {
	color: var(--blue-deep);
	background: var(--blue-tint);
}

.site-nav .btn {
	flex-shrink: 0;
	padding: 0.55rem 1.1rem;
	font-size: 0.925rem;
	line-height: 1.2;
	min-height: 0;
	align-self: center;
}

@media (max-width: 940px) {
	.nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.site-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--surface);
		border-bottom: 1px solid var(--line);
		box-shadow: var(--shadow);
		padding: 0.75rem var(--gutter) 1.25rem;
	}

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

	.site-nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0.25rem;
	}

	.site-nav a:not(.btn) {
		display: block;
		padding: 0.85rem 0.9rem;
		font-size: 1.05rem;
	}

	.site-nav .btn {
		display: inline-flex;
		width: 100%;
		justify-content: center;
		margin-top: 0.75rem;
		padding: 0.85rem 1.25rem;
	}
}

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

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.75rem 1.35rem;
	border-radius: 12px;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.25;
	text-decoration: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	min-height: 44px;
	box-sizing: border-box;
	vertical-align: middle;
	white-space: nowrap;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
	background-image: linear-gradient(120deg, var(--blue) 0%, var(--cyan) 100%);
	background-color: var(--blue);
	color: #fff;
	box-shadow: 0 4px 14px rgba(18, 86, 232, 0.28);
}

.btn--primary:hover {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(18, 86, 232, 0.35);
}

.btn--ghost {
	background: var(--surface);
	color: var(--blue-deep);
	border: 2px solid var(--line);
	box-shadow: none;
	padding: calc(0.75rem - 2px) calc(1.35rem - 2px);
}

.btn--ghost:hover {
	border-color: var(--blue);
	color: var(--blue-deep);
}

.btn--lg {
	padding: 0.9rem 1.75rem;
	font-size: 1.05rem;
}

.btn--lg.btn--ghost {
	padding: calc(0.9rem - 2px) calc(1.75rem - 2px);
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem;
}

.btn-note {
	font-size: 0.9rem;
	color: var(--ink-faint);
}

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

.hero {
	position: relative;
	overflow: hidden;
	background: var(--grad-soft);
	padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.hero::before {
	content: "";
	position: absolute;
	inset: -40% -20% auto auto;
	width: 720px;
	height: 720px;
	background: radial-gradient(closest-side, rgba(18, 86, 232, 0.1), transparent 70%);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: clamp(2rem, 5vw, 4rem);
}

.hero .lede {
	max-width: 34em;
}

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

/* Search-mock visual: search field + result cards + map pin */
.search-mock {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 1.4rem;
	display: grid;
	gap: 0.9rem;
}

.search-mock__field {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	border: 2px solid var(--line);
	border-radius: 999px;
	padding: 0.75rem 1.1rem;
	color: var(--ink-soft);
	font-size: 0.975rem;
	background: var(--bg);
}

.search-mock__field svg {
	flex: none;
	color: var(--cyan);
}

.search-mock__caret {
	display: inline-block;
	width: 2px;
	height: 1.1em;
	background: var(--blue);
	margin-left: 2px;
	vertical-align: text-bottom;
	animation: blink 1.1s steps(1) infinite;
}

@keyframes blink {
	50% { opacity: 0; }
}

.result-card {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius);
	padding: 0.85rem 1rem;
	background: #fff;
	box-shadow: var(--shadow-sm);
}

.result-card--highlight {
	border-color: rgba(18, 86, 232, 0.35);
	background: linear-gradient(120deg, #fbfdff, #f4f9ff);
}

.result-card__icon {
	flex: none;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: grid;
	place-items: center;
}

.result-card__icon--map { background: var(--green-tint); color: var(--green); }
.result-card__icon--ai { background: var(--violet-tint); color: var(--violet); }
.result-card__icon--star { background: var(--amber-tint); color: var(--amber); }
.result-card__icon--web { background: var(--cyan-tint); color: var(--cyan); }

.result-card__title {
	font-weight: 700;
	font-size: 0.95rem;
	margin: 0;
}

.result-card__meta {
	font-size: 0.85rem;
	color: var(--ink-faint);
	margin: 0;
}

.score-chip {
	margin-left: auto;
	flex: none;
	font-family: var(--font-mono);
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--green);
	background: var(--green-tint);
	border-radius: 999px;
	padding: 0.25rem 0.65rem;
	align-self: center;
}

.score-chip--warn { color: var(--amber); background: var(--amber-tint); }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card {
	background: var(--surface);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	padding: clamp(1.4rem, 3vw, 2rem);
	box-shadow: var(--shadow-sm);
}

.card--lift {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card--lift:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
}

.card h3 a {
	color: inherit;
	text-decoration: none;
}

.card h3 a:hover {
	color: var(--blue-deep);
}

.card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	margin-bottom: 1.1rem;
}

.card__icon--blue { background: var(--blue-tint); color: var(--blue); }
.card__icon--cyan { background: var(--cyan-tint); color: var(--cyan); }
.card__icon--violet { background: var(--violet-tint); color: var(--violet); }
.card__icon--green { background: var(--green-tint); color: var(--green); }
.card__icon--amber { background: var(--amber-tint); color: var(--amber); }

.card > :last-child {
	margin-bottom: 0;
}

/* Checklist */
.checklist {
	list-style: none;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.checklist li {
	position: relative;
	padding-left: 2rem;
}

.checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.28em;
	width: 1.15em;
	height: 1.15em;
	border-radius: 50%;
	background: var(--green-tint) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="none" stroke="%230e9f6e" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round"><path d="M3.5 8.5l3 3 6-7"/></svg>') center / 62% no-repeat;
}

/* Steps */
.steps {
	list-style: none;
	counter-reset: step;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(1rem, 2.5vw, 1.5rem);
}

.steps li {
	counter-increment: step;
	background: var(--surface);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	padding: 1.6rem;
	box-shadow: var(--shadow-sm);
}

.steps li::before {
	content: counter(step, decimal-leading-zero);
	display: inline-grid;
	place-items: center;
	font-family: var(--font-mono);
	font-weight: 700;
	font-size: 0.95rem;
	color: #fff;
	background: var(--grad-accent);
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	margin-bottom: 1rem;
}

.steps h3 {
	margin-bottom: 0.35em;
}

.steps p {
	margin: 0;
	color: var(--ink-soft);
}

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

/* Audience chips */
.audience-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 0.85rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.audience-grid li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--surface);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius);
	padding: 0.9rem 1.1rem;
	font-weight: 600;
	font-size: 0.975rem;
	box-shadow: var(--shadow-sm);
}

.audience-grid svg {
	flex: none;
	color: var(--cyan);
}

/* Pricing panel */
.price-panel {
	position: relative;
	background: var(--surface);
	border: 2px solid rgba(18, 86, 232, 0.25);
	border-radius: var(--radius-lg);
	padding: clamp(1.75rem, 4vw, 2.75rem);
	box-shadow: var(--shadow);
}

.price-tag {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	margin: 0.5rem 0 1rem;
}

.price-tag__amount {
	font-size: clamp(2.4rem, 5vw, 3.2rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	background: var(--grad-accent);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.price-tag__term {
	color: var(--ink-faint);
	font-weight: 600;
}

.badge {
	display: inline-block;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--blue-deep);
	background: var(--blue-tint);
	border-radius: 999px;
	padding: 0.3rem 0.8rem;
}

.badge--green { color: var(--green); background: var(--green-tint); }
.badge--violet { color: var(--violet); background: var(--violet-tint); }

/* Compare (check vs roadmap) */
.compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1rem, 3vw, 2rem);
	align-items: stretch;
}

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

.tagline-rule {
	border: 0;
	height: 3px;
	width: 72px;
	border-radius: 3px;
	background: var(--grad-accent);
	margin: 0 0 1.4rem;
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.form {
	display: grid;
	gap: 1.15rem;
}

.form-row {
	display: grid;
	gap: 1.15rem;
	grid-template-columns: 1fr 1fr;
}

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

.field label {
	display: block;
	font-weight: 700;
	font-size: 0.95rem;
	margin-bottom: 0.4rem;
}

.field .hint {
	display: block;
	font-weight: 400;
	font-size: 0.85rem;
	color: var(--ink-faint);
	margin-top: 0.15rem;
}

.field input,
.field select,
.field textarea {
	width: 100%;
	font: inherit;
	color: var(--ink);
	background: var(--surface);
	border: 2px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 0.8rem 1rem;
	min-height: 48px;
}

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

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 1px;
	border-color: var(--blue);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
	border-color: #c0341d;
}

.field-error {
	display: none;
	color: #b03018;
	font-size: 0.9rem;
	font-weight: 600;
	margin-top: 0.35rem;
}

.field-error.is-visible {
	display: block;
}

.form-status {
	border-radius: var(--radius-sm);
	padding: 1rem 1.2rem;
	font-weight: 600;
	display: none;
}

.form-status.is-success {
	display: block;
	background: var(--green-tint);
	color: #0a6b4b;
	border: 1px solid rgba(14, 159, 110, 0.35);
}

.form-status.is-error {
	display: block;
	background: #fbe9e5;
	color: #9c2a14;
	border: 1px solid rgba(192, 52, 29, 0.35);
}

/* --------------------------------------------------------------------------
   Insights / articles
   -------------------------------------------------------------------------- */

.breadcrumbs {
	font-size: 0.9rem;
	color: var(--ink-faint);
	margin-bottom: 1.5rem;
}

.breadcrumbs ol {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	padding: 0;
	margin: 0;
}

.breadcrumbs li + li::before {
	content: "/";
	margin-right: 0.35rem;
	color: var(--line);
}

.breadcrumbs a {
	color: var(--ink-faint);
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 1rem;
	color: var(--ink-faint);
	font-size: 0.925rem;
	margin-bottom: 2rem;
}

.article-body {
	max-width: 46em;
}

.article-body h2 {
	margin-top: 2em;
	font-size: 1.5rem;
}

.article-body h3 {
	margin-top: 1.6em;
}

.article-cta {
	margin-top: 3rem;
	background: var(--grad-soft);
	border: 1px solid var(--line-soft);
	border-radius: var(--radius-lg);
	padding: clamp(1.5rem, 3vw, 2.25rem);
}

.article-cta h2 {
	margin-top: 0;
}

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

.cta-band {
	background: linear-gradient(135deg, #0e1b2c 0%, #12325e 60%, #0c4a63 100%);
	color: #eef4fb;
	text-align: center;
	padding-block: clamp(3.5rem, 8vw, 6rem);
}

.cta-band h2 {
	color: #fff;
	font-size: clamp(1.8rem, 4.5vw, 2.7rem);
}

.cta-band .lede {
	color: #c4d4e8;
	margin-inline: auto;
	max-width: 34em;
}

.cta-band .btn--primary {
	box-shadow: 0 6px 20px rgba(10, 166, 201, 0.3);
}

.cta-band .btn-note {
	color: #9db4cf;
	display: block;
	margin-top: 1rem;
}

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

.site-footer {
	background: #0e1b2c;
	color: #b9c8dc;
	padding-block: clamp(2.5rem, 6vw, 4rem) 2rem;
	font-size: 0.95rem;
}

.site-footer a {
	color: #dbe6f3;
}

.site-footer a:hover {
	color: #fff;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

@media (max-width: 820px) {
	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 540px) {
	.site-footer__grid {
		grid-template-columns: 1fr;
	}
}

.site-footer h2 {
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8fa5c0;
	margin-bottom: 1rem;
}

.site-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 0.55rem;
}

.site-footer .brand {
	color: #fff;
	margin-bottom: 0.85rem;
}

.site-footer .brand img {
	filter: invert(1) brightness(1.6);
}

.site-footer__legal {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.75rem;
	color: #8fa5c0;
	font-size: 0.875rem;
}

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

.page-hero {
	background: var(--grad-soft);
	border-bottom: 1px solid var(--line-soft);
	padding-block: clamp(2.75rem, 6vw, 4.5rem);
}

.page-hero .lede {
	max-width: 40em;
}

/* --------------------------------------------------------------------------
   Motion & preferences
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
	.reveal {
		opacity: 0;
		transform: translateY(14px);
		transition: opacity 0.55s ease, transform 0.55s ease;
	}

	.reveal.is-visible {
		opacity: 1;
		transform: none;
	}
}

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

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