/* Design tokens and components — copied from design/mockups/sd-light.css (approved 2026-09-15). WordPress-only additions live in sd-wp.css. */

:root {
	--paper: #ffffff;
	--tint: #f6f7fb;
	--tint-strong: #eef1f8;
	--ink: #0b1220;
	--ink-soft: #475569;
	--ink-faint: #94a3b8;
	--line: #e2e8f0;
	--line-soft: #edf0f6;
	--brand: #047857;
	--brand-bright: #10b981;
	--brand-wash: #ecfdf5;
	--amber: #d97706;
	--amber-wash: #fffbeb;
	--red: #dc2626;
	--shadow-sm: 0 1px 2px rgb(11 18 32 / 0.05);
	--shadow-md: 0 12px 28px -14px rgb(11 18 32 / 0.18);
	--shadow-lg: 0 30px 60px -24px rgb(11 18 32 / 0.22);
	--radius-lg: 20px;
	--radius-md: 14px;
	--radius-sm: 10px;
	--display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
	--body: "Manrope", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
	--gutter: clamp(16px, 4vw, 40px);
	--ease: cubic-bezier(0.2, 0.7, 0.2, 1);

	/* Hub colors — used for tile accents, chips, hero bands. Distinct hues, not brand green. */
	--hub-sales: #2563eb;
	--hub-sales-wash: #eff6ff;
	--hub-marketing: #d12370;
	--hub-marketing-wash: #fdf2f8;
	--hub-social: #9333ea;
	--hub-social-wash: #f5f3ff;
	--hub-cs: #077d99;
	--hub-cs-wash: #ecfeff;
	--hub-collab: #0b8076;
	--hub-collab-wash: #f0fdfa;
	--hub-comms: #4f46e5;
	--hub-comms-wash: #eef2ff;
	--hub-hr: #ad5f05;
	--hub-hr-wash: #fffbeb;
	--hub-finance: #4f800a;
	--hub-finance-wash: #f7fee7;
	--hub-ecom: #c3490a;
	--hub-ecom-wash: #fff7ed;
	--hub-dev: #475569;
	--hub-dev-wash: #f1f5f9;
	--hub-security: #d82323;
	--hub-security-wash: #fef2f2;
	--hub-design: #bb25cd;
	--hub-design-wash: #fdf4ff;
	--hub-content: #9a6903;
	--hub-content-wash: #fefce8;
	--hub-ai: #7c3aed;
	--hub-ai-wash: #f5f3ff;
	--hub-ops: #b45309;
	--hub-ops-wash: #fffbeb;
}

* {
	box-sizing: border-box;
}

html {
	color-scheme: light;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--body);
	font-size: 1.0625rem;
	line-height: 1.55;
	padding-inline: var(--gutter);
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--brand);
	text-decoration: none;
}

img {
	max-width: 100%;
}

.container {
	max-width: 1240px;
	margin-inline: auto;
}

.full {
	margin-inline: calc(-1 * var(--gutter));
	padding-inline: var(--gutter);
}

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

header.site {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgb(255 255 255 / 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}

.site-in {
	max-width: 1240px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding-block: 0.9rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--display);
	font-weight: 700;
	font-size: 1.3rem;
	letter-spacing: 0.01em;
	color: var(--ink);
	white-space: nowrap;
}

.logo .mark {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 9px;
	background: linear-gradient(135deg, var(--brand) 0%, var(--brand-bright) 100%);
	color: #fff;
	font-size: 1rem;
}

nav.main {
	display: flex;
	gap: 1.4rem;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--ink-soft);
	flex: 1;
}

nav.main a:hover {
	color: var(--ink);
}

.search-box {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--tint);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 0.5rem 0.9rem;
	min-width: 200px;
	flex: 1;
	max-width: 340px;
}

.search-box input {
	border: 0;
	background: none;
	outline: 0;
	font: inherit;
	font-size: 0.92rem;
	color: var(--ink);
	width: 100%;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	font: inherit;
	font-weight: 700;
	font-size: 0.94rem;
	border-radius: 10px;
	padding: 0.65rem 1.15rem;
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background-color 0.15s var(--ease);
}

.btn-primary {
	background: var(--brand);
	color: #fff;
	box-shadow: 0 10px 24px -12px rgb(4 120 87 / 0.55);
}

.btn-primary:hover {
	background: #036347;
	transform: translateY(-1px);
}

.btn-ghost {
	background: #fff;
	color: var(--ink);
	border-color: var(--line);
}

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

.btn-sm {
	padding: 0.45rem 0.85rem;
	font-size: 0.85rem;
	border-radius: 8px;
}

.btn-block {
	width: 100%;
}

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

.hero {
	position: relative;
	overflow: hidden;
	padding-block: clamp(2.4rem, 1.6rem + 3vw, 4.2rem) clamp(2rem, 1.4rem + 2vw, 3rem);
}

.hero::before {
	content: "";
	position: absolute;
	inset: -20% -10% auto -10%;
	height: 480px;
	z-index: -1;
	background:
		radial-gradient(420px 260px at 15% 20%, rgb(4 120 87 / 0.14), transparent 70%),
		radial-gradient(380px 260px at 85% 10%, rgb(37 99 235 / 0.12), transparent 70%),
		radial-gradient(360px 260px at 60% 60%, rgb(219 39 119 / 0.08), transparent 70%);
	filter: blur(4px);
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(2rem, 1rem + 3vw, 4rem);
	align-items: center;
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--display);
	font-weight: 600;
	font-size: 0.86rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--brand);
	background: var(--brand-wash);
	border: 1px solid rgb(4 120 87 / 0.18);
	border-radius: 999px;
	padding: 0.3rem 0.8rem;
	margin: 0 0 1.1rem;
}

h1.hero-title {
	font-family: var(--display);
	font-weight: 700;
	font-size: clamp(2.5rem, 1.8rem + 2.8vw, 4rem);
	line-height: 0.98;
	letter-spacing: -0.01em;
	margin: 0 0 1.1rem;
	color: var(--ink);
	text-wrap: balance;
}

h1.hero-title em {
	font-style: normal;
	background: linear-gradient(100deg, var(--brand) 10%, #0ea5e9 90%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-lead {
	max-width: 46ch;
	font-size: 1.15rem;
	color: var(--ink-soft);
	margin: 0 0 1.6rem;
}

.hero-search {
	display: flex;
	gap: 0.6rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 0.5rem;
	box-shadow: var(--shadow-md);
	max-width: 560px;
	margin-bottom: 1.2rem;
}

.hero-search input {
	flex: 1;
	border: 0;
	outline: 0;
	font: inherit;
	font-size: 1rem;
	padding: 0.55rem 0.8rem;
	color: var(--ink);
}

.chip-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.8rem;
}

.chip {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ink-soft);
	background: var(--tint);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 0.35rem 0.85rem;
}

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

.stat-row {
	display: flex;
	gap: clamp(1.4rem, 1rem + 2vw, 2.6rem);
	padding-top: 1.4rem;
	border-top: 1px solid var(--line);
}

.stat b {
	display: block;
	font-family: var(--display);
	font-weight: 700;
	font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem);
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}

.stat span {
	font-size: 0.82rem;
	color: var(--ink-faint);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* Verified-prices card in the hero */

.verify-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 1.4rem;
}

.verify-card header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--display);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-faint);
	margin-bottom: 0.9rem;
}

.verify-card header .dot {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--brand);
	text-transform: none;
	letter-spacing: 0;
	font-weight: 700;
}

.verify-card header .dot::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
}

.verify-row {
	display: grid;
	grid-template-columns: 34px 1fr auto;
	align-items: center;
	gap: 0.7rem;
	padding: 0.55rem 0;
	border-top: 1px solid var(--line-soft);
}

.verify-row:first-of-type {
	border-top: 0;
}

.tile {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	display: grid;
	place-items: center;
	font-family: var(--display);
	font-weight: 700;
	color: #fff;
	font-size: 0.95rem;
}

.verify-name {
	font-weight: 700;
	font-size: 0.93rem;
	color: var(--ink);
	line-height: 1.15;
}

.verify-meta {
	font-size: 0.76rem;
	color: var(--ink-faint);
}

.verify-price {
	text-align: right;
	font-family: var(--display);
	font-weight: 700;
	font-size: 1rem;
	color: var(--ink);
	white-space: nowrap;
}

.verify-price small {
	display: block;
	font-family: var(--body);
	font-weight: 600;
	font-size: 0.68rem;
	color: var(--brand);
}

.verify-card footer {
	margin-top: 1rem;
	padding-top: 0.9rem;
	border-top: 1px solid var(--line);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.82rem;
	color: var(--ink-faint);
}

.verify-card footer a {
	font-weight: 700;
}

/* ---------- Sections ---------- */

section {
	padding-block: clamp(2.4rem, 1.8rem + 2vw, 3.6rem);
}

.section-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem 2rem;
	margin-bottom: 1.8rem;
}

h2.section-title {
	font-family: var(--display);
	font-weight: 700;
	font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.3rem);
	margin: 0.3rem 0 0;
	color: var(--ink);
}

h2.section-title span {
	color: var(--brand);
}

.section-sub {
	max-width: 60ch;
	color: var(--ink-soft);
	margin: 0.5rem 0 0;
}

.arrow-link {
	font-weight: 700;
	font-size: 0.92rem;
	white-space: nowrap;
}

.arrow-link::after {
	content: " →";
}

/* Hub tiles */

.hub-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 1rem;
}

.hub-tile {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 1.1rem;
	box-shadow: var(--shadow-sm);
	transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}

.hub-tile:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: rgb(11 18 32 / 0.12);
}

.hub-icon {
	width: 40px;
	height: 40px;
	border-radius: 11px;
	display: grid;
	place-items: center;
	font-size: 1.2rem;
}

.hub-tile h3 {
	font-family: var(--display);
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0;
	color: var(--ink);
}

.hub-tile .count {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--ink-faint);
}

/* Trust steps */

.step-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.1rem;
}

.step {
	background: var(--tint);
	border-radius: var(--radius-md);
	padding: 1.4rem 1.2rem;
}

.step .num {
	font-family: var(--display);
	font-weight: 700;
	font-size: 2rem;
	color: var(--brand);
	line-height: 1;
	margin-bottom: 0.6rem;
}

.step h3 {
	font-family: var(--display);
	font-size: 1.2rem;
	margin: 0 0 0.4rem;
}

.step p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--ink-soft);
}

/* CTA band */

.cta-band {
	background: linear-gradient(120deg, #eafff4 0%, #eef7ff 100%);
	border: 1px solid rgb(4 120 87 / 0.15);
	border-radius: 24px;
	padding: clamp(1.8rem, 1.2rem + 2vw, 3rem);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1.2rem;
}

.cta-band h2 {
	font-family: var(--display);
	font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
	margin: 0 0 0.3rem;
}

.cta-band p {
	margin: 0;
	color: var(--ink-soft);
	max-width: 46ch;
}

.cta-actions {
	display: flex;
	gap: 0.7rem;
	flex-wrap: wrap;
}

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

footer.site {
	margin-top: 2rem;
	padding-block: 2.4rem 1.6rem;
	border-top: 1px solid var(--line);
	background: var(--tint);
}

.foot-grid {
	max-width: 1240px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 1.6rem;
}

.foot-grid h4 {
	font-family: var(--display);
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ink-faint);
	margin: 0 0 0.7rem;
}

.foot-grid a {
	display: block;
	color: var(--ink-soft);
	font-size: 0.92rem;
	margin-bottom: 0.45rem;
}

.foot-grid a:hover {
	color: var(--ink);
}

.foot-bottom {
	max-width: 1240px;
	margin: 1.6rem auto 0;
	padding-top: 1.2rem;
	border-top: 1px solid var(--line);
	font-size: 0.8rem;
	color: var(--ink-faint);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.6rem;
}

/* ---------- Breadcrumb ---------- */

.crumb {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.85rem;
	color: var(--ink-faint);
	padding-block: 1rem;
	flex-wrap: wrap;
}

.crumb a {
	color: var(--ink-soft);
	font-weight: 600;
}

.crumb .sep {
	color: var(--line);
}

/* ---------- Category / list page ---------- */

.hub-band {
	border-radius: 22px;
	padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
	margin-bottom: 1.6rem;
	display: grid;
	gap: 1.2rem;
}

.hub-band h1 {
	font-family: var(--display);
	font-weight: 700;
	font-size: clamp(2rem, 1.5rem + 2vw, 3rem);
	margin: 0.4rem 0 0.5rem;
	color: var(--ink);
}

.hub-band p {
	max-width: 65ch;
	color: var(--ink-soft);
	margin: 0;
}

.hub-meta {
	display: flex;
	gap: 1.4rem;
	flex-wrap: wrap;
	font-size: 0.86rem;
	color: var(--ink-soft);
	font-weight: 600;
}

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 1.6rem;
	align-items: center;
}

.filter-pill {
	font-size: 0.86rem;
	font-weight: 700;
	color: var(--ink-soft);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 0.5rem 1rem;
	cursor: pointer;
}

.filter-pill.active {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

.filter-sep {
	width: 1px;
	height: 20px;
	background: var(--line);
	margin-inline: 0.3rem;
}

.software-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.1rem;
}

.software-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 1.3rem;
	box-shadow: var(--shadow-sm);
	transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.software-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.card-head {
	display: flex;
	gap: 0.8rem;
	align-items: center;
}

.card-head h3 {
	margin: 0 0 0.15rem;
	font-family: var(--display);
	font-size: 1.4rem;
}

.card-head h3 a {
	color: var(--ink);
}

.card-tag {
	font-size: 0.72rem;
	font-weight: 700;
	padding: 0.12rem 0.55rem;
	border-radius: 999px;
	display: inline-block;
}

.card-fact {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	background: var(--tint);
	border-radius: 10px;
	padding: 0.6rem 0.8rem;
}

.card-fact .price {
	font-family: var(--display);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--ink);
}

.card-fact .verified {
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--brand);
}

.badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.badge {
	font-size: 0.74rem;
	font-weight: 700;
	padding: 0.2rem 0.6rem;
	border-radius: 999px;
	background: var(--brand-wash);
	color: var(--brand);
}

.badge.neutral {
	background: var(--tint);
	color: var(--ink-soft);
}

.card-cta {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
	margin-top: auto;
}

.paid-label {
	font-size: 0.68rem;
	font-weight: 700;
	color: var(--ink-faint);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: -0.4rem;
}

.rank-note {
	background: var(--tint);
	border-radius: var(--radius-md);
	padding: 1.1rem 1.3rem;
	font-size: 0.92rem;
	color: var(--ink-soft);
	margin-bottom: 1.6rem;
	display: flex;
	gap: 0.7rem;
	align-items: flex-start;
}

.rank-note b {
	color: var(--ink);
}

/* ---------- Profile page ---------- */

.profile-head {
	border-radius: 24px;
	padding: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
	margin-bottom: 1.6rem;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 340px;
	gap: 2rem;
}

.profile-id {
	display: flex;
	gap: 1rem;
	align-items: center;
	margin-bottom: 1rem;
}

.profile-id .tile {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	font-size: 1.7rem;
}

.profile-id h1 {
	font-family: var(--display);
	font-weight: 700;
	font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.6rem);
	margin: 0 0 0.2rem;
}

.profile-id p {
	margin: 0;
	color: var(--ink-soft);
	max-width: 50ch;
}

.fact-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 1.3rem;
	display: grid;
	gap: 0.9rem;
	align-content: start;
}

.fact-price {
	font-family: var(--display);
	font-weight: 700;
	font-size: 2.1rem;
	color: var(--ink);
	line-height: 1;
}

.fact-price small {
	display: block;
	font-family: var(--body);
	font-weight: 700;
	font-size: 0.8rem;
	color: var(--brand);
	margin-top: 0.3rem;
}

.fact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
}

.fact-item {
	background: var(--tint);
	border-radius: 10px;
	padding: 0.5rem 0.7rem;
}

.fact-item .k {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--ink-faint);
}

.fact-item .v {
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--ink);
}

.article {
	max-width: 760px;
}

.article h2 {
	font-family: var(--display);
	font-weight: 700;
	font-size: 1.6rem;
	margin: 2.2rem 0 0.8rem;
}

.article h2:first-child {
	margin-top: 0;
}

.key-facts {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
}

.key-facts li {
	display: flex;
	gap: 0.6rem;
	background: var(--tint);
	border-radius: 10px;
	padding: 0.65rem 0.9rem;
	font-size: 0.94rem;
}

.key-facts .n {
	font-family: var(--display);
	font-weight: 700;
	color: var(--brand);
}

.who-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.who-card {
	border-radius: var(--radius-md);
	padding: 1.1rem 1.2rem;
	border: 1px solid var(--line);
}

.who-card.yes {
	background: var(--brand-wash);
	border-color: rgb(4 120 87 / 0.2);
}

.who-card h3 {
	font-family: var(--display);
	font-size: 1.05rem;
	margin: 0 0 0.5rem;
}

.who-card ul {
	margin: 0;
	padding-left: 1.1rem;
	font-size: 0.92rem;
}

table.pricing {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

table.pricing th,
table.pricing td {
	text-align: left;
	padding: 0.6rem 0.7rem;
	border-bottom: 1px solid var(--line);
}

table.pricing thead th {
	font-family: var(--display);
	font-weight: 700;
	background: var(--tint);
	font-size: 0.85rem;
}

.checklist {
	display: grid;
	gap: 0.5rem;
}

.check-row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.55rem 0.8rem;
	border-radius: 10px;
	background: var(--tint);
	font-size: 0.9rem;
}

.check-row .yes {
	color: var(--brand);
	font-weight: 700;
}

.side-nav {
	position: sticky;
	top: 90px;
	display: grid;
	gap: 1.2rem;
	align-content: start;
}

.side-box {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	padding: 1rem 1.1rem;
}

.side-box h4 {
	font-family: var(--display);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0 0 0.6rem;
	color: var(--ink-faint);
}

.side-alt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-top: 1px solid var(--line-soft);
	font-size: 0.88rem;
}

.side-alt:first-of-type {
	border-top: 0;
}

.side-alt b {
	color: var(--ink);
}

.side-alt .delta {
	color: var(--brand);
	font-weight: 700;
}

.mobile-cta {
	display: none;
}

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

.two-col {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 2.5rem;
}

.article-body {
	display: grid;
	gap: 1.6rem;
}

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

@media (max-width: 960px) {
	.hero-grid,
	.two-col,
	.profile-head {
		grid-template-columns: minmax(0, 1fr);
	}

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

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

	.side-nav {
		position: static;
	}
}

@media (max-width: 640px) {
	nav.main,
	.search-box {
		display: none;
	}

	.step-grid,
	.who-grid,
	.fact-grid {
		grid-template-columns: 1fr;
	}

	.stat-row {
		flex-wrap: wrap;
		row-gap: 0.8rem;
	}

	.foot-grid {
		grid-template-columns: 1fr 1fr;
	}

	body {
		padding-bottom: 4.5rem;
	}

	.mobile-cta {
		display: flex;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 30;
		padding: 0.7rem var(--gutter);
		padding-bottom: max(0.7rem, env(safe-area-inset-bottom));
		background: #fff;
		border-top: 1px solid var(--line);
		box-shadow: 0 -8px 24px -12px rgb(11 18 32 / 0.15);
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
	}
}
