/* ============================================================
   00 — INK & VOLT design tokens
   ============================================================ */
:root {
	/* Color */
	--bone:       #F4F1E9;
	--bone-2:     #EAE5D8;
	--ink:        #0E1311;
	--ink-soft:   #39403B;
	--mist:       #656B63;
	--volt:       #C6F14E;
	--volt-deep:  #A8D62F;
	--moss:       #74886B;
	--card:       #FFFFFF;
	--line:       rgba(14, 19, 17, 0.12);
	--line-light: rgba(244, 241, 233, 0.14);

	/* Type */
	--font-display: "Space Grotesk", system-ui, sans-serif;
	--font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--h1: clamp(2.5rem, 1.4rem + 4.6vw, 5.25rem);        /* 40 → 84px */
	--h2: clamp(1.875rem, 1.35rem + 2.2vw, 3rem);        /* 30 → 48px */
	--h3: clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);      /* 20 → 26px */
	--stat: clamp(3rem, 1.9rem + 4.6vw, 5.5rem);         /* 48 → 88px */
	--ghost: clamp(5rem, 3rem + 8vw, 10rem);             /* 80 → 160px */

	/* Space (8px grid) */
	--s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
	--s5: 40px; --s6: 48px; --s8: 64px; --s12: 96px; --s15: 120px;
	--sec-pad: clamp(var(--s8), 5vw + 2rem, var(--s15));

	/* Layout */
	--container: 1240px;
	--gutter: clamp(20px, 3vw, 32px);
	--radius: 14px;
	--radius-sm: 10px;

	/* Depth — refined, low-contrast on warm paper */
	--shadow-sm: 0 1px 2px rgba(14, 19, 17, 0.04), 0 2px 8px rgba(14, 19, 17, 0.04);
	--shadow-md: 0 2px 6px rgba(14, 19, 17, 0.05), 0 16px 32px -18px rgba(14, 19, 17, 0.22);
	--shadow-lg: 0 4px 12px rgba(14, 19, 17, 0.06), 0 30px 60px -28px rgba(14, 19, 17, 0.30);
	--shadow-volt: 0 14px 40px -16px rgba(168, 214, 47, 0.55);

	/* Motion */
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--t-fast: 240ms;
	--t-med: 560ms;
	--t-slow: 800ms;

	/* Grain (SE5) — inline SVG noise for ink sections, ~5% */
	--grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
	/* Barely-there grain for bone sections (~2.5%) — filmic warmth */
	--grain-bone: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='b'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23b)' opacity='0.025'/%3E%3C/svg%3E");
}
/* ============================================================
   01 — Base: font, reset, typography, marks
   ============================================================ */
@font-face {
	font-family: "Space Grotesk";
	font-style: normal;
	font-weight: 300 700;
	font-display: swap;
	src: url("../fonts/space-grotesk-var-latin.woff2") format("woff2");
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
/* clip (not hidden) — hidden/auto on html or body creates a scroll container that breaks
   position: sticky for every descendant (services subnav relies on sticky). */
html, body { max-width: 100%; overflow-x: clip; }

body {
	margin: 0;
	background: var(--bone);
	color: var(--ink-soft);
	font-family: var(--font-body);
	font-size: 1.0625rem; /* 17px */
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

/* Defensive: grid/flex items must not force overflow from long unbreakable content */
.stats, .bento, .voices, .proof__cards, .hero__grid, .quiz__panel, .contact-grid, .bundles,
.stats__item, .bento__cell, .voice, .proof__card, .quiz__panel > * { min-width: 0; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--ink);
	line-height: 1.06;
	margin: 0 0 var(--s3);
	/* Hard safety net: text-align:center combined with a centered ancestor container
	   can, in some Chromium builds, mis-measure a heading's shrink-to-fit width and
	   let it overflow the viewport on narrow (mobile) screens instead of wrapping.
	   overflow-wrap:anywhere forces a valid break point to always exist. */
	overflow-wrap: anywhere;
}

.h1, h1 { font-size: var(--h1); font-weight: 700; letter-spacing: -0.025em; line-height: 1.02; }
.h2, h2 { font-size: var(--h2); font-weight: 700; letter-spacing: -0.02em; }
.h3, h3 { font-size: var(--h3); font-weight: 500; letter-spacing: -0.01em; }

p { margin: 0 0 var(--s3); }
p:last-child { margin-bottom: 0; }

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

::selection { background: var(--volt); color: var(--ink); }

/* Volt highlighter (signature ==word== treatment) */
mark {
	position: relative;
	background: transparent;
	color: inherit;
	white-space: nowrap;
	padding: 0 0.1em;
	isolation: isolate;
}
mark::before {
	content: "";
	position: absolute;
	inset: 12% -0.06em 8%;
	background: var(--volt);
	transform: skewX(-8deg);
	z-index: -1;
	transform-origin: left center;
}
.js [data-reveal] mark::before {
	transform: skewX(-8deg) scaleX(0);
	transition: transform 0.5s var(--ease-out) 0.35s;
}
.js [data-reveal].in-view mark::before { transform: skewX(-8deg) scaleX(1); }

/* Eyebrow: ( 01 ) — LABEL, with a short volt tick */
.eyebrow {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5em 0.9em;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--mist);
	margin: 0 0 var(--s4);
}
.eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--volt-deep);
	flex: none;
}
.eyebrow__num { color: var(--moss); }
.sec--ink .eyebrow { color: rgba(244, 241, 233, 0.65); }
.sec--ink .eyebrow::before { background: var(--volt); }
.sec--ink .eyebrow__num { color: var(--volt); }

.lead { font-size: 1.1875rem; line-height: 1.65; }
.muted { color: var(--mist); }

/* Vertical rhythm utility for composed text blocks */
.flow > * + * { margin-top: var(--s3); }
.flow--tight > * + * { margin-top: var(--s2); }

/* Editorial rule-label (L9): 1px line + tiny caps label */
.rule-label {
	display: flex;
	align-items: center;
	gap: var(--s3);
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--mist);
	margin: 0 0 var(--s3);
}
.rule-label::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--line);
}
.sec--ink .rule-label { color: rgba(244, 241, 233, 0.55); }
.sec--ink .rule-label::after { background: var(--line-light); }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	left: -999px; top: 8px;
	z-index: 200;
	background: var(--ink);
	color: var(--bone);
	padding: 10px 18px;
	border-radius: var(--radius);
}
.skip-link:focus { left: 8px; color: var(--bone); }

:focus-visible {
	outline: 2px solid var(--ink);
	outline-offset: 3px;
}
.sec--ink :focus-visible, .site-footer :focus-visible { outline-color: var(--volt); }

/* Honeypot */
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; overflow: hidden; margin: 0; }
/* ============================================================
   02 — Layout: container, sections, grids, splits
   ============================================================ */
.container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
	min-width: 0;
}

.sec {
	position: relative;
	padding-block: var(--sec-pad);
	overflow: clip;
}
.sec--bone  { background: var(--bone); }
.sec--bone2 { background: var(--bone-2); }
.sec--ink   {
	background: var(--ink);
	color: rgba(244, 241, 233, 0.85);
}
.sec--ink h1, .sec--ink h2, .sec--ink h3 { color: var(--bone); }
.sec--ink a { color: var(--bone); }
.sec--ink a:hover { color: var(--volt); }

/* Filmic grain: ink (SE5) + barely-there bone warmth */
.grain::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--grain);
	pointer-events: none;
	z-index: 0;
}
.grain--bone::before { background: var(--grain-bone); }
.grain > * { position: relative; z-index: 1; }

/* SE2 — ghost section index (editorial, bleeds off the top edge) */
.sec__ghost {
	position: absolute;
	top: -0.28em;
	right: clamp(12px, 3vw, 48px);
	z-index: 0;
	font-family: var(--font-display);
	font-size: var(--ghost);
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--ink);
	opacity: 0.09;
	pointer-events: none;
	user-select: none;
}
.sec--ink .sec__ghost { -webkit-text-stroke: 1.5px var(--bone); opacity: 0.16; }

/* Asymmetric 7/5 split (L3) */
.split {
	display: grid;
	gap: var(--s6) var(--s8);
	align-items: center;
}
@media (min-width: 900px) {
	.split { grid-template-columns: 7fr 5fr; }
	.split--rev { grid-template-columns: 5fr 7fr; }
	.split--rev > :first-child { order: 2; }
	.split__media--up   { transform: translateY(-40px); }
	.split__media--down { transform: translateY(40px); }
	/* Services zigzag: stretch the image to match the text column's own height
	   instead of sitting at its own shorter intrinsic ratio. */
	/* Services zigzag: every image is the exact same fixed height across all
	   18 services, regardless of how long each one's text column runs — and
	   stays pinned (sticky) while its own section scrolls past. */
	.split--sync { align-items: start; }
	.split--sync .split__media {
		transform: none;
		position: sticky;
		top: 150px;
	}
	.split--sync .split__media .img-slot { height: 560px; aspect-ratio: auto; }
}

/* Simple column grids */
.cols {
	display: grid;
	gap: var(--s4);
	min-width: 0;
}
.cols > * { min-width: 0; }
@media (min-width: 760px) {
	.cols--2 { grid-template-columns: repeat(2, 1fr); }
	.cols--3 { grid-template-columns: repeat(3, 1fr); }
	.cols--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Editorial 1px rules between columns (L9) */
.cols--ruled { gap: 0; }
.cols--ruled > * { padding: var(--s4); border-top: 1px solid var(--line); }
@media (min-width: 760px) {
	.cols--ruled > * { border-top: 0; border-left: 1px solid var(--line); padding: var(--s2) var(--s5); }
	.cols--ruled > :first-child { border-left: 0; padding-left: 0; }
	.cols--ruled > :last-child { padding-right: 0; }
}

/* Narrow centered prose */
.narrow {
	max-width: 680px;
	margin-inline: auto;
	text-align: center;
}

hr.rule { border: 0; border-top: 1px solid var(--line); margin: var(--s8) 0; }
/* ============================================================
   03 — Components: buttons, pills, cards, forms, lists, tables
   ============================================================ */

/* SE3 — invert buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	padding: 18px 28px;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.btn--sm { padding: 13px 22px; font-size: 0.9375rem; }
.btn .btn__arrow, .btn .btn__spark { transition: transform var(--t-fast) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(6px); }
.btn:hover .btn__spark { transform: rotate(90deg); }
.btn:active { transform: translateY(1px); }

.btn--volt, .sec--ink .btn--volt, .site-footer .btn--volt { background: var(--volt); color: var(--ink); border-color: var(--volt); box-shadow: var(--shadow-volt); }
.btn--volt:hover { background: var(--ink); color: var(--volt); border-color: var(--ink); box-shadow: var(--shadow-md); }
.sec--ink .btn--volt:hover, .site-footer .btn--volt:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); }

.btn--ghost-light { background: transparent; color: var(--bone); border-color: var(--line-light); }
.btn--ghost-light:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* Pills */
.pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-display);
	font-size: 0.9375rem;
	font-weight: 500;
	padding: 12px 22px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	transition: background-color var(--t-fast), color var(--t-fast), border-color var(--t-fast);
	text-decoration: none;
}
.pill:hover, .pill[aria-expanded="true"], .pill.is-active {
	background: var(--ink);
	color: var(--bone);
	border-color: var(--ink);
}
.pill-wall { display: flex; flex-wrap: wrap; gap: var(--s2); }

/* Cards */
.card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: var(--s5);
	box-shadow: var(--shadow-sm);
	transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
@media (hover: hover) {
	.card--lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(14, 19, 17, 0.18); }
}
.sec--ink .card {
	background: rgba(244, 241, 233, 0.04);
	border-color: var(--line-light);
	box-shadow: none;
}

/* ✦ checklist (SE8) */
.checks { list-style: none; margin: 0 0 var(--s3); padding: 0; }
.checks li { display: flex; gap: 12px; align-items: baseline; padding: 6px 0; }
.checks__mark { color: var(--moss); flex: none; font-size: 0.8em; }
.sec--ink .checks__mark { color: var(--volt); }

/* ✦ stars */
.stars { color: var(--volt); letter-spacing: 3px; font-size: 0.9rem; }

/* Forms */
input[type="text"], input[type="tel"], input[type="email"], select, textarea {
	width: 100%;
	font: inherit;
	color: var(--ink);
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 14px 18px;
}
input:focus, select:focus, textarea:focus {
	outline: 2px solid var(--ink);
	outline-offset: 0;
	border-color: var(--ink);
}
label { font-family: var(--font-display); font-size: 0.9375rem; font-weight: 500; color: var(--ink); }

.form-notice { border-radius: var(--radius); padding: 14px 18px; font-weight: 500; margin-bottom: var(--s3); }
.form-notice--ok { background: var(--volt); color: var(--ink); }
.form-notice--err { background: #f8e2de; color: #7a2c1e; }

/* Editorial table (L9) */
.table-wrap { overflow-x: auto; }
table.verdict {
	width: 100%;
	border-collapse: collapse;
	font-size: 1rem;
	min-width: 560px;
}
.verdict th, .verdict td {
	text-align: left;
	padding: 18px 20px;
	border-top: 1px solid var(--line);
	vertical-align: top;
}
.verdict thead th {
	border-top: 0;
	font-family: var(--font-display);
	font-size: 0.8125rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--mist);
}
.verdict thead .is-us { color: var(--ink); border-bottom: 2px solid var(--volt); }
.verdict .is-us { background: var(--bone-2); }
.verdict tbody .is-us { font-weight: 500; color: var(--ink); }
.verdict .is-us .checks__mark { color: var(--moss); }
.verdict tbody tr:last-child td { border-bottom: 1px solid var(--line); }
.verdict tbody td:first-child { color: var(--mist); }
@media (hover: hover) { .verdict tbody tr:hover td { background: rgba(14, 19, 17, 0.02); } .verdict tbody tr:hover .is-us { background: var(--bone-2); } }

/* Image slots (placeholders) */
.img-slot {
	position: relative;
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: var(--ratio, 4/3);
	background: var(--ink);
}
.img-slot--screen { border-radius: 0; }
.img-slot__art { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-slot__sticker {
	position: absolute;
	top: var(--s4);
	left: var(--s4);
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--volt);
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 1;
	padding: 10px 15px;
	border-radius: 999px;
	rotate: -3deg;
	box-shadow: 0 6px 18px rgba(14, 19, 17, 0.22);
}
.img-slot__sticker-mark { font-size: 0.85em; }
.img-slot__sticker--alt {
	top: auto; bottom: var(--s4); left: auto; right: var(--s4);
	rotate: 2deg;
	background: var(--ink);
	color: var(--volt);
}

/* Double frame offset behind hero/section images (SE — collage depth) */
.framed { position: relative; }
.framed::before, .framed::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: var(--radius);
	z-index: -1;
	pointer-events: none;
}
.framed::after { border: 1.5px solid var(--ink); translate: 16px 16px; }
.framed::before { border: 1.5px solid var(--volt-deep); translate: -12px -12px; opacity: .55; }

/* Browser mockup frame (proof screenshots) */
.browser {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}
.sec--ink .browser { border-color: var(--line-light); background: #F4F1E9; box-shadow: 0 20px 44px -22px rgba(0,0,0,.6); }
.browser__bar {
	display: flex;
	gap: 6px;
	align-items: center;
	padding: 11px 14px;
	background: var(--bone-2);
	border-bottom: 1px solid var(--line);
}
.browser__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(14,19,17,.18); }
.browser__url {
	margin-left: 10px;
	height: 16px;
	flex: 1;
	max-width: 180px;
	border-radius: 999px;
	background: rgba(14,19,17,.06);
}

/* Icons (Lucide, 1.5px stroke) */
.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.micro-ico { display: inline-flex; vertical-align: -3px; }
.micro-ico .icon { width: 14px; height: 14px; }
.contact-aside__ico {
	display: grid; place-items: center;
	width: 40px; height: 40px;
	border-radius: 11px;
	background: var(--bone-2);
	color: var(--moss);
	flex: none;
}
.contact-aside__ico .icon { width: 20px; height: 20px; }
/* ============================================================
   04 — Signature elements: ticker, bento, sticky split, stats
   ============================================================ */

/* SE1 — Growth ticker */
.ticker {
	overflow: hidden;
	white-space: nowrap;
	padding-block: 14px;
	user-select: none;
}
.ticker--volt { background: var(--volt); color: var(--ink); }
.ticker--ink  { background: var(--ink); color: var(--bone); }
.ticker__track { display: flex; width: max-content; will-change: transform; }
.ticker__run { display: flex; align-items: center; }
.ticker__item {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.0625rem;
	letter-spacing: 0.14em;
	padding-inline: 22px;
}
.ticker__mark { font-size: 0.85rem; opacity: 0.75; }

/* Section head (heading + lead), consistent spacing before content */
.sec__head { max-width: 640px; margin-bottom: var(--s8); }
.sec__head--center { max-width: 640px; margin-inline: auto; text-align: center; }
/* The eyebrow tag prints as a sibling before .sec__head, not inside it —
   #team is the only section using the centered layout, so scope it there. */
#team > .container > .eyebrow,
#world > .container > .eyebrow,
#founder > .container > .eyebrow,
#permission > .container > .eyebrow { justify-content: center; }
#founder { border-bottom: 1px solid var(--line); }
.sec__head .lead { margin-top: var(--s3); color: var(--ink-soft); }
.sec--ink .sec__head .lead { color: rgba(244, 241, 233, 0.72); }

/* SE4 — Bento grid */
.bento { display: grid; gap: var(--s3); }
@media (min-width: 760px) {
	.bento--systems {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"a a"
			"b c";
	}
	.bento__cell--a { grid-area: a; }
	.bento__cell--b { grid-area: b; }
	.bento__cell--c { grid-area: c; }
	/* FIND card is full-width: header row beside the service grid */
	.bento__cell--a { display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--s5) var(--s8); align-items: start; }
	.bento__cell--a .bento__head-col { display: flex; flex-direction: column; gap: var(--s3); }
	.bento__cell--a .bento__more { margin-top: var(--s2); }
}
.bento__cell {
	position: relative;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: var(--s5);
	display: flex;
	flex-direction: column;
	gap: var(--s3);
	box-shadow: var(--shadow-sm);
	transition: border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
	text-decoration: none;
	color: inherit;
	overflow: hidden;
}
.bento__cell::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(244,241,233,.93), rgba(244,241,233,.93)), var(--bento-bg);
	background-size: cover;
	background-position: center;
	z-index: 0;
	pointer-events: none;
}
.bento__cell--a { --bento-bg: url("../img/generated/bento-find.webp"); }
.bento__cell--b { --bento-bg: url("../img/generated/bento-convert.webp"); }
.bento__cell--c { --bento-bg: url("../img/generated/bento-flow.webp"); }
.bento__cell::after {
	content: "\2726";
	position: absolute;
	right: -0.15em; bottom: -0.35em;
	font-size: 8rem;
	color: var(--volt);
	opacity: 0.06;
	pointer-events: none;
	z-index: 0;
}
.bento__cell > * { position: relative; z-index: 1; }
@media (hover: hover) {
	.bento__cell:hover { border-color: var(--volt-deep); transform: translateY(-4px); box-shadow: var(--shadow-md); }
}
.bento__stack, .bento__head-col { display: flex; flex-direction: column; gap: var(--s3); }
.bento__top { display: flex; align-items: center; justify-content: space-between; gap: var(--s2); }
.bento__icon {
	display: grid; place-items: center;
	width: 48px; height: 48px;
	border-radius: 12px;
	background: var(--bone-2);
	color: var(--ink);
}
.bento__icon .icon { width: 24px; height: 24px; }
.bento__sys {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.22em;
	color: var(--moss);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.bento__idx { color: transparent; -webkit-text-stroke: 1px var(--moss); font-size: 1.1rem; }
.bento__tag { color: var(--ink-soft); margin: 0; }
.bento__cell--a .bento__tag { max-width: 44ch; }
.bento__more { margin-top: auto; font-family: var(--font-display); font-weight: 500; color: var(--ink); display: inline-flex; gap: 8px; }
.bento__more span { transition: transform var(--t-fast) var(--ease); }
.bento__cell:hover .bento__more span { transform: translateX(5px); }
.bento__list { list-style: none; margin: 0; padding: 0; font-size: 0.9375rem; color: var(--ink-soft); }
.bento__list li { display: flex; align-items: center; gap: 10px; padding-block: 5px; }
.bento__list-ico { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 7px; background: var(--bone-2); color: var(--moss); flex: none; }
.bento__list-ico .icon { width: 15px; height: 15px; }
@media (min-width: 620px) {
	.bento__list--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px var(--s4); }
}

/* SE6 — Sticky split */
.sticky-split {
	display: grid;
	gap: var(--s6) var(--s8);
	align-items: start;
}
@media (min-width: 900px) {
	.sticky-split { grid-template-columns: 5fr 7fr; }
	.sticky-split__aside { position: sticky; top: 120px; }
}
.step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--s4);
	padding-block: var(--s5);
	border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
	font-weight: 700;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--ink);
	opacity: 0.85;
}
.step__meta { font-family: var(--font-display); font-size: 0.8125rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--moss); margin-bottom: 4px; }

.process__photo {
	display: none;
	margin: var(--s6) 0 0;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.process__photo img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; }
@media (min-width: 900px) { .process__photo { display: block; } }

/* Giant stats */
.stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--s6) var(--s4);
	margin: 0;
	text-align: center;
}
.stats__item { position: relative; }
@media (min-width: 760px) {
	.stats { grid-template-columns: repeat(4, 1fr); gap: 0; }
	.stats__item { padding-inline: var(--s4); }
	.stats__item + .stats__item::before {
		content: "";
		position: absolute;
		left: 0; top: 12%; bottom: 30%;
		width: 1px;
		background: var(--line-light);
	}
}
.stats__num {
	font-family: var(--font-display);
	font-size: var(--stat);
	font-weight: 700;
	line-height: 1;
	color: var(--volt);
	margin: 0;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.02em;
}
.stats__fix { font-size: 0.6em; }
.stats__label {
	font-family: var(--font-display);
	font-size: 0.875rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(244, 241, 233, 0.6);
	margin: var(--s2) 0 0;
}

/* Timeline (About) */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before {
	content: "";
	position: absolute;
	left: 7px; top: 6px; bottom: 6px;
	width: 1px;
	background: var(--line);
}
.timeline li { position: relative; padding: 0 0 var(--s5) var(--s5); }
.timeline li::before {
	content: "";
	position: absolute;
	left: 0; top: 8px;
	width: 15px; height: 15px;
	border-radius: 50%;
	background: var(--volt);
	border: 3px solid var(--bone);
	box-shadow: 0 0 0 1px var(--line);
}
.timeline__year { font-family: var(--font-display); font-weight: 700; color: var(--ink); display: block; }

/* Pull quote */
.pullquote {
	border-left: 3px solid var(--volt);
	padding-left: var(--s4);
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 1.1rem + 1vw, 1.75rem);
	font-weight: 500;
	color: var(--ink);
	line-height: 1.35;
	margin: var(--s5) 0;
}
/* ============================================================
   05 — Announce bar, header, nav, footer, mobile CTA bar
   ============================================================ */

/* Announcement bar */
.announce {
	background: var(--ink);
	color: rgba(244, 241, 233, 0.85);
	font-size: 0.875rem;
	padding-block: 9px;
}
.announce p { margin: 0; text-align: center; }
.announce__mark { color: var(--volt); }
.announce a { color: var(--volt); font-weight: 600; }
.announce a:hover { color: var(--bone); }

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--bone);
	border-bottom: 1px solid transparent;
	transition: border-color var(--t-fast);
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.site-header__inner {
	display: flex;
	align-items: center;
	gap: var(--s4);
	height: 88px;
	transition: height 200ms var(--ease);
}
.site-header.is-stuck .site-header__inner { height: 64px; }

.site-header__logo { display: flex; align-items: center; flex: none; }
.site-header__logo img { height: 60px; width: auto; display: block; transition: height 200ms var(--ease); }
.site-header.is-stuck .site-header__logo img { height: 50px; }

.site-nav { margin-left: auto; }
.site-nav__list {
	display: flex;
	gap: var(--s4);
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: center;
}
.site-nav__list > li > a {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.9375rem;
	text-decoration: none;
	color: var(--ink);
	padding-block: 32px;
}
.site-nav__list > li > a:hover { color: var(--moss); }
.site-nav__caret { font-size: 0.65em; color: var(--mist); }

/* Dropdown (desktop) — premium mega-menu */
/* No position:relative here on purpose — .site-nav__sub anchors to the
   full-width .site-header (sticky = a valid containing block) instead of
   this <li>, so it centers on the page rather than under the nav link. */
.site-nav__has-sub { position: static; }
.site-nav__sub {
	position: absolute;
	top: 100%;
	left: 50%;
	translate: -50% 6px;
	width: min(1360px, calc(100vw - 40px));
	max-width: calc(100vw - 40px);
	background: var(--bone);
	border-radius: var(--radius);
	padding: var(--s5) var(--s6);
	box-shadow: 0 32px 64px -20px rgba(14, 19, 17, 0.32), 0 2px 0 rgba(14, 19, 17, 0.04);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.22s var(--ease), visibility 0.22s, translate 0.22s var(--ease);
}
.site-nav__has-sub:hover .site-nav__sub,
.site-nav__has-sub:focus-within .site-nav__sub { opacity: 1; visibility: visible; translate: -50% 0; }
.site-nav__sub-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(200px, 260px); gap: 0; align-items: stretch; }
.site-nav__sub-col {
	min-width: 0;
	padding: var(--s4) var(--s5) var(--s3) 0;
	border-right: 1px solid var(--line);
	margin-right: var(--s5);
}
.site-nav__sub-head {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.9375rem;
	line-height: 1.3;
	color: var(--ink);
	text-decoration: none;
	margin-bottom: var(--s3);
	padding-bottom: var(--s3);
	border-bottom: 1px solid var(--line);
}
.site-nav__sub-icon {
	display: grid; place-items: center;
	width: 34px; height: 34px;
	border-radius: 10px;
	background: var(--ink);
	color: var(--volt);
	flex: none;
}
.site-nav__sub-icon .icon { width: 17px; height: 17px; }
.site-nav__sub-sys { display: block; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.22em; color: var(--moss); margin-bottom: 2px; }
.site-nav__sub ul { list-style: none; margin: 0; padding: 0; }
.site-nav__sub ul a {
	/* Dot's box (10px + 8px gap) is reserved at all times — hover only
	   fades/scales it in, so nothing in the row ever shifts position. */
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 0.8125rem;
	line-height: 1.4;
	font-weight: 500;
	text-decoration: none;
	color: var(--ink-soft);
	padding: 7px 0 7px 0;
	transition: color var(--t-fast);
}
.site-nav__sub ul a .site-nav__sub-dot { margin-top: 0.55em; }
.site-nav__sub-dot {
	width: 10px; height: 4px; border-radius: 999px;
	background: var(--volt-deep);
	flex: none;
	transform: scaleX(0);
	transform-origin: left center;
	opacity: 0;
	transition: transform var(--t-fast) var(--ease), opacity var(--t-fast);
}
.site-nav__sub-col--convert .site-nav__sub-dot { background: var(--moss); }
.site-nav__sub-col--flow .site-nav__sub-dot { background: var(--ink-soft); }
.site-nav__sub ul a:hover { color: var(--ink); }
.site-nav__sub ul a:hover .site-nav__sub-dot { transform: scaleX(1); opacity: 1; }

.site-nav__sub-feature {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	color: var(--bone);
	border-radius: var(--radius-sm);
	padding: var(--s4);
	display: flex;
	flex-direction: column;
	align-self: stretch;
}
.site-nav__sub-feature-mark { font-size: 1.75rem; color: var(--volt); opacity: 0.9; line-height: 1; margin-bottom: var(--s2); }
.site-nav__sub-feature h4 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin: 0 0 6px; color: var(--bone); }
.site-nav__sub-feature p { font-size: 0.8125rem; line-height: 1.5; color: rgba(244, 241, 233, 0.65); margin: 0 0 var(--s3); }
.site-nav__sub-feature-btn {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.8125rem;
	color: var(--ink);
	background: var(--volt);
	border-radius: 999px;
	padding: 10px 16px;
	text-decoration: none;
	width: fit-content;
	transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.site-nav__sub-feature-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -6px rgba(198, 241, 78, 0.55); }

/* Compact "About" dropdown — same card, no columns/feature panel */
.site-nav__sub--compact { width: min(320px, calc(100vw - 40px)); padding: var(--s3); }
.site-nav__sub-simple { list-style: none; margin: 0; padding: 0; }
.site-nav__sub-simple li + li { border-top: 1px solid var(--line); }
.site-nav__sub-simple a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 6px;
	text-decoration: none;
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.9375rem;
	border-radius: 10px;
	transition: background-color var(--t-fast);
}
.site-nav__sub-simple a:hover { background: var(--bone-2); }
.site-nav__sub-simple .site-nav__sub-icon { width: 38px; height: 38px; border-radius: 11px; }
.site-nav__sub-simple .site-nav__sub-icon .icon { width: 17px; height: 17px; }
.site-nav__sub-simple .site-nav__sub-sys { display: block; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.18em; color: var(--moss); margin-bottom: 1px; }

.site-header__cta { flex: none; }
.site-header__burger { display: none; }

/* Mobile nav */
@media (max-width: 1023px) {
	.site-header__cta { display: none; }
	.site-header__burger {
		display: flex;
		flex-direction: column;
		gap: 5px;
		margin-left: auto;
		background: none;
		border: 0;
		padding: 10px;
		cursor: pointer;
	}
	.site-header__burger span {
		width: 24px; height: 2px;
		background: var(--ink);
		transition: transform var(--t-fast) var(--ease), opacity var(--t-fast);
	}
	.site-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.site-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.site-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	.site-nav {
		position: fixed;
		inset: 0;
		top: 0;
		background: var(--bone);
		padding: 120px var(--gutter) var(--s8);
		overflow-y: auto;
		z-index: -1;
		opacity: 0;
		visibility: hidden;
		transition: opacity var(--t-fast) var(--ease), visibility var(--t-fast);
		margin: 0;
	}
	body.menu-open .site-nav { opacity: 1; visibility: visible; z-index: 90; }
	body.menu-open { overflow: hidden; }

	.site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.site-nav__list > li { border-bottom: 1px solid var(--line); }
	.site-nav__list > li > a {
		display: block;
		padding: 18px 0;
		font-size: 1.375rem;
		font-weight: 700;
	}
	.site-nav__sub {
		position: static;
		translate: none;
		width: auto;
		opacity: 1;
		visibility: visible;
		border: 0;
		box-shadow: none;
		padding: 0 0 var(--s3);
		background: none;
	}
	.site-nav__sub-cols { grid-template-columns: 1fr; gap: var(--s4); }
	.site-nav__sub-col { border-right: 0; margin-right: 0; padding: 0; }
	.site-nav__sub-feature { display: none; }
}

/* Footer */
.site-footer {
	position: relative;
	padding: var(--s12) 0 0;
	overflow: clip;
}
.site-footer.footer-bg {
	background-image: linear-gradient(rgba(14,19,17,.85), rgba(14,19,17,.85)), url("../img/generated/footer-bg.webp");
	background-size: cover;
	background-position: center;
}
.site-footer__cols {
	display: grid;
	gap: var(--s6);
	padding-bottom: var(--s8);
}
@media (min-width: 900px) {
	.site-footer__cols { grid-template-columns: 1.4fr 1fr 0.8fr 1fr; gap: var(--s8); }
}
.site-footer__logo { margin: 0 0 4px; }
.site-footer__logo img { height: 64px; width: auto; display: block; margin-left: -14px; }
.site-footer__tag { font-family: var(--font-display); color: var(--volt); font-weight: 500; margin-bottom: var(--s3); }
.site-footer__head {
	font-family: var(--font-display);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(244, 241, 233, 0.55);
	margin-bottom: var(--s3);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { padding-block: 5px; font-size: 0.9375rem; }
.site-footer ul a { text-decoration: none; color: rgba(244, 241, 233, 0.8); }
.site-footer ul a:hover { color: var(--volt); }
.site-footer__legal {
	border-top: 1px solid var(--line-light);
	padding-block: var(--s3);
	font-size: 0.8125rem;
	color: rgba(244, 241, 233, 0.45);
	margin: 0;
}

/* SE7 — giant outline wordmark */
.site-footer__wordmark {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 11.5vw;
	line-height: 0.9;
	text-align: center;
	letter-spacing: 0.02em;
	color: transparent;
	-webkit-text-stroke: 1px var(--bone);
	opacity: 0.07;
	user-select: none;
	pointer-events: none;
	translate: 0 12%;
}

/* Mobile sticky CTA bar */
.mobile-cta {
	display: none;
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 95;
	background: var(--ink);
	padding-bottom: env(safe-area-inset-bottom);
}
@media (max-width: 767px) {
	.mobile-cta { display: grid; grid-template-columns: 1fr 1fr; }
	body { padding-bottom: 60px; }
}
.mobile-cta a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.9375rem;
	text-decoration: none;
	padding: 16px 10px;
}
.mobile-cta__call { color: var(--bone); }
.mobile-cta__wa { background: var(--volt); color: var(--ink); }
.mobile-cta__icon { width: 18px; height: 18px; }
/* ============================================================
   06 — Page sections (home / about / services / contact)
   ============================================================ */

/* ---------- Shared: stats band + final CTA ---------- */
.sec--band {
	padding-block: var(--s12);
	background-image: linear-gradient(rgba(14,19,17,.55), rgba(14,19,17,.72)), url("../img/generated/stats-bg.webp");
	background-size: cover;
	background-position: center;
}
.sec--band__h { text-align: center; margin-bottom: var(--s8); }

.sec--cta { text-align: center; }
.sec--cta__inner { max-width: 980px; }
.sec--cta__h { margin-bottom: var(--s3); }
.sec--cta__sub { color: rgba(244, 241, 233, 0.7); margin-bottom: var(--s6); }
.sec--cta__alt { margin-top: var(--s4); color: rgba(244, 241, 233, 0.7); }
.sec--cta__tel {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.75rem;
	margin-top: var(--s2);
	text-decoration: none;
}

.phone-form { max-width: 560px; margin-inline: auto; }
.phone-form__row { display: flex; gap: var(--s2); flex-wrap: wrap; }
.phone-form__row input { flex: 1 1 220px; background: var(--bone); border-color: transparent; }
.phone-form__row .btn { flex: none; }
.phone-form__micro { font-size: 0.8125rem; color: rgba(244, 241, 233, 0.55); margin-top: var(--s2); }

/* ---------- Home: hero ---------- */
.hero { padding-block: var(--s8) var(--s12); }
.hero--pure-video { position: relative; overflow: hidden; min-height: 78vh; padding: 0; display: flex; align-items: center; }
.hero--pure-video .container { width: 100%; }
@media (max-width: 640px) { .hero--pure-video { min-height: 56vh; } }
.hero--pure-video::after {
	content: "";
	position: absolute; inset: 0;
	z-index: 0;
	background: linear-gradient(180deg, rgba(14, 19, 17, 0.45) 0%, rgba(14, 19, 17, 0.3) 50%, rgba(14, 19, 17, 0.5) 100%);
	pointer-events: none;
}
.hero__pure-inner { position: relative; z-index: 1; text-align: left; }
.hero__pure-h {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(3rem, 2rem + 5.5vw, 6.75rem);
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--bone);
	margin: 0;
}
.hero__pure-h mark { color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
	.hero--pure-video { background-image: url("../img/generated/dream-bg.webp"); background-size: cover; background-position: center; }
}

/* Hero split: heading left, lead-capture form right */
.hero__pure-inner--split { display: grid; gap: var(--s7, 56px); align-items: center; padding-block: var(--s7, 56px); }
@media (min-width: 980px) { .hero__pure-inner--split { grid-template-columns: 1.05fr 0.95fr; } }
.hero__pure-sub {
	margin: var(--s4) 0 0;
	max-width: 480px;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: rgba(244, 241, 233, 0.85);
}

.hero__form-card {
	position: relative;
	background: rgba(20, 26, 22, 0.55);
	backdrop-filter: blur(18px) saturate(140%);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
	border: 1px solid rgba(244, 241, 233, 0.16);
	border-radius: var(--radius);
	padding: clamp(var(--s5), 3vw, var(--s6));
	box-shadow: 0 40px 90px -24px rgba(0, 0, 0, 0.55);
}
.hero__form-kicker {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.6875rem;
	letter-spacing: 0.16em;
	color: var(--ink);
	background: var(--volt);
	padding: 7px 14px;
	border-radius: 999px;
	margin-bottom: var(--s3);
}
.hero__form-h { font-family: var(--font-display); font-weight: 700; font-size: 1.375rem; color: var(--bone); margin: 0 0 var(--s4); }
.hero__form-field { margin-bottom: 10px; }
.hero__form-field input,
.hero__form-field select,
.hero__form-field textarea {
	width: 100%;
	font: inherit;
	font-size: 0.9375rem;
	color: var(--bone);
	background: rgba(244, 241, 233, 0.08);
	border: 1px solid rgba(244, 241, 233, 0.2);
	border-radius: 12px;
	padding: 13px 16px;
	transition: border-color var(--t-fast), background-color var(--t-fast), box-shadow var(--t-fast);
}
.hero__form-field textarea { resize: vertical; min-height: 64px; }
.hero__form-field input::placeholder,
.hero__form-field textarea::placeholder { color: rgba(244, 241, 233, 0.45); }
.hero__form-field select { color: rgba(244, 241, 233, 0.85); }
.hero__form-field select option,
.hero__form-field select optgroup { color: var(--ink); background: var(--bone); font-style: normal; }
.hero__form-field input:focus,
.hero__form-field select:focus,
.hero__form-field textarea:focus {
	outline: none;
	border-color: var(--volt);
	background: rgba(244, 241, 233, 0.12);
	box-shadow: 0 0 0 4px rgba(198, 241, 78, 0.18);
}
.hero__form-submit {
	width: 100%;
	justify-content: center;
	font-size: 1rem;
	padding-block: 15px;
	margin-top: 4px;
	box-shadow: 0 16px 32px -12px rgba(198, 241, 78, 0.5);
}
.hero__form-micro {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.75rem;
	color: rgba(244, 241, 233, 0.5);
	margin: var(--s3) 0 0;
}
@media (max-width: 979px) { .hero__form-card { margin-top: var(--s5); } }

/* ---------- Home: boxed video card (above the relocated hero copy) ---------- */
.videobanner-wrap { padding-block: var(--s6); }
.videobanner-box {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius);
	aspect-ratio: 21/9;
	margin: 0;
	box-shadow: var(--shadow-lg);
}
@media (max-width: 640px) { .videobanner-box { aspect-ratio: 4/5; } }
.videobanner-box__video {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
	.videobanner-box__video { display: none; }
	.videobanner-box { background-image: url("../img/generated/dream-bg.webp"); background-size: cover; background-position: center; }
}

/* Intro-story: single centered column, bento removed */
.hero__grid.hero__grid--centered { display: block; grid-template-columns: none; }
@media (min-width: 980px) { .hero__grid.hero__grid--centered { display: block; grid-template-columns: none; } }
.hero__copy--centered { width: 100%; text-align: center; }
.hero__copy--centered .hero__title { max-width: none; }
.hero__copy--centered .hero__sub { max-width: 640px; margin-inline: auto; }
.hero__copy--centered .hero__ctas { justify-content: center; }
.hero__copy--centered .hero__trust { justify-content: center; }

/* ---------- Services: hero pattern (soft gradient wash + fine dot-grid) ---------- */
.hero--pattern::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		radial-gradient(circle at 88% 8%, rgba(198, 241, 78, 0.22) 0%, transparent 42%),
		radial-gradient(circle at 68% 78%, rgba(116, 136, 107, 0.16) 0%, transparent 46%),
		radial-gradient(rgba(14, 19, 17, 0.10) 1.5px, transparent 1.6px);
	background-size: auto, auto, 22px 22px;
	background-repeat: no-repeat, no-repeat, repeat;
	-webkit-mask-image: linear-gradient(to left, #000 0%, #000 45%, transparent 88%);
	        mask-image: linear-gradient(to left, #000 0%, #000 45%, transparent 88%);
	pointer-events: none;
}
/* Background video: fills the section, veiled just enough for text */
.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
	transform: translateZ(0);
	backface-visibility: hidden;
}
.hero--bg::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 60% 50% at 78% 30%, rgba(198, 241, 78, 0.12), transparent 70%),
		linear-gradient(100deg, rgba(14, 19, 17, 0.82) 0%, rgba(14, 19, 17, 0.62) 46%, rgba(14, 19, 17, 0.32) 100%);
	transform: translateZ(0);
}
/* Video hero reads dark now — flip the copy to light text for real contrast. */
.hero--bg .hero__copy .eyebrow { color: rgba(244, 241, 233, 0.7); }
.hero--bg .hero__copy .eyebrow__num { color: var(--volt); }
.hero--bg .hero__copy .hero__title { color: var(--bone); }
.hero--bg .hero__copy .hero__title mark { color: var(--ink); }
.hero--bg .hero__copy .hero__sub { color: rgba(244, 241, 233, 0.82); }
.hero--bg .hero__copy .hero__trust { color: rgba(244, 241, 233, 0.75); border-top-color: rgba(244, 241, 233, 0.22); }
.hero--bg .hero__copy .hero__trust li::before { color: var(--volt); }
.hero--bg .hero__copy .hero__trust li:not(:last-child)::after { background: rgba(244, 241, 233, 0.3); }
.hero--bg > * { position: relative; z-index: 1; }
.hero--bg > .hero__video { z-index: 0; position: absolute; }
@media (prefers-reduced-motion: reduce) {
	.hero__video { display: none; }
	.hero--bg {
		background-image: linear-gradient(rgba(244,241,233,.9), rgba(244,241,233,.9)), url("../img/generated/dream-bg.webp");
		background-size: cover;
		background-position: center;
	}
}
.hero__grid { display: grid; gap: var(--s8); align-items: center; }
@media (min-width: 980px) {
	.hero__grid { grid-template-columns: 7fr 5fr; gap: clamp(var(--s8), 6vw, 96px); }
}
.hero__grid--solo { grid-template-columns: 1fr !important; max-width: 720px; }
.hero--video-only { min-height: 640px; display: flex; align-items: center; }
.hero--video-only .hero__grid { width: 100%; }
.hero__ghost {
	position: absolute;
	top: 44%; left: 50%;
	font-size: clamp(16rem, 40vw, 34rem);
	line-height: 1;
	color: var(--volt);
	opacity: 0.05;
	pointer-events: none;
	user-select: none;
	transform: translate(-50%, -50%);
}
.hero__title {
	font-size: clamp(2.25rem, 1.1rem + 3.3vw, 3.1rem);
	letter-spacing: -0.03em;
	line-height: 1.06;
	margin-bottom: var(--s4);
}
.hero__sub { font-size: 1.0938rem; line-height: 1.7; max-width: 470px; margin-bottom: var(--s4); }
.hero__ctas { display: flex; gap: var(--s2); flex-wrap: wrap; margin-bottom: var(--s4); }
.hero__trust {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 10px;
	margin: 0;
	padding: var(--s4) 0 0;
	border-top: 1px solid var(--line);
	font-family: var(--font-display);
	font-size: 0.78rem;
	letter-spacing: 0.01em;
	color: var(--mist);
}
.hero__trust li { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.hero__trust li::before { content: "\2713"; color: var(--moss); font-weight: 700; }
.hero__trust li:not(:last-child)::after { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--line); }

/* Hero media — bento composition */
.hero__media { position: relative; }
.hero-bento {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas:
		"dash dash"
		"stat photo";
	gap: var(--s2);
	max-width: 520px;
	margin-inline: auto;
}
@media (min-width: 900px) { .hero-bento { margin-right: 0; } }

.hero-bento__cell {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
@media (hover: hover) {
	.hero-bento__cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
}

.hero-bento__dash { grid-area: dash; position: relative; }
.hero-bento__dash .browser { border-radius: var(--radius); box-shadow: none; }
.hero-bento__dash img { width: 100%; height: auto; display: block; aspect-ratio: 16/9.2; object-fit: cover; object-position: top; }
.hero-bento__badge {
	position: absolute;
	top: 56px; left: var(--s3);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--ink);
	color: var(--bone);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.75rem;
	padding: 7px 13px;
	border-radius: 999px;
	box-shadow: var(--shadow-md);
}
.hero-bento__badge span { color: var(--volt); }

.hero-bento__stat {
	grid-area: stat;
	background: var(--volt);
	color: var(--ink);
	padding: var(--s3) var(--s3) var(--s2);
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-height: 148px;
}
.hero-bento__stat-num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.875rem, 1.5rem + 1.4vw, 2.5rem);
	line-height: 1;
	letter-spacing: -0.02em;
}
.hero-bento__stat-label {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.8125rem;
	line-height: 1.3;
	opacity: 0.8;
}
.hero-bento__spark-line { margin-top: auto; width: 100%; max-width: 130px; color: var(--ink); opacity: 0.85; }

.hero-bento__photo { grid-area: photo; position: relative; background: var(--ink); }
.hero-bento__photo img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.hero-bento__tag {
	position: absolute;
	left: var(--s2); right: var(--s2); bottom: var(--s2);
	z-index: 1;
	background: rgba(14, 19, 17, 0.88);
	color: var(--bone);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.75rem;
	line-height: 1.35;
	padding: 8px 12px;
	border-radius: 10px;
	text-align: center;
}
.hero-bento__tag span { color: var(--volt); }

/* ---------- Home: trust bar (auto-scrolling logo carousel) ---------- */
.trustbar { padding-block: var(--s5); border-bottom: 1px solid var(--line); }
.trustbar__head { margin-bottom: var(--s3); text-align: center; }
.trustbar__label { font-family: var(--font-display); font-weight: 500; font-size: 0.875rem; color: var(--mist); margin: 0; }

.trustbar__viewport {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.trustbar__logos {
	display: flex;
	align-items: center;
	width: max-content;
	list-style: none;
	margin: 0;
	padding: 0;
	will-change: transform;
}
.trustbar__logo {
	flex: none;
	display: grid;
	place-items: center;
	padding-inline: clamp(var(--s5), 4vw, var(--s7, 56px));
}
.trustbar__logo img {
	display: block;
	width: clamp(76px, 9vw, 108px);
	height: auto;
	opacity: 0.45;
	filter: grayscale(1);
	transition: opacity var(--t-fast) var(--ease);
}
.trustbar__logo:hover img { opacity: 0.85; }
@media (prefers-reduced-motion: reduce) {
	.trustbar__logos { transform: none !important; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* ---------- Home: wound (lie → truth cards) ---------- */
.wound__photo {
	margin: 0 0 var(--s6);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}
.wound__photo img { width: 100%; height: auto; aspect-ratio: 21/9; object-fit: cover; }

.wound { display: grid; gap: var(--s3); }
@media (min-width: 860px) { .wound { grid-template-columns: repeat(3, 1fr); } }

.lie {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: var(--s3);
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: var(--s5);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
@media (hover: hover) {
	.lie:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(14, 19, 17, 0.16); }
	.lie:hover .lie__quote { border-color: var(--volt); }
}

.lie__eyebrow { margin-bottom: 0; font-size: 0.6875rem; }
.lie__eyebrow s { text-decoration-color: rgba(14, 19, 17, 0.35); text-decoration-thickness: 1px; }

.lie__quote {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.4375rem);
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--ink);
	line-height: 1.32;
	margin: 0;
	text-wrap: balance;
	min-height: 2.72em;
	border-left: 3px solid var(--volt-deep);
	padding-left: var(--s3);
	transition: border-color var(--t-fast);
}
.lie__truth {
	margin-top: auto;
	padding-top: var(--s3);
	border-top: 1px solid var(--line);
}
.lie__truth-tag {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.6875rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--moss);
	margin-bottom: 8px;
}
.lie__truth-tag span { color: var(--volt-deep); }
.lie__truth p { margin: 0; font-size: 0.9375rem; line-height: 1.65; color: var(--ink-soft); }
.wound__closer { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); flex-wrap: wrap; margin-top: var(--s8); padding-top: var(--s5); border-top: 1px solid var(--line); }
.wound__closer p { font-family: var(--font-display); font-size: 1.375rem; font-weight: 500; color: var(--ink); margin: 0; }

/* ---------- Home: the three engines (luxury ink cards) ---------- */
.engines { display: grid; gap: var(--s3); }
@media (min-width: 860px) {
	.engines {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"a a"
			"b c";
	}
	.engine--a { grid-area: a; }
	.engine--b { grid-area: b; }
	.engine--c { grid-area: c; }
}

.engine {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--ink);
	border: 1px solid rgba(244, 241, 233, 0.08);
	border-radius: var(--radius);
	overflow: hidden;
	text-decoration: none;
	color: rgba(244, 241, 233, 0.78);
	box-shadow: var(--shadow-lg);
	transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
@media (hover: hover) {
	.engine:hover { transform: translateY(-6px); border-color: rgba(198, 241, 78, 0.45); box-shadow: 0 30px 70px -24px rgba(14, 19, 17, 0.55), var(--shadow-volt); }
	.engine:hover .engine__media img { transform: scale(1.06); }
	.engine:hover .engine__more { color: var(--volt); }
	.engine:hover .engine__more span { transform: translateX(5px); }
}

/* FIND — wide horizontal composition */
@media (min-width: 860px) {
	.engine--a { flex-direction: row; }
	.engine--a .engine__media { width: 42%; min-height: 100%; }
	.engine--a .engine__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
	.engine--a .engine__body { width: 58%; }
	.engine--a .engine__chips { grid-template-columns: 1fr 1fr; }
}

.engine__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16/8.5;
	flex: none;
}
@media (min-width: 860px) { .engine--a .engine__media { aspect-ratio: auto; } }
.engine__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	filter: brightness(1.02);
	transition: transform 0.7s var(--ease);
}
.engine__media::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(to bottom, rgba(14,19,17,.05), rgba(14,19,17,.65) 88%, var(--ink));
	pointer-events: none;
}
@media (min-width: 860px) {
	.engine--a .engine__media::after {
		background: linear-gradient(to right, rgba(14,19,17,.05), rgba(14,19,17,.55) 82%, var(--ink));
	}
}

.engine__badge {
	position: absolute;
	top: var(--s3); left: var(--s3);
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--volt);
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.1em;
	padding: 9px 14px;
	border-radius: 999px;
	box-shadow: 0 6px 20px rgba(14, 19, 17, 0.35);
}
.engine__badge .icon { width: 15px; height: 15px; }
.engine__badge-idx { opacity: 0.6; font-size: 0.9em; }

.engine__body {
	display: flex;
	flex-direction: column;
	gap: var(--s3);
	padding: var(--s5);
	flex: 1;
}
.engine__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.375rem, 1.15rem + 1vw, 1.75rem);
	letter-spacing: -0.02em;
	color: var(--bone);
	margin: 0;
}
.engine__pitch { margin: 0; font-size: 0.9688rem; line-height: 1.6; color: rgba(244, 241, 233, 0.68); max-width: 52ch; }

.engine__chips {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 8px;
}
.engine__chips li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.8125rem;
	color: rgba(244, 241, 233, 0.85);
	background: rgba(244, 241, 233, 0.06);
	border: 1px solid rgba(244, 241, 233, 0.09);
	border-radius: 10px;
	padding: 9px 13px;
	transition: background-color var(--t-fast), border-color var(--t-fast);
}
.engine:hover .engine__chips li { border-color: rgba(244, 241, 233, 0.16); }
.engine__chips .icon { width: 15px; height: 15px; color: var(--volt); flex: none; }

.engine__foot {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s2) var(--s3);
	flex-wrap: wrap;
	padding-top: var(--s3);
	border-top: 1px solid rgba(244, 241, 233, 0.1);
}
.engine__stat {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.78rem;
	color: var(--volt);
	border: 1px solid rgba(198, 241, 78, 0.35);
	border-radius: 999px;
	padding: 7px 13px;
}
.engine__more {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.875rem;
	color: var(--bone);
	display: inline-flex;
	align-items: center;
	gap: 7px;
	transition: color var(--t-fast);
}
.engine__more span { transition: transform var(--t-fast) var(--ease); }

/* ---------- Home: portfolio wall (masonry marquee) ---------- */
.folio { padding-bottom: 0; }
.folio .sec__head { margin-bottom: var(--s6); }
.folio__viewport {
	position: relative;
	height: clamp(640px, 92vh, 940px);
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to bottom, transparent, #000 7%, #000 93%, transparent);
	mask-image: linear-gradient(to bottom, transparent, #000 7%, #000 93%, transparent);
}
.folio__cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--s2);
	max-width: 1440px;
	margin-inline: auto;
	padding-inline: var(--s2);
	height: 100%;
}
@media (max-width: 979px) { .folio__cols { grid-template-columns: repeat(3, 1fr); } .folio__col:nth-child(4) { display: none; } }
@media (max-width: 639px) { .folio__cols { grid-template-columns: repeat(2, 1fr); } .folio__col:nth-child(3) { display: none; } }

.folio__col { min-width: 0; }
.folio__track { display: flex; flex-direction: column; gap: var(--s2); will-change: transform; }
/* No-JS / reduced-motion fallback: second (duplicate) half stays hidden-ish via mask; static grid is fine. */

.folio__tile {
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	flex: none;
}
.folio__tile--photo img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	position: absolute; inset: 0;
	transition: transform 0.6s var(--ease);
}
@media (hover: hover) { .folio__tile--photo:hover img { transform: scale(1.05); } }
.folio__tile--tall { aspect-ratio: 3/3.3; }
.folio__tile--med  { aspect-ratio: 4/2.7; }
.folio__tile--photo::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(14,19,17,.78) 0%, rgba(14,19,17,.12) 45%, transparent 70%);
	pointer-events: none;
}
.folio__label {
	position: absolute;
	left: var(--s3); right: var(--s3); bottom: var(--s3);
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 1px;
}
.folio__label-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--bone); letter-spacing: -0.01em; }
.folio__label-tag { font-size: 0.72rem; color: rgba(244,241,233,.62); }

.folio__tile--word {
	background: rgba(244, 241, 233, 0.05);
	border: 1px solid rgba(244, 241, 233, 0.1);
	padding: var(--s4) var(--s3);
	display: flex;
	flex-direction: column;
	gap: var(--s2);
	min-height: 128px;
}
.folio__word-idx {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.8125rem;
	color: transparent;
	-webkit-text-stroke: 1px rgba(244,241,233,.4);
}
.folio__word {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.05rem, 1.4vw, 1.3rem);
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: var(--bone);
}
.folio__word-mark { margin-top: auto; align-self: flex-end; color: var(--volt); opacity: .6; font-size: .85rem; }

.folio__tile--volt {
	background: var(--volt);
	color: var(--ink);
	padding: var(--s4) var(--s3);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
	min-height: 108px;
}
.folio__volt-name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }
.folio__volt-tag { font-family: var(--font-display); font-weight: 500; font-size: 0.8125rem; opacity: .75; }

/* ---------- Home: quiz ---------- */
.quiz__pills { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s4); }
.quiz__pill-ico { display: inline-grid; place-items: center; }
.quiz__pill-ico .icon { width: 18px; height: 18px; }
.pill[aria-expanded="true"] .quiz__pill-ico { color: var(--volt); }
.quiz__panel {
	background: var(--ink);
	color: rgba(244, 241, 233, 0.85);
	border-radius: var(--radius);
	padding: var(--s6);
	display: none;
	gap: var(--s4);
	align-items: start;
	box-shadow: var(--shadow-lg);
}
.quiz__panel.is-open { display: grid; grid-template-columns: auto 1fr; }
.quiz__panel h3 { color: var(--bone); margin-bottom: var(--s2); }
.quiz__panel p { color: rgba(244, 241, 233, 0.75); margin: 0; }
.quiz__panel .btn { margin-top: var(--s4); }
.quiz__panel-photo {
	position: relative;
	flex: none;
	width: 168px; height: 168px;
	border-radius: 14px;
	overflow: hidden;
}
.quiz__panel-photo img { width: 100%; height: 100%; object-fit: cover; }
.quiz__panel-ico {
	position: absolute;
	right: 8px; bottom: 8px;
	display: grid; place-items: center;
	width: 34px; height: 34px;
	border-radius: 10px;
	background: var(--volt);
	color: var(--ink);
}
.quiz__panel-ico .icon { width: 18px; height: 18px; }
@media (max-width: 560px) { .quiz__panel.is-open { grid-template-columns: 1fr; } .quiz__panel-photo { width: 100%; height: 140px; } }

/* ---------- Home: proof ---------- */
.sec.cta-bg {
	background-image: linear-gradient(rgba(14,19,17,.6), rgba(14,19,17,.75)), url("../img/generated/cta-bg.webp");
	background-size: cover;
	background-position: center;
}
.sec.dream-bg {
	background-image: linear-gradient(rgba(244,241,233,.82), rgba(244,241,233,.88)), url("../img/generated/dream-bg.webp");
	background-size: cover;
	background-position: center;
}
.sec.industries-bg {
	background-image: linear-gradient(rgba(234,229,216,.88), rgba(234,229,216,.88)), url("../img/generated/industries-bg.webp");
	background-size: cover;
	background-position: center;
}
.sec.proof-bg {
	background-image: linear-gradient(rgba(14,19,17,.75), rgba(14,19,17,.85)), url("../img/generated/proof-bg.webp");
	background-size: cover;
	background-position: center;
}
.proof__cards { display: grid; gap: var(--s4); }
@media (min-width: 900px) { .proof__cards { grid-template-columns: repeat(3, 1fr); } }
.proof__card { display: flex; flex-direction: column; gap: var(--s2); padding: var(--s3); }
.proof__card .browser { margin-bottom: var(--s3); }
.proof__num {
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 1.6rem + 2.2vw, 3.25rem);
	font-weight: 700;
	color: var(--volt);
	line-height: 1;
	margin: 0 0 2px;
	letter-spacing: -0.02em;
}
.proof__what { font-family: var(--font-display); font-weight: 500; color: var(--bone); margin: 0 0 var(--s2); }
.proof__who { font-size: 0.8125rem; color: rgba(244, 241, 233, 0.55); margin: 0; }
.proof__who span[aria-hidden] { color: var(--volt); }
.proof__via { color: rgba(244, 241, 233, 0.7); }
.proof__close {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s4) var(--s6);
	flex-wrap: wrap;
	margin-top: var(--s8);
	padding-top: var(--s5);
	border-top: 1px solid var(--line-light);
}
.proof__note {
	display: flex;
	align-items: baseline;
	gap: 10px;
	font-size: 0.8125rem;
	line-height: 1.6;
	color: rgba(244, 241, 233, 0.5);
	margin: 0;
	max-width: 66ch;
}
.proof__note-mark { color: var(--volt); flex: none; font-size: 0.9em; }
.proof__close .btn { flex: none; }

/* ---------- Home: testimonials (Google × Trustpilot hybrid) ---------- */
.voices__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--s4);
	flex-wrap: wrap;
	margin-bottom: var(--s6);
}
.voices__summary {
	display: flex;
	align-items: center;
	gap: var(--s2);
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	padding: var(--s2) var(--s3);
}
.voices__summary-text { font-size: 0.78rem; line-height: 1.4; color: var(--mist); margin: 0; }
.voices__summary-text strong { font-family: var(--font-display); color: var(--ink); }

/* Trustpilot-style star tiles */
.rstars { display: inline-flex; gap: 3px; }
.rstars__tile {
	display: grid;
	place-items: center;
	width: 22px; height: 22px;
	border-radius: 5px;
	background: var(--bone-2);
	color: rgba(14, 19, 17, 0.25);
	font-size: 0.8rem;
	line-height: 1;
}
.rstars__tile.is-on { background: var(--volt); color: var(--ink); }

.voices { display: grid; gap: var(--s3); }
@media (min-width: 640px) { .voices { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .voices { grid-template-columns: repeat(3, 1fr); } }

.voice { position: relative; display: flex; flex-direction: column; gap: var(--s2); margin: 0; padding: var(--s4); }
.voice__top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s2); }
.voice__who { display: flex; align-items: center; gap: 12px; min-width: 0; }
.voice__name { display: block; font-family: var(--font-display); font-weight: 500; font-size: 0.9375rem; color: var(--ink); }
.voice__loc { display: block; font-size: 0.78rem; color: var(--mist); }
.voice__avatar {
	width: 42px; height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--moss), var(--ink));
	color: var(--volt);
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.9375rem;
	flex: none;
}
.voice__verified {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	flex: none;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.6875rem;
	letter-spacing: 0.04em;
	color: var(--moss);
	background: rgba(116, 136, 107, 0.12);
	border-radius: 999px;
	padding: 4px 10px;
}
.voice__verified svg { width: 15px; height: 15px; }
.voice__meta { display: flex; align-items: center; gap: var(--s2); }
.voice__date { font-size: 0.75rem; color: var(--mist); }
.voice__quote { font-size: 0.9688rem; color: var(--ink-soft); line-height: 1.6; flex: 1; margin: var(--s1) 0 0; font-style: normal; }
.voice__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s2);
	padding-top: var(--s2);
	border-top: 1px solid var(--line);
	font-size: 0.7rem;
}
.voice__service {
	font-family: var(--font-display);
	font-weight: 500;
	color: var(--ink);
}
.voice__service span { color: var(--volt-deep); }
.voice__source { color: var(--mist); }

/* ---------- Home: dream ---------- */
.dream p { font-size: 1.1875rem; }
.dream__open {
	font-family: var(--font-display);
	font-size: var(--h2);
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -0.02em;
	margin-bottom: var(--s4);
	line-height: 1.1;
}
.dream .btn { margin-top: var(--s4); }

/* ---------- Home: lead form showcase ---------- */
.leadform {
	position: relative;
	display: grid;
	border-radius: var(--radius);
	overflow: visible;
	box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) { .leadform { grid-template-columns: 1.05fr 1fr; } }

.leadform__free {
	position: absolute;
	top: -18px; right: 28px;
	z-index: 3;
	background: var(--volt);
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	padding: 10px 16px;
	border-radius: 999px;
	rotate: 2deg;
	box-shadow: var(--shadow-volt);
}
.leadform__free span { font-size: 0.85em; }

.leadform__promise {
	position: relative;
	background:
		radial-gradient(ellipse 80% 60% at 20% 100%, rgba(198, 241, 78, 0.12), transparent 65%),
		var(--ink);
	color: rgba(244, 241, 233, 0.82);
	padding: clamp(var(--s5), 4vw, var(--s8));
	border-radius: var(--radius) var(--radius) 0 0;
	overflow: hidden;
}
@media (min-width: 900px) { .leadform__promise { border-radius: var(--radius) 0 0 var(--radius); } }
.leadform__ghost {
	position: absolute;
	right: -0.2em; bottom: -0.3em;
	font-size: 13rem;
	color: var(--volt);
	opacity: 0.07;
	pointer-events: none;
	line-height: 1;
}
.leadform__eyebrow {
	font-family: var(--font-display);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: var(--volt);
	margin: 0 0 var(--s2);
}
.leadform__title {
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.125rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: var(--bone);
	margin: 0 0 var(--s4);
}
.leadform__benefits { list-style: none; margin: 0 0 var(--s4); padding: 0; }
.leadform__benefits li {
	display: flex;
	gap: 12px;
	align-items: baseline;
	padding: 9px 0;
	font-size: 0.9375rem;
	line-height: 1.55;
}
.leadform__benefits span { color: var(--volt); flex: none; font-size: 0.85em; }
.leadform__chips { display: flex; flex-wrap: wrap; gap: var(--s1); margin-bottom: var(--s3); }
.leadform__chips span {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.75rem;
	color: var(--bone);
	border: 1px solid rgba(244, 241, 233, 0.25);
	border-radius: 999px;
	padding: 6px 13px;
}
.leadform__human { font-size: 0.8125rem; color: rgba(244, 241, 233, 0.55); margin: 0; }

.leadform__card {
	background: var(--card);
	padding: clamp(var(--s5), 4vw, var(--s8));
	border-radius: 0 0 var(--radius) var(--radius);
}
@media (min-width: 900px) { .leadform__card { border-radius: 0 var(--radius) var(--radius) 0; } }
.leadform__field { margin-bottom: var(--s3); }
.leadform__field label { display: block; margin-bottom: 7px; font-size: 0.875rem; }
.leadform__field label em { color: var(--volt-deep); font-style: normal; }
.leadform__field input, .leadform__field select {
	padding: 16px 18px;
	border-radius: var(--radius-sm);
	background: var(--bone);
	border-color: transparent;
	font-size: 1rem;
	transition: box-shadow var(--t-fast), border-color var(--t-fast);
}
.leadform__field input:focus, .leadform__field select:focus {
	outline: none;
	border-color: var(--ink);
	box-shadow: 0 0 0 3px rgba(198, 241, 78, 0.55);
	background: var(--card);
}
.leadform__submit { width: 100%; justify-content: center; padding: 18px 24px; font-size: 1.0625rem; }
.leadform__micro { font-size: 0.78rem; color: var(--mist); margin: var(--s2) 0 0; text-align: center; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 800px; margin-top: var(--s5); }
.faq__h { max-width: 800px; }
.faq__item {
	border-top: 1px solid var(--line);
}
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary {
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--s3);
	cursor: pointer;
	padding: 20px 0;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.0625rem;
	color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__toggle {
	flex: none;
	width: 28px; height: 28px;
	border: 1px solid var(--line);
	border-radius: 50%;
	position: relative;
	transition: background-color var(--t-fast), border-color var(--t-fast);
}
.faq__toggle::before, .faq__toggle::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	background: var(--ink);
	transition: transform var(--t-fast) var(--ease), background-color var(--t-fast);
}
.faq__toggle::before { width: 12px; height: 1.5px; }
.faq__toggle::after { width: 1.5px; height: 12px; }
.faq__item[open] .faq__toggle { background: var(--ink); border-color: var(--ink); }
.faq__item[open] .faq__toggle::before { background: var(--volt); }
.faq__item[open] .faq__toggle::after { transform: rotate(90deg); background: var(--volt); }
.faq__a { padding: 0 0 var(--s3); max-width: 680px; }

/* ---------- Services ---------- */
.subnav {
	position: sticky;
	top: 64px;
	z-index: 80;
	background: var(--bone);
	border-block: 1px solid var(--line);
	overflow-x: auto;
	scrollbar-width: none;
}
.subnav::-webkit-scrollbar { display: none; }
.subnav__list {
	display: flex;
	gap: var(--s1);
	list-style: none;
	margin: 0 auto;
	padding: 10px var(--gutter);
	max-width: var(--container);
	width: max-content;
	min-width: 100%;
}
.subnav__list a {
	display: block;
	white-space: nowrap;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.875rem;
	text-decoration: none;
	color: var(--ink-soft);
	padding: 8px 16px;
	border-radius: 999px;
	transition: background-color var(--t-fast), color var(--t-fast);
}
.subnav__list a:hover { background: var(--bone-2); color: var(--ink); }
.subnav__list a.is-active { background: var(--ink); color: var(--volt); }

.sys-intro { position: relative; padding-block: var(--s8); border-top: 1px solid var(--line); }
.sys-intro__idx {
	position: absolute;
	top: var(--s5); right: var(--gutter);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(4rem, 3rem + 4vw, 7rem);
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--line);
	pointer-events: none;
	z-index: 0;
}
.sys-intro__badge {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--ink);
	color: var(--volt);
	border-radius: 999px;
	padding: 10px 20px 10px 12px;
	margin: 0 0 var(--s4);
	box-shadow: var(--shadow-sm);
}
.sys-intro__icon {
	display: grid; place-items: center;
	width: 30px; height: 30px;
	border-radius: 50%;
	background: rgba(244, 241, 233, 0.1);
	flex: none;
}
.sys-intro__icon .icon { width: 16px; height: 16px; }
.sys-intro__name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.9375rem;
	letter-spacing: 0.14em;
	color: var(--volt);
}
.sys-intro__sys {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	color: rgba(244, 241, 233, 0.55);
	padding-left: 10px;
	border-left: 1px solid rgba(244, 241, 233, 0.25);
}
.sys-intro .h2, .sys-intro .lead, .sys-intro__outcome { position: relative; z-index: 1; }
.sys-intro__outcome { color: var(--mist); font-style: italic; }

.svc { padding-block: var(--s8); scroll-margin-top: 140px; }
.svc__pain { font-style: italic; color: var(--mist); font-size: 1.0625rem; margin-bottom: var(--s3); }
.svc__proof { color: var(--moss); font-style: italic; font-size: 0.9375rem; }
.svc__faq { margin-top: var(--s3); border-top: 1px solid var(--line); }
.svc__cta { margin-top: var(--s4); }

/* Bundles */
.bundles { display: grid; gap: var(--s4); }
@media (min-width: 900px) { .bundles { grid-template-columns: repeat(3, 1fr); } }
.bundle { display: flex; flex-direction: column; gap: var(--s2); padding: var(--s5); }
.bundle--feature {
	background: var(--ink);
	color: rgba(244, 241, 233, 0.85);
	border-color: var(--volt);
}
.bundle--feature h3 { color: var(--bone); }
.bundle__flag {
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: var(--volt-deep);
}
.bundle--feature .bundle__flag { color: var(--volt); }
.bundle__for { font-style: italic; color: var(--mist); font-size: 0.9375rem; }
.bundle--feature .bundle__for { color: rgba(244, 241, 233, 0.6); }
.bundle .btn { margin-top: auto; align-self: flex-start; }

/* Oath */
.oath__text {
	font-family: var(--font-display);
	font-size: clamp(1.25rem, 1.05rem + 1.2vw, 1.875rem);
	font-weight: 500;
	line-height: 1.4;
	color: var(--bone);
}

/* ---------- About ---------- */
.rules { list-style: none; margin: 0; padding: 0; counter-reset: rule; }
.rules li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--s4);
	align-items: start;
	padding-block: var(--s5);
	border-top: 1px solid var(--line-light);
}
.rules li:last-child { border-bottom: 1px solid var(--line-light); }
.rules__num {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 2rem + 2vw, 4rem);
	font-weight: 700;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--volt);
}
.rules h3 { color: var(--bone); margin-bottom: var(--s1); }
.rules p { color: rgba(244, 241, 233, 0.7); margin: 0; }

.skills { display: flex; flex-wrap: wrap; gap: 9px; }
.skills__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.875rem;
	padding: 10px 16px;
	color: var(--ink);
	background: var(--bone);
	border: 1px solid var(--line);
	border-radius: 999px;
	transition: border-color var(--t-fast), background-color var(--t-fast);
}
.skills__badge .icon { width: 15px; height: 15px; color: var(--moss); flex: none; }
.skills__badge:hover { border-color: var(--volt-deep); background: var(--card); }

/* ---------- About: Why We Exist (redesigned) ---------- */
.whyexist { display: grid; gap: var(--s6); }
@media (min-width: 900px) { .whyexist { grid-template-columns: 6fr 5fr; gap: clamp(var(--s6), 5vw, 80px); align-items: stretch; } }
.whyexist__sins { list-style: none; margin: var(--s4) 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.whyexist__sins li { padding-block: 8px; border-top: 1px solid var(--line); }
.whyexist__sins li:last-child { border-bottom: 1px solid var(--line); }
.whyexist__sin-strike {
	position: relative;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.9688rem;
	color: var(--mist);
}
.whyexist__sin-strike::after {
	content: "";
	position: absolute;
	left: -2px; right: -2px; top: 54%;
	height: 2px;
	background: var(--moss);
	opacity: .55;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.6s var(--ease-out);
	transition-delay: calc(var(--stagger-i, 0) * 80ms + 0.3s);
}
.js .whyexist__sins li.in-view .whyexist__sin-strike::after { transform: scaleX(1); }

.whyexist__quote {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--ink);
	color: var(--bone);
	border-radius: var(--radius);
	padding: clamp(var(--s5), 4vw, var(--s7, 48px));
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	height: 100%;
}
.whyexist__quote::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		radial-gradient(circle at 6px 6px, var(--volt) 0 3px, transparent 4px),
		repeating-linear-gradient(45deg, rgba(244, 241, 233, 0.08) 0 1px, transparent 1px 26px),
		repeating-linear-gradient(-45deg, rgba(244, 241, 233, 0.055) 0 1px, transparent 1px 26px);
	background-position: 85% 22%, 0 0, 0 0;
	background-repeat: no-repeat, repeat, repeat;
	background-size: 12px 12px, auto, auto;
	-webkit-mask-image: radial-gradient(circle at 100% 0%, #000 0%, #000 45%, transparent 82%);
	        mask-image: radial-gradient(circle at 100% 0%, #000 0%, #000 45%, transparent 82%);
	pointer-events: none;
}
.whyexist__mark { position: absolute; top: -0.25em; right: 0.1em; font-size: 6rem; color: var(--volt); opacity: .12; }
.whyexist__quote blockquote {
	position: relative;
	margin: 0 0 var(--s3);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(1.25rem, 1.1rem + 0.8vw, 1.625rem);
	line-height: 1.4;
	border-left: 3px solid var(--volt);
	padding-left: var(--s3);
}
.whyexist__sig { position: relative; margin: 0; font-size: 0.8125rem; color: rgba(244, 241, 233, 0.55); }
.whyexist__instead {
	position: relative;
	list-style: none;
	margin: auto 0 0;
	padding-top: var(--s5);
	display: flex;
	flex-direction: column;
	gap: var(--s3);
}
.whyexist__instead li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding-top: var(--s3);
	border-top: 1px solid rgba(244, 241, 233, 0.14);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.9375rem;
	line-height: 1.4;
}
.whyexist__instead .checks__mark { flex: none; color: var(--volt); font-size: 1rem; line-height: 1.4; }

/* ---------- About: Origin (milestone cards) ---------- */
.origin { display: grid; gap: var(--s3); }
@media (min-width: 640px) { .origin { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .origin { grid-template-columns: repeat(4, 1fr); } }
.origin__card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: var(--s5);
	box-shadow: var(--shadow-sm);
	transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
@media (hover: hover) {
	.origin__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(14, 19, 17, 0.16); }
}
.origin__num {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 2.25rem;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--volt-deep);
	margin-bottom: var(--s3);
}
.origin__year { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; color: var(--ink); margin: 0 0 6px; letter-spacing: -0.01em; }
.origin__text { font-size: 0.9063rem; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* ---------- About: Skill Wall (FIND/CONVERT/FLOW — one full-width row each) ---------- */
.sec--edge { border-bottom: 1px solid var(--line); }
.sec--edge-top { border-top: 1px solid var(--line); }
.skillwall { display: flex; flex-direction: column; gap: var(--s4); }
.skillwall__row {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--s5);
	background: var(--bone);
	border-radius: var(--radius);
	padding: var(--s6);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	transition: transform var(--t-fast), box-shadow var(--t-fast);
}
@media (min-width: 860px) {
	.skillwall__row { grid-template-columns: minmax(260px, 320px) 1fr; gap: var(--s7, 56px); align-items: center; }
}
.skillwall__row::before {
	content: "";
	position: absolute; inset: 0 auto 0 0;
	width: 5px;
	background: var(--volt);
	z-index: 1;
}
.skillwall__row::after {
	content: "";
	position: absolute;
	top: 0; right: 0;
	width: min(560px, 60%);
	height: 100%;
	background-image: var(--skillwall-pattern);
	background-repeat: no-repeat;
	background-position: var(--skillwall-pos, top right);
	-webkit-mask-image: radial-gradient(circle at 100% 0%, #000 0%, #000 55%, transparent 92%);
	        mask-image: radial-gradient(circle at 100% 0%, #000 0%, #000 55%, transparent 92%);
	pointer-events: none;
}
/* FIND — radar sweep: concentric rings pulsing out from the corner, one ping dot */
.skillwall__row--find {
	--skillwall-pattern:
		radial-gradient(circle at 6px 6px, var(--volt) 0 3px, transparent 4px),
		repeating-radial-gradient(circle at 100% 0%, transparent 0 30px, rgba(14, 19, 17, 0.09) 31px 32px);
	--skillwall-pos: 62% 58%, top right;
	background-size: 12px 12px, 100% 100%;
}
/* CONVERT — storefront square-grid with a moss "sold" ping */
.skillwall__row--convert {
	--skillwall-pattern:
		radial-gradient(circle at 6px 6px, var(--moss) 0 3px, transparent 4px),
		repeating-linear-gradient(0deg, rgba(14, 19, 17, 0.075) 0 1px, transparent 1px 26px),
		repeating-linear-gradient(90deg, rgba(14, 19, 17, 0.075) 0 1px, transparent 1px 26px);
	--skillwall-pos: 58% 65%, top right, top right;
	background-size: 12px 12px, auto, auto;
	background-repeat: no-repeat, repeat, repeat;
}
/* FLOW — circuit crosshatch, quietest of the three */
.skillwall__row--flow {
	--skillwall-pattern:
		repeating-linear-gradient(45deg, rgba(14, 19, 17, 0.06) 0 1px, transparent 1px 28px),
		repeating-linear-gradient(-45deg, rgba(14, 19, 17, 0.045) 0 1px, transparent 1px 28px);
}
.skillwall__id, .skillwall__list { position: relative; z-index: 2; }
.skillwall__row--convert::before { background: var(--moss); }
.skillwall__row--flow::before { background: var(--ink); }
.skillwall__row:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl, var(--shadow-lg)); }

.skillwall__id { position: relative; }
.skillwall__idx {
	position: absolute;
	top: -8px; right: 0;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 3.5rem;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--line);
	pointer-events: none;
}
.skillwall__icon {
	display: grid; place-items: center;
	width: 56px; height: 56px;
	border-radius: 16px;
	background: var(--ink);
	color: var(--volt);
	margin-bottom: var(--s3);
}
.skillwall__icon .icon { width: 26px; height: 26px; }
.skillwall__sys {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.24em;
	color: var(--moss);
	margin-bottom: 6px;
}
.skillwall__title { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--ink); margin: 0 0 var(--s3); letter-spacing: -0.01em; }
.skillwall__note { font-size: 0.9375rem; line-height: 1.6; color: var(--ink-soft); margin: 0 0 var(--s4); max-width: 34ch; }
.skillwall__count {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.375rem;
	color: var(--ink);
	padding-top: var(--s3);
	border-top: 1px solid var(--line);
}
.skillwall__count small { display: block; margin-top: 3px; font-weight: 600; font-size: 0.6875rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mist); }
.skillwall__list { min-width: 0; }

/* ---------- About: World (single framed map image) ---------- */
.world { text-align: center; }
.world__frame {
	margin: var(--s6) 0 var(--s4);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
.world__frame .img-slot { aspect-ratio: 21/9; }
.world__frame img { display: block; width: 100%; height: auto; aspect-ratio: 21/9; object-fit: cover; }
.world__strip {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.8125rem;
	letter-spacing: 0.22em;
	color: var(--mist);
	margin: 0;
}
.world__strip span { color: var(--volt-deep); letter-spacing: 0; }

/* ---------- About: BTS gallery ---------- */
.btsgallery { margin-top: var(--s6); }
.btsgallery .img-slot { border-radius: var(--radius-sm); }
.btsgallery figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--t-fast), box-shadow var(--t-fast); }
.btsgallery figure:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.btsgallery img { display: block; width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Contact ---------- */
.contact-wrap { position: relative; }
.contact-wrap::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		radial-gradient(circle at 12% 0%, rgba(198, 241, 78, 0.16) 0%, transparent 38%),
		radial-gradient(circle at 92% 60%, rgba(116, 136, 107, 0.14) 0%, transparent 42%),
		radial-gradient(rgba(14, 19, 17, 0.09) 1.4px, transparent 1.5px);
	background-size: auto, auto, 22px 22px;
	background-repeat: no-repeat, no-repeat, repeat;
	pointer-events: none;
}
.contact-grid { position: relative; z-index: 1; display: grid; gap: var(--s6); align-items: stretch; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 7fr 5fr; } }

.contact-form-card {
	position: relative;
	overflow: hidden;
	padding: var(--s6);
	box-shadow: 0 40px 80px -32px rgba(14, 19, 17, 0.22), var(--shadow-sm);
	border: 1px solid rgba(14, 19, 17, 0.06);
}
.contact-form-card .field { position: relative; margin-bottom: var(--s3); }
.contact-form-card label { display: block; margin-bottom: 6px; }
.contact-form-card__spark {
	position: absolute;
	right: -30px; bottom: -40px;
	font-size: 11rem;
	color: var(--bone-2);
	pointer-events: none;
	user-select: none;
	line-height: 1;
}
.contact-form-card__kicker {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.6875rem;
	letter-spacing: 0.16em;
	color: var(--ink);
	background: var(--volt);
	padding: 7px 14px;
	border-radius: 999px;
	margin-bottom: var(--s3);
}
.contact-form-card h2 { position: relative; }
.contact-form-card > p.muted { position: relative; margin-bottom: var(--s4); }
.contact-form-card__trust {
	position: relative;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: var(--s2);
	margin: 0 0 var(--s5);
	padding: 0;
	padding-bottom: var(--s4);
	border-bottom: 1px solid var(--line);
}
.contact-form-card__trust li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.8125rem;
	color: var(--ink-soft);
	background: var(--bone-2);
	padding: 7px 13px;
	border-radius: 999px;
}
.contact-form-card__trust .icon { width: 15px; height: 15px; color: var(--moss); }

.field--icon input { padding-left: 46px; }
.field--icon .field__ico {
	position: absolute;
	left: 16px; bottom: 14px;
	display: grid; place-items: center;
	color: var(--mist);
	pointer-events: none;
}
.field--icon .field__ico .icon { width: 18px; height: 18px; }
.contact-form-card input:focus, .contact-form-card select:focus, .contact-form-card textarea:focus {
	outline: none;
	border-color: var(--ink);
	box-shadow: 0 0 0 4px rgba(198, 241, 78, 0.28);
}
.contact-form-card__submit {
	position: relative;
	width: 100%;
	justify-content: center;
	font-size: 1.0625rem;
	padding-block: 17px;
	box-shadow: 0 16px 32px -12px rgba(198, 241, 78, 0.55);
}
.contact-form-card__arrow { display: inline-block; transition: transform var(--t-fast) var(--ease); }
.contact-form-card__submit:hover .contact-form-card__arrow { transform: translateX(5px); }

.contact-aside { display: flex; flex-direction: column; gap: var(--s4); }
.contact-channels { padding: 0; overflow: hidden; }
.contact-channels__row {
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--s3);
	padding: var(--s4) var(--s5);
	border-bottom: 1px solid var(--line);
	text-decoration: none;
	color: inherit;
	transition: background-color var(--t-fast);
}
.contact-channels__row:last-child { border-bottom: 0; }
a.contact-channels__row:hover { background: var(--bone-2); }
.contact-channels__ico {
	display: grid; place-items: center;
	width: 44px; height: 44px;
	border-radius: 13px;
	background: var(--ink);
	color: var(--volt);
	flex: none;
}
.contact-channels__ico .icon { width: 21px; height: 21px; }
.contact-channels__body { display: flex; flex-direction: column; min-width: 0; }
.contact-channels__body strong { font-family: var(--font-display); font-size: 0.9375rem; color: var(--ink); }
.contact-channels__value { font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem; color: var(--ink); }
a .contact-channels__value { color: var(--moss); }
.contact-channels__note { font-size: 0.8125rem; color: var(--mist); margin-top: 1px; }
.contact-channels__go {
	margin-left: auto;
	flex: none;
	color: var(--mist);
	transition: transform var(--t-fast), color var(--t-fast);
}
a.contact-channels__row:hover .contact-channels__go { transform: translateX(4px); color: var(--ink); }

.contact-quote {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	color: var(--bone);
	padding: var(--s5);
}
.contact-quote__mark { position: absolute; top: -0.2em; right: 0.15em; font-size: 5rem; color: var(--volt); opacity: 0.14; }
.contact-quote .stars { position: relative; display: block; margin-bottom: var(--s2); }
.contact-quote blockquote {
	position: relative;
	margin: 0 0 var(--s2);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.1875rem;
	line-height: 1.35;
}
.contact-quote__sig { position: relative; margin: 0; font-size: 0.8125rem; color: rgba(244, 241, 233, 0.55); }

.next-steps { counter-reset: ns; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); min-height: 360px; background: var(--bone-2); display: grid; place-items: center; }
.map-embed iframe { width: 100%; height: 420px; border: 0; filter: grayscale(1) contrast(1.05); display: block; }
.map-embed--compact { min-height: 220px; flex: 1; }
.map-embed--compact iframe { height: 100%; min-height: 220px; }

.permission-wrap { position: relative; overflow: clip; }
.permission-wrap::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		radial-gradient(circle at 6% 100%, rgba(198, 241, 78, 0.16) 0%, transparent 40%),
		radial-gradient(circle at 96% 0%, rgba(116, 136, 107, 0.14) 0%, transparent 42%),
		radial-gradient(rgba(14, 19, 17, 0.08) 1.4px, transparent 1.5px);
	background-size: auto, auto, 22px 22px;
	background-repeat: no-repeat, no-repeat, repeat;
	pointer-events: none;
}
.permission { position: relative; z-index: 1; text-align: center; }
.permission > .lead { max-width: 520px; color: var(--ink-soft); }
.permission__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--s5);
	margin-top: var(--s6);
	text-align: left;
}
@media (min-width: 860px) { .permission__grid { grid-template-columns: repeat(4, 1fr); } }
.permission__card {
	position: relative;
	background: var(--bone);
	border-radius: var(--radius);
	padding: var(--s5) var(--s4) var(--s4);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
@media (hover: hover) {
	.permission__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
	.permission__card:hover .permission__ico { background: var(--volt); color: var(--ink); }
}
.permission__num {
	position: absolute;
	top: var(--s3); right: var(--s4);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 2.25rem;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--line);
	pointer-events: none;
}
.permission__ico {
	position: relative;
	display: grid; place-items: center;
	width: 46px; height: 46px;
	border-radius: 13px;
	background: var(--ink);
	color: var(--volt);
	margin-bottom: var(--s4);
	transition: background-color var(--t-fast), color var(--t-fast);
}
.permission__ico .icon { width: 22px; height: 22px; }
.permission__q {
	position: relative;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.35;
	color: var(--ink);
	margin: 0 0 var(--s4);
	min-height: 3em;
}
.permission__answer {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: 100%;
	white-space: nowrap;
	color: var(--ink);
	background: var(--bone-2);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.75rem;
	padding: 8px 14px;
	border-radius: 999px;
	margin: 0;
}
.permission__answer span { color: var(--moss); }

.big-voice { text-align: center; max-width: 800px; margin-inline: auto; }
.big-voice blockquote {
	margin: var(--s3) 0;
	font-family: var(--font-display);
	font-size: clamp(1.375rem, 1.1rem + 1.4vw, 2rem);
	font-weight: 500;
	color: var(--ink);
	line-height: 1.35;
}

/* ---------- 404 ---------- */
.err404 { position: relative; overflow: clip; text-align: center; padding-block: var(--s15); }
.err404::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		radial-gradient(circle at 50% 0%, rgba(198, 241, 78, 0.18) 0%, transparent 46%),
		radial-gradient(rgba(14, 19, 17, 0.08) 1.4px, transparent 1.5px);
	background-size: auto, 22px 22px;
	background-repeat: no-repeat, repeat;
	pointer-events: none;
}
.err404__num {
	position: relative;
	font-family: var(--font-display);
	font-size: clamp(8rem, 20vw, 18rem);
	font-weight: 700;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 2px var(--ink);
	opacity: 0.15;
}
.err404 h1, .err404 > .container > p.lead, .err404 .container > div { position: relative; z-index: 1; }
.err404__links {
	position: relative;
	z-index: 1;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: var(--s4);
	flex-wrap: wrap;
	margin: var(--s6) 0 0;
	padding-top: var(--s5);
	border-top: 1px solid var(--line);
}
.err404__links a { font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem; color: var(--ink-soft); text-decoration: none; }
.err404__links a:hover { color: var(--ink); text-decoration: underline; }

/* ---------- Thank you ---------- */
.thankyou { position: relative; overflow: clip; text-align: center; padding-block: var(--s12) var(--s12); }
.thankyou::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		radial-gradient(circle at 50% 0%, rgba(198, 241, 78, 0.22) 0%, transparent 42%),
		radial-gradient(circle at 12% 90%, rgba(116, 136, 107, 0.14) 0%, transparent 40%),
		radial-gradient(circle at 90% 85%, rgba(116, 136, 107, 0.12) 0%, transparent 38%),
		radial-gradient(rgba(14, 19, 17, 0.08) 1.4px, transparent 1.5px);
	background-size: auto, auto, auto, 22px 22px;
	background-repeat: no-repeat, no-repeat, no-repeat, repeat;
	pointer-events: none;
}
.thankyou__inner { position: relative; z-index: 1; }
/* display:flex + align-items:center (not text-align:center) on purpose — this h1's
   large clamp() font combined with text-align:center on an ancestor triggers a
   Chromium text-wrap/centering bug that overflows the viewport on narrow screens. */
.thankyou__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 640px;
	width: 100%;
	margin-inline: auto;
	box-sizing: border-box;
}
.thankyou__head h1 {
	text-wrap: normal;
	overflow-wrap: break-word;
	max-width: 100%;
	text-align: center;
}
.thankyou__head h1 mark { white-space: normal; }
.thankyou .eyebrow { justify-content: center; }
.thankyou__sub { max-width: 560px; width: 100%; margin-inline: auto; overflow-wrap: break-word; box-sizing: border-box; }
.thankyou__check {
	position: relative;
	display: grid;
	place-items: center;
	width: 84px; height: 84px;
	margin: 0 auto var(--s5);
	border-radius: 50%;
	background: var(--ink);
	color: var(--volt);
	box-shadow: 0 20px 44px -16px rgba(14, 19, 17, 0.4);
}
.thankyou__check svg { width: 38px; height: 38px; position: relative; z-index: 1; }
.thankyou__check::before, .thankyou__check::after {
	content: "";
	position: absolute; inset: 0;
	border-radius: 50%;
	border: 1.5px solid var(--volt);
	opacity: 0;
	animation: xs-ring 1.8s var(--ease) 0.3s infinite;
}
.thankyou__check::after { animation-delay: 0.9s; }
@keyframes xs-ring {
	0% { transform: scale(1); opacity: 0.7; }
	100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .thankyou__check::before, .thankyou__check::after { animation: none; opacity: 0; } }
.thankyou__burst {
	position: absolute;
	top: calc(var(--s12) + 42px); left: 50%;
	width: 4px; height: 4px;
	pointer-events: none;
}
.thankyou__burst span {
	position: absolute;
	top: 0; left: 0;
	width: 8px; height: 8px;
	border-radius: 2px;
	background: var(--volt);
	opacity: 0;
	animation: xs-burst 1.1s var(--ease) 0.15s both;
}
.thankyou__burst span:nth-child(1) { --tx: -160px; --ty: -40px; background: var(--volt); animation-delay: .05s; }
.thankyou__burst span:nth-child(2) { --tx: -100px; --ty: -110px; background: var(--moss); animation-delay: .12s; }
.thankyou__burst span:nth-child(3) { --tx: -20px;  --ty: -140px; background: var(--volt); animation-delay: .08s; }
.thankyou__burst span:nth-child(4) { --tx: 60px;   --ty: -120px; background: var(--ink); animation-delay: .18s; }
.thankyou__burst span:nth-child(5) { --tx: 140px;  --ty: -60px;  background: var(--volt); animation-delay: .1s; }
.thankyou__burst span:nth-child(6) { --tx: -140px; --ty: 30px;   background: var(--moss); animation-delay: .22s; }
.thankyou__burst span:nth-child(7) { --tx: 130px;  --ty: 20px;   background: var(--ink); animation-delay: .06s; }
.thankyou__burst span:nth-child(8) { --tx: 10px;   --ty: -190px; background: var(--moss); animation-delay: .16s; }
@keyframes xs-burst {
	0% { opacity: 0; transform: translate(0, 0) scale(0.4) rotate(0deg); }
	18% { opacity: 1; }
	100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(1) rotate(160deg); }
}
@media (prefers-reduced-motion: reduce) { .thankyou__burst span { animation: none; opacity: 0; } }

.thankyou__timeline {
	display: grid;
	gap: var(--s4);
	max-width: 940px;
	margin: var(--s8) auto;
	text-align: left;
}
@media (min-width: 700px) { .thankyou__timeline { grid-template-columns: repeat(3, 1fr); } }
.thankyou__step {
	position: relative;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: var(--s5);
	box-shadow: var(--shadow-sm);
}
.thankyou__step-num {
	display: block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.75rem;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--volt-deep);
	margin-bottom: var(--s2);
}
.thankyou__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s2); margin-bottom: var(--s5); }
.thankyou__micro { color: var(--mist); font-size: 0.875rem; }
.thankyou__micro span { color: var(--volt-deep); }

/* ---------- Home: about (ink power split) ---------- */
.habout__grid { display: grid; gap: var(--s8); align-items: center; }
@media (min-width: 900px) { .habout__grid { grid-template-columns: 7fr 5fr; gap: clamp(var(--s8), 6vw, 96px); } }
.habout__copy p { color: rgba(244, 241, 233, 0.72); max-width: 56ch; }
.habout__quote {
	margin: var(--s4) 0;
	padding-left: var(--s3);
	border-left: 3px solid var(--volt);
	font-family: var(--font-display);
	font-size: clamp(1.125rem, 1rem + 0.8vw, 1.375rem);
	font-weight: 500;
	line-height: 1.4;
	color: var(--bone);
}
.habout__chips { list-style: none; margin: 0 0 var(--s5); padding: 0; display: flex; flex-wrap: wrap; gap: var(--s1); }
.habout__chips li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.78rem;
	color: rgba(244, 241, 233, 0.85);
	border: 1px solid rgba(244, 241, 233, 0.18);
	border-radius: 999px;
	padding: 8px 14px;
}
.habout__chips span { color: var(--volt); font-size: 0.85em; }

.habout__media { position: relative; max-width: 420px; margin-inline: auto; }
@media (min-width: 900px) { .habout__media { margin-right: 0; } }
.habout__frame::after { border-color: rgba(244, 241, 233, 0.35); }
.habout__frame::before { border-color: var(--volt); opacity: 0.5; }
.habout__est {
	position: absolute;
	left: -20px; bottom: 36px;
	z-index: 3;
	background: var(--volt);
	color: var(--ink);
	border-radius: var(--radius);
	box-shadow: var(--shadow-volt);
	padding: var(--s2) var(--s3);
	display: flex;
	flex-direction: column;
	gap: 2px;
	rotate: -2deg;
}
.habout__est-num { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; line-height: 1; letter-spacing: 0.04em; }
.habout__est-label { font-family: var(--font-display); font-weight: 500; font-size: 0.7rem; line-height: 1.3; opacity: 0.8; }

/* ---------- Home: founder spotlight (single card) ---------- */
/* Divider — Voices and Founder share the same bone background, so a full-width
   hairline marks the section boundary instead of a color break. */
#team { border-top: 1px solid var(--line); }

.founder {
	position: relative;
	display: grid;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	transition: box-shadow var(--t-fast) var(--ease);
}
@media (min-width: 720px) { .founder { grid-template-columns: 0.85fr 1.15fr; align-items: stretch; } }
@media (hover: hover) {
	.founder:hover { box-shadow: 0 40px 90px -28px rgba(14, 19, 17, 0.35); }
	.founder:hover .founder__media img { transform: scale(1.045); }
}

.founder__media { position: relative; overflow: hidden; background: var(--ink); aspect-ratio: 4/5; }
@media (max-width: 719px) { .founder__media { aspect-ratio: 16/11; } }
@media (min-width: 720px) { .founder:not(.founder--compact) .founder__media { aspect-ratio: auto; height: 100%; min-height: 100%; } }
.founder__media img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.8s var(--ease);
}
.founder__media::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(14,19,17,.7) 0%, rgba(14,19,17,0) 42%);
	pointer-events: none;
}
.founder__idx {
	position: absolute;
	top: var(--s3); left: var(--s3);
	z-index: 2;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.75rem;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--volt);
}
.founder__badge {
	position: absolute;
	left: var(--s3); bottom: var(--s3);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--volt);
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.02em;
	padding: 8px 14px;
	border-radius: 999px;
	box-shadow: 0 8px 22px rgba(14, 19, 17, 0.3);
}

.founder__body { display: flex; flex-direction: column; gap: 12px; padding: clamp(var(--s5), 4vw, var(--s7, 44px)); min-width: 0; }
.founder__role {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--moss);
}
.founder__name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 1.3rem + 0.8vw, 1.875rem); letter-spacing: -0.02em; color: var(--ink); margin: 0; }
.founder__bio { font-size: 0.9688rem; line-height: 1.65; color: var(--ink-soft); margin: 0; }
.founder__skills { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 0; padding: 0; }
.founder__skills li {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.75rem;
	color: var(--ink);
	background: var(--bone-2);
	border-radius: 999px;
	padding: 6px 13px;
}
.founder__foot {
	margin-top: auto;
	padding-top: var(--s3);
	border-top: 1px solid var(--line);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--s2);
}
.founder__langs { font-size: 0.78rem; color: var(--mist); display: inline-flex; align-items: center; gap: 6px; }
.founder__langs span { color: var(--volt-deep); }
.founder__links { display: flex; gap: 8px; }
.founder__links a {
	display: grid; place-items: center;
	width: 38px; height: 38px;
	border-radius: 11px;
	background: var(--bone-2);
	color: var(--ink);
	transition: background-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.founder__links a:hover { background: var(--ink); color: var(--volt); transform: translateY(-2px); }
.founder__links .icon { width: 17px; height: 17px; }

/* ---------- Home: wound v2 (cinematic composite) ---------- */
.wound2 {
	display: grid;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}
@media (min-width: 900px) { .wound2 { grid-template-columns: 5fr 7fr; } }

.wound2__media { position: relative; min-height: 260px; background: var(--ink); }
.wound2__media img {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.wound2__media::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(to bottom, rgba(14,19,17,0) 40%, rgba(14,19,17,.55));
	pointer-events: none;
}
@media (min-width: 900px) {
	.wound2__media::after { background: linear-gradient(to right, rgba(14,19,17,0) 55%, rgba(14,19,17,.4)); }
}
.wound2__sticker {
	position: absolute;
	left: var(--s3); bottom: var(--s3);
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--volt);
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.8125rem;
	padding: 10px 15px;
	border-radius: 999px;
	rotate: -2deg;
	box-shadow: 0 8px 24px rgba(14, 19, 17, 0.35);
}

.wound2__rows { display: flex; flex-direction: column; padding: var(--s5) var(--s5) var(--s4); }
.wrow {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--s4);
	align-items: start;
	padding-block: var(--s4);
	border-bottom: 1px solid var(--line);
}
.wrow__num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 1.15;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--moss);
	transition: -webkit-text-stroke-color var(--t-fast);
}
.wrow:hover .wrow__num { -webkit-text-stroke-color: var(--volt-deep); }
.wrow__quote {
	font-family: var(--font-display);
	font-size: clamp(1.125rem, 1rem + 0.7vw, 1.375rem);
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--ink);
	line-height: 1.3;
	margin: 0 0 8px;
}
.wrow__strike { position: relative; display: inline; }
.wrow__strike::after {
	content: "";
	position: absolute;
	left: -2px; right: -2px;
	top: 56%;
	height: 2.5px;
	background: var(--volt-deep);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.7s var(--ease-out);
	transition-delay: calc(var(--stagger-i, 0) * 80ms + 0.45s);
}
.js .wrow.in-view .wrow__strike::after { transform: scaleX(1); }
.wrow__truth { margin: 0; font-size: 0.9063rem; line-height: 1.6; color: var(--ink-soft); }
.wrow__truth-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.6563rem;
	letter-spacing: 0.18em;
	color: var(--moss);
	margin-right: 8px;
}
.wrow__truth-tag span { color: var(--volt-deep); }

.wound2__closer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s2) var(--s3);
	flex-wrap: wrap;
	padding-top: var(--s4);
}
.wound2__closer p { margin: 0; font-family: var(--font-display); font-size: 1rem; color: var(--ink-soft); }
.wound2__closer strong { color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
	.wrow__strike::after { transform: scaleX(1); transition: none; }
}

/* ---------- Home: about intro "The Studio Statement" (full-bleed ink section) ---------- */
.intro-sec { position: relative; }
.intro-sec::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 65% 60% at 88% 8%, rgba(198, 241, 78, 0.1), transparent 65%);
	pointer-events: none;
}
.intro {
	position: relative;
	display: grid;
	gap: var(--s7, var(--s6));
	color: rgba(244, 241, 233, 0.8);
}
@media (min-width: 960px) {
	.intro { grid-template-columns: 6fr 5fr; align-items: stretch; gap: clamp(var(--s6), 6vw, 96px); }
}

.intro__hi {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.8125rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--volt);
	margin: 0 0 var(--s3);
}
.intro__title {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(2rem, 1.2rem + 3vw, 3.25rem);
	letter-spacing: -0.03em;
	line-height: 1.05;
	color: var(--bone);
	margin: 0 0 var(--s4);
}
.intro__text { font-size: 1.0625rem; line-height: 1.7; max-width: 52ch; margin: 0 0 var(--s4); color: rgba(244, 241, 233, 0.72); }
.intro__text em { font-style: normal; color: var(--volt); }
.intro__quote {
	margin: 0 0 var(--s5);
	padding-left: var(--s3);
	border-left: 3px solid var(--volt);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.0625rem;
	line-height: 1.45;
	color: var(--bone);
	max-width: 44ch;
}
.intro__stats {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s5);
	margin-bottom: var(--s5);
	padding-block: var(--s3);
	border-block: 1px solid rgba(244, 241, 233, 0.1);
}
.intro__stat { display: flex; flex-direction: column; gap: 2px; }
.intro__stat-num {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: clamp(1.75rem, 1.4rem + 1.4vw, 2.5rem);
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--volt);
	font-variant-numeric: tabular-nums;
}
.intro__stat-label {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(244, 241, 233, 0.55);
}
.intro__ctas { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s5); }

/* Bottom strip — sits inside the copy column now, not spanning the grid */
.intro__strip {
	margin: 0;
	padding-top: var(--s4);
	border-top: 1px solid rgba(244, 241, 233, 0.1);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.7rem;
	letter-spacing: 0.26em;
	color: rgba(244, 241, 233, 0.42);
}
.intro__strip span { color: var(--volt); letter-spacing: 0; }

/* Collage — stretches to match the copy column's full height */
.intro__collage {
	position: relative;
	display: flex;
	min-height: 340px;
}
@media (min-width: 960px) { .intro__collage { min-height: 0; } }
.intro__photo {
	position: relative;
	flex: 1;
	width: 100%;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid rgba(244, 241, 233, 0.14);
	box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.6);
}
.intro__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.intro__float { position: absolute; z-index: 2; }
.intro__float--mark {
	top: -26px; right: -22px;
	width: 64px; height: 64px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-volt), 0 10px 30px rgba(0, 0, 0, 0.45);
	rotate: 8deg;
}
.intro__float--mark img { width: 100%; height: 100%; display: block; }
.intro__float--est {
	left: -26px; top: 34%;
	background: var(--bone);
	color: var(--ink);
	border-radius: var(--radius-sm);
	padding: 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	rotate: -3deg;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}
.intro__est-top { font-family: var(--font-display); font-weight: 700; font-size: 0.8125rem; letter-spacing: 0.08em; }
.intro__est-sub { font-family: var(--font-display); font-weight: 500; font-size: 0.66rem; color: var(--moss); letter-spacing: 0.06em; }
.intro__float--motto {
	right: -14px; bottom: 42px;
	background: var(--volt);
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.3;
	padding: 12px 16px;
	border-radius: var(--radius-sm);
	rotate: 2deg;
	box-shadow: var(--shadow-volt);
}
.intro__float--motto strong { font-weight: 700; }

@media (max-width: 560px) {
	.intro__float--est { left: -8px; }
	.intro__float--mark { right: -6px; width: 60px; height: 60px; }
	.intro__float--motto { right: -4px; }
	.intro__strip { letter-spacing: 0.18em; }
}

/* ---------- Team bio pages (Founder / Co-Founder) ---------- */
.bio-quote-wrap { text-align: center; }
.bio-quote {
	position: relative;
	overflow: hidden;
	max-width: 780px;
	margin-inline: auto;
	padding: var(--s4) 0;
}
.bio-quote__mark { position: absolute; top: -0.3em; left: 50%; translate: -50% 0; font-size: 3.5rem; color: var(--volt); opacity: 0.16; }
.bio-quote blockquote {
	position: relative;
	margin: var(--s4) 0 var(--s3);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(1.375rem, 1.15rem + 1vw, 2rem);
	line-height: 1.4;
	color: var(--bone);
}
.bio-quote__sig { position: relative; margin: 0; font-size: 0.875rem; color: rgba(244, 241, 233, 0.55); }

.bio-focus { display: grid; gap: var(--s5); margin-top: var(--s6); }
@media (min-width: 760px) { .bio-focus { grid-template-columns: repeat(3, 1fr); } }
.bio-focus__card {
	position: relative;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: var(--s5);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
@media (hover: hover) { .bio-focus__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); } }
.bio-focus__idx {
	position: absolute;
	top: var(--s3); right: var(--s4);
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 2.25rem;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--line);
}
.bio-focus__ico {
	position: relative;
	display: grid; place-items: center;
	width: 48px; height: 48px;
	border-radius: 14px;
	background: var(--ink);
	color: var(--volt);
	margin-bottom: var(--s4);
}
.bio-focus__ico .icon { width: 23px; height: 23px; }
.bio-focus__title { position: relative; font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; color: var(--ink); margin: 0 0 var(--s2); }
.bio-focus__card p { position: relative; margin: 0; font-size: 0.9375rem; line-height: 1.6; color: var(--ink-soft); }

.bio-trust-wrap { position: relative; overflow: clip; }
.bio-trust-wrap::before {
	content: "";
	position: absolute; inset: 0;
	background-image:
		radial-gradient(circle at 90% 10%, rgba(198, 241, 78, 0.14) 0%, transparent 42%),
		radial-gradient(rgba(244, 241, 233, 0.06) 1.4px, transparent 1.5px);
	background-size: auto, 22px 22px;
	background-repeat: no-repeat, repeat;
	pointer-events: none;
}
.bio-trust-wrap .sec__head, .bio-trust { position: relative; z-index: 1; }
.bio-trust { display: grid; grid-template-columns: 1fr; gap: var(--s4); margin-top: var(--s6); }
@media (min-width: 700px) { .bio-trust { grid-template-columns: repeat(2, 1fr); } }
.bio-trust__card {
	display: flex;
	align-items: flex-start;
	gap: var(--s3);
	background: rgba(244, 241, 233, 0.04);
	border: 1px solid var(--line-light);
	border-radius: var(--radius);
	padding: var(--s4) var(--s5);
	transition: transform var(--t-fast) var(--ease), background-color var(--t-fast);
}
@media (hover: hover) { .bio-trust__card:hover { transform: translateY(-4px); background: rgba(244, 241, 233, 0.07); } }
.bio-trust__ico {
	display: grid; place-items: center;
	width: 40px; height: 40px;
	border-radius: 12px;
	background: var(--volt);
	color: var(--ink);
	flex: none;
}
.bio-trust__ico .icon { width: 19px; height: 19px; }
.bio-trust__card p { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 1.0625rem; line-height: 1.4; color: var(--bone); }

/* Bio pages — quick-stat strip on ink, below the ticker */
.bio-stats-wrap { padding-block: var(--s6); }
.bio-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s5); text-align: center; }
@media (min-width: 700px) { .bio-stats { grid-template-columns: repeat(4, 1fr); } }
.bio-stats__item { display: flex; flex-direction: column; gap: 6px; }
.bio-stats__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem); color: var(--volt); line-height: 1; }
.bio-stats__label { font-size: 0.8125rem; color: rgba(244, 241, 233, 0.6); }

/* Bio pages — per-person accent on the founder card's top edge */
.founder--find::before,
.founder--flow::before {
	content: "";
	position: absolute; inset: 0 0 auto 0;
	height: 5px;
	z-index: 2;
	background: var(--volt);
}
.founder--flow::before { background: var(--moss); }

/* Bio pages — focus cards, per-card accent (cycled volt/moss/ink) */
.bio-focus__card::before {
	content: "";
	position: absolute; inset: 0 auto 0 0;
	width: 4px;
	background: var(--volt);
}
.bio-focus__card--moss::before { background: var(--moss); }
.bio-focus__card--ink::before { background: var(--ink); }

/* ---------- Service detail pages (shared template) ---------- */
.svc-detail__grid { display: grid; gap: var(--s7, 56px); align-items: start; }
@media (min-width: 960px) { .svc-detail__grid { grid-template-columns: 320px 1fr; } }

.svc-detail__nav { display: flex; flex-direction: column; gap: var(--s4); }
.svc-detail__nav-card {
	background: var(--card);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	padding: var(--s4) var(--s4) var(--s3);
}
.svc-detail__nav-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.6875rem;
	letter-spacing: 0.2em;
	color: var(--mist);
	margin: 0 0 var(--s4);
}
.svc-detail__nav-label span { color: var(--volt-deep); }
.svc-detail__nav-group { position: relative; display: flex; flex-direction: column; gap: 1px; padding-left: var(--s3); margin-bottom: var(--s4); }
.svc-detail__nav-group::before {
	content: "";
	position: absolute; top: 4px; bottom: 8px; left: 0;
	width: 3px;
	border-radius: 2px;
	background: var(--volt);
}
.svc-detail__nav-group--convert::before { background: var(--moss); }
.svc-detail__nav-group--flow::before { background: var(--ink); }
.svc-detail__nav-sys {
	display: flex;
	align-items: center;
	gap: 9px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	color: var(--ink);
	margin-bottom: 6px;
}
.svc-detail__nav-ico { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; background: var(--ink); color: var(--volt); flex: none; }
.svc-detail__nav-ico .icon { width: 13px; height: 13px; }
.svc-detail__nav-group ul { list-style: none; margin: 0; padding: 0; }
.svc-detail__nav-group a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 8px 10px;
	font-size: 0.8438rem;
	line-height: 1.3;
	color: var(--ink-soft);
	text-decoration: none;
	border-radius: 8px;
	transition: color var(--t-fast), background-color var(--t-fast), padding-left var(--t-fast);
}
.svc-detail__nav-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line); flex: none; transition: background-color var(--t-fast), transform var(--t-fast); }
.svc-detail__nav-group a:hover { color: var(--ink); background: var(--bone-2); }
.svc-detail__nav-group a:hover .svc-detail__nav-dot { background: var(--volt-deep); transform: scale(1.4); }
.svc-detail__nav-group a.is-active {
	color: var(--ink);
	font-weight: 700;
	background: var(--ink);
	color: var(--bone);
}
.svc-detail__nav-group a.is-active .svc-detail__nav-dot { background: var(--volt); transform: scale(1.4); }

.svc-detail__nav-cta {
	display: flex;
	align-items: center;
	gap: var(--s3);
	background: var(--ink);
	color: var(--bone);
	border-radius: var(--radius);
	padding: var(--s4);
	text-decoration: none;
	transition: transform var(--t-fast), box-shadow var(--t-fast);
}
@media (hover: hover) { .svc-detail__nav-cta:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); } }
.svc-detail__nav-cta-mark { font-size: 1.375rem; color: var(--volt); flex: none; }
.svc-detail__nav-cta strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.9375rem; }
.svc-detail__nav-cta small { display: block; font-size: 0.75rem; color: rgba(244, 241, 233, 0.55); margin-top: 2px; }

@media (max-width: 959px) {
	.svc-detail__nav { padding-bottom: var(--s5); border-bottom: 1px solid var(--line); margin-bottom: var(--s5); }
	.svc-detail__nav-card { box-shadow: none; padding: 0; }
}

.svc-detail__main { min-width: 0; }
.svc-detail__pain {
	position: relative;
	overflow: hidden;
	background: var(--ink);
	color: var(--bone);
	border-radius: var(--radius);
	padding: var(--s6);
	margin-bottom: var(--s7, 56px);
}
.svc-detail__pain-mark { position: absolute; top: -0.2em; right: 0.2em; font-size: 5rem; color: var(--volt); opacity: 0.15; }
.svc-detail__pain p { position: relative; margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.125rem, 1rem + 0.6vw, 1.5rem); line-height: 1.45; max-width: 60ch; }

.svc-detail__block { margin-bottom: var(--s7, 56px); }
.svc-detail__checks { list-style: none; margin: 0 0 var(--s3); padding: 0; }
.svc-detail__checks li { display: flex; gap: 12px; align-items: baseline; padding: 6px 0; }
.svc-detail__what { font-size: 1.0625rem; line-height: 1.7; color: var(--ink-soft); max-width: 68ch; margin: var(--s3) 0 var(--s4); }

.svc-detail__proof {
	display: flex;
	align-items: center;
	gap: var(--s4);
	background: var(--bone-2);
	border-radius: var(--radius);
	padding: var(--s5);
	margin-bottom: var(--s7, 56px);
}
.svc-detail__proof-ico { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--ink); color: var(--volt); flex: none; }
.svc-detail__proof-ico .icon { width: 23px; height: 23px; }
.svc-detail__proof p { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 1.0625rem; color: var(--ink); }

.svc-detail__faq { margin-bottom: var(--s7, 56px); }
.svc-detail__faq .faq__item { border-top: 0; }
.svc-detail__faq .faq__item:last-child { border-bottom: 0; }
.svc-detail__faq .faq__item summary { padding-top: var(--s3); }
.svc-detail__cta-strip { margin-top: calc(-1 * var(--s7, 56px)); }
/* ============================================================
   07 — Blog & generic prose pages
   ============================================================ */
.prose { max-width: 760px; margin-inline: auto; }
.prose h1 { font-size: var(--h2); }
.prose h2 { font-size: var(--h3); margin-top: var(--s6); }
.prose img { border-radius: var(--radius); }
.prose blockquote {
	border-left: 3px solid var(--volt);
	margin-left: 0;
	padding-left: var(--s3);
	color: var(--ink);
	font-style: italic;
}
.prose code { background: var(--bone-2); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
.prose table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; margin: var(--s3) 0 var(--s4); }
.prose th, .prose td { text-align: left; padding: 10px 14px 10px 0; border-top: 1px solid var(--line); vertical-align: top; }
.prose thead th {
	border-top: 0;
	font-family: var(--font-display);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--mist);
}
.prose tbody tr:last-child td { border-bottom: 1px solid var(--line); }
.prose td:first-child { font-family: monospace; font-size: 0.875rem; color: var(--ink); }

.post-card {
	border-top: 1px solid var(--line);
	padding-block: var(--s5);
}
.post-card h2 { margin-bottom: var(--s1); }
.post-card h2 a { text-decoration: none; }
.post-card h2 a:hover { color: var(--moss); }
.post-card__meta { font-family: var(--font-display); font-size: 0.8125rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); }
/* ============================================================
   08 — Motion: reveals, stagger, reduced-motion (L7: whisper)
   ============================================================ */
.js [data-reveal] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity var(--t-med) var(--ease-out), transform var(--t-med) var(--ease-out);
	transition-delay: calc(var(--stagger-i, 0) * 80ms);
	will-change: opacity, transform;
}
/* Directional / scale variants — choreographed per section */
.js [data-reveal="left"]  { transform: translateX(40px); }
.js [data-reveal="right"] { transform: translateX(-40px); }
.js [data-reveal="zoom"]  { transform: translateY(14px) scale(0.955); transition-duration: 0.65s; }
.js [data-reveal="pop"]   { transform: scale(0.7); transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1); transition-delay: calc(var(--stagger-i, 0) * 55ms); }
.js [data-reveal].in-view {
	opacity: 1;
	transform: none;
}

/* Cinematic image settle: photos start slightly zoomed, ease to rest */
.js .wound__photo[data-reveal] img,
.js .engine[data-reveal] .engine__media img,
.js .proof__card[data-reveal] .browser img {
	transform: scale(1.12);
	transition: transform 1.3s var(--ease-out);
	transition-delay: calc(var(--stagger-i, 0) * 80ms);
}
.js .wound__photo[data-reveal].in-view img,
.js .engine[data-reveal].in-view .engine__media img,
.js .proof__card[data-reveal].in-view .browser img {
	transform: scale(1);
}
@media (hover: hover) {
	.js .engine[data-reveal].in-view:hover .engine__media img { transform: scale(1.06); }
}

/* Parallax drift (JS-driven, [data-parallax] elements) */
[data-parallax] { will-change: transform; }

/* Hero headline — line-by-line rise (masked) */
.js .reveal-lines[data-reveal] { opacity: 1; transform: none; }
.js .reveal-lines .line { display: block; overflow: hidden; padding-block: 0.04em; }
.js .reveal-lines .line > span {
	display: block;
	transform: translateY(118%);
	transition: transform var(--t-slow) var(--ease-out);
}
.js .reveal-lines.in-view .line > span { transform: translateY(0); }
.js .reveal-lines .line:nth-child(1) > span { transition-delay: 0.05s; }
.js .reveal-lines .line:nth-child(2) > span { transition-delay: 0.14s; }
.js .reveal-lines .line:nth-child(3) > span { transition-delay: 0.23s; }
.js .reveal-lines .line:nth-child(4) > span { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.js [data-reveal] { opacity: 1; transform: none; transition: none; }
	.js .reveal-lines .line > span { transform: none; transition: none; }
	.js [data-reveal] mark::before { transform: skewX(-8deg) scaleX(1); transition: none; }
	.js .wound__photo[data-reveal] img,
	.js .engine[data-reveal] .engine__media img,
	.js .proof__card[data-reveal] .browser img { transform: none; transition: none; }
	[data-parallax] { transform: none !important; }
	.ticker__track { transform: none !important; flex-wrap: wrap; width: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
/* ============================================================
   09 — Cookie consent banner
   ============================================================ */
.consent {
	position: fixed;
	z-index: 130;
	left: var(--s2);
	right: var(--s2);
	bottom: var(--s2);
	display: flex;
	justify-content: flex-start;
	pointer-events: none;
}
.consent[hidden] { display: none !important; }
@media (max-width: 767px) { .consent { bottom: 68px; } } /* clear the mobile CTA bar */

.consent__card {
	position: relative;
	pointer-events: auto;
	width: min(560px, 100%);
	max-height: min(78vh, 640px);
	overflow-y: auto;
	background: var(--ink);
	color: rgba(244, 241, 233, 0.85);
	border: 1px solid rgba(244, 241, 233, 0.12);
	border-radius: var(--radius);
	box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.55);
	padding: var(--s4);
}
.js .consent:not([hidden]) .consent__card { animation: consent-in 0.5s var(--ease-out); }
@keyframes consent-in {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: none; }
}

.consent__eyebrow {
	font-family: var(--font-display);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	color: var(--volt);
	margin: 0 0 var(--s1);
}
.consent__title {
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--bone);
	line-height: 1.3;
	margin: 0 0 var(--s2);
}
.consent__text { font-size: 0.8438rem; line-height: 1.6; margin: 0 0 var(--s3); color: rgba(244, 241, 233, 0.7); }

/* Details / summary */
.consent__details { border-block: 1px solid rgba(244, 241, 233, 0.12); margin-bottom: var(--s3); }
.consent__details summary {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s2);
	cursor: pointer;
	padding: 12px 0;
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.8438rem;
	color: var(--bone);
}
.consent__details summary::-webkit-details-marker { display: none; }
.consent__toggle {
	flex: none;
	width: 22px; height: 22px;
	border: 1px solid rgba(244, 241, 233, 0.25);
	border-radius: 50%;
	position: relative;
}
.consent__toggle::before, .consent__toggle::after {
	content: "";
	position: absolute; inset: 0; margin: auto;
	background: var(--volt);
	transition: transform var(--t-fast) var(--ease);
}
.consent__toggle::before { width: 10px; height: 1.5px; }
.consent__toggle::after { width: 1.5px; height: 10px; }
.consent__details[open] .consent__toggle::after { transform: rotate(90deg); }

.consent__cats { display: flex; flex-direction: column; gap: var(--s3); padding-bottom: var(--s3); }
.consent__cat-head { display: flex; align-items: center; justify-content: space-between; gap: var(--s2); }
.consent__cat-name { font-family: var(--font-display); font-weight: 500; font-size: 0.8438rem; color: var(--bone); }
.consent__cat-badge {
	font-family: var(--font-display);
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink);
	background: var(--volt);
	padding: 3px 8px;
	border-radius: 999px;
	flex: none;
}
.consent__cat-badge--opt { background: transparent; color: rgba(244, 241, 233, 0.5); border: 1px solid rgba(244, 241, 233, 0.2); }
.consent__cat-desc { font-size: 0.75rem; line-height: 1.55; color: rgba(244, 241, 233, 0.55); margin: 6px 0 8px; }

/* Switch */
.consent__switch { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; }
.consent__switch--locked { cursor: default; }
.consent__switch input { position: absolute; opacity: 0; pointer-events: none; }
.consent__slider {
	flex: none;
	width: 38px; height: 22px;
	border-radius: 999px;
	background: rgba(244, 241, 233, 0.18);
	position: relative;
	transition: background-color var(--t-fast);
}
.consent__slider::before {
	content: "";
	position: absolute;
	top: 3px; left: 3px;
	width: 16px; height: 16px;
	border-radius: 50%;
	background: var(--bone);
	transition: transform var(--t-fast) var(--ease);
}
.consent__switch input:checked + .consent__slider { background: var(--volt); }
.consent__switch input:checked + .consent__slider::before { transform: translateX(16px); background: var(--ink); }
.consent__switch input:focus-visible + .consent__slider { outline: 2px solid var(--volt); outline-offset: 2px; }

/* Cookie tables */
.consent__table { width: 100%; border-collapse: collapse; font-size: 0.6875rem; }
.consent__table th, .consent__table td {
	text-align: left;
	padding: 5px 8px 5px 0;
	border-top: 1px solid rgba(244, 241, 233, 0.08);
	color: rgba(244, 241, 233, 0.6);
	vertical-align: top;
}
.consent__table th {
	font-family: var(--font-display);
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.625rem;
	color: rgba(244, 241, 233, 0.4);
}
.consent__table td:first-child { font-family: monospace; color: var(--volt); white-space: nowrap; }

.consent__actions { display: flex; flex-wrap: wrap; gap: var(--s1); margin-bottom: var(--s2); }
.consent__actions .btn { padding: 11px 16px; font-size: 0.8125rem; white-space: nowrap; flex: none; }
.consent__actions .btn--ghost { color: var(--bone); border-color: rgba(244, 241, 233, 0.3); }
.consent__actions .btn--ghost:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

.consent__links { font-size: 0.6875rem; color: rgba(244, 241, 233, 0.45); margin: 0; }
.consent__links a { color: rgba(244, 241, 233, 0.65); }
.consent__links a:hover { color: var(--volt); }

@media (prefers-reduced-motion: reduce) {
	.js .consent:not([hidden]) .consent__card { animation: none; }
}
