/* Pragmio — control center homepage (2026) */

:root {
	--bg-deep: #0b0f14;
	--bg-elevated: #111820;
	--text: #ffffff;
	--text-muted: rgba(255, 255, 255, 0.62);
	--text-dim: rgba(255, 255, 255, 0.4);
	--accent: #4f8cff;
	--accent-soft: rgba(79, 140, 255, 0.14);
	--accent-glow: rgba(79, 140, 255, 0.35);
	--border: rgba(255, 255, 255, 0.08);
	--radius: 10px;
	--font: "Inter", system-ui, sans-serif;
	--max: 1120px;
	--header-h: 64px;
}

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

html {
	scroll-behavior: smooth;
}

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

body.site-body {
	margin: 0;
	font-family: var(--font);
	background: var(--bg-deep);
	color: var(--text);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--accent);
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	color: #7eb0ff;
}

.skip-link {
	position: absolute;
	left: -9999px;
	z-index: 100;
	padding: 0.5rem 1rem;
	background: var(--accent);
	color: var(--bg-deep);
	font-weight: 600;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
}

/* ——— Header ——— */

/* Cluster: sticky bar + primary nav (no backdrop-filter — it breaks fixed nav stacking vs main). */
.site-header-cluster {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid var(--border);
	background: rgba(11, 15, 20, 0.94);
	isolation: isolate;
}

.site-header {
	height: var(--header-h);
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
}

.site-header__inner {
	position: relative;
	z-index: 2;
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 1.25rem;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-logo {
	flex-shrink: 0;
	font-weight: 700;
	font-size: 1.125rem;
	letter-spacing: -0.03em;
	color: var(--text);
}

.site-logo:hover {
	color: var(--text);
	opacity: 0.85;
}

/* Mobile menu toggle — hidden on wide screens */
.site-nav-toggle {
	display: none;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--text);
	cursor: pointer;
	border-radius: var(--radius);
}

.site-nav-toggle:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

.site-nav-toggle__bars {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 1.375rem;
}

.site-nav-toggle__bars span {
	display: block;
	height: 2px;
	background: currentColor;
	border-radius: 1px;
	transition: transform 0.2s ease, opacity 0.2s ease;
	transform-origin: center;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__bars span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__bars span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__bars span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
	.site-nav-toggle__bars span {
		transition: none;
	}
}

.site-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	gap: 0.35rem 1.25rem;
}

.site-nav a {
	color: var(--text-muted);
	font-size: 0.875rem;
	font-weight: 500;
}

.site-nav a:hover {
	color: var(--text);
}

.site-nav-backdrop {
	display: none;
}

@media (max-width: 900px) {
	.site-nav ul {
		gap: 0.35rem 0.75rem;
	}

	.site-nav a {
		font-size: 0.8125rem;
	}
}

@media (max-width: 768px) {
	.site-nav-toggle {
		display: flex;
	}

	.site-nav {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1;
		margin: 0;
		padding: 1.25rem 1.25rem 2rem;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background: rgba(11, 15, 20, 0.97);
		border-bottom: 1px solid var(--border);
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
		transform: translateX(100%);
		visibility: hidden;
		transition: transform 0.28s ease, visibility 0.28s ease;
	}

	body.site-nav-open .site-nav {
		transform: translateX(0);
		visibility: visible;
	}

	.site-nav ul {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
	}

	.site-nav li {
		border-bottom: 1px solid var(--border);
	}

	.site-nav li:last-child {
		border-bottom: none;
	}

	.site-nav a {
		display: block;
		padding: 0.95rem 0;
		font-size: 1rem;
		font-weight: 600;
		color: var(--text);
	}

	.site-nav a:hover {
		color: var(--accent);
	}

	.site-nav-backdrop {
		display: block;
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 0;
		margin: 0;
		padding: 0;
		border: none;
		background: rgba(0, 0, 0, 0.5);
		cursor: pointer;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.28s ease, visibility 0.28s ease;
	}

	body.site-nav-open .site-nav-backdrop {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	@media (prefers-reduced-motion: reduce) {
		.site-nav {
			transition: none;
		}

		.site-nav-backdrop {
			transition: none;
		}
	}
}

@media (min-width: 769px) {
	.site-header-cluster {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		max-width: var(--max);
		margin: 0 auto;
		padding: 0 1.25rem;
		height: var(--header-h);
	}

	.site-header {
		flex: 0 0 auto;
		height: auto;
		min-height: 0;
	}

	.site-header__inner {
		flex: 0 0 auto;
		max-width: none;
		margin: 0;
		padding: 0;
		width: auto;
	}

	.site-nav {
		position: static;
		flex: 1 1 auto;
		min-width: 0;
		padding: 0;
		transform: none !important;
		visibility: visible !important;
		background: transparent;
		border: none;
		box-shadow: none;
		overflow: visible;
	}

	.site-nav ul {
		flex-wrap: nowrap;
		justify-content: flex-end;
	}
}

/* ——— Main ——— */

.site-main {
	position: relative;
	z-index: 0;
	overflow-x: hidden;
}

.page-home {
	max-width: 100%;
}

.shell {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* ——— Hero ——— */

.hero {
	position: relative;
	min-height: calc(100vh - var(--header-h));
	min-height: calc(100dvh - var(--header-h));
	display: flex;
	align-items: center;
	padding: 4rem 0 5rem;
}

.hero--inner {
	min-height: 0;
	padding: 3.5rem 0 4.5rem;
	align-items: flex-end;
}

.hero--error-404 {
	min-height: min(72vh, 36rem);
	align-items: center;
}

.hero__content--error-404 {
	max-width: 40rem;
}

.section--error-404-links {
	padding: 0 0 4rem;
	background: var(--bg-deep);
	border-top: 1px solid var(--border);
}

.error-404__hint {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

.error-404__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 1.25rem;
}

.error-404__links a {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--accent);
	text-decoration: none;
	border-bottom: 1px solid rgba(79, 140, 255, 0.35);
	transition: color 0.15s ease, border-color 0.15s ease;
}

.error-404__links a:hover {
	color: #fff;
	border-bottom-color: rgba(255, 255, 255, 0.35);
}

.hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(79, 140, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(79, 140, 255, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 70%);
}

.hero__glow {
	position: absolute;
	width: 140%;
	height: 60%;
	left: -20%;
	top: -10%;
	background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 55%);
	opacity: 0.35;
	animation: hero-pulse 12s ease-in-out infinite;
}

@keyframes hero-pulse {
	0%,
	100% {
		opacity: 0.28;
		transform: scale(1);
	}
	50% {
		opacity: 0.42;
		transform: scale(1.03);
	}
}

.hero__lines {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		transparent 40%,
		rgba(79, 140, 255, 0.06) 50%,
		transparent 60%
	);
	animation: hero-sheen 18s linear infinite;
}

@keyframes hero-sheen {
	0% {
		transform: translateX(-8%);
	}
	100% {
		transform: translateX(8%);
	}
}

.hero__content {
	position: relative;
	z-index: 1;
}

.hero__eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 1rem;
}

.hero h1 {
	font-size: clamp(2.35rem, 5.8vw, 3.85rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -0.038em;
	margin: 0 0 1rem;
	max-width: 22ch;
}

.hero__sub {
	font-size: clamp(0.8125rem, 1.45vw, 1rem);
	color: var(--text-dim);
	max-width: 48ch;
	margin: 0 0 1rem;
	line-height: 1.55;
}

.hero__bridge {
	margin: 0;
	font-size: clamp(0.8125rem, 1.35vw, 0.9375rem);
	line-height: 1.55;
	color: var(--text-muted);
	max-width: 46ch;
}

.hero__bridge--credibility {
	margin-top: 1.5rem;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__audience {
	font-size: clamp(1.05rem, 1.9vw, 1.25rem);
	font-weight: 700;
	color: var(--text);
	max-width: 40ch;
	margin: 0 0 2rem;
	line-height: 1.35;
	letter-spacing: -0.025em;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.35rem;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: var(--radius);
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

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

.btn--primary {
	background: var(--accent);
	color: #0b0f14;
}

.btn--primary:hover {
	background: #6fa3ff;
	color: #0b0f14;
}

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

.btn--ghost:hover {
	border-color: rgba(79, 140, 255, 0.5);
	background: var(--accent-soft);
}

/* ——— Sections shared ——— */

.section {
	padding: 6.25rem 0;
	border-top: 1px solid var(--border);
}

.section__title {
	font-size: clamp(1.6rem, 3.2vw, 2.15rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	margin: 0 0 0.85rem;
}

.section__lead {
	font-size: 1.0625rem;
	color: var(--text-muted);
	max-width: 52ch;
	margin: 0 0 2.75rem;
	line-height: 1.65;
}

.section--systems .section__lead {
	margin-bottom: 0.65rem;
}

.section--systems .section__depth {
	margin: 0 0 2.35rem;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.38);
	max-width: 56ch;
	line-height: 1.55;
	letter-spacing: 0.02em;
	border-left: 2px solid rgba(79, 140, 255, 0.35);
	padding-left: 0.85rem;
}

/* Problem — one dominant line (problem__punch); intro + support stay subordinate */

.problem__intro {
	margin: 0 0 0.5rem;
	font-size: 0.9375rem;
	font-weight: 400;
	letter-spacing: -0.012em;
	color: rgba(255, 255, 255, 0.64);
	line-height: 1.55;
}

.problem__support {
	margin: 0 0 1.1rem;
	max-width: 42ch;
	font-size: 1.0625rem;
	font-weight: 400;
	color: var(--text-muted);
	line-height: 1.6;
}

.problem__punch {
	margin: 0 0 2.1rem;
	max-width: 22ch;
	font-size: clamp(1.75rem, 4vw, 2.35rem);
	font-weight: 900;
	letter-spacing: -0.045em;
	line-height: 1.1;
	color: #fff;
	text-shadow: 0 0 36px rgba(79, 140, 255, 0.35), 0 2px 24px rgba(0, 0, 0, 0.35);
}

.problem__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.95rem;
	max-width: 40rem;
}

.problem__list li {
	position: relative;
	padding-left: 1.25rem;
	font-size: 1.05rem;
	color: var(--text-muted);
}

.problem__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 6px;
	height: 6px;
	background: var(--accent);
	border-radius: 1px;
	box-shadow: 0 0 10px var(--accent-glow);
}

/* Systems */

.section--systems {
	background: linear-gradient(180deg, transparent, rgba(79, 140, 255, 0.03));
}

.systems-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

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

.system-card {
	padding: 1.5rem 1.35rem;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--border);
	border-top-width: 2px;
	backdrop-filter: blur(12px);
	transition: border-color 0.25s, box-shadow 0.25s;
}

.system-card--revenue {
	border-top-color: rgba(79, 140, 255, 0.55);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 40px rgba(79, 140, 255, 0.06);
}

.system-card--automation {
	border-top-color: rgba(45, 212, 191, 0.55);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 40px rgba(45, 212, 191, 0.06);
}

.system-card--risk {
	border-top-color: rgba(167, 139, 250, 0.55);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 40px rgba(167, 139, 250, 0.06);
}

.system-card:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.system-card--revenue:hover {
	border-color: rgba(79, 140, 255, 0.45);
}

.system-card--automation:hover {
	border-color: rgba(45, 212, 191, 0.45);
}

.system-card--risk:hover {
	border-color: rgba(167, 139, 250, 0.45);
}

.system-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 1rem;
	border-radius: 11px;
	box-sizing: border-box;
}

.system-card__icon--revenue {
	color: #8eb8ff;
	background: rgba(79, 140, 255, 0.14);
	box-shadow: 0 0 0 1px rgba(79, 140, 255, 0.2) inset;
}

.system-card__icon--automation {
	color: #5eead4;
	background: rgba(45, 212, 191, 0.12);
	box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.22) inset;
}

.system-card__icon--risk {
	color: #c4b5fd;
	background: rgba(167, 139, 250, 0.12);
	box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.22) inset;
}

.system-card h3 {
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}

.system-card ul {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}

.system-card li {
	font-size: 0.9rem;
	color: var(--text-muted);
	padding: 0.35rem 0;
	padding-left: 1rem;
	position: relative;
}

.system-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.85em;
	width: 4px;
	height: 4px;
	background: var(--text-dim);
	border-radius: 50%;
}

.system-card__tagline {
	font-size: 0.875rem;
	font-weight: 600;
	margin: 0;
	padding-top: 0.5rem;
	border-top: 1px solid var(--border);
}

.system-card--revenue .system-card__tagline {
	color: #9ec5ff;
}

.system-card--automation .system-card__tagline {
	color: #5eead4;
}

.system-card--risk .system-card__tagline {
	color: #c4b5fd;
}

/* Proof */

.section--proof {
	padding-top: 6.75rem;
	padding-bottom: 7rem;
}

.proof__stats {
	list-style: none;
	margin: 0 0 3.25rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1.85rem 3.5rem;
}

.proof__stat {
	font-size: 0.9rem;
	color: var(--text-muted);
	max-width: 16rem;
}

.proof__stat strong {
	display: block;
	color: var(--text);
	font-size: 0.95rem;
	margin-bottom: 0.25rem;
}

.proof__micro {
	list-style: none;
	margin: 2.75rem 0 0;
	padding: 1.25rem 1.35rem;
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem 2rem;
	font-size: 0.875rem;
	line-height: 1.45;
	color: var(--text-muted);
}

.proof__micro li {
	margin: 0;
	padding: 0;
	position: relative;
	padding-left: 0.65rem;
}

.proof__micro li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--accent);
	opacity: 0.8;
}

.proof__micro strong {
	color: var(--text);
	font-weight: 600;
}

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

.logo-strip {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1.25rem 1.5rem;
	align-items: center;
	margin: 0.75rem 0.25rem;
	padding: 2.35rem 1.85rem;
	border-radius: calc(var(--radius) + 4px);
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (max-width: 1024px) {
	.logo-strip {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

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

.logo-strip a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.45rem 0.6rem;
	min-height: 5.25rem;
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.1);
	transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.logo-strip a:hover {
	border-color: rgba(79, 140, 255, 0.55);
	background: rgba(255, 255, 255, 0.14);
	box-shadow: 0 0 0 1px rgba(79, 140, 255, 0.15);
}

.logo-strip img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: clamp(56px, 10vw, 96px);
	object-fit: contain;
	object-position: center;
	/*
	 * Dark brand PNGs on dark UI: brightness+grayscale stays muddy.
	 * Standard fix: flatten to silhouette, invert → light marks on dark tiles.
	 */
	filter: grayscale(1) brightness(0) invert(1);
	opacity: 0.92;
	transition: filter 0.35s ease, opacity 0.35s ease;
}

.logo-strip a:hover img {
	filter: none;
	opacity: 1;
}

/* Results */

.section--results {
	background: var(--bg-elevated);
}

.results-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

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

.result-block {
	padding: 1.75rem 1.5rem;
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: rgba(11, 15, 20, 0.6);
}

.result-block__metric {
	margin: 0 0 1rem;
	line-height: 1;
}

.result-block__metric-highlight {
	display: inline-block;
	font-size: clamp(1.35rem, 2.6vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fff;
	line-height: 1.15;
	white-space: nowrap;
	padding: 0.35rem 0.75rem 0.45rem;
	border-radius: 10px;
	background: linear-gradient(145deg, rgba(79, 140, 255, 0.35) 0%, rgba(79, 140, 255, 0.08) 50%, rgba(11, 15, 20, 0.4) 100%);
	border: 1px solid rgba(79, 140, 255, 0.55);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.06) inset,
		0 4px 24px rgba(79, 140, 255, 0.25),
		0 0 48px rgba(79, 140, 255, 0.15);
	text-shadow: 0 0 28px rgba(79, 140, 255, 0.45);
}

@media (max-width: 380px) {
	.result-block__metric-highlight {
		white-space: normal;
		font-size: 1.25rem;
		text-align: center;
	}
}

.result-block p:not(.result-block__metric) {
	margin: 0;
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* How it works */

.section--how {
	background: linear-gradient(180deg, rgba(79, 140, 255, 0.03) 0%, transparent 45%);
}

.steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

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

.step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 1.5rem 1.35rem 1.65rem;
	border-radius: calc(var(--radius) + 2px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-top-width: 2px;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(11, 15, 20, 0.5) 100%);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.06) inset,
		0 12px 40px rgba(0, 0, 0, 0.35);
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.steps > li:nth-child(1) {
	border-top-color: rgba(79, 140, 255, 0.45);
}

.steps > li:nth-child(2) {
	border-top-color: rgba(45, 212, 191, 0.45);
}

.steps > li:nth-child(3) {
	border-top-color: rgba(167, 139, 250, 0.45);
}

.steps > li:nth-child(1) .step__num {
	background: linear-gradient(145deg, #7eb0ff 0%, var(--accent) 50%, #3d7ae8 100%);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.2) inset,
		0 4px 16px rgba(79, 140, 255, 0.35);
}

.steps > li:nth-child(2) .step__num {
	background: linear-gradient(145deg, #5eead4 0%, #14b8a6 50%, #0d9488 100%);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.2) inset,
		0 4px 16px rgba(45, 212, 191, 0.35);
}

.steps > li:nth-child(3) .step__num {
	background: linear-gradient(145deg, #c4b5fd 0%, #8b5cf6 50%, #6d28d9 100%);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.2) inset,
		0 4px 16px rgba(139, 92, 246, 0.35);
}

.step:hover {
	transform: translateY(-3px);
}

.steps > li:nth-child(1):hover {
	border-color: rgba(79, 140, 255, 0.4);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.08) inset,
		0 16px 48px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(79, 140, 255, 0.15);
}

.steps > li:nth-child(2):hover {
	border-color: rgba(45, 212, 191, 0.4);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.08) inset,
		0 16px 48px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(45, 212, 191, 0.15);
}

.steps > li:nth-child(3):hover {
	border-color: rgba(167, 139, 250, 0.4);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.08) inset,
		0 16px 48px rgba(0, 0, 0, 0.4),
		0 0 0 1px rgba(167, 139, 250, 0.15);
}

@media (prefers-reduced-motion: reduce) {
	.step:hover {
		transform: none;
	}
}

.step__num {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.5rem;
	margin-bottom: 1.1rem;
	font-size: 0.9375rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--bg-deep);
	background: linear-gradient(145deg, #6fa3ff 0%, var(--accent) 45%, #3d7ae8 100%);
	border-radius: 8px;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.2) inset,
		0 4px 16px rgba(79, 140, 255, 0.35);
}

.step__title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.25;
	color: var(--text);
}

.step__text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--text-muted);
}

/* Flow connector between steps (desktop) */
@media (min-width: 769px) {
	.step:not(:last-child)::after {
		content: "";
		position: absolute;
		top: 2.75rem;
		right: -0.7rem;
		width: 1.4rem;
		height: 2px;
		background: linear-gradient(90deg, rgba(79, 140, 255, 0.55), rgba(79, 140, 255, 0));
		pointer-events: none;
		z-index: 1;
	}
}

/* Homepage FAQ */

.section--home-faq {
	padding: 4.25rem 0 5.25rem;
	background: linear-gradient(180deg, var(--bg-elevated) 0%, rgba(11, 15, 20, 0.92) 100%);
	border-top: 1px solid var(--border);
}

.home-faq__header {
	margin-bottom: 2.25rem;
	max-width: 40rem;
}

.section__title--faq {
	margin-bottom: 0.65rem;
	max-width: none;
}

.section__lead--faq {
	margin: 0;
	font-size: clamp(0.9375rem, 1.35vw, 1.0625rem);
	color: var(--text-muted);
	line-height: 1.5;
	max-width: 36ch;
}

.home-faq {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.15rem 1.35rem;
	max-width: 100%;
	align-items: stretch;
}

@media (max-width: 720px) {
	.home-faq {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}

.home-faq__item {
	margin: 0;
	padding: 1.35rem 1.35rem 1.45rem;
	border-radius: calc(var(--radius) + 2px);
	border: 1px solid var(--border);
	background: rgba(11, 15, 20, 0.55);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.05),
		0 8px 28px rgba(0, 0, 0, 0.22);
	display: flex;
	flex-direction: column;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-faq__item:hover {
	border-color: rgba(79, 140, 255, 0.28);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.06),
		0 10px 32px rgba(0, 0, 0, 0.28),
		0 0 0 1px rgba(79, 140, 255, 0.08);
}

@media (prefers-reduced-motion: reduce) {
	.home-faq__item {
		transition: none;
	}
}

.home-faq__q {
	margin: 0 0 0.65rem;
	font-size: clamp(0.98rem, 1.25vw, 1.05rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.38;
	color: var(--text);
}

.home-faq__a {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.58;
	color: rgba(255, 255, 255, 0.52);
}

/* Final CTA */

.section--cta {
	text-align: center;
	padding: 5.5rem 0 6rem;
	background: linear-gradient(180deg, transparent, rgba(79, 140, 255, 0.06));
	border-top: 1px solid var(--border);
}

.section--cta .shell {
	max-width: 36rem;
}

.section--cta h2 {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	margin: 0 0 1.5rem;
	letter-spacing: -0.03em;
}

.section--cta .btn {
	margin-top: 0.25rem;
}

.section--cta--inline .section__lead--tight {
	margin-bottom: 1.5rem;
	max-width: 40ch;
	margin-left: auto;
	margin-right: auto;
}

/* Solutions page */

.shell--wide {
	max-width: 880px;
}

.shell--narrow {
	max-width: 40rem;
}

.page-solutions .hero--inner h1 {
	max-width: 32ch;
}

.section__lead--narrow {
	max-width: 42ch;
}

.section--sol-core .section__lead {
	margin-bottom: 0.65rem;
}

.sol-powered {
	margin: 0 0 1.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(79, 140, 255, 0.95);
}

.sol-product {
	padding: 1.75rem 1.5rem;
	margin: 0 0 1.25rem;
	border-radius: calc(var(--radius) + 2px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-top-width: 2px;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(11, 15, 20, 0.4) 100%);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

.sol-product:last-of-type {
	margin-bottom: 0;
}

.sol-product--revenue {
	border-top-color: rgba(79, 140, 255, 0.55);
}

.sol-product--automation {
	border-top-color: rgba(45, 212, 191, 0.55);
}

.sol-product--risk {
	border-top-color: rgba(167, 139, 250, 0.55);
}

.sol-product__badge {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.sol-product__headline {
	margin: 0 0 1.25rem;
	font-size: clamp(1.2rem, 2.2vw, 1.45rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.2;
	color: var(--text);
}

.sol-panels {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-bottom: 0;
}

@media (max-width: 640px) {
	.sol-panels {
		grid-template-columns: 1fr;
	}
}

.sol-block--panel {
	margin: 0;
	padding: 1rem 1rem 1.1rem;
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.2);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sol-product--revenue .sol-block--panel {
	border-color: rgba(79, 140, 255, 0.2);
}

.sol-product--automation .sol-block--panel {
	border-color: rgba(45, 212, 191, 0.2);
}

.sol-product--risk .sol-block--panel {
	border-color: rgba(167, 139, 250, 0.2);
}

.sol-block__label {
	margin: 0 0 0.65rem;
	font-size: 0.625rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

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

.sol-list li {
	position: relative;
	padding-left: 0.95rem;
	font-size: 0.9375rem;
	color: var(--text-muted);
	line-height: 1.45;
}

.sol-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: rgba(255, 255, 255, 0.35);
	font-weight: 700;
	font-size: 0.85em;
}

.sol-outcome {
	margin: 1.15rem 0 0;
	padding: 1rem 1.15rem;
	border-radius: var(--radius);
	border: 1px solid rgba(79, 140, 255, 0.35);
	background: linear-gradient(135deg, rgba(79, 140, 255, 0.12) 0%, rgba(11, 15, 20, 0.5) 100%);
	box-shadow: 0 0 24px rgba(79, 140, 255, 0.08);
}

.sol-product--revenue .sol-outcome {
	border-color: rgba(79, 140, 255, 0.45);
	background: linear-gradient(135deg, rgba(79, 140, 255, 0.14) 0%, rgba(11, 15, 20, 0.55) 100%);
}

.sol-product--automation .sol-outcome {
	border-color: rgba(45, 212, 191, 0.4);
	background: linear-gradient(135deg, rgba(45, 212, 191, 0.1) 0%, rgba(11, 15, 20, 0.55) 100%);
	box-shadow: 0 0 24px rgba(45, 212, 191, 0.08);
}

.sol-product--risk .sol-outcome {
	border-color: rgba(167, 139, 250, 0.45);
	background: linear-gradient(135deg, rgba(167, 139, 250, 0.12) 0%, rgba(11, 15, 20, 0.55) 100%);
	box-shadow: 0 0 24px rgba(167, 139, 250, 0.08);
}

.sol-outcome__label {
	display: block;
	margin: 0 0 0.35rem;
	font-size: 0.625rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.sol-outcome__line {
	margin: 0;
	padding-left: 0.15rem;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.35;
	color: #e8f0ff;
	letter-spacing: -0.02em;
}

.sol-product--automation .sol-outcome__line {
	color: #ecfdf8;
}

.sol-product--risk .sol-outcome__line {
	color: #f5f3ff;
}

.sol-outcome__line::before {
	content: "→ ";
	font-weight: 800;
}

.sol-product--revenue .sol-outcome__line::before {
	color: #7eb0ff;
}

.sol-product--automation .sol-outcome__line::before {
	color: #2dd4bf;
}

.sol-product--risk .sol-outcome__line::before {
	color: #a78bfa;
}

/* Solutions — per-section FAQ (same card grid as home FAQ) */

.sol-faq {
	margin-top: 1.85rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sol-faq__title {
	margin: 0 0 1.15rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.home-faq--sol {
	gap: 1rem 1.15rem;
}

.sol-faq .home-faq__item .home-faq__q {
	margin: 0 0 0.55rem;
	font-size: clamp(0.95rem, 1.2vw, 1.02rem);
	font-weight: 600;
	line-height: 1.35;
}

/* Solutions — examples */

.section--sol-examples {
	padding-top: 6.5rem;
	padding-bottom: 6.5rem;
}

/* Solutions — advanced stack (post–examples) */

.section--sol-advanced {
	padding-top: 5rem;
	padding-bottom: 5.5rem;
	background: linear-gradient(180deg, rgba(79, 140, 255, 0.04) 0%, transparent 55%);
	border-top: 1px solid var(--border);
}

.sol-advanced-list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	max-width: 40rem;
	display: grid;
	gap: 0.55rem;
}

.sol-advanced-list li {
	position: relative;
	padding-left: 1.1rem;
	font-size: 1.02rem;
	font-weight: 500;
	color: var(--text);
	line-height: 1.45;
	letter-spacing: -0.015em;
}

.sol-advanced-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 5px;
	border-radius: 1px;
	background: var(--accent);
	box-shadow: 0 0 8px rgba(79, 140, 255, 0.4);
}

.sol-advanced__footnote {
	margin: 0;
	max-width: 44rem;
	font-size: 0.9375rem;
	font-weight: 500;
	font-style: italic;
	color: var(--text-muted);
	line-height: 1.55;
	padding: 1rem 1.1rem;
	border-radius: var(--radius);
	border-left: 3px solid rgba(79, 140, 255, 0.55);
	background: rgba(79, 140, 255, 0.06);
}

.shell--examples {
	max-width: var(--max);
}

.sol-examples {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem 1.5rem;
}

@media (max-width: 600px) {
	.sol-examples {
		grid-template-columns: 1fr;
	}
}

.sol-example {
	padding: 1.35rem 1.25rem 1.45rem;
	border-radius: calc(var(--radius) + 2px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.sol-example__name {
	margin: 0 0 0.85rem;
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--text);
}

.sol-example__points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.5;
}

.sol-example__points li {
	position: relative;
	padding-left: 0.95rem;
}

.sol-example__points li::before {
	content: "·";
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 700;
}

/* Solutions — choose */

.sol-choose {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 36rem;
	display: grid;
	gap: 0.75rem;
}

.sol-choose li {
	font-size: 1.05rem;
	color: var(--text-muted);
	line-height: 1.45;
	padding: 0.85rem 1rem;
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.02);
}

.sol-choose strong {
	color: var(--text);
	font-weight: 700;
}

.sol-choose__if {
	color: var(--text-muted);
}

/* Solutions — delivery */

.sol-delivery {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 36rem;
	display: grid;
	gap: 0.75rem;
}

.sol-delivery li {
	position: relative;
	padding-left: 1.35rem;
	font-size: 1.0625rem;
	font-weight: 500;
	color: var(--text);
	line-height: 1.5;
	letter-spacing: -0.015em;
}

.sol-delivery li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	background: linear-gradient(145deg, var(--accent), #3d7ae8);
	border-radius: 2px;
	box-shadow: 0 0 10px rgba(79, 140, 255, 0.35);
}

/* Solutions — outcomes (metrics) */

.sol-outcomes-metrics {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
	max-width: 36rem;
}

.sol-outcomes-metrics li {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.65rem 1rem;
	padding: 1rem 1.15rem;
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.03);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (max-width: 480px) {
	.sol-outcomes-metrics li {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.35rem;
	}
}

.sol-outcomes-metrics__value {
	font-size: clamp(1.5rem, 3.5vw, 2.15rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
}

.sol-outcomes-metrics__value--up {
	color: #7eb0ff;
	text-shadow: 0 0 28px rgba(79, 140, 255, 0.35);
}

.sol-outcomes-metrics__value--down {
	color: #5eead4;
	text-shadow: 0 0 28px rgba(45, 212, 191, 0.25);
}

.sol-outcomes-metrics__value--risk {
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	color: #c4b5fd;
	text-shadow: 0 0 28px rgba(167, 139, 250, 0.3);
}

.sol-outcomes-metrics__desc {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--text);
	letter-spacing: -0.02em;
}

.sol-outcomes-metrics__hint {
	font-weight: 500;
	color: var(--text-muted);
	font-size: 0.95em;
}

/* Industries page */

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

.section--industry-blocks {
	padding-top: 5rem;
	padding-bottom: 4rem;
}

.industry-blocks {
	display: grid;
	gap: 1.75rem;
	max-width: 100%;
}

.industry-block {
	margin: 0;
	padding: 1.75rem 1.5rem;
	border-radius: calc(var(--radius) + 2px);
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.02);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.industry-block__headline {
	margin: 0 0 1.35rem;
	font-size: clamp(1.2rem, 2.2vw, 1.45rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	color: var(--text);
}

.industry-block__segments {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem 1.5rem;
}

.industry-block__label {
	margin: 0 0 0.5rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(79, 140, 255, 0.95);
}

.industry-block__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.4rem;
	font-size: 0.9375rem;
	line-height: 1.45;
	color: var(--text-muted);
}

.industry-block__list li {
	position: relative;
	padding-left: 0.85rem;
}

.industry-block__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 4px;
	height: 4px;
	border-radius: 1px;
	background: rgba(255, 255, 255, 0.35);
}

.industry-block__segment--outcome .industry-block__label {
	color: rgba(255, 255, 255, 0.55);
}

.industry-block__outcome {
	margin: 0;
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.55;
	color: var(--text);
	letter-spacing: -0.02em;
}

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

@media (max-width: 560px) {
	.industry-block__segments {
		grid-template-columns: 1fr;
	}
}

/* Case studies (/clients) */

.section--case-studies-intro {
	padding-top: 3.5rem;
	padding-bottom: 0;
}

.case-studies-intro__line {
	margin: 0 auto;
	max-width: 36rem;
	text-align: center;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--text-muted);
}

.case-studies-intro__strategy {
	margin: 1.15rem auto 0;
	max-width: 38rem;
	text-align: center;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: var(--text-dim);
}

.section--case-studies {
	padding-top: 2.75rem;
	padding-bottom: 4.5rem;
}

.case-studies-list {
	display: grid;
	gap: 2.35rem;
	max-width: 100%;
}

.case-card {
	margin: 0;
	padding: 2rem 1.65rem 2.1rem;
	border-radius: calc(var(--radius) + 2px);
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.02);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.case-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 0 0 1.15rem;
}

.case-tag {
	display: inline-block;
	padding: 0.38rem 0.78rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.07);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.case-card__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.2rem, 2.2vw, 1.45rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.25;
	color: var(--text);
}

.case-card__context {
	margin: 0 0 1.5rem;
	font-size: 0.9rem;
	line-height: 1.5;
	color: var(--text-dim);
}

.case-card__block {
	margin: 0 0 1.45rem;
}

.case-card__label {
	margin: 0 0 0.45rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(79, 140, 255, 0.95);
}

.case-card__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.4rem;
	font-size: 0.9375rem;
	line-height: 1.45;
	color: var(--text-muted);
}

.case-card__list li {
	position: relative;
	padding-left: 0.85rem;
}

.case-card__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 4px;
	height: 4px;
	border-radius: 1px;
	background: rgba(255, 255, 255, 0.35);
}

.case-card__block--outcome {
	margin-top: 0.35rem;
	margin-bottom: 0;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.case-card__block--outcome .case-card__label {
	color: rgba(255, 255, 255, 0.55);
}

.case-card__outcome {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	color: var(--text);
	letter-spacing: -0.02em;
}

.case-card__note {
	margin: 1.55rem 0 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--text-dim);
}

.case-card__details {
	margin-top: 1.85rem;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.case-card__summary {
	cursor: pointer;
	list-style: none;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--accent);
}

.case-card__summary::-webkit-details-marker {
	display: none;
}

.case-card__summary::after {
	content: "";
	display: inline-block;
	margin-left: 0.35rem;
	width: 0.35em;
	height: 0.35em;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	vertical-align: 0.15em;
	transition: transform 0.2s ease;
}

.case-card__details[open] .case-card__summary::after {
	transform: rotate(-135deg);
	vertical-align: 0.05em;
}

.case-card__expand {
	margin-top: 1.2rem;
	padding-top: 0.15rem;
}

.case-card__expand-row {
	margin: 0 0 1.35rem;
}

.case-card__expand-row:last-child {
	margin-bottom: 0;
}

.case-card__expand-label {
	margin: 0 0 0.4rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

.case-card__expand-label--natural {
	text-transform: none;
	letter-spacing: 0.01em;
	font-size: 0.8125rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.62);
}

.case-card__expand-highlight {
	margin: 1.65rem 0 1.5rem;
	padding: 1.1rem 1.15rem 1.2rem;
	border-radius: calc(var(--radius) + 2px);
	border: 1px solid rgba(79, 140, 255, 0.22);
	border-left: 3px solid rgba(79, 140, 255, 0.65);
	background: linear-gradient(
		135deg,
		rgba(79, 140, 255, 0.1) 0%,
		rgba(79, 140, 255, 0.04) 100%
	);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.case-card__expand-highlight .case-card__expand-label {
	margin-bottom: 0.5rem;
	color: rgba(140, 175, 255, 0.98);
	letter-spacing: 0.08em;
}

.case-card__expand-highlight .case-card__expand-text {
	color: rgba(230, 235, 245, 0.92);
}

.case-card__expand-text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--text-muted);
}

.section--industry-truth {
	padding-top: 4.5rem;
	padding-bottom: 5rem;
	border-top: 1px solid var(--border);
	background: linear-gradient(180deg, rgba(79, 140, 255, 0.05) 0%, transparent 45%);
}

.section--industry-truth .section__title {
	max-width: 28ch;
}

.industry-truth__list {
	list-style: none;
	margin: 0 0 3.4rem;
	padding: 0;
	max-width: 38rem;
	display: grid;
	gap: 0.65rem;
	font-size: 1.0625rem;
	font-weight: 500;
	color: var(--text-muted);
	line-height: 1.5;
}

.industry-truth__list li {
	position: relative;
	padding-left: 1.15rem;
}

.industry-truth__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 5px;
	height: 5px;
	border-radius: 1px;
	background: var(--accent);
	box-shadow: 0 0 10px rgba(79, 140, 255, 0.35);
}

.industry-truth__thesis {
	margin: 0;
	padding-top: 2.35rem;
	border-top: 1px solid rgba(79, 140, 255, 0.35);
	max-width: 32ch;
	font-size: clamp(1.45rem, 3.2vw, 1.9rem);
	font-weight: 800;
	letter-spacing: -0.042em;
	line-height: 1.2;
	color: #fff;
	text-shadow: 0 0 40px rgba(79, 140, 255, 0.22), 0 2px 22px rgba(0, 0, 0, 0.35);
}

.section--proof-industries .section__lead {
	margin-bottom: 2rem;
}

.logo-strip--industries {
	margin-bottom: 2.25rem;
}

.industry-proof-map {
	list-style: none;
	margin: 0;
	padding: 1.15rem 1.25rem;
	border-radius: var(--radius);
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.6rem 1.75rem;
	font-size: 0.875rem;
	line-height: 1.45;
	color: var(--text-muted);
	max-width: 44rem;
}

.industry-proof-map li {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.5rem;
	margin: 0;
}

.industry-proof-map strong {
	color: var(--text);
	font-weight: 600;
}

.industry-proof-map__tag {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(79, 140, 255, 0.9);
}

@media (max-width: 640px) {
	.industry-proof-map {
		grid-template-columns: 1fr;
	}
}

/* About page */

.section--about-block {
	padding-top: 3.75rem;
	padding-bottom: 3.75rem;
}

/* About — experience: tie to block above + clearer bridge */
.section--about-experience {
	padding-top: 2.35rem;
	padding-bottom: 3.75rem;
	border-top: 1px solid rgba(79, 140, 255, 0.32);
	box-shadow: inset 0 1px 0 rgba(79, 140, 255, 0.1);
}

/* About — one subtle rhythm break before “Why teams work with us” */
.section--about-rhythm-break {
	padding-top: 3.85rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(180deg, rgba(79, 140, 255, 0.055) 0%, rgba(11, 15, 20, 0) 52%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.section--about-global .about-one-line,
.section--about-proof .about-proof-line {
	margin: 0;
}

.about-prose p {
	margin: 0 0 1rem;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--text-muted);
	max-width: 48ch;
}

.about-prose p:last-child {
	margin-bottom: 0;
}

.about-prose__emphasis {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--text);
	letter-spacing: -0.02em;
	max-width: 48ch;
}

.about-principles {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 44rem;
	display: grid;
	gap: 0.65rem;
	font-size: 1.0625rem;
	font-weight: 500;
	color: var(--text-muted);
	line-height: 1.5;
}

.about-principles li {
	position: relative;
	padding-left: 1.15rem;
}

.about-principles li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 5px;
	height: 5px;
	border-radius: 1px;
	background: var(--accent);
	box-shadow: 0 0 10px rgba(79, 140, 255, 0.35);
}

/* About — “How we approach problems” (priority block) */
.section--about-approach {
	padding-top: 4.5rem;
	padding-bottom: 3rem;
	background: linear-gradient(165deg, rgba(79, 140, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 45%, transparent 70%);
	border: 1px solid rgba(79, 140, 255, 0.22);
	border-radius: calc(var(--radius) + 6px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.section--about-approach .section__title {
	margin-bottom: 1.35rem;
}

.about-principles--emphasized {
	gap: 1rem;
	font-size: 1.08rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.55;
	letter-spacing: -0.018em;
}

.about-principles--emphasized li {
	padding-left: 1.35rem;
}

.about-principles--emphasized li::before {
	width: 6px;
	height: 6px;
	border-radius: 2px;
	top: 0.52em;
	background: #7eb0ff;
	box-shadow: 0 0 18px rgba(79, 140, 255, 0.55);
}

.about-one-line {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-muted);
	max-width: 48ch;
}

.about-proof-line {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-muted);
	max-width: 52ch;
}

.section--about-proof {
	padding-bottom: 4.5rem;
}

/* Insights page */

.section--insights-grid {
	padding-top: 4.5rem;
	padding-bottom: 5rem;
}

.insights-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem 1.35rem;
	align-items: stretch;
}

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

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

.insights-card {
	margin: 0;
	border-radius: calc(var(--radius) + 2px);
	border: 1px solid var(--border);
	background: rgba(255, 255, 255, 0.02);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.insights-card:hover {
	border-color: rgba(79, 140, 255, 0.35);
	box-shadow: 0 0 0 1px rgba(79, 140, 255, 0.12);
}

/* Card is a block link; beat global `a { color: accent }` so title/body aren’t all blue */
.page-insights a.insights-card__link {
	display: block;
	height: 100%;
	padding: 0 0 1.5rem;
	color: var(--text);
	text-decoration: none;
}

.page-insights a.insights-card__link:hover,
.page-insights a.insights-card__link:focus-visible {
	color: var(--text);
	outline: none;
}

.page-insights a.insights-card__link:focus-visible {
	box-shadow: 0 0 0 2px var(--bg-deep), 0 0 0 4px var(--accent);
	border-radius: 0 0 calc(var(--radius) + 2px) calc(var(--radius) + 2px);
}

.insights-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	background: rgba(0, 0, 0, 0.35);
	overflow: hidden;
}

.insights-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.insights-card__media--empty {
	min-height: 9rem;
	background: linear-gradient(145deg, rgba(79, 140, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.insights-card__title {
	margin: 1.35rem 1.25rem 0.65rem;
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.3;
	color: var(--text);
	transition: color 0.2s ease;
}

.page-insights .insights-card:hover .insights-card__title {
	color: #f0f4fa;
}

.insights-card__category {
	margin: 0.65rem 1.25rem 0;
}

.insights-cat {
	display: inline-block;
	padding: 0.2rem 0.55rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
	color: var(--text-muted);
}

.insights-cat--systems {
	border-color: rgba(79, 140, 255, 0.35);
	color: #9ec0ff;
}

.insights-cat--automation {
	border-color: rgba(120, 220, 180, 0.35);
	color: #9ee8c8;
}

.insights-cat--risk {
	border-color: rgba(255, 160, 120, 0.35);
	color: #ffc4a8;
}

.insights-post-hero__category {
	margin: 0.75rem 0 1.35rem;
}

.insights-card__excerpt {
	margin: 0 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--text-muted);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.insights-empty {
	margin: 0;
	max-width: 44ch;
	font-size: 1.0625rem;
	color: var(--text-muted);
	line-height: 1.55;
}

/* Single insight (/insights/{slug}) */

.page-insights-post .insights-post-hero {
	padding: calc(var(--header-h) + 1.25rem) 0 1.5rem;
	border-bottom: 1px solid var(--border);
	background: linear-gradient(180deg, rgba(79, 140, 255, 0.06) 0%, transparent 55%);
}

.page-insights-post .breadcrumb {
	margin: 0 0 1.1rem;
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	font-weight: 500;
}

.breadcrumb__item {
	display: inline-flex;
	align-items: baseline;
	max-width: 100%;
}

.breadcrumb__item + .breadcrumb__item::before {
	content: "/";
	display: inline-block;
	margin-right: 0.45rem;
	color: var(--text-dim);
	font-weight: 400;
	pointer-events: none;
}

.page-insights-post .breadcrumb a {
	color: var(--text-muted);
	text-decoration: none;
}

.page-insights-post .breadcrumb a:hover {
	color: var(--accent);
}

.breadcrumb__item--current {
	color: var(--text);
	font-weight: 600;
}

.insights-post-hero__title {
	margin: 0;
	font-size: clamp(1.5rem, 4vw, 2.15rem);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.15;
	color: var(--text);
	max-width: 22ch;
}

.insights-post-hero__meta {
	margin: 1rem 0 0;
	font-size: 0.9375rem;
	color: var(--text-dim);
}

.insights-post-featured {
	margin: 0 auto 2rem;
	max-width: var(--max);
	padding: 0 1.25rem;
}

.insights-post-featured img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--radius);
	border: 1px solid var(--border);
}

.insights-article {
	padding-bottom: 3rem;
}

.insights-article__content {
	max-width: 46rem;
	margin: 0 auto;
	font-size: 1.0625rem;
	line-height: 1.75;
}

.prose--insight h3,
.prose--insight h4 {
	margin: 2rem 0 0.75rem;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text);
	line-height: 1.35;
}

.prose--insight h3:first-child,
.prose--insight h4:first-child {
	margin-top: 0;
}

.prose--insight p {
	margin: 0 0 1.1rem;
	color: var(--text-muted);
}

.prose--insight a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.prose--insight a:hover {
	color: #7eb0ff;
}

.prose--insight ul,
.prose--insight ol {
	margin: 0 0 1.1rem;
	padding-left: 1.35rem;
	color: var(--text-muted);
}

.prose--insight li {
	margin-bottom: 0.35rem;
}

.prose--insight blockquote {
	margin: 1.25rem 0;
	padding: 0.75rem 0 0.75rem 1rem;
	border-left: 3px solid var(--accent);
	background: rgba(79, 140, 255, 0.06);
	border-radius: 0 6px 6px 0;
	color: var(--text-muted);
	font-size: 0.9375rem;
}

.prose--insight code {
	font-size: 0.9em;
	padding: 0.1em 0.35em;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--border);
	color: #c8d8f0;
}

.prose--insight pre {
	margin: 1.1rem 0;
	padding: 1rem 1.1rem;
	overflow-x: auto;
	font-size: 0.875rem;
	line-height: 1.55;
	background: rgba(0, 0, 0, 0.45);
	border: 1px solid var(--border);
	border-radius: 8px;
	color: #d4e2f8;
}

.prose--insight pre code {
	background: none;
	border: 0;
	padding: 0;
	color: inherit;
	font-size: inherit;
}

.section--insights-end {
	padding: 0 0 4rem;
}

/* Article footer — back to listing (replaces plain link strip between borders) */
.page-insights-post .section--insights-end {
	border-top: none;
	padding: 2.75rem 0 3.25rem;
	background: linear-gradient(
		180deg,
		rgba(79, 140, 255, 0.05) 0%,
		rgba(11, 15, 20, 0.4) 42%,
		transparent 100%
	);
}

.page-insights-post .insights-end {
	display: flex;
	justify-content: center;
}

.insights-end-nav {
	margin: 0;
	width: 100%;
	max-width: 22rem;
}

.insights-end-link {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.2rem 1rem 1rem;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(17, 24, 32, 0.92);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 18px 48px rgba(0, 0, 0, 0.35);
	text-decoration: none;
	color: var(--text);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.18s ease;
}

.insights-end-link:hover {
	border-color: rgba(79, 140, 255, 0.38);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.05) inset,
		0 0 0 1px rgba(79, 140, 255, 0.1),
		0 20px 56px rgba(0, 0, 0, 0.45);
	color: var(--text);
	transform: translateY(-2px);
}

.insights-end-link:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

.insights-end-link__arrow {
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: rgba(79, 140, 255, 0.14);
	border: 1px solid rgba(79, 140, 255, 0.22);
	font-size: 1.15rem;
	line-height: 1;
	color: var(--accent);
}

.insights-end-link__text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	text-align: left;
	min-width: 0;
}

.insights-end-link__title {
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.insights-end-link__meta {
	font-size: 0.8125rem;
	line-height: 1.35;
	color: var(--text-muted);
	font-weight: 500;
}

.section--insights-missing {
	padding: 6rem 0;
	min-height: 40vh;
}

.insights-missing__text {
	margin: 0 0 1rem;
	font-size: 1.125rem;
	color: var(--text-muted);
}

.insights-missing__back {
	margin: 0;
}

.insights-article__fallback {
	color: var(--text-muted);
	font-style: italic;
}

/* Contact — /contact */

.page-contact .hero--contact {
	align-items: center;
	text-align: center;
	padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
}

.page-contact .hero__content--contact {
	max-width: 40rem;
	margin: 0 auto;
}

.page-contact .hero--contact h1 {
	margin-left: auto;
	margin-right: auto;
	max-width: none;
}

.page-contact .hero__sub--contact {
	max-width: 38ch;
	margin-left: auto;
	margin-right: auto;
}

.section--contact-expect {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}

.shell--contact {
	text-align: center;
}

.contact-section-title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text);
}

.contact-expect-list {
	margin: 0 auto 1.5rem;
	padding: 0;
	list-style: none;
	max-width: 32rem;
	text-align: left;
	counter-reset: expect;
}

.contact-expect-list li {
	position: relative;
	padding: 0.65rem 0 0.65rem 2.5rem;
	border-bottom: 1px solid var(--border);
	font-size: 1rem;
	line-height: 1.45;
	color: var(--text-muted);
}

.contact-expect-list li:last-child {
	border-bottom: none;
}

.contact-expect-list li::before {
	counter-increment: expect;
	content: counter(expect);
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 1.65rem;
	height: 1.65rem;
	border-radius: 6px;
	background: rgba(79, 140, 255, 0.14);
	border: 1px solid rgba(79, 140, 255, 0.25);
	color: var(--accent);
	font-size: 0.8rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-friction {
	margin: 0 auto;
	max-width: 28rem;
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.52);
	font-style: italic;
	line-height: 1.5;
}

.contact-response-hint {
	margin: 0.75rem auto 0;
	max-width: 28rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.58);
}

.section--contact-form {
	padding-top: 2rem;
	padding-bottom: 5rem;
}

.contact-form {
	max-width: 26rem;
	margin: 0 auto;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.contact-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	margin: 0;
}

.contact-label {
	margin-top: 0.85rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--text-muted);
	letter-spacing: 0.02em;
}

.contact-label:first-of-type {
	margin-top: 0;
}

.contact-optional {
	font-weight: 500;
	color: var(--text-dim);
}

.contact-hint {
	margin: 0.15rem 0 0.35rem;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--text-dim);
}

.contact-input,
.contact-textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 0.65rem 0.85rem;
	border-radius: 10px;
	border: 1px solid var(--border);
	background: rgba(8, 11, 15, 0.85);
	color: var(--text);
	font: inherit;
	font-size: 1rem;
}

.contact-textarea {
	min-height: 9rem;
	resize: vertical;
	line-height: 1.55;
}

.contact-input:focus,
.contact-textarea:focus {
	outline: none;
	border-color: rgba(79, 140, 255, 0.45);
	box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.12);
}

.btn--contact {
	margin-top: 1.35rem;
	width: 100%;
	justify-content: center;
	padding: 0.85rem 1.25rem;
	font-size: 1rem;
}

.contact-error {
	margin: 0 0 1.25rem;
	padding: 0.75rem 1rem;
	border-radius: 10px;
	background: rgba(232, 93, 111, 0.1);
	border: 1px solid rgba(232, 93, 111, 0.35);
	color: #f5a9b3;
	font-size: 0.95rem;
}

.contact-success {
	margin: 0 auto 2rem;
	max-width: 26rem;
	padding: 1.5rem 1.25rem;
	border-radius: 14px;
	border: 1px solid rgba(79, 140, 255, 0.25);
	background: rgba(79, 140, 255, 0.08);
	text-align: center;
}

.contact-success__title {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--text);
}

.contact-success__text {
	margin: 0;
	font-size: 0.95rem;
	color: var(--text-muted);
}

.contact-success__again {
	margin: 1rem 0 0;
	font-size: 0.9rem;
}

.contact-success__again a {
	color: var(--accent);
}

.contact-trust {
	margin: 4rem auto 0;
	max-width: 28rem;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--text-dim);
}

/* Full-width strip — same grid/tiles/filters as home `.logo-strip` */
.contact-logo-shell {
	margin-top: 2.75rem;
}

.contact-location {
	margin: 2.5rem auto 0;
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	max-width: 22rem;
}

.contact-location p {
	margin: 0.35rem 0;
	font-size: 0.875rem;
	color: var(--text-muted);
	line-height: 1.5;
}

/* Footer */

.site-footer {
	border-top: 1px solid var(--border);
	padding: 2rem 1.25rem;
	background: #080b0f;
}

.site-footer__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-footer__end {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem 1.5rem;
}

.site-footer small {
	color: var(--text-dim);
	font-size: 0.8125rem;
}

.footer-social ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	color: var(--text-muted);
	border-radius: 6px;
	transition: color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
	color: var(--accent);
	background: rgba(79, 140, 255, 0.1);
}

.footer-social__icon {
	width: 1.125rem;
	height: 1.125rem;
	display: block;
}

.footer-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
}

.footer-nav a {
	color: var(--text-muted);
	font-size: 0.8125rem;
}

.footer-nav a:hover {
	color: var(--text);
}

/* Legal — Privacy / Terms */
.page-legal .hero__sub {
	max-width: 40ch;
}

.section--legal {
	padding-top: 2.5rem;
	padding-bottom: 4.5rem;
}

.legal-prose {
	max-width: 42rem;
}

.legal-prose p {
	margin: 0 0 1rem;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--text-muted);
}

.legal-prose p:last-child {
	margin-bottom: 0;
}

.legal-prose h2 {
	margin: 2.25rem 0 0.85rem;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--text);
	line-height: 1.35;
}

.legal-prose h2:first-of-type {
	margin-top: 1.5rem;
}

.legal-prose a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.legal-prose a:hover {
	color: var(--text);
}

.legal-prose code {
	font-size: 0.95em;
	padding: 0.1em 0.35em;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.88);
}

.legal-prose strong {
	color: rgba(255, 255, 255, 0.92);
	font-weight: 600;
}
