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

:root {
	--void: #0b1220;
	--void-2: #141b2d;
	--cream: #faf6ef;
	--ink: #1c1917;
	--mist: rgba(255, 255, 255, 0.72);
	/* Cool blue atmosphere + amber CTAs (legacy names kept for class hooks) */
	--fuchsia: #6366f1;
	--violet: #2563eb;
	--cyan: #22d3ee;
	--lime: #65a30d;
	--amber: #f59e0b;
	--rose: #e11d48;
	--font-display: 'Familjen Grotesk', system-ui, sans-serif;
	--font-body: 'IBM Plex Sans', system-ui, sans-serif;
	--font-mono: 'IBM Plex Mono', ui-monospace, monospace;
	--radius-pill: 999px;
	--radius-lg: 1.2rem;
	--radius-blob: 2.4rem;
	--max: 80rem;
	--cta-h: 4.6rem;
	--pass: var(--lime);
	--warn: var(--amber);
	--fail: var(--rose);
	--muted: rgba(255, 255, 255, 0.45);
	--rule: rgba(255, 255, 255, 0.12);
	--stone: #f0eeea;
	--paper: #fffdfa;
	--signal: #b45309;
	--link: #1d4ed8;
	--brand-blue: #1b9dd9;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation: none !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.6rem;
	line-height: 1.55;
	color: var(--ink);
	background: var(--void);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body::after {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.035;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.text-link {
	color: var(--cyan);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

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

img[class*='__photo'],
img[class*='__main'],
img[class*='__float'],
img[class*='__img'],
img[class*='__avatar'],
img[class*='__face'] {
	object-fit: cover;
	object-position: center;
}

a {
	color: inherit;
}

:focus-visible {
	outline: 2px solid var(--cyan);
	outline-offset: 3px;
}

.container {
	width: min(100% - 2.8rem, var(--max));
	margin-inline: auto;
}

/* ─── Mesh atmosphere ─── */
.mesh {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 12% 18%, rgba(37, 99, 235, 0.38) 0%, transparent 55%),
		radial-gradient(ellipse 60% 50% at 88% 12%, rgba(34, 211, 238, 0.22) 0%, transparent 50%),
		radial-gradient(ellipse 70% 60% at 72% 82%, rgba(99, 102, 241, 0.2) 0%, transparent 55%),
		radial-gradient(ellipse 50% 40% at 8% 88%, rgba(27, 157, 217, 0.16) 0%, transparent 50%),
		var(--void);
}

.mesh--light {
	background:
		radial-gradient(ellipse 60% 50% at 90% 10%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse 50% 40% at 5% 80%, rgba(27, 157, 217, 0.07) 0%, transparent 50%),
		var(--cream);
}

.orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	pointer-events: none;
	animation: drift 18s ease-in-out infinite;
}

.orb--1 {
	width: 420px;
	height: 420px;
	background: rgba(37, 99, 235, 0.32);
	top: -8%;
	right: -5%;
}

.orb--2 {
	width: 320px;
	height: 320px;
	background: rgba(34, 211, 238, 0.2);
	bottom: 10%;
	left: -8%;
	animation-delay: -6s;
}

.orb--3 {
	width: 200px;
	height: 200px;
	background: rgba(99, 102, 241, 0.22);
	top: 40%;
	left: 45%;
	animation-delay: -12s;
}

@media (max-width: 767px) {
	.orb--2,
	.orb--3,
	.floating-shape,
	.hero-watermark,
	.mesh--animated {
		display: none;
	}
}

@keyframes drift {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(30px, -20px) scale(1.05);
	}
	66% {
		transform: translate(-20px, 25px) scale(0.95);
	}
}

/* ─── Floating nav ─── */
.nav-float {
	position: sticky;
	top: 1rem;
	z-index: 100;
	padding: 0 1.2rem;
	margin-bottom: -3.2rem;
}

.nav-float__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	width: min(100%, var(--max));
	margin-inline: auto;
	padding: 0.55rem 1rem 0.55rem 1.2rem;
	background: rgba(11, 18, 32, 0.72);
	backdrop-filter: blur(20px) saturate(1.5);
	border: 1px solid rgba(34, 211, 238, 0.18);
	border-radius: var(--radius-pill);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.logo {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	letter-spacing: -0.04em;
	display: flex;
	align-items: center;
}

.logo-img {
	height: 2.1rem;
	width: auto;
	display: block;
}

.logo em {
	font-style: normal;
	background: linear-gradient(135deg, var(--brand-blue), var(--cyan));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.nav-float nav {
	display: none;
	align-items: center;
	gap: 0.15rem;
	min-width: 0;
}

.nav-float nav a {
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--mist);
	text-decoration: none;
	padding: 0.45rem 0.7rem;
	border-radius: var(--radius-pill);
	white-space: nowrap;
	transition: color 0.2s, background 0.2s;
}

.nav-float nav a:hover {
	color: #fff;
	background: rgba(34, 211, 238, 0.12);
}

.nav-cta {
	background: linear-gradient(135deg, var(--signal), var(--amber)) !important;
	color: #fff !important;
	font-weight: 600 !important;
	padding: 0.5rem 1rem !important;
}

.nav-tel {
	font-family: var(--font-mono);
	font-size: 1.15rem !important;
	padding: 0.45rem 0.6rem !important;
}

.menu-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	min-width: 4.4rem;
	min-height: 4.4rem;
	padding: 0 1.4rem 0 1.2rem;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: var(--radius-pill);
	color: #fff;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.menu-btn__label {
	font-family: var(--font-body);
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.nav-backdrop {
	position: fixed;
	inset: 0;
	z-index: 99;
	background: rgba(7, 6, 15, 0.72);
	backdrop-filter: blur(4px);
}

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

.nav-drawer {
	position: fixed;
	top: calc(1rem + 5rem);
	left: 50%;
	z-index: 101;
	display: none;
	flex-direction: column;
	gap: 0;
	width: min(calc(100% - 2.4rem), 28rem);
	max-height: calc(100dvh - 8rem - env(safe-area-inset-bottom));
	padding: 0.8rem;
	background: rgba(11, 18, 32, 0.96);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(34, 211, 238, 0.16);
	border-radius: 1.6rem;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
	transform: translateX(-50%) translateY(-0.8rem);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	overflow: auto;
}

.nav-drawer.is-open {
	display: flex;
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	pointer-events: auto;
}

.nav-drawer__links {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.nav-drawer a {
	display: flex;
	align-items: center;
	min-height: 4.4rem;
	color: var(--mist);
	text-decoration: none;
	padding: 0.8rem 1.2rem;
	font-size: 1.5rem;
	font-weight: 500;
	border-radius: 1rem;
	transition: color 0.2s, background 0.2s;
}

.nav-drawer a:hover,
.nav-drawer a:focus-visible {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
}

.nav-drawer__actions {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin-top: 0.8rem;
	padding-top: 0.8rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-drawer__cta {
	justify-content: center;
	background: linear-gradient(135deg, var(--signal), var(--amber)) !important;
	color: #fff !important;
	font-weight: 600 !important;
}

.nav-drawer__tel {
	justify-content: center;
	font-family: var(--font-mono);
	font-size: 1.35rem !important;
	color: var(--cyan) !important;
}

body.nav-open {
	overflow: hidden;
}

/* Keep hamburger until the bar has room; avoids a crushed desktop nav */
@media (min-width: 1100px) {
	.nav-float nav {
		display: flex;
	}
	.menu-btn,
	.nav-backdrop,
	.nav-drawer {
		display: none !important;
	}
}

@media (max-width: 1199px) {
	.nav-tel {
		display: none !important;
	}
}

/* ─── Typography ─── */
h1,
h2,
h3 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.04em;
}

.display {
	font-family: var(--font-display);
	font-size: clamp(3.6rem, 8vw, 8.4rem);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.03em;
	color: #fff;
}

.display__line {
	display: block;
}

.display__gradient {
	background: linear-gradient(135deg, #fff 0%, var(--cyan) 42%, var(--violet) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.section-title {
	font-size: clamp(2.8rem, 5vw, 5rem);
	color: var(--ink);
	margin: 0;
}

.section-title--light {
	color: #fff;
}

.lead {
	font-size: 1.8rem;
	line-height: 1.5;
	max-width: 36ch;
}

.lead--light {
	color: var(--mist);
}

.pill-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1.2rem;
	font-family: var(--font-mono);
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-pill);
	margin-bottom: 2rem;
}

.pill-badge::before {
	content: '';
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--lime);
	box-shadow: 0 0 12px var(--lime);
}

/* ─── Buttons ─── */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 1.2rem 2.4rem;
	border-radius: var(--radius-pill);
	font-family: var(--font-body);
	font-size: 1.45rem;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background: linear-gradient(135deg, var(--signal), var(--fuchsia) 55%, #ea580c);
	color: #fff;
	box-shadow: 0 8px 32px rgba(180, 83, 9, 0.4);
}

.btn-primary:hover {
	box-shadow: 0 12px 40px rgba(217, 119, 6, 0.45);
}

.btn-ghost {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(8px);
}

.btn-dark {
	background: var(--ink);
	color: #fff;
}

.btn-outline {
	background: transparent;
	color: var(--ink);
	border: 2px solid var(--ink);
}

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

.btn-row--spaced {
	margin-top: 2.4rem;
}

@media (max-width: 539px) {
	.btn-row--stack-sm .btn {
		width: 100%;
		justify-content: center;
	}
}

/* ─── Spectacle hero ─── */
.spectacle-hero {
	position: relative;
	min-height: 92vh;
	padding: 8rem 0 6rem;
	overflow: hidden;
}

@media (max-width: 767px) {
	.spectacle-hero {
		min-height: auto;
		padding: 6.5rem 0 4rem;
	}

	.centerpiece {
		display: flex;
		flex-direction: column;
	}

	.centerpiece__main {
		order: 1;
	}

	.centerpiece__actions {
		order: 2;
	}

	.centerpiece__aside {
		order: 3;
	}

	.centerpiece__aside .photo-stack__main {
		max-height: 16rem;
		object-position: center 20%;
	}

	.centerpiece__aside .trust-chips {
		flex-wrap: wrap;
	}

	.hero-watermark {
		opacity: 0.35;
		font-size: clamp(8rem, 24vw, 12rem);
	}

	.page-hero {
		padding: 8rem 0 4rem;
	}

	.photo-stack__float {
		left: 0;
		bottom: -1rem;
		width: 42%;
	}

	.hero-scroll-hint {
		display: none;
	}

	.hero-human__caption {
		margin-top: 2.4rem;
	}

	.marquee-wrap {
		margin-top: 2rem;
	}
}

.spectacle-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(37, 99, 235, 0.14), transparent 70%);
	pointer-events: none;
	z-index: 1;
}

.hero-watermark {
	position: absolute;
	right: -5%;
	top: 15%;
	font-family: var(--font-display);
	font-size: clamp(12rem, 28vw, 32rem);
	font-weight: 800;
	line-height: 0.8;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	pointer-events: none;
	user-select: none;
	z-index: 0;
}

.spectacle-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.spectacle-hero__tool {
	order: -1;
	transform: rotate(-1.5deg);
}

.hero-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2.4rem;
}

.awards-row {
	display: flex;
	gap: 1.2rem;
	margin-top: 2.4rem;
	align-items: center;
}

.award-badge {
	height: 5.2rem;
	width: auto;
	max-width: 11rem;
	display: block;
	object-fit: contain;
}

/* Award PNGs are white-on-transparent: keep a dark panel, never white */
.awards-chip {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.2rem 1.6rem;
	margin-top: 1.2rem;
	padding: 1.1rem 1.4rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 1.2rem;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.awards-chip--centered {
	display: flex;
	justify-content: center;
	margin: 2rem auto 0;
	width: fit-content;
	max-width: 100%;
}

.hero-human {
	position: relative;
	align-self: start;
	width: 100%;
	min-width: 0;
}

.photo-stack {
	position: relative;
	min-width: 0;
}

.photo-stack__main {
	width: 100%;
	height: auto;
	aspect-ratio: 1640 / 924;
	object-fit: cover;
	object-position: center;
	border-radius: 2.4rem;
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
	border: 3px solid rgba(255, 255, 255, 0.15);
	transform: rotate(2deg);
}

.photo-stack__float {
	position: absolute;
	bottom: -2rem;
	left: -1.5rem;
	width: 45%;
	height: auto;
	aspect-ratio: 1024 / 683;
	object-fit: cover;
	object-position: center;
	border-radius: 1.6rem;
	border: 3px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	transform: rotate(-4deg);
}

.hero-human__caption {
	margin-top: 3.6rem;
	font-size: 1.4rem;
	color: var(--mist);
	max-width: 36ch;
}

@media (min-width: 960px) {
	.spectacle-hero__inner {
		display: grid;
		grid-template-columns: 0.95fr 1.05fr;
		gap: 3rem;
		align-items: start;
	}
	.spectacle-hero__tool {
		order: 0;
		transform: rotate(-2deg);
	}
	.spectacle-hero--human .spectacle-hero__tool {
		order: unset;
		transform: none;
	}
}

/* ─── Marquee stats ─── */
.marquee-wrap {
	position: relative;
	z-index: 2;
	margin-top: 4rem;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee {
	display: flex;
	gap: 4rem;
	width: max-content;
	animation: marquee 28s linear infinite;
}

.marquee__item {
	display: flex;
	align-items: baseline;
	gap: 1.2rem;
	white-space: nowrap;
	font-family: var(--font-mono);
}

.marquee__val {
	font-family: var(--font-display);
	font-size: 3.2rem;
	font-weight: 800;
	background: linear-gradient(135deg, var(--lime), var(--cyan));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.marquee__label {
	font-size: 1.3rem;
	color: var(--mist);
}

@keyframes marquee {
	to {
		transform: translateX(-50%);
	}
}

/* ─── Audit glass card ─── */
.audit {
	position: relative;
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(24px) saturate(1.5);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 2.4rem;
	overflow: hidden;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.05) inset,
		0 40px 80px rgba(0, 0, 0, 0.45),
		0 0 120px rgba(180, 83, 9, 0.2);
}

.audit::before {
	content: '';
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(135deg, var(--signal), var(--amber), var(--fuchsia));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.audit__badge {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.4rem 2rem 0;
	font-family: var(--font-mono);
	font-size: 1.1rem;
	color: var(--mist);
}

.audit__badge strong {
	color: #fff;
	font-weight: 500;
}

.audit__live {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--lime);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.95rem;
}

.audit__live::before {
	content: '';
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--lime);
	box-shadow: 0 0 10px var(--lime);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	50% {
		opacity: 0.4;
	}
}

.audit__body {
	padding: 1.6rem 2rem 2rem;
}

.audit__form {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.audit__form label {
	font-family: var(--font-mono);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--mist);
}

.audit__form input {
	padding: 1.4rem 1.6rem;
	font-family: var(--font-mono);
	font-size: 1.45rem;
	color: #fff;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 1.2rem;
}

.audit__form input::placeholder {
	color: rgba(255, 255, 255, 0.35);
}

.audit__form input:focus {
	outline: none;
	border-color: var(--cyan);
	box-shadow: 0 0 0 4px rgba(14, 116, 144, 0.15);
}

.audit__steps {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.audit__step {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 1rem 1.2rem;
	font-family: var(--font-mono);
	font-size: 1.25rem;
	color: var(--mist);
	background: rgba(0, 0, 0, 0.2);
	border-radius: 1rem;
}

.audit__step.is-active {
	background: rgba(180, 83, 9, 0.25);
	color: #fff;
}

.audit__step.is-done {
	color: var(--lime);
}

.spinner {
	width: 1.3rem;
	height: 1.3rem;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-top-color: var(--cyan);
	border-radius: 50%;
	animation: spin 0.7s linear infinite;
	display: inline-block;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.score-ring {
	--score: 0;
	--ring: var(--amber);
	width: 11rem;
	height: 11rem;
	margin: 0 auto 1.2rem;
	border-radius: 50%;
	background: conic-gradient(var(--ring) calc(var(--score) * 3.6deg), rgba(255, 255, 255, 0.1) 0);
	display: grid;
	place-items: center;
}

.score-ring__inner {
	width: 8.4rem;
	height: 8.4rem;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.score-ring__val {
	font-family: var(--font-mono);
	font-size: 3rem;
	font-weight: 600;
	color: #fff;
	line-height: 1;
}

.score-ring__lbl {
	font-family: var(--font-mono);
	font-size: 0.9rem;
	color: var(--mist);
	text-transform: uppercase;
}

.check-rows {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 1.2rem;
}

.check-row {
	display: flex;
	justify-content: space-between;
	padding: 0.9rem 1.2rem;
	background: rgba(0, 0, 0, 0.25);
	border-radius: 0.8rem;
	font-size: 1.35rem;
	color: var(--mist);
}

.check-row span:last-child {
	font-family: var(--font-mono);
	font-weight: 500;
}

.pass {
	color: var(--lime);
}
.warn {
	color: var(--amber);
}
.fail {
	color: var(--rose);
}

.audit__error {
	padding: 1rem;
	background: rgba(251, 113, 133, 0.15);
	border: 1px solid rgba(251, 113, 133, 0.3);
	border-radius: 1rem;
	color: var(--rose);
}

/* ─── Wave divider ─── */
.wave-divider {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: -2px;
}

/* ─── Fix bubbles ─── */
.section-cream {
	position: relative;
	background: var(--cream);
	padding: 8rem 0;
	color: var(--ink);
}

.section-cream p {
	color: #5c5670;
}

.section-cream--flush {
	padding-top: 0;
}

.section-intro {
	font-size: 1.7rem;
	line-height: 1.55;
	color: #5c5670;
	max-width: 52ch;
	margin: 1.2rem 0 0;
}

.section-intro--light {
	color: var(--mist);
}

.section-cream .section-tag {
	font-family: var(--font-mono);
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--violet);
	margin-bottom: 1rem;
	display: block;
}

.bubble-grid {
	display: grid;
	gap: 1.6rem;
	margin-top: 3.2rem;
}

@media (min-width: 768px) {
	.bubble-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.bubble {
	position: relative;
	padding: 2.4rem 2.4rem 2.4rem 3.2rem;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 2rem;
	box-shadow: 0 20px 50px rgba(10, 8, 18, 0.08);
	transition: transform 0.25s, box-shadow 0.25s;
	overflow: hidden;
}

.bubble:nth-child(odd) {
	transform: rotate(-1deg);
}

.bubble:nth-child(even) {
	transform: rotate(1deg);
}

.bubble:hover {
	transform: rotate(0deg) scale(1.02);
	box-shadow: 0 28px 60px rgba(180, 83, 9, 0.15);
}

.bubble__num {
	position: absolute;
	left: 1.2rem;
	top: 1.6rem;
	font-family: var(--font-display);
	font-size: 4rem;
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(180deg, rgba(180, 83, 9, 0.15), transparent);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.bubble__title {
	font-family: var(--font-display);
	font-size: 1.7rem;
	font-weight: 600;
	color: var(--ink);
	margin: 0 0 0.5rem;
	position: relative;
}

.bubble__desc {
	font-size: 1.4rem;
	margin: 0;
	position: relative;
}

/* ─── Pain points ─── */
.pain-grid {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	margin-top: 3.2rem;
}

.pain-card {
	padding: 2rem 2.4rem;
	background: #fff;
	border-radius: 1.6rem;
	box-shadow: 0 12px 40px rgba(10, 8, 18, 0.06);
	border-left: 4px solid var(--violet);
}

.pain-card__tag {
	font-family: var(--font-mono);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--violet);
	display: block;
	margin-bottom: 0.8rem;
}

.pain-card__question {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--ink);
	margin: 0 0 0.6rem;
	line-height: 1.35;
}

.pain-card__pain {
	font-size: 1.5rem;
	color: #5c5670;
	margin: 0 0 1rem;
	line-height: 1.45;
}

.pain-card__arrow {
	font-size: 2rem;
	color: var(--fuchsia);
	margin-bottom: 0.6rem;
}

.pain-card__solution {
	font-size: 1.45rem;
	color: #5c5670;
	margin: 0;
	line-height: 1.5;
}

.pain-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.2rem;
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--violet);
	text-decoration: none;
}

.pain-card__link:hover {
	color: var(--ink);
}

.pain-card__terms {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.2rem;
}

.pain-card__term {
	font-family: var(--font-mono);
	font-size: 0.95rem;
	padding: 0.35rem 0.8rem;
	border-radius: var(--radius-pill);
	background: rgba(180, 83, 9, 0.08);
	color: var(--violet);
	border: 1px solid rgba(180, 83, 9, 0.15);
}

/* ─── Team ─── */
.team-section-head {
	display: grid;
	gap: 2.4rem;
	margin-bottom: 3.2rem;
	align-items: center;
}

.spectacle-hero__copy {
	min-width: 0;
}

.team-section-head__photo {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	object-position: center;
	border-radius: 2rem;
	box-shadow: 0 20px 50px rgba(10, 8, 18, 0.12);
}

@media (min-width: 768px) {
	.team-section-head {
		grid-template-columns: 1fr 1fr;
	}
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.6rem;
}

@media (min-width: 640px) {
	.team-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.team-card {
	text-align: center;
}

.team-card__photo {
	border-radius: 1.6rem;
	overflow: hidden;
	aspect-ratio: 2 / 3;
	margin-bottom: 1rem;
	box-shadow: 0 12px 32px rgba(10, 8, 18, 0.1);
}

.team-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.team-card__name {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--ink);
	margin: 0 0 0.3rem;
}

.team-card__role {
	font-family: var(--font-mono);
	font-size: 1.1rem;
	color: #7a7388;
	margin: 0;
}

.section-cream--compact {
	padding: 5rem 0;
}

/* Team strip (overlapping faces) */
.team-strip {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.8rem;
}

.team-strip__faces {
	display: flex;
	align-items: center;
	padding-left: 0.4rem;
}

.team-strip__face {
	width: 3.6rem;
	height: 3.6rem;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	margin-left: calc(var(--face-i, 0) * -1rem);
}

.team-strip--sm .team-strip__face {
	width: 2.8rem;
	height: 2.8rem;
	margin-left: calc(var(--face-i, 0) * -0.8rem);
}

.team-strip__caption {
	font-size: 1.35rem;
	color: var(--mist);
	margin: 0;
	max-width: 36ch;
}

.team-strip--light .team-strip__caption {
	color: #5c5670;
}

.team-strip--light .team-strip__face {
	border-color: var(--paper);
}

/* Who you will speak to */
.team-call-block__title {
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.8rem;
}

.team-call-block__intro {
	font-size: 1.5rem;
	color: var(--mist);
	margin: 0 0 2rem;
	max-width: 48ch;
}

.team-call-grid {
	display: grid;
	gap: 1.6rem;
}

@media (min-width: 540px) {
	.team-call-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.team-call-card {
	display: flex;
	align-items: center;
	gap: 1.4rem;
	padding: 1.6rem;
	border-radius: 1.6rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-call-card__photo {
	width: 7.2rem;
	height: auto;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	object-position: center top;
	border-radius: 1.2rem;
	flex-shrink: 0;
}

.team-call-card__name {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.2rem;
}

.team-call-card__role {
	font-size: 1.35rem;
	color: var(--cyan);
	margin: 0;
}

.step-pill__avatar {
	width: 4.8rem;
	height: 4.8rem;
	aspect-ratio: 1;
	object-fit: cover;
	object-position: center top;
	border-radius: 50%;
	flex-shrink: 0;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-pill:has(.step-pill__avatar) {
	align-items: center;
	gap: 1.4rem;
}

.audit-team-note {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin-top: 3.2rem;
	padding: 2rem;
	border-radius: 1.6rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	max-width: 72rem;
	margin-inline: auto;
}

.audit-team-note__photo {
	width: 100%;
	max-width: 16rem;
	height: auto;
	aspect-ratio: 2 / 3;
	object-fit: cover;
	object-position: center top;
	border-radius: 1.6rem;
	border: 2px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.audit-team-note__copy {
	flex: 1;
	min-width: 18rem;
	text-align: left;
}

.audit-team-note__copy h2 {
	font-family: var(--font-display);
	font-size: 2rem;
	color: #fff;
	margin: 0 0 0.6rem;
}

.audit-team-note__copy p {
	font-size: 1.45rem;
	color: var(--mist);
	margin: 0;
}

/* ─── Audit demoted section ─── */
.section-void--audit {
	padding: 6rem 0;
}

.audit-section {
	display: grid;
	gap: 3rem;
	align-items: start;
	position: relative;
	z-index: 2;
}

@media (min-width: 960px) {
	.audit-section {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		align-items: center;
	}
}

.footer-logo-img {
	height: 3.2rem;
	width: auto;
	margin-bottom: 0.8rem;
	display: block;
}

.map-embed {
	border-radius: 1.6rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.map-embed iframe {
	display: block;
	width: 100%;
}

.contact-layout {
	display: grid;
	gap: 2.4rem;
}

@media (min-width: 960px) {
	.contact-layout {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
		align-items: start;
	}
}

/* ─── Poster case studies ─── */
.section-void {
	position: relative;
	padding: 8rem 0;
	overflow: hidden;
}

.poster-grid {
	display: grid;
	gap: 2rem;
	margin-top: 3.2rem;
}

@media (min-width: 768px) {
	.poster-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.poster {
	position: relative;
	padding: 3.2rem;
	border-radius: 2.4rem;
	overflow: hidden;
	min-height: 28rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.poster--1 {
	background: linear-gradient(145deg, #4c1d95 0%, #7c3aed 40%, #22d3ee 100%);
}

.poster--2 {
	background: linear-gradient(145deg, #831843 0%, #e879f9 40%, #fbbf24 100%);
}

.poster--3 {
	background: linear-gradient(145deg, #0f766e 0%, #14b8a6 45%, #22d3ee 100%);
}

.poster--4 {
	background: linear-gradient(145deg, #1e3a5f 0%, #3b82f6 45%, #8b5cf6 100%);
}

.poster__metric--tenure {
	font-size: clamp(3.6rem, 7vw, 5.6rem);
	letter-spacing: -0.02em;
}

.poster__metric {
	font-family: var(--font-display);
	font-size: clamp(5rem, 10vw, 8rem);
	font-weight: 800;
	line-height: 0.85;
	color: #fff;
	text-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
}

.poster__store {
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 600;
	color: #fff;
	margin: 1rem 0 0;
}

.poster__note {
	font-size: 1.4rem;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 0.6rem;
	max-width: 32ch;
}

.poster__period {
	position: absolute;
	top: 2rem;
	right: 2rem;
	font-family: var(--font-mono);
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.7);
	padding: 0.4rem 1rem;
	background: rgba(0, 0, 0, 0.2);
	border-radius: var(--radius-pill);
}

/* ─── Aside ─── */
.section-aside {
	padding: 6rem 0 8rem;
	text-align: center;
	background: var(--cream);
}

.section-aside .section-title {
	margin-bottom: 1rem;
}

/* ─── Footer ─── */
.site-footer {
	position: relative;
	padding: 4.8rem 0 2.4rem;
	background: var(--void);
	color: var(--mist);
	overflow: hidden;
}

.site-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 55% at 50% 100%, rgba(37, 99, 235, 0.22), transparent 70%);
	pointer-events: none;
}

.site-footer a {
	color: rgba(226, 232, 240, 0.88);
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--cyan);
}

.footer-grid {
	display: grid;
	gap: 2.8rem 2rem;
	position: relative;
	z-index: 1;
}

.footer-brand__text,
.footer-brand__address,
.footer-brand__sister {
	margin: 0 0 0.8rem;
	max-width: 34ch;
	font-size: 1.45rem;
	line-height: 1.5;
}

.footer-brand__address {
	font-family: var(--font-mono);
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.55);
}

.footer-brand__sister {
	margin-bottom: 0;
}

.footer-col__title {
	margin: 0 0 1rem;
	font-family: var(--font-mono);
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
}

.footer-col__title--spaced {
	margin-top: 1.6rem;
}

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

.footer-list a {
	font-size: 1.45rem;
}

.footer-logo {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.8rem;
}

.footer-meta {
	margin-top: 3.2rem;
	padding-top: 1.6rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem 1.6rem;
	font-family: var(--font-mono);
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.5);
}

.footer-meta__links {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.7rem;
}

.footer-meta__copy {
	margin: 0;
}

@media (min-width: 720px) {
	.footer-grid {
		grid-template-columns: 1.4fr 1fr 1fr 1fr;
		align-items: start;
	}
}

/* ─── Mobile CTA ─── */
.mobile-cta {
	position: fixed;
	bottom: 1rem;
	left: 1rem;
	right: 1rem;
	z-index: 90;
	display: flex;
	gap: 0.8rem;
	padding: 0.6rem;
	background: rgba(7, 6, 15, 0.85);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-pill);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.mobile-cta .btn {
	flex: 1;
	min-height: 4.4rem;
	padding: 1rem 1.2rem;
	font-size: 1.3rem;
}

body.has-cta {
	padding-bottom: calc(var(--cta-h) + 0.8rem);
}

@media (min-width: 768px) {
	.mobile-cta {
		display: none;
	}
	body.has-cta {
		padding-bottom: 0;
	}
}

/* ─── Inner pages ─── */
.page-hero {
	position: relative;
	padding: 10rem 0 5rem;
	overflow: hidden;
}

.page-hero .display {
	font-size: clamp(3rem, 6vw, 5.6rem);
}

.centered {
	text-align: center;
	max-width: 52rem;
	margin-inline: auto;
}

.steps-flow {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	margin-top: 2.4rem;
}

.step-pill {
	display: flex;
	gap: 1.6rem;
	align-items: flex-start;
	padding: 1.8rem 2rem;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 1.6rem;
	backdrop-filter: blur(8px);
}

.step-pill__n {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--fuchsia);
	flex-shrink: 0;
}

.step-pill h3 {
	color: #fff;
	margin: 0 0 0.4rem;
	font-size: 1.6rem;
}

.step-pill p {
	color: var(--mist);
	margin: 0;
	font-size: 1.4rem;
}

.step-pill__owner {
	margin-top: 0.8rem !important;
	font-family: var(--font-mono);
	font-size: 1.15rem !important;
	color: var(--cyan) !important;
}

.audit[data-compact='true'] .audit__badge {
	padding: 1rem 1.6rem 0;
}

.audit[data-compact='true'] .audit__body {
	padding: 1.2rem 1.6rem 1.6rem;
}

.audit[data-compact='true'] .audit__form input {
	padding: 1.1rem 1.3rem;
	font-size: 1.3rem;
}

.audit[data-compact='true'] .btn {
	padding: 1rem 1.8rem;
	font-size: 1.3rem;
}

@media (min-width: 960px) {
	.page-hero .container > div[style*='grid'] {
		display: grid !important;
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		align-items: start;
	}
}

.page-hero-split {
	display: grid;
	gap: 3rem;
	align-items: center;
}

.page-hero-split__img {
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	object-position: center;
	border-radius: 2rem;
	border: 3px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

@media (min-width: 960px) {
	.page-hero-split {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
}

/* ─── Visual semantics: centerpiece + structured cards ─── */

.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;
}

.centerpiece {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 2.4rem;
	align-items: start;
}

.centerpiece__lead {
	max-width: 42ch;
}

.centerpiece__tool {
	margin-top: 0.4rem;
}

.centerpiece__tool-label {
	font-family: var(--font-mono);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--cyan);
	margin: 0 0 1rem;
}

.centerpiece__actions {
	display: grid;
	gap: 1.2rem;
	grid-column: 1 / -1;
}

.centerpiece__awards {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	justify-content: center;
	padding-bottom: 1.6rem;
	position: relative;
	z-index: 2;
}

.info-card {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	padding: 1.8rem;
	border-radius: 1.6rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
	min-height: 100%;
}

.info-card--dark {
	color: #fff;
}

.info-card--light {
	background: #fff;
	border-color: rgba(10, 8, 18, 0.08);
	box-shadow: 0 12px 32px rgba(10, 8, 18, 0.06);
}

.info-card__head {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.info-card__title {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.25;
}

.info-card--light .info-card__title {
	color: var(--ink);
}

.info-card__desc {
	font-size: 1.4rem;
	line-height: 1.5;
	margin: 0;
	flex: 1;
	color: var(--mist);
}

.info-card--light .info-card__desc {
	color: #5c5670;
}

.info-card__foot {
	margin-top: auto;
}

.info-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--cyan);
	text-decoration: none;
}

.info-card--light .info-card__link {
	color: var(--violet);
}

.info-card-row {
	display: grid;
	gap: 1.2rem;
}

@media (min-width: 640px) {
	.info-card-row {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 960px) {
	.centerpiece {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 3rem;
	}

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

@media (max-width: 959px) {
	.spectacle-hero--human .spectacle-hero__inner {
		display: block;
	}
}

/* ─── Motion & engagement layer ─── */

.icon {
	flex-shrink: 0;
}

.icon-ring {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.4rem;
	height: 4.4rem;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(180, 83, 9, 0.25), rgba(14, 116, 144, 0.2));
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	box-shadow: 0 8px 24px rgba(180, 83, 9, 0.25);
}

.icon-ring--sm {
	width: 2.8rem;
	height: 2.8rem;
}

.icon-ring--pain {
	width: 3.6rem;
	height: 3.6rem;
	background: linear-gradient(135deg, rgba(180, 83, 9, 0.15), rgba(217, 119, 6, 0.12));
	color: var(--violet);
	border-color: rgba(180, 83, 9, 0.2);
	box-shadow: none;
}

/* Scroll reveal */
.reveal {
	opacity: 0;
	transform: translateY(2.4rem);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal--delay.is-visible,
.reveal--delay-1.is-visible {
	transition-delay: 0.08s;
}
.reveal--delay-2.is-visible {
	transition-delay: 0.16s;
}
.reveal--delay-3.is-visible {
	transition-delay: 0.24s;
}

/* Animated mesh */
.mesh--animated {
	animation: mesh-shift 16s ease-in-out infinite alternate;
}

@keyframes mesh-shift {
	0% {
		filter: hue-rotate(0deg) saturate(1);
	}
	100% {
		filter: hue-rotate(12deg) saturate(1.1);
	}
}

/* Floating decor */
.floating-shape {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
	animation: float-shape 12s ease-in-out infinite;
}

.floating-shape--1 {
	width: 12rem;
	height: 12rem;
	top: 18%;
	left: 8%;
	background: radial-gradient(circle, rgba(14, 116, 144, 0.15), transparent 70%);
}

.floating-shape--2 {
	width: 8rem;
	height: 8rem;
	bottom: 22%;
	right: 12%;
	background: radial-gradient(circle, rgba(217, 119, 6, 0.2), transparent 70%);
	animation-delay: -4s;
}

@keyframes float-shape {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(20px, -15px) scale(1.08);
	}
}

.float-gentle {
	animation: float-gentle 7s ease-in-out infinite;
}

.float-gentle--reverse {
	animation-delay: -3.5s;
}

@keyframes float-gentle {
	0%,
	100% {
		transform: rotate(var(--rot, 2deg)) translateY(0);
	}
	50% {
		transform: rotate(var(--rot, 2deg)) translateY(-8px);
	}
}

.photo-stack__float {
	--rot: -4deg;
}

.photo-stack__main {
	--rot: 2deg;
}

.contact-phone-link {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.photo-stack__badge {
	position: absolute;
	top: 1.6rem;
	right: 1.6rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1.2rem;
	font-family: var(--font-mono);
	font-size: 1.1rem;
	color: #fff;
	background: rgba(7, 6, 15, 0.75);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-pill);
	animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
	50% {
		box-shadow: 0 0 20px rgba(163, 230, 53, 0.25);
	}
}

.pill-badge--pulse::before {
	animation: pulse 2s ease-in-out infinite;
}

/* CTA glow buttons */
.btn-glow {
	position: relative;
	overflow: visible;
}

.btn-glow::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: inherit;
	background: linear-gradient(135deg, var(--signal), var(--amber));
	opacity: 0.45;
	filter: blur(12px);
	z-index: -1;
	animation: cta-glow 2.5s ease-in-out infinite;
}

@keyframes cta-glow {
	0%,
	100% {
		opacity: 0.35;
		transform: scale(0.98);
	}
	50% {
		opacity: 0.65;
		transform: scale(1.02);
	}
}

.btn-primary {
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		transparent 40%,
		rgba(255, 255, 255, 0.25) 50%,
		transparent 60%
	);
	transform: translateX(-120%);
	animation: btn-shimmer 4s ease-in-out infinite;
}

@keyframes btn-shimmer {
	0%,
	70%,
	100% {
		transform: translateX(-120%);
	}
	85% {
		transform: translateX(120%);
	}
}

.nav-cta--pulse {
	animation: nav-cta-pulse 3s ease-in-out infinite;
}

@keyframes nav-cta-pulse {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.35);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(217, 119, 6, 0);
	}
}

/* Trust chips */
.trust-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 2rem;
}

.trust-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 1.2rem 0.6rem 0.6rem;
	font-size: 1.25rem;
	color: var(--mist);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-pill);
	backdrop-filter: blur(8px);
	transition: transform 0.25s, border-color 0.25s;
}

.trust-chip:hover {
	transform: translateY(-2px);
	border-color: rgba(14, 116, 144, 0.35);
}

/* Hero scroll hint */
.hero-scroll-hint {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.3rem;
	font-family: var(--font-mono);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--mist);
	text-decoration: none;
	animation: bounce-hint 2.2s ease-in-out infinite;
}

.hero-scroll-hint__arrow {
	transform: rotate(90deg);
}

@keyframes bounce-hint {
	0%,
	100% {
		margin-top: 0;
	}
	50% {
		margin-top: 6px;
	}
}

/* Eye-friendly cream sections */
.section-cream--soft {
	background: #fbf8f2;
}

.section-cream--soft .section-intro,
.section-cream--soft p {
	color: #4f4a5c;
	line-height: 1.65;
}

/* Bubble icons */
.bubble__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	margin-bottom: 1rem;
	border-radius: 1.2rem;
	background: linear-gradient(135deg, rgba(180, 83, 9, 0.12), rgba(14, 116, 144, 0.1));
	color: var(--violet);
	transition: transform 0.3s, background 0.3s;
}

.bubble:hover .bubble__icon {
	transform: scale(1.1) rotate(-5deg);
	background: linear-gradient(135deg, rgba(180, 83, 9, 0.2), rgba(14, 116, 144, 0.15));
}

.bubble {
	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s;
}

.bubble:hover {
	transform: rotate(0deg) scale(1.03) !important;
	box-shadow: 0 28px 60px rgba(180, 83, 9, 0.18);
}

/* Pain cards */
.pain-card__head {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 0.8rem;
}

.pain-card {
	transition:
		transform 0.3s,
		box-shadow 0.3s,
		border-color 0.3s;
}

.pain-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(10, 8, 18, 0.1);
	border-left-color: var(--cyan);
}

/* Poster hover */
.poster {
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.poster:hover {
	transform: scale(1.02) translateY(-4px);
}

.poster:hover .poster__metric {
	transform: scale(1.05);
}

.poster__metric {
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.poster__icon {
	position: absolute;
	top: 2rem;
	left: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.6rem;
	height: 3.6rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	backdrop-filter: blur(8px);
}

/* Team cards */
.team-card {
	transition: transform 0.3s;
}

.team-card:hover {
	transform: translateY(-6px);
}

.team-card:hover .team-card__photo {
	box-shadow: 0 20px 40px rgba(180, 83, 9, 0.2);
}

.team-card__photo {
	transition: box-shadow 0.3s, transform 0.3s;
}

.team-card:hover .team-card__photo img {
	transform: scale(1.04);
}

.team-card__photo img {
	transition: transform 0.4s ease;
}

/* CTA band */
.cta-band {
	position: relative;
	padding: 4rem 0;
	background: linear-gradient(135deg, #1a1030 0%, #0d1a2a 50%, #1a0a20 100%);
	border-block: 1px solid rgba(255, 255, 255, 0.08);
	overflow: hidden;
}

.cta-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(180, 83, 9, 0.2), transparent),
		radial-gradient(ellipse 50% 60% at 80% 50%, rgba(14, 116, 144, 0.15), transparent);
	pointer-events: none;
	animation: mesh-shift 12s ease-in-out infinite alternate;
}

.cta-band__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: flex-start;
}

.cta-band__copy {
	display: flex;
	gap: 1.4rem;
	align-items: center;
	flex-wrap: wrap;
}

.cta-band__people {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-width: 14rem;
}

.cta-band__title {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 0.4rem;
}

.cta-band__sub {
	font-size: 1.45rem;
	color: var(--mist);
	margin: 0;
}

.cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

@media (min-width: 768px) {
	.cta-band__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

@media (max-width: 767px) {
	.cta-band__actions {
		width: 100%;
	}

	.cta-band__actions .btn {
		flex: 1;
		min-height: 4.4rem;
		justify-content: center;
	}

	.cta-band__copy {
		width: 100%;
	}
}

/* Mobile CTA polish */
.mobile-cta {
	animation: slide-up-cta 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

@keyframes slide-up-cta {
	from {
		opacity: 0;
		transform: translateY(100%);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Softer body text on void sections */
.lead--light {
	line-height: 1.65;
}

/* Comparison module */
.compare-module {
	margin-top: 2.4rem;
}

.compare-switcher {
	margin-top: 2.4rem;
}

.compare-switcher__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-bottom: 1.6rem;
}

.compare-switcher__tab {
	font-family: var(--font-body);
	font-size: 1.3rem;
	font-weight: 600;
	padding: 0.9rem 1.4rem;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.04);
	color: var(--mist);
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.compare-switcher__tab:hover {
	border-color: rgba(14, 116, 144, 0.4);
	color: var(--paper);
}

.compare-switcher__tab.is-active {
	background: rgba(180, 83, 9, 0.22);
	border-color: rgba(180, 83, 9, 0.55);
	color: var(--paper);
}

.compare-panel {
	display: none;
}

.compare-panel.is-active {
	display: block;
}

.compare-panel__intro {
	margin: 0 0 1.6rem;
	font-size: 1.45rem;
	line-height: 1.55;
	color: var(--mist);
	max-width: 62ch;
}

.compare-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.compare-table {
	width: 100%;
	min-width: 36rem;
	border-collapse: collapse;
	font-size: 1.4rem;
}

.compare-table th,
.compare-table td {
	padding: 1.2rem 1.4rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.compare-table thead th {
	font-family: var(--font-mono);
	font-size: 1.1rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mist);
}

.compare-table__col-us {
	color: var(--cyan);
}

.compare-table__col-them {
	color: rgba(255, 255, 255, 0.55);
}

.compare-table tbody th[scope='row'] {
	font-weight: 600;
	color: var(--paper);
	width: 24%;
	min-width: 11rem;
}

.compare-table__us {
	color: var(--paper);
	line-height: 1.55;
}

.compare-table__them {
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.55;
}

.compare-table__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	margin-right: 0.6rem;
	border-radius: 50%;
	vertical-align: middle;
	flex-shrink: 0;
}

.compare-table__badge--us {
	background: rgba(163, 230, 53, 0.18);
	color: var(--lime);
}

.compare-table__badge--ok {
	background: rgba(163, 230, 53, 0.12);
	color: var(--lime);
}

.compare-table__badge--mixed {
	background: rgba(251, 191, 36, 0.16);
	color: var(--amber);
}

.compare-table__badge--weak {
	background: rgba(251, 113, 133, 0.16);
	color: var(--rose);
}

.compare-edge {
	margin-top: 3.2rem;
	padding: 2rem 2.4rem;
	border-radius: 1.6rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(135deg, rgba(163, 230, 53, 0.08), rgba(180, 83, 9, 0.1));
}

.compare-edge__eyebrow {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--paper);
	margin: 0 0 1.2rem;
}

.compare-edge__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.8rem;
}

@media (min-width: 640px) {
	.compare-edge__list {
		grid-template-columns: 1fr 1fr;
	}
}

.compare-edge__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	font-size: 1.35rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.85);
}

.compare-edge__tick {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 50%;
	background: rgba(163, 230, 53, 0.18);
	color: var(--lime);
	flex-shrink: 0;
	margin-top: 0.1rem;
}

.compare-card__row {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	font-size: 1.35rem;
	margin-bottom: 1rem;
}

.compare-card__row:last-child {
	margin-bottom: 0;
}

.compare-card__tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--lime);
}

.compare-card__tag--muted {
	color: var(--mist);
}

.compare-card__row p {
	margin: 0;
	color: var(--paper);
	line-height: 1.55;
}

.compare-card__row--them p {
	color: rgba(255, 255, 255, 0.72);
}

.compare-cards {
	display: none;
	margin-top: 1.6rem;
	gap: 1.2rem;
}

.compare-card {
	padding: 1.6rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 1.2rem;
	background: rgba(255, 255, 255, 0.04);
}

.compare-card__label {
	font-family: var(--font-mono);
	font-size: 1.1rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--cyan);
	margin: 0 0 1rem;
}

@media (max-width: 767px) {
	.compare-table-wrap {
		display: none;
	}

	.compare-cards {
		display: grid;
	}
}

/* FAQ accordion */
.faq-accordion {
	margin-top: 2.4rem;
}

.faq-accordion__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.faq-item {
	border: 1px solid rgba(28, 25, 23, 0.12);
	border-radius: 0.8rem;
	background: var(--paper);
	overflow: hidden;
}

.section-void .faq-item {
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
}

.faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
	padding: 1.4rem 1.6rem;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 1.4;
	cursor: pointer;
	list-style: none;
	color: var(--ink);
}

.section-void .faq-item__question {
	color: var(--paper);
}

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

.faq-item__question h3 {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.faq-item__icon {
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
	position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1.2rem;
	height: 2px;
	background: currentColor;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease;
}

.faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
	opacity: 0;
}

.faq-item__answer {
	padding: 0 1.6rem 1.6rem;
	font-size: 1.45rem;
	line-height: 1.65;
	color: rgba(28, 25, 23, 0.78);
}

.section-void .faq-item__answer {
	color: var(--mist);
}

.faq-item__answer p {
	margin: 0;
}

/* Growth partner filters */
.growth-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin: 2rem 0 2.4rem;
}

.growth-filter {
	padding: 0.8rem 1.4rem;
	font-family: var(--font-mono);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: transparent;
	color: var(--mist);
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.growth-filter:hover,
.growth-filter:focus-visible {
	border-color: var(--signal);
	color: var(--paper);
}

.growth-filter[aria-pressed='true'] {
	background: var(--signal);
	border-color: var(--signal);
	color: var(--paper);
}

.section-cream .growth-filter {
	border-color: rgba(28, 25, 23, 0.2);
	color: rgba(28, 25, 23, 0.65);
}

.section-cream .growth-filter:hover,
.section-cream .growth-filter:focus-visible {
	border-color: var(--signal);
	color: var(--ink);
}

.section-cream .growth-filter[aria-pressed='true'] {
	background: var(--ink);
	border-color: var(--ink);
	color: var(--paper);
}

.growth-board__empty {
	grid-column: 1 / -1;
	padding: 3rem;
	text-align: center;
	font-size: 1.5rem;
	color: var(--mist);
}

.poster[hidden] {
	display: none !important;
}

.section-void--compare {
	padding-top: 0;
}

/* ─── SEO landing pages ─── */
.landing-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 1.6rem;
	font-size: 1.3rem;
}

.landing-breadcrumb a {
	color: var(--cyan);
	text-decoration: none;
}

.landing-breadcrumb span:last-child {
	color: var(--mist);
}

.landing-hero__lead {
	max-width: 52ch;
	margin-top: 2rem;
}

.landing-stat {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.8rem 1.2rem;
	margin-top: 2.4rem;
	padding: 1.2rem 1.6rem;
	border-radius: 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.05);
	max-width: 36rem;
}

.landing-stat__value {
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--cyan);
}

.landing-stat__label {
	font-size: 1.35rem;
	color: var(--mist);
}

.landing-grid {
	display: grid;
	gap: 1.2rem;
	margin-top: 2.4rem;
}

@media (min-width: 640px) {
	.landing-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.landing-card {
	padding: 1.8rem;
	border-radius: 1.6rem;
	background: var(--paper);
	border: 1px solid rgba(28, 25, 23, 0.08);
	box-shadow: 0 12px 32px rgba(10, 8, 18, 0.06);
}

.landing-card--dark {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.12);
}

.landing-card__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0 0 0.8rem;
	line-height: 1.3;
}

.landing-card--dark .landing-card__title {
	color: var(--paper);
}

.landing-card__text {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.55;
	color: #5c5670;
}

.landing-card--dark .landing-card__text {
	color: var(--mist);
}

.landing-steps {
	display: grid;
	gap: 1.2rem;
	margin-top: 2.4rem;
}

@media (min-width: 768px) {
	.landing-steps {
		grid-template-columns: 1fr 1fr;
	}
}

.landing-audit {
	margin-top: 2.4rem;
	max-width: 48rem;
}

.landing-related {
	display: grid;
	gap: 0.8rem;
	margin-top: 2.4rem;
}

.landing-related__link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem 1rem;
	padding: 1.4rem 1.6rem;
	border-radius: 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: var(--paper);
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s;
}

.landing-related__link:hover {
	border-color: var(--cyan);
	background: rgba(255, 255, 255, 0.08);
}

.landing-related__keyword {
	font-family: var(--font-mono);
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--cyan);
	width: 100%;
}

.landing-related__title {
	flex: 1;
	font-weight: 600;
	font-size: 1.45rem;
}

.landing-hub {
	display: grid;
	gap: 1.2rem;
	margin-top: 2.4rem;
}

@media (min-width: 640px) {
	.landing-hub {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.landing-hub {
		grid-template-columns: repeat(3, 1fr);
	}
}

.landing-hub__card {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	padding: 1.8rem;
	border-radius: 1.6rem;
	text-decoration: none;
	border: 1px solid rgba(28, 25, 23, 0.1);
	background: var(--paper);
	color: var(--ink);
	transition: transform 0.2s, box-shadow 0.2s;
	min-height: 100%;
}

.landing-hub__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(10, 8, 18, 0.08);
}

.landing-hub--dark .landing-hub__card {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.12);
	color: var(--paper);
}

.landing-hub__card--featured {
	border-color: rgba(180, 83, 9, 0.45);
	background: linear-gradient(145deg, rgba(180, 83, 9, 0.08), var(--paper));
}

.landing-hub--dark .landing-hub__card--featured {
	background: linear-gradient(145deg, rgba(180, 83, 9, 0.2), rgba(255, 255, 255, 0.04));
}

.landing-hub__card h3 {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.25;
}

.landing-hub__card p {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #5c5670;
}

.landing-hub__eyebrow,
.landing-hub__keyword {
	font-family: var(--font-mono);
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--signal);
}

.landing-hub--dark .landing-hub__keyword {
	color: var(--cyan);
}

.landing-hub__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
	font-weight: 600;
	font-size: 1.35rem;
	color: var(--violet);
}

.landing-hub--dark .landing-hub__cta {
	color: var(--cyan);
}

.cluster-prose {
	font-size: 1.5rem;
	line-height: 1.65;
	color: #5c5670;
	max-width: 62ch;
	margin: 1.2rem 0 0;
}

.cluster-prose--light {
	color: var(--mist);
}

.cluster-prose a {
	color: var(--cyan);
}

.cluster-inline-cta {
	margin-top: 2.4rem;
}

.cluster-case-study {
	margin-top: 2.4rem;
	padding: 2rem;
	border-radius: 1.6rem;
	background: var(--paper);
	border: 1px solid rgba(28, 25, 23, 0.08);
	box-shadow: 0 12px 32px rgba(10, 8, 18, 0.06);
}

.cluster-case-study__stat {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.8rem;
	margin: 0 0 1.6rem;
}

.cluster-case-study__label {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 600;
	margin: 1.6rem 0 0.6rem;
}

.cluster-case-study__list {
	margin: 0;
	padding-left: 1.6rem;
	font-size: 1.45rem;
	line-height: 1.6;
	color: #5c5670;
}

.cluster-proof-card {
	text-decoration: none;
	color: inherit;
	display: block;
}

.cluster-proof-card__stat {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 800;
	color: var(--cyan);
	margin: 0 0 0.6rem;
}

/* Guide hub cards — visual entry points for SEO guides */
.guide-hub-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	padding: 1.8rem 1.8rem 1.6rem;
	border-radius: 1.6rem;
	text-decoration: none;
	border: 1px solid rgba(28, 25, 23, 0.1);
	background: var(--paper);
	color: var(--ink);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
	min-height: 100%;
	overflow: hidden;
}

.guide-hub-card__accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--card-accent, var(--violet));
}

.guide-hub-card--signal {
	--card-accent: var(--signal);
}

.guide-hub-card--violet {
	--card-accent: var(--violet);
}

.guide-hub-card--cyan {
	--card-accent: var(--cyan);
}

.guide-hub-card--rose {
	--card-accent: var(--rose);
}

.guide-hub-card--lime {
	--card-accent: var(--lime);
}

.guide-hub-card--amber {
	--card-accent: var(--amber);
}

.guide-hub-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 48px rgba(10, 8, 18, 0.12);
	border-color: color-mix(in srgb, var(--card-accent, var(--violet)) 35%, transparent);
}

.guide-hub-card--featured {
	border-color: color-mix(in srgb, var(--card-accent, var(--signal)) 45%, transparent);
	background: linear-gradient(
		155deg,
		color-mix(in srgb, var(--card-accent, var(--signal)) 10%, var(--paper)),
		var(--paper)
	);
}

.guide-hub-card--dark {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.12);
	color: var(--paper);
}

.guide-hub-card--dark .guide-hub-card__desc {
	color: var(--mist);
}

.guide-hub-card--dark.guide-hub-card--featured {
	background: linear-gradient(
		155deg,
		color-mix(in srgb, var(--card-accent, var(--signal)) 22%, transparent),
		rgba(255, 255, 255, 0.04)
	);
}

.guide-hub-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 0.4rem;
}

.guide-hub-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.4rem;
	height: 4.4rem;
	border-radius: 1.2rem;
	background: color-mix(in srgb, var(--card-accent, var(--violet)) 14%, transparent);
	color: var(--card-accent, var(--violet));
	border: 1px solid color-mix(in srgb, var(--card-accent, var(--violet)) 28%, transparent);
	flex-shrink: 0;
}

.guide-hub-card--compact .guide-hub-card__icon {
	width: 3.6rem;
	height: 3.6rem;
	border-radius: 1rem;
}

.guide-hub-card__stat {
	text-align: right;
	min-width: 0;
}

.guide-hub-card__stat-value {
	display: block;
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 800;
	line-height: 1.1;
	color: var(--card-accent, var(--violet));
}

.guide-hub-card--compact .guide-hub-card__stat-value {
	font-size: 1.5rem;
}

.guide-hub-card__stat-label {
	display: block;
	font-size: 1.05rem;
	line-height: 1.35;
	color: #5c5670;
	max-width: 14ch;
	margin-left: auto;
}

.guide-hub-card--dark .guide-hub-card__stat-label {
	color: var(--mist);
}

.guide-hub-card__eyebrow {
	font-family: var(--font-mono);
	font-size: 1.05rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--card-accent, var(--signal));
}

.guide-hub-card__title {
	font-family: var(--font-display);
	font-size: 1.55rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.28;
}

.guide-hub-card--compact .guide-hub-card__title {
	font-size: 1.35rem;
}

.guide-hub-card__desc {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.5;
	color: #5c5670;
}

.guide-hub-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
	padding-top: 0.4rem;
	font-weight: 600;
	font-size: 1.3rem;
	color: var(--violet);
}

.guide-hub-card--dark .guide-hub-card__cta {
	color: var(--cyan);
}

.guide-hub-card--compact {
	padding: 1.4rem;
	gap: 0.6rem;
}

.guide-hub-grid {
	display: grid;
	gap: 1.2rem;
	margin-top: 2.4rem;
}

@media (min-width: 640px) {
	.guide-hub-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.guide-hub-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.guide-hub-grid--2 {
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.guide-hub-grid--2 {
		grid-template-columns: repeat(2, 1fr);
	}
}

.enquiry-prompt {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.6rem 2.4rem;
	margin-top: 2.4rem;
	padding: 2rem 2.4rem;
	border-radius: 1.6rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(135deg, rgba(180, 83, 9, 0.18), rgba(14, 116, 144, 0.08));
}

.enquiry-prompt__copy {
	max-width: 42ch;
}

.enquiry-prompt__eyebrow {
	font-family: var(--font-mono);
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--cyan);
	margin: 0 0 0.6rem;
}

.enquiry-prompt__title {
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 0 0.4rem;
	color: var(--paper);
}

.enquiry-prompt__text {
	margin: 0;
	font-size: 1.4rem;
	color: var(--mist);
}

.landing-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.6rem;
	height: 3.6rem;
	border-radius: 1rem;
	margin-bottom: 1rem;
	background: rgba(180, 83, 9, 0.1);
	color: var(--violet);
}

.landing-card--dark .landing-card__icon {
	background: rgba(14, 116, 144, 0.12);
	color: var(--cyan);
}

.landing-hero__visual {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.2rem 1.6rem;
	margin-top: 1.6rem;
}

.landing-hero__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5.6rem;
	height: 5.6rem;
	border-radius: 1.6rem;
	background: rgba(14, 116, 144, 0.12);
	border: 1px solid rgba(14, 116, 144, 0.25);
	color: var(--cyan);
}

.cluster-proof-card {
	position: relative;
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.cluster-proof-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--signal), var(--link));
}

.cluster-proof-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(10, 8, 18, 0.2);
}

/* Insight cards — challenge / symptom grids on dark and light sections */
.section-void--insight {
	position: relative;
	overflow: hidden;
}

.section-void--insight::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 50% at 10% 20%, rgba(180, 83, 9, 0.14), transparent 55%),
		radial-gradient(ellipse 50% 40% at 90% 80%, rgba(14, 116, 144, 0.1), transparent 50%);
	pointer-events: none;
}

.section-void--insight > .container {
	position: relative;
	z-index: 1;
}

.insight-grid {
	display: grid;
	gap: 1.2rem;
	margin-top: 2.4rem;
}

@media (min-width: 640px) {
	.insight-grid--pairs {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (min-width: 960px) {
	.insight-grid--triple {
		grid-template-columns: repeat(3, 1fr);
	}
}

.insight-card {
	position: relative;
	padding: 1.8rem 1.8rem 1.6rem;
	border-radius: 1.6rem;
	background: var(--paper);
	border: 1px solid rgba(28, 25, 23, 0.08);
	box-shadow: 0 12px 32px rgba(10, 8, 18, 0.06);
	overflow: hidden;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.insight-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 44px rgba(10, 8, 18, 0.1);
	border-color: color-mix(in srgb, var(--insight-accent, var(--violet)) 30%, transparent);
}

.insight-card--rose {
	--insight-accent: var(--rose);
}

.insight-card--amber {
	--insight-accent: var(--amber);
}

.insight-card--violet {
	--insight-accent: var(--violet);
}

.insight-card--cyan {
	--insight-accent: var(--cyan);
}

.insight-card--lime {
	--insight-accent: var(--lime);
}

.insight-card--signal {
	--insight-accent: var(--signal);
}

.insight-card__accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--insight-accent, var(--violet));
}

.insight-card--dark {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.insight-card--dark:hover {
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
	border-color: color-mix(in srgb, var(--insight-accent, var(--cyan)) 45%, transparent);
}

.insight-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0.4rem 0 1.2rem;
}

.insight-card__num {
	font-family: var(--font-display);
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1;
	color: color-mix(in srgb, var(--insight-accent, var(--violet)) 35%, transparent);
}

.insight-card--dark .insight-card__num {
	color: color-mix(in srgb, var(--insight-accent, var(--cyan)) 55%, transparent);
}

.insight-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 1.1rem;
	background: color-mix(in srgb, var(--insight-accent, var(--violet)) 14%, transparent);
	border: 1px solid color-mix(in srgb, var(--insight-accent, var(--violet)) 28%, transparent);
	color: var(--insight-accent, var(--violet));
}

.insight-card--dark .insight-card__icon {
	background: color-mix(in srgb, var(--insight-accent, var(--cyan)) 16%, transparent);
	border-color: color-mix(in srgb, var(--insight-accent, var(--cyan)) 32%, transparent);
}

.insight-card__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 0.8rem;
	line-height: 1.28;
	color: var(--ink);
}

.insight-card--dark .insight-card__title {
	color: #fff;
}

.insight-card__text {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.55;
	color: #5c5670;
}

.insight-card--dark .insight-card__text {
	color: rgba(255, 255, 255, 0.78);
}

.cluster-case-study {
	position: relative;
	overflow: hidden;
}

.cluster-case-study::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, var(--signal), var(--fuchsia));
	border-radius: 4px 0 0 4px;
}

.cluster-case-study__list li {
	position: relative;
	padding-left: 0.4rem;
}

.cluster-case-study__list li::marker {
	color: var(--signal);
}

.lead-magnet {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.6rem 2.4rem;
	padding: 2rem 2.4rem;
	border-radius: 1.6rem;
	border: 1px solid rgba(180, 83, 9, 0.35);
	background: linear-gradient(135deg, rgba(180, 83, 9, 0.12), rgba(180, 83, 9, 0.08));
}

.lead-magnet__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5.2rem;
	height: 5.2rem;
	border-radius: 1.4rem;
	background: rgba(180, 83, 9, 0.16);
	color: var(--signal);
	flex-shrink: 0;
}

.lead-magnet__copy {
	flex: 1;
	min-width: 16rem;
}

.lead-magnet__eyebrow {
	font-family: var(--font-mono);
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--signal);
	margin: 0 0 0.4rem;
}

.lead-magnet__title {
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 0 0.4rem;
	color: var(--ink);
}

.lead-magnet__text {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.55;
	color: #5c5670;
	max-width: 48ch;
}

.lead-magnet__actions {
	margin-left: auto;
}

.section-void .lead-magnet__title {
	color: var(--paper);
}

.section-void .lead-magnet__text {
	color: var(--mist);
}

.checklist-grid {
	display: grid;
	gap: 1.6rem;
	margin-top: 2.4rem;
}

@media (min-width: 768px) {
	.checklist-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.checklist-group {
	padding: 2rem;
	border-radius: 1.6rem;
	background: var(--paper);
	border: 1px solid rgba(28, 25, 23, 0.08);
	box-shadow: 0 12px 32px rgba(10, 8, 18, 0.06);
}

.checklist-group__title {
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0 0 1.2rem;
	color: var(--ink);
}

.checklist-group__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.8rem;
}

.checklist-item {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	font-size: 1.4rem;
	line-height: 1.5;
	color: #5c5670;
}

.checklist-item__box {
	width: 1.6rem;
	height: 1.6rem;
	margin-top: 0.15rem;
	border: 2px solid rgba(180, 83, 9, 0.45);
	border-radius: 0.4rem;
	flex-shrink: 0;
}

/* ─── GHL embed blocks (contact) ─── */
.ghl-embed {
	scroll-margin-top: 6rem;
}

.ghl-embed--form {
	margin-top: 0.4rem;
}

/* ─── Intent router (GHL-aligned lead routing) ─── */
.intent-router {
	position: fixed;
	bottom: 1.6rem;
	right: 1.6rem;
	z-index: 92;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.8rem;
	max-width: min(36rem, calc(100vw - 2rem));
}

.intent-router__toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	min-height: 4.4rem;
	padding: 0.9rem 1.4rem;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.intent-router__panel {
	width: min(34rem, calc(100vw - 2rem));
	padding: 1.4rem;
	border-radius: 1.6rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(7, 6, 15, 0.94);
	backdrop-filter: blur(16px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.intent-router__title {
	margin: 0 0 1rem;
	font-family: var(--font-display);
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--paper);
}

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

.intent-router__option {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	padding: 0.9rem 1rem;
	border-radius: 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	color: var(--paper);
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.intent-router__option:hover {
	border-color: rgba(180, 83, 9, 0.45);
	background: rgba(180, 83, 9, 0.08);
	transform: translateY(-1px);
}

.intent-router__option-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 999px;
	background: rgba(180, 83, 9, 0.15);
	color: var(--signal);
	flex-shrink: 0;
}

.intent-router__option-copy {
	flex: 1;
	min-width: 0;
}

.intent-router__option-label {
	display: block;
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1.25;
}

.intent-router__option-desc {
	display: block;
	margin-top: 0.2rem;
	font-size: 1.25rem;
	line-height: 1.45;
	color: var(--mist);
}

@media (max-width: 767px) {
	.intent-router {
		bottom: calc(5.8rem + 0.8rem);
		right: 1rem;
		left: 1rem;
		align-items: stretch;
		max-width: none;
	}

	.intent-router__toggle {
		width: 100%;
		justify-content: center;
	}

	.intent-router__panel {
		width: 100%;
	}

	.intent-router--open .intent-router__toggle-label {
		display: none;
	}
}

@media (min-width: 768px) {
	.intent-router__toggle-label {
		white-space: nowrap;
	}
}

/* ─── Sister site footnote (guide pages) ─── */
.site-footnote {
	padding: 1.4rem 1.6rem;
	border-radius: 1.2rem;
	border: 1px solid rgba(28, 25, 23, 0.08);
	background: var(--paper);
}

.site-footnote__text {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.55;
	color: #5c5670;
}

.section-void + .section-cream .site-footnote {
	border-color: rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.04);
}

.section-void + .section-cream .site-footnote__text {
	color: var(--mist);
}

/* ─── Insights / articles ─── */
.article-hub-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding: 1.8rem;
	border-radius: 1.6rem;
	text-decoration: none;
	border: 1px solid rgba(28, 25, 23, 0.1);
	background: var(--paper);
	color: var(--ink);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
	min-height: 100%;
	overflow: hidden;
}

.article-hub-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px rgba(28, 25, 23, 0.08);
	border-color: rgba(180, 83, 9, 0.35);
}

.article-hub-card__accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--card-accent, var(--signal));
}

.article-hub-card--signal { --card-accent: var(--signal); }
.article-hub-card--violet { --card-accent: var(--violet); }
.article-hub-card--cyan { --card-accent: var(--cyan); }
.article-hub-card--rose { --card-accent: var(--rose); }
.article-hub-card--lime { --card-accent: var(--lime); }
.article-hub-card--amber { --card-accent: var(--amber); }

.article-hub-card--featured {
	border-color: rgba(180, 83, 9, 0.25);
	box-shadow: 0 8px 28px rgba(180, 83, 9, 0.08);
}

.article-hub-card__meta {
	font-family: var(--font-mono);
	font-size: 1.1rem;
	color: #5c5670;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	align-items: center;
}

.article-hub-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 999px;
	background: rgba(180, 83, 9, 0.1);
	color: var(--signal);
	margin-top: 0.4rem;
}

.article-hub-card__eyebrow {
	margin: 0;
	font-family: var(--font-mono);
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--signal);
}

.article-hub-card__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.25;
}

.article-hub-card__desc {
	margin: 0;
	font-size: 1.35rem;
	line-height: 1.5;
	color: #5c5670;
	flex: 1;
}

.article-byline {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	margin-top: 2.4rem;
	padding: 1.2rem 1.4rem;
	border-radius: 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	max-width: 36rem;
}

.article-byline__photo {
	width: 5.6rem;
	height: 5.6rem;
	border-radius: 999px;
	object-fit: cover;
	flex-shrink: 0;
}

.article-byline__name {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--paper);
}

.article-byline__role,
.article-byline__meta {
	margin: 0.2rem 0 0;
	font-size: 1.3rem;
	color: var(--mist);
}

.social-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.social-links--author {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.8rem;
	margin-top: 0.8rem;
	font-size: 1.2rem;
}

.social-links--author a {
	color: var(--mist);
	text-decoration: none;
}

.social-links--author a:hover {
	color: var(--paper);
	text-decoration: underline;
}

.social-links--inline {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1.6rem;
	font-size: 1.4rem;
}

.social-links--inline a {
	color: var(--cyan);
}

.insights-social {
	margin-top: 1.6rem;
	max-width: 42rem;
}

.article-body {
	max-width: 68ch;
}

.article-prose {
	font-size: 1.5rem;
	line-height: 1.65;
	color: #5c5670;
	margin: 0 0 1.2rem;
}

.article-prose--light {
	color: var(--mist);
}

.article-list {
	margin: 0 0 1.6rem;
	padding-left: 1.6rem;
	font-size: 1.45rem;
	line-height: 1.6;
	color: #5c5670;
}

.article-list--light {
	color: var(--mist);
}

.article-list li + li {
	margin-top: 0.8rem;
}

.site-links-panel {
	display: grid;
	gap: 2.4rem;
	padding: 1.6rem 1.8rem;
	border-radius: 1.2rem;
	border: 1px solid rgba(28, 25, 23, 0.08);
	background: var(--paper);
}

.site-links-panel--compact {
	padding: 1.4rem 1.6rem;
}

.site-links-panel__label {
	margin: 0 0 0.8rem;
	font-family: var(--font-mono);
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #5c5670;
}

.site-links-panel__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.4rem 1.6rem;
	grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.site-links-panel__list a {
	color: var(--link);
	text-decoration: none;
	font-size: 1.4rem;
}

.site-links-panel__list a:hover {
	text-decoration: underline;
}

.site-links-panel__more {
	margin: 1rem 0 0;
	font-size: 1.3rem;
}

.site-links-panel__more a {
	color: var(--link);
}

.site-links-panel .site-footnote {
	margin-top: 1.2rem;
}

.page-hero .site-links-panel {
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
}

.page-hero .site-links-panel__label {
	color: var(--mist);
}

.page-hero .site-links-panel__list a,
.page-hero .site-links-panel__more a {
	color: var(--cyan);
}

.page-hero .site-links-panel .social-links--inline a {
	color: var(--cyan);
}

.page-hero .site-footnote__text {
	color: var(--mist);
}

.authority-mentions__table-wrap {
	margin-top: 2.4rem;
	overflow-x: auto;
	border-radius: 1.2rem;
	border: 1px solid rgba(28, 25, 23, 0.08);
	background: var(--paper);
}

.authority-mentions__table {
	width: 100%;
	min-width: 56rem;
	border-collapse: collapse;
	font-size: 1.35rem;
}

.authority-mentions__table th,
.authority-mentions__table td {
	padding: 1.2rem 1.4rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid rgba(28, 25, 23, 0.08);
}

.authority-mentions__table th {
	font-family: var(--font-mono);
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #5c5670;
	background: rgba(28, 25, 23, 0.03);
}

.authority-mentions__table tbody tr:last-child td {
	border-bottom: none;
}

.authority-mentions__article {
	display: block;
	margin-top: 0.3rem;
	font-size: 1.2rem;
	color: #5c5670;
}

.authority-mentions__specialty {
	margin: 0;
	font-weight: 600;
	color: var(--ink);
}

.authority-mentions__excerpt {
	margin: 0.4rem 0 0;
	font-size: 1.25rem;
	line-height: 1.5;
	color: #5c5670;
}

.authority-mentions__note {
	margin-top: 1.6rem;
	font-size: 1.3rem;
	color: #5c5670;
}

.section-void .authority-mentions__table-wrap {
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
}

.section-void .authority-mentions__table th,
.section-void .authority-mentions__table td {
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.section-void .authority-mentions__table th {
	color: var(--mist);
	background: rgba(255, 255, 255, 0.03);
}

.section-void .authority-mentions__specialty {
	color: var(--paper);
}

.section-void .authority-mentions__excerpt,
.section-void .authority-mentions__article,
.section-void .authority-mentions__note {
	color: var(--mist);
}

.section-void .authority-mentions__table a {
	color: var(--cyan);
}

.client-sites-panel__table-wrap,
.recognition-mentions__table-wrap {
	margin-top: 2.4rem;
	overflow-x: auto;
	border-radius: 1.2rem;
	border: 1px solid rgba(28, 25, 23, 0.08);
	background: var(--paper);
}

.client-sites-panel__table,
.recognition-mentions__table {
	width: 100%;
	min-width: 56rem;
	border-collapse: collapse;
	font-size: 1.35rem;
}

.client-sites-panel__table th,
.client-sites-panel__table td,
.recognition-mentions__table th,
.recognition-mentions__table td {
	padding: 1.2rem 1.4rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid rgba(28, 25, 23, 0.08);
}

.client-sites-panel__table th,
.recognition-mentions__table th {
	font-family: var(--font-mono);
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #5c5670;
	background: rgba(28, 25, 23, 0.03);
}

.client-sites-panel__table tbody tr:last-child td,
.recognition-mentions__table tbody tr:last-child td {
	border-bottom: none;
}

.client-sites-panel__sector,
.recognition-mentions__title {
	display: block;
	margin-top: 0.3rem;
	font-size: 1.2rem;
	color: #5c5670;
}

.client-sites-panel__badge {
	display: inline-block;
	margin-top: 0.4rem;
	padding: 0.2rem 0.6rem;
	border-radius: 999px;
	font-family: var(--font-mono);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--signal);
	background: rgba(180, 83, 9, 0.1);
}

.client-sites-panel__credit,
.recognition-mentions__note {
	margin: 0;
	line-height: 1.5;
	color: var(--ink);
}

.recognition-mentions__kind {
	display: block;
	margin-bottom: 0.3rem;
	font-family: var(--font-mono);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--signal);
}

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

.poster__store a:hover {
	color: var(--link);
}

.poster__external {
	display: block;
	margin-top: 0.4rem;
	font-size: 1.2rem;
	font-weight: 400;
}

.section-void .client-sites-panel__table-wrap,
.section-void .recognition-mentions__table-wrap {
	border-color: rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
}

.section-void .client-sites-panel__table th,
.section-void .client-sites-panel__table td,
.section-void .recognition-mentions__table th,
.section-void .recognition-mentions__table td {
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.section-void .client-sites-panel__table th,
.section-void .recognition-mentions__table th {
	color: var(--mist);
	background: rgba(255, 255, 255, 0.03);
}

.section-void .client-sites-panel__sector,
.section-void .client-sites-panel__credit,
.section-void .recognition-mentions__title,
.section-void .recognition-mentions__note {
	color: var(--mist);
}

.section-void .client-sites-panel__table a,
.section-void .recognition-mentions__table a {
	color: var(--cyan);
}

/* ─── Lead gen: outcomes, testimonials, service grid ─── */
.outcome-cards {
	display: grid;
	gap: 1.2rem;
	margin-top: 2.4rem;
}

@media (min-width: 640px) {
	.outcome-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.outcome-cards {
		grid-template-columns: repeat(4, 1fr);
	}
}

.outcome-card {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1.6rem;
	background: var(--paper);
	border: 1px solid rgba(28, 25, 23, 0.08);
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: var(--ink);
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.outcome-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(28, 25, 23, 0.08);
	border-color: rgba(180, 83, 9, 0.35);
}

.outcome-card__stat {
	font-family: var(--font-mono);
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--signal);
	line-height: 1;
}

.outcome-card__label {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--ink);
}

.outcome-card__client {
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 0.4rem;
}

.outcome-card__context {
	font-size: 1.3rem;
	line-height: 1.5;
	color: #5c5670;
	flex: 1;
}

.outcome-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 0.8rem;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--link);
}

.testimonial-grid {
	display: grid;
	gap: 1.6rem;
	margin-top: 2.4rem;
}

@media (min-width: 768px) {
	.testimonial-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.testimonial-card {
	display: flex;
	flex-direction: column;
	padding: 2rem;
	background: var(--paper);
	border: 1px solid rgba(28, 25, 23, 0.08);
	border-radius: var(--radius-lg);
}

.testimonial-card--citation {
	border-left: 4px solid var(--violet);
}

.testimonial-card--case {
	border-left: 4px solid var(--signal);
}

.testimonial-card--partner {
	border-left: 4px solid var(--cyan);
}

.testimonial-card__source {
	margin: 0 0 0.6rem;
	font-size: 1.1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #5c5670;
}

.testimonial-card--clientapproved {
	border-left-color: var(--signal);
}

.testimonial-card--publishedcase {
	border-left-color: var(--signal);
}

.testimonial-card--growthpartner {
	border-left-color: var(--cyan);
}

.testimonial-card--thirdparty {
	border-left-color: var(--violet);
}

.testimonial-card__metric {
	margin: 0 0 0.8rem;
	font-family: var(--font-mono);
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--signal);
}

.testimonial-card__quote {
	margin: 0;
}

.testimonial-card__quote p {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.65;
	color: var(--ink);
}

.testimonial-card__footer {
	margin-top: 1.6rem;
}

.testimonial-card__name {
	display: block;
	font-style: normal;
	font-family: var(--font-display);
	font-size: 1.5rem;
	font-weight: 700;
}

.testimonial-card__role {
	margin: 0.4rem 0 0;
	font-size: 1.25rem;
	color: #5c5670;
}

.testimonial-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 0.8rem;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--link);
	text-decoration: none;
}

.service-entry-grid {
	display: grid;
	gap: 1.2rem;
	margin-top: 2.4rem;
}

@media (min-width: 640px) {
	.service-entry-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.service-entry-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.service-entry {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	padding: 2rem;
	background: var(--paper);
	border: 1px solid rgba(28, 25, 23, 0.08);
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: var(--ink);
	transition: transform 0.2s, box-shadow 0.2s;
}

.service-entry:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(28, 25, 23, 0.08);
}

.service-entry__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.4rem;
	height: 4.4rem;
	border-radius: var(--radius-md);
	background: rgba(180, 83, 9, 0.1);
	color: var(--signal);
}

.service-entry__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 700;
}

.service-entry__desc {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.55;
	color: #5c5670;
	flex: 1;
}

.service-entry__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--link);
}

.ecommerce-proof-grid {
	display: grid;
	gap: 1.6rem;
	margin-top: 2.4rem;
}

@media (min-width: 768px) {
	.ecommerce-proof-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.ecommerce-proof-card {
	display: flex;
	flex-direction: column;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
	text-decoration: none;
	color: #fff;
	transition: border-color 0.2s, background 0.2s;
}

.ecommerce-proof-card:hover {
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.06);
}

.ecommerce-proof-card__head {
	display: flex;
	align-items: baseline;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
}

.ecommerce-proof-card__stat {
	font-family: var(--font-mono);
	font-size: 3rem;
	font-weight: 600;
	color: var(--cyan);
	line-height: 1;
}

.ecommerce-proof-card__stat-label {
	font-size: 1.3rem;
	color: var(--mist);
}

.ecommerce-proof-card__client {
	margin: 0;
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
}

.ecommerce-proof-card__meta {
	margin: 0.4rem 0 0;
	font-size: 1.25rem;
	color: var(--mist);
}

.ecommerce-proof-card__summary {
	margin: 1.2rem 0 0;
	font-size: 1.4rem;
	line-height: 1.6;
	color: var(--mist);
	flex: 1;
}

.ecommerce-proof-card__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 1.2rem;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--cyan);
}

.nav-cta--ghost {
	background: rgba(34, 211, 238, 0.08) !important;
	border: 1px solid rgba(34, 211, 238, 0.28) !important;
	color: #fff !important;
	font-weight: 600 !important;
}

.nav-cta--ghost:hover {
	background: rgba(34, 211, 238, 0.16) !important;
}

.nav-drawer__cta--ghost {
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	color: #fff !important;
}

.contact-audit-strip {
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
	padding: 2rem;
	margin-bottom: 2.4rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
	.contact-audit-strip {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.contact-audit-strip__eyebrow {
	margin: 0 0 0.4rem;
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--cyan);
}

.contact-audit-strip__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
}

.guide-lead-magnets {
	display: grid;
	gap: 1.6rem;
}

@media (min-width: 768px) {
	.guide-lead-magnets {
		grid-template-columns: repeat(2, 1fr);
	}
}

.contact-audit-strip__text {
	margin: 0.6rem 0 0;
	font-size: 1.4rem;
	line-height: 1.6;
	color: var(--mist);
	max-width: 52ch;
}

/* ─── AEO experts roundup (insights) ─── */
.aeo-expert-list {
	margin: 2.4rem 0 0;
	padding: 0;
	list-style: none;
	counter-reset: aeo-expert;
}

.aeo-expert-item {
	padding: 2rem 0;
	border-bottom: 1px solid rgba(28, 25, 23, 0.1);
}

.aeo-expert-item--featured {
	padding: 2rem;
	margin-bottom: 0.8rem;
	background: var(--paper);
	border: 1px solid rgba(180, 83, 9, 0.25);
	border-radius: var(--radius-lg);
	border-bottom: 1px solid rgba(180, 83, 9, 0.25);
}

.aeo-expert-item__name {
	margin: 0 0 0.4rem;
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 700;
}

.aeo-expert-item__specialty {
	margin: 0 0 0.8rem;
	font-family: var(--font-mono);
	font-size: 1.25rem;
	color: var(--signal);
}

.aeo-expert-item__summary {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.65;
	color: #5c5670;
}

.aeo-expert-item__links {
	margin: 1rem 0 0;
	font-size: 1.4rem;
}

/* ─── Focused homepage hero ─── */
.spectacle-hero--focused {
	min-height: auto;
	padding: 8rem 0 4rem;
}

.centerpiece--focused {
	display: block;
	max-width: 64rem;
}

.centerpiece--focused .centerpiece__main {
	max-width: 56rem;
}

.centerpiece--focused .centerpiece__tool {
	margin-top: 2.4rem;
}

.hero-trust-cue {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	margin: 2rem 0 0;
	font-family: var(--font-mono);
	font-size: 1.25rem;
	color: var(--mist);
}

.section-void--tight {
	padding-top: 3.2rem;
	padding-bottom: 2.4rem;
}

.hero-below {
	display: grid;
	gap: 2.4rem;
	align-items: start;
}

@media (min-width: 900px) {
	.hero-below {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: 3.2rem;
	}
}

.hero-below__photo img {
	width: 100%;
	max-height: 22rem;
	object-fit: cover;
	object-position: center 25%;
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-below .awards-chip {
	margin-top: 1.4rem;
}

.hero-below .centerpiece__actions {
	display: grid;
	gap: 1.2rem;
}

/* ─── Batch 2 dossier visuals ─── */
.dossier-callout {
	position: relative;
	background: var(--paper);
	border: 1px solid rgba(28, 25, 23, 0.1);
	border-radius: var(--radius-lg);
	padding: 2rem 2.4rem 2rem 2.8rem;
	box-shadow: 0 12px 32px rgba(28, 25, 23, 0.06);
}

.dossier-callout::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	border-radius: var(--radius-lg) 0 0 var(--radius-lg);
	background: var(--signal);
}

.dossier-callout__eyebrow {
	margin: 0 0 0.6rem;
	font-family: var(--font-mono);
	font-size: 1.15rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--signal);
}

.dossier-callout__value {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2rem, 3vw, 2.8rem);
	font-weight: 700;
	color: var(--ink);
	line-height: 1.2;
}

.dossier-callout__note {
	margin: 0.8rem 0 0;
	font-size: 1.45rem;
	line-height: 1.55;
	color: #5c5670;
}

.checklist-gate {
	background: var(--paper);
	border: 1px solid rgba(28, 25, 23, 0.1);
	border-radius: var(--radius-lg);
	padding: 2.4rem;
	margin-top: 2.4rem;
	box-shadow: 0 12px 32px rgba(28, 25, 23, 0.06);
	position: relative;
}

.checklist-gate::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	border-radius: var(--radius-lg) 0 0 var(--radius-lg);
	background: var(--signal);
}

.checklist-gate--unlocked {
	border-color: rgba(101, 163, 13, 0.35);
	background: color-mix(in srgb, var(--lime) 6%, var(--paper));
}

.checklist-gate--unlocked::before {
	background: var(--lime);
}

.checklist-unlock-banner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
	margin-bottom: 2rem;
	padding: 1.6rem 2rem;
	background: var(--paper);
	border: 1px solid rgba(101, 163, 13, 0.3);
	border-radius: var(--radius-lg);
}

.checklist-unlock-banner__text {
	margin: 0;
	font-size: 1.45rem;
	color: var(--ink);
}

.checklist-unlock-banner__text strong {
	color: var(--signal);
}

.batch2-related__list {
	display: grid;
	gap: 0.8rem;
}

@media (min-width: 640px) {
	.batch2-related__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.batch2-related__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	padding: 1.2rem 1.4rem;
	background: var(--paper);
	border: 1px solid rgba(28, 25, 23, 0.1);
	border-radius: var(--radius-lg);
	color: var(--ink) !important;
	font-weight: 600;
	text-decoration: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.batch2-related__link:hover {
	border-color: rgba(180, 83, 9, 0.4);
	box-shadow: 0 8px 20px rgba(28, 25, 23, 0.06);
}

.batch2-related--dark .batch2-related__link {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
	color: #fff !important;
}

.section-cream .compare-table-wrap,
.article-prose .compare-table-wrap {
	background: var(--paper);
	border: 1px solid rgba(28, 25, 23, 0.1);
	border-radius: var(--radius-lg);
	overflow: auto;
	box-shadow: 0 8px 24px rgba(28, 25, 23, 0.04);
}

.section-cream .compare-table,
.article-prose .compare-table,
.section-cream .authority-mentions__table {
	width: 100%;
	border-collapse: collapse;
}

.audit-next-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	justify-content: center;
	margin-top: 1.6rem;
}

.audit-next-actions .btn {
	font-size: 1.35rem;
	padding: 1rem 1.8rem;
}

/* ─── Client reviews (Trustpilot / Google) ─── */
.client-reviews__score {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.6rem;
	margin-bottom: 2.4rem;
	padding: 2rem 2.4rem;
	background: var(--paper);
	border: 1px solid rgba(28, 25, 23, 0.1);
	border-radius: var(--radius-lg);
	border-left: 4px solid var(--signal);
}

.client-reviews__platforms {
	display: flex;
	flex-wrap: wrap;
	gap: 2.4rem 3.2rem;
}

.client-reviews--dark .client-reviews__score {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
}

.client-reviews__platform-label {
	margin: 0 0 0.4rem;
	font-family: var(--font-mono);
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--signal);
}

.client-reviews__rating {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 0;
}

.client-reviews__rating-num {
	font-family: var(--font-display);
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1;
	color: var(--ink);
}

.client-reviews--dark .client-reviews__rating-num {
	color: #fff;
}

.client-reviews__stars {
	font-size: 2rem;
	letter-spacing: 0.08em;
	color: var(--signal);
}

.client-reviews__score-meta {
	margin: 0.6rem 0 0;
	font-family: var(--font-mono);
	font-size: 1.25rem;
	color: #5c5670;
}

.client-reviews--dark .client-reviews__score-meta {
	color: var(--mist);
}

.client-reviews__grid {
	display: grid;
	gap: 1.6rem;
}

@media (min-width: 768px) {
	.client-reviews__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.client-reviews__card {
	padding: 2rem;
	background: var(--paper);
	border: 1px solid rgba(28, 25, 23, 0.1);
	border-radius: var(--radius-lg);
}

.client-reviews--dark .client-reviews__card {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.12);
}

.client-reviews__card-stars {
	margin: 0 0 0.4rem;
	font-size: 1.5rem;
	letter-spacing: 0.06em;
	color: var(--signal);
}

.client-reviews__card-source {
	margin: 0 0 1rem;
	font-family: var(--font-mono);
	font-size: 1.15rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #5c5670;
}

.client-reviews--dark .client-reviews__card-source {
	color: var(--mist);
}

.client-reviews__quote {
	margin: 0;
}

.client-reviews__quote p {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.6;
	color: var(--ink);
}

.client-reviews--dark .client-reviews__quote p {
	color: rgba(255, 255, 255, 0.88);
}

.client-reviews__footer {
	margin-top: 1.4rem;
}

.client-reviews__author {
	font-style: normal;
	font-weight: 600;
	font-size: 1.45rem;
	color: var(--ink);
}

.client-reviews--dark .client-reviews__author {
	color: #fff;
}

.client-reviews__role {
	margin: 0.2rem 0 0;
	font-size: 1.35rem;
	color: #5c5670;
}

.client-reviews--dark .client-reviews__role {
	color: var(--mist);
}

.client-reviews__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 0.8rem;
	font-size: 1.35rem;
	font-weight: 500;
	color: var(--link);
	text-decoration: none;
}

.client-reviews--dark .client-reviews__link {
	color: var(--cyan);
}

/* Ecommerce SEO location topic cluster */
.location-topic-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
	margin-top: 2.4rem;
}

@media (max-width: 800px) {
	.location-topic-strip {
		grid-template-columns: 1fr;
	}
}

.location-topic-strip__link {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	padding: 1.6rem 1.8rem;
	background: var(--paper);
	border: 1px solid rgba(28, 25, 23, 0.1);
	border-left: 3px solid var(--signal);
	text-decoration: none;
	color: var(--ink);
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.location-topic-strip__link:hover {
	border-color: rgba(180, 83, 9, 0.45);
	border-left-color: var(--signal);
	transform: translateY(-1px);
}

.location-topic-strip__label {
	font-family: var(--font-display);
	font-size: 1.7rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.location-topic-strip__desc {
	font-size: 1.4rem;
	line-height: 1.5;
	color: #5c5670;
}

.location-region__title {
	margin: 0;
	font-family: var(--font-mono);
	font-size: 1.25rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--signal);
}

.location-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
	gap: 1.2rem;
}

.location-card {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1.6rem 1.8rem;
	background: var(--paper);
	border: 1px solid rgba(28, 25, 23, 0.1);
	text-decoration: none;
	color: var(--ink);
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.location-card:hover {
	border-color: var(--signal);
	transform: translateY(-1px);
}

.location-card__name {
	font-family: var(--font-display);
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.location-card__region {
	font-family: var(--font-mono);
	font-size: 1.15rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #5c5670;
}
