/* =============================================================
   Viva Landing: design tokens + base
   BEM naming. Mobile-first. No frameworks.
   ============================================================= */

/* Self-hosted variable fonts (Fontshare, ~42 KB each).
   Cabinet Grotesk carries display type, Satoshi carries body/UI.
   Display font preloaded in functions.php. */
@font-face {
	font-family: "Cabinet Grotesk";
	src: url("../fonts/cabinet-grotesk-var.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Satoshi";
	src: url("../fonts/satoshi-var.woff2") format("woff2");
	font-weight: 300 900;
	font-style: normal;
	font-display: swap;
}

:root {
	/* Brand palette (from Viva brand guidelines) */
	--color-navy: #051651;
	--color-purple: #7d3fff;
	--color-purple-light: #a770ff;
	--color-teal: #18dcb8;

	/* Derived (violet-tinted neutrals, no pure black) */
	--color-text: #16182e;
	--color-text-muted: #5a5f7a;
	--color-bg: #ffffff;
	--color-bg-soft: #f7f6fc;   /* light section background */
	--color-border: #e7e6f2;

	/* Tints and semantic colors (extracted from section styles) */
	--color-purple-deep: #6524e6;   /* purple text on lavender surfaces, AA-safe */
	--color-lavender: #f1e9ff;      /* icon tiles, chip backgrounds */
	--color-lavender-soft: #e9ddff; /* gradients, calendar blocks, connectors */
	--color-lavender-mid: #e2d5f7;  /* photo backdrops */
	--color-lavender-faint: #f2edfc;
	--color-mint: #c9f6ec;          /* hero underline, calendar blocks */
	--color-mint-faint: #e9fbf7;    /* hero fade-out */
	--color-bg-fade: #f3f5fb;       /* hero fade mid-stop */
	--color-success-bg: #d9f8f0;    /* green pills */
	--color-success-text: #0b8a71;
	--color-success-dot: #17b892;
	--color-on-navy-soft: #c3cae4;  /* body text on navy surfaces */
	--color-navy-deep: #0a1240;     /* comparison table header, criteria col */
	--color-navy-mid: #253368;      /* comparison table header, competitor col */
	--color-star: #f5a623;
	--color-mail-red: #e0442d;

	/* Type v2 (original design): Cabinet Grotesk display + Satoshi body */
	--font-heading: "Cabinet Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-body: "Satoshi", system-ui, -apple-system, "Segoe UI", sans-serif;

	/* Scale (>= 1.25 between steps, fluid). H1 sized for a 6-word
	   headline at max 2 lines on desktop. */
	--fs-h1: clamp(2.5rem, 4.6vw, 4rem);
	--fs-h2: clamp(1.9rem, 4vw, 2.875rem);
	--fs-h3: 1.1875rem;
	--fs-body: 1rem;
	--fs-small: 0.875rem;

	/* Layout */
	--container: 1200px;
	--gutter: 1.25rem;
	--section-y: clamp(3.5rem, 8vw, 6.5rem);
	/* One radius system: 14 panels/cards, 10 buttons, 999 pills */
	--radius: 14px;
	--radius-lg: 14px;
	--shadow-card: 0 10px 32px rgba(5, 22, 81, 0.10);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset (minimal) ---- */
*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 {
	font-family: var(--font-heading);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.06;
	margin: 0 0 0.5em;
	color: var(--color-navy);
}
h3, h4 { line-height: 1.2; letter-spacing: -0.01em; }
ul, ol { list-style: none; margin: 0; padding: 0; }
a { color: inherit; }

/* ---- A11y ---- */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--color-navy);
	color: #fff;
	padding: 0.5rem 1rem;
	z-index: 100;
}
.skip-link:focus { left: 0; }
.screen-reader-text {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}
:focus-visible { outline: 3px solid var(--color-purple-light); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---- Layout primitives ---- */
.container {
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
section { padding-block: var(--section-y); }
/* Anchored sections start below the sticky header */
section[id] { scroll-margin-top: 72px; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
}

/* ---- Section headings pattern ---- */
.section-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--color-purple);
	text-align: center;
	margin: 0 0 0.75rem;
}
.section-eyebrow--light { color: var(--color-teal); }
.section-title {
	font-size: var(--fs-h2);
	text-align: center;
	max-width: 46ch;
	margin-inline: auto;
}
.section-subtitle {
	text-align: center;
	color: var(--color-text-muted);
	max-width: 60ch;
	margin: 0 auto 2.5rem;
}

/* ---- Buttons ---- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.8rem 1.5rem;
	border-radius: 10px;
	font-weight: 700;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn--lg { padding: 1rem 1.9rem; font-size: 1.0625rem; }
.btn--primary { background: var(--color-purple); color: #fff; }
.btn--primary:hover { background: var(--color-purple-light); }
.btn--ghost { background: transparent; color: var(--color-navy); border: 1px solid var(--color-border); }
.btn--ghost:hover { border-color: var(--color-navy); }
.btn--inverse { background: #fff; color: var(--color-purple); }
.btn--inverse:hover { background: var(--color-bg-soft); }
.btn__arrow { flex: none; }

/* =============================================================
   Sections: build out one by one against docs/design/strip*.png
   ============================================================= */

/* ---- Header: solid by default, transparent over the navy hero ---- */
.site-header {
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 50;
	border-bottom: 1px solid var(--color-border);
	transition: background-color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.site-header.is-overlay {
	background: transparent;
	border-bottom-color: transparent;
}
.site-header.is-overlay .site-header__menu { color: #fff; }
.site-header.is-overlay .site-header__menu a:hover { color: var(--color-teal); }
.site-header.is-overlay .site-header__logo img { filter: brightness(0) invert(1); }
.site-header.is-overlay .site-header__toggle-bar::before,
.site-header.is-overlay .site-header__toggle-bar::after { background: #fff; }
.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 0.75rem;
}
.site-header__logo { flex: none; display: inline-flex; transition: opacity 0.15s ease; }
.site-header__logo:hover { opacity: 0.75; }
.site-header__cta { padding: 0.65rem 1.25rem; }
.site-header__menu {
	display: none;
	gap: 2rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--color-navy);
}
/* padding-block keeps every link >= 24px tall (WCAG 2.5.8 target size) */
.site-header__menu a { text-decoration: none; display: inline-block; padding-block: 0.4rem; }
.site-header__menu a:hover { color: var(--color-purple); }

/* Mobile toggle: two bare bars, no box. 44px touch target. */
.site-header__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-right: -10px; /* optical: bars align with the container edge */
	padding: 0;
	background: none;
	border: 0;
	cursor: pointer;
}
.site-header__toggle { transition: opacity 0.15s ease; }
.site-header__toggle:hover { opacity: 0.7; }
.site-header__toggle-bar { position: relative; display: block; width: 22px; height: 16px; }
.site-header__toggle-bar::before,
.site-header__toggle-bar::after {
	content: "";
	position: absolute;
	left: 0;
	width: 22px;
	height: 2px;
	background: var(--color-navy);
	border-radius: 2px;
	transition: transform 0.25s var(--ease-out), top 0.25s var(--ease-out);
}
.site-header__toggle-bar::before { top: 3px; }
.site-header__toggle-bar::after { top: 11px; }

@media (max-width: 899.98px) {
	/* Open state: full-viewport navy panel below the header bar.
	   main.js only toggles .is-open + aria-expanded; everything else is CSS. */
	.site-header__nav { position: static; }
	.site-header__menu.is-open {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 0.25rem;
		position: fixed;
		inset: 0;
		z-index: -1; /* below the header bar itself, above everything else */
		background:
			radial-gradient(120% 80% at 85% 0%, rgba(125, 63, 255, 0.35), rgba(125, 63, 255, 0) 60%),
			var(--color-navy);
		padding: 5.5rem var(--gutter) 3rem;
		color: #fff;
	}
	.site-header__menu.is-open a {
		display: block;
		padding: 0.45rem 0;
		font-family: var(--font-heading);
		font-size: 2.25rem;
		font-weight: 700;
		letter-spacing: -0.02em;
	}
	.site-header__menu.is-open a:hover { color: var(--color-purple-light); }

	/* Panel and links ease in (globally killed under reduced motion) */
	.site-header__menu.is-open { animation: menu-panel-in 0.3s var(--ease-out); }
	.site-header__menu.is-open li {
		animation: menu-link-in 0.45s var(--ease-out) backwards;
	}
	.site-header__menu.is-open li:nth-child(2) { animation-delay: 50ms; }
	.site-header__menu.is-open li:nth-child(3) { animation-delay: 100ms; }
	.site-header__menu.is-open li:nth-child(4) { animation-delay: 150ms; }
	.site-header__menu.is-open li:nth-child(5) { animation-delay: 200ms; }

	/* While the panel is open the header goes solid navy so bar and panel read as one */
	.site-header:has(.site-header__menu.is-open) {
		background: var(--color-navy);
		border-bottom-color: transparent;
	}
	.site-header:has(.site-header__menu.is-open) .site-header__logo img { filter: brightness(0) invert(1); }

	/* Toggle morphs into an X (driven by aria-expanded, which main.js sets) */
	.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar::before {
		top: 7px;
		transform: rotate(45deg);
		background: #fff;
	}
	.site-header__toggle[aria-expanded="true"] .site-header__toggle-bar::after {
		top: 7px;
		transform: rotate(-45deg);
		background: #fff;
	}

	/* Order on mobile: logo, CTA, burger at the far right */
	.site-header__nav { order: 3; }
	.site-header__cta { order: 2; }

	/* No page scroll behind the open panel */
	body:has(.site-header__menu.is-open) { overflow: hidden; }

	/* Keep the header CTA visible on mobile: primary conversion point */
	.site-header__cta { margin-left: auto; padding: 0.55rem 0.9rem; font-size: 0.875rem; }
}
@media (min-width: 900px) {
	.site-header__toggle { display: none; }
	.site-header__menu { display: flex; }
}

/* ---- Hero: navy drench, asymmetric split (DESIGN.md v2) ----
   Slides under the transparent header (negative top margin). */
.hero {
	background: var(--color-navy);
	color: #fff;
	overflow: hidden;
	margin-top: -73px;
	/* Top padding = header height (73px) + a small gap; the cap keeps the
	   content from floating on tall viewports. */
	padding-block: clamp(6rem, 9vh, 7.5rem) 0;
}
.hero__inner {
	display: grid;
	gap: 3rem;
	align-items: end;
}
.hero__content { padding-bottom: clamp(3rem, 8vh, 5.5rem); }
.hero__title {
	color: #fff;
	font-size: var(--fs-h1);
	margin-bottom: 1.25rem;
	max-width: 19ch;
}
.hero__highlight { color: var(--color-purple-light); }
.hero__subtitle {
	color: var(--color-on-navy-soft);
	font-size: 1.125rem;
	line-height: 1.65;
	max-width: 42ch;
	margin: 0 0 2rem;
}
.hero__subtitle strong { color: #fff; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Outline button for dark surfaces */
.btn--outline {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn--outline:hover { border-color: #fff; }

/* Visual: EA photo cutout over a purple glow, two floating chips */
.hero__visual {
	position: relative;
	min-height: 380px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.hero__glow {
	position: absolute;
	inset: auto auto -18% 50%;
	transform: translateX(-50%);
	width: min(520px, 90%);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(closest-side, rgba(125, 63, 255, 0.85), rgba(125, 63, 255, 0) 72%);
}
.hero__photo {
	position: relative;
	height: clamp(340px, 44vw, 520px);
	width: auto;
	max-width: none;
}
.ncard {
	position: absolute;
	background: #fff;
	border-radius: var(--radius);
	box-shadow: 0 14px 40px rgba(2, 8, 40, 0.45);
	padding: 0.8rem 1rem;
	font-size: 0.8125rem;
	color: var(--color-text);
}
.ncard--calendar { left: 0; top: 22%; }
.ncard--inbox { right: 0; bottom: 12%; }
.ncard__head { display: flex; align-items: center; gap: 0.65rem; }
.ncard__icon {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #fff;
}
.ncard__icon--purple { background: var(--color-purple); }
.ncard__icon--teal { background: var(--color-teal); border-radius: 50%; }
.ncard__title { font-weight: 700; color: var(--color-navy); margin: 0; white-space: nowrap; }
.ncard__meta { color: var(--color-text-muted); font-size: 0.6875rem; margin: 0; white-space: nowrap; }

@media (max-width: 1023.98px) {
	.hero__visual { min-height: 0; margin-inline: calc(var(--gutter) * -1); }
	.hero__photo { height: clamp(300px, 60vw, 420px); }
	.ncard--calendar { left: var(--gutter); }
	.ncard--inbox { right: var(--gutter); }
}
@media (min-width: 1024px) {
	.hero__inner { grid-template-columns: 1.15fr 0.85fr; }
	.hero { min-height: min(78dvh, 740px); display: flex; align-items: flex-end; }
	.hero > .container { width: 100%; }
}


/* ---- Logo bar (ref: strip0) ---- */
.logos {
	padding-block: 2.25rem;
	background: var(--color-bg-soft);
	border-block: 1px solid var(--color-border);
}
.logos__label {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--color-text-muted);
	margin: 0 0 1.5rem;
}
.logos__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem 3rem;
}
.logos__item img {
	display: block;
	height: 28px;
	width: auto;
	filter: grayscale(1);
	opacity: 0.65;
}

/* ---- Features bento (DESIGN.md v2): 7 cells, asymmetric ---- */
.features__bento {
	display: grid;
	gap: 1rem;
	margin-top: 3rem;
}
.feature-card {
	background: var(--color-bg-soft);
	border-radius: var(--radius);
	padding: 1.6rem;
}
.feature-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: #fff;
	color: var(--color-purple);
	margin-bottom: 0.9rem;
}
.feature-card__title { font-size: var(--fs-h3); margin: 0 0 0.4rem; }
.feature-card__text { font-size: 0.9375rem; color: var(--color-text-muted); margin: 0; max-width: 46ch; }

.feature-card--anchor {
	background: var(--color-navy);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 240px;
	background-image: radial-gradient(120% 90% at 85% 0%, rgba(125, 63, 255, 0.5), rgba(125, 63, 255, 0) 60%);
}
.feature-card--anchor .feature-card__title { color: #fff; font-size: 1.75rem; }
.feature-card--anchor .feature-card__text { color: var(--color-on-navy-soft); }
.feature-card__status {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	background: rgba(24, 220, 184, 0.16);
	color: var(--color-teal);
	font-size: 0.6875rem;
	font-weight: 700;
	border-radius: 999px;
	padding: 0.25rem 0.65rem;
	margin-bottom: auto;
}
.feature-card__status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--color-teal); }

.feature-card--lavender { background: var(--color-lavender); }
.feature-card--lavender .feature-card__icon { color: var(--color-purple-deep); }

@media (min-width: 900px) {
	.features__bento {
		grid-template-columns: repeat(4, 1fr);
		grid-template-areas:
			"anchor anchor cal   inbox"
			"anchor anchor travel meet"
			"proj   proj   res   res";
	}
	.feature-card:nth-child(1) { grid-area: anchor; }
	.feature-card:nth-child(2) { grid-area: cal; }
	.feature-card:nth-child(3) { grid-area: inbox; }
	.feature-card:nth-child(4) { grid-area: travel; }
	.feature-card:nth-child(5) { grid-area: meet; }
	.feature-card:nth-child(6) { grid-area: proj; }
	.feature-card:nth-child(7) { grid-area: res; }
}


/* ---- Comparison table (ref: strip1) ---- */
.compare__tabs-label {
	text-align: center;
	font-size: 0.8125rem;
	color: var(--color-text-muted);
	margin: 2.5rem 0 0.75rem;
}
.compare__tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 1.75rem;
}
.compare__tab {
	font: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-navy);
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	padding: 0.45rem 1.1rem;
	cursor: pointer;
}
.compare__tab { transition: background-color 0.15s ease, border-color 0.15s ease; }
.compare__tab:hover { background: var(--color-lavender); border-color: var(--color-purple-light); }
.compare__tab[aria-selected="true"] {
	background: var(--color-navy);
	border-color: var(--color-navy);
	color: #fff;
}
.compare__tab[aria-selected="true"]:hover { background: var(--color-navy); border-color: var(--color-navy); }
.compare__table-wrap { overflow-x: auto; }
.compare__table {
	width: 100%;
	min-width: 620px;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	font-size: 0.875rem;
}
.compare__table thead th {
	background: var(--color-navy-deep);
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.75rem;
	padding: 0.85rem 1.25rem;
	text-align: left;
}
.compare__table thead .compare__col-viva { background: var(--color-purple); text-align: left; }
.compare__table thead th:last-child { background: var(--color-navy-mid); }
.compare__table tbody th,
.compare__table tbody td {
	padding: 0.85rem 1.25rem;
	border-top: 1px solid var(--color-border);
	text-align: left;
	vertical-align: top;
}
.compare__table tbody th { font-weight: 700; color: var(--color-navy); width: 28%; }
.compare__table tbody td { color: var(--color-text-muted); width: 36%; }
.compare__table tbody .compare__viva { color: var(--color-navy); font-weight: 600; }
.compare__table tbody .compare__viva::before {
	content: "\2713";
	content: "\2713" / "";
	color: var(--color-teal);
	font-weight: 700;
	margin-right: 0.45rem;
}
.compare__note {
	color: var(--color-text-muted);
	font-size: 0.75rem;
	text-align: center;
	margin: 1rem 0 0;
}

/* ---- AI + Human (v2): 2-col split converging into a navy band ---- */
.ai-human__cols { display: grid; gap: 1rem; margin-top: 2.5rem; }
.ai-col {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 1.75rem 1.5rem;
}
.ai-col--accent { border: 1.5px solid var(--color-purple-light); }
.ai-col__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--color-bg-soft);
	color: var(--color-navy);
}
.ai-col--accent .ai-col__icon { background: var(--color-lavender); color: var(--color-purple-deep); }
.ai-col__label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-purple-deep);
	margin: 1rem 0 0.25rem;
}
.ai-col__title { font-size: 1.375rem; margin-bottom: 0.9rem; }
.ai-col__list { display: grid; gap: 0.7rem; font-size: 0.9375rem; color: var(--color-text-muted); }
.ai-col__list li { display: flex; gap: 0.6rem; }
.ai-col__list li::before { content: "\2022"; content: "\2022" / ""; color: var(--color-purple-light); font-weight: 700; }
.ai-human__together {
	margin-top: 1rem;
	background: var(--color-navy);
	background-image: radial-gradient(100% 140% at 92% 0%, rgba(125, 63, 255, 0.45), rgba(125, 63, 255, 0) 55%);
	border-radius: var(--radius);
	padding: 2.25rem 2rem;
}
.ai-human__together-title { color: #fff; font-size: 1.5rem; margin-bottom: 1.25rem; }
.ai-human__together-list { display: grid; gap: 0.9rem 2.5rem; font-size: 0.9375rem; color: var(--color-on-navy-soft); }
.ai-human__together-list li { display: flex; gap: 0.6rem; }
.ai-human__together-list li::before { content: "\2713"; content: "\2713" / ""; color: var(--color-teal); font-weight: 700; }
@media (min-width: 900px) {
	.ai-human__cols { grid-template-columns: 1fr 1fr; }
	.ai-human__together-list { grid-template-columns: 1fr 1fr; }
}

/* ---- Toolkit (v2): chip marquee, static under reduced motion ---- */
.toolkit { background: var(--color-bg-soft); }
.toolkit__marquee {
	display: flex;
	gap: 0.6rem;
	overflow: hidden;
	margin: 0 auto 2rem;
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.toolkit__chips {
	display: flex;
	gap: 0.6rem;
	flex: none;
	min-width: max-content;
	animation: toolkit-scroll 45s linear infinite;
}
.toolkit__marquee:hover .toolkit__chips { animation-play-state: paused; }
@keyframes toolkit-scroll {
	to { transform: translateX(calc(-100% - 0.6rem)); }
}
@media (prefers-reduced-motion: reduce) {
	.toolkit__marquee { mask-image: none; -webkit-mask-image: none; }
	.toolkit__chips { animation: none; flex-wrap: wrap; justify-content: center; min-width: 0; }
	.toolkit__chips[aria-hidden="true"] { display: none; }
}
.toolkit__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	padding: 0.45rem 0.95rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-navy);
	white-space: nowrap;
}
.toolkit__dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.toolkit__cta { text-align: center; margin: 0; }
.toolkit__cta .btn--ghost { background: #fff; }

/* ---- Process (v2): numbered editorial timeline + 96% moment ---- */
.process__steps {
	display: grid;
	gap: 2rem;
	border-top: 1px solid var(--color-border);
	padding-top: 2rem;
	margin: 3rem 0 2.5rem;
}
.process__step { text-align: left; }
.process__num {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 2rem;
	line-height: 1;
	color: var(--color-purple);
	display: block;
}
.process__step-title { font-size: 1.125rem; margin: 0.75rem 0 0.4rem; }
.process__step-text { font-size: 0.9375rem; color: var(--color-text-muted); margin: 0; }
@media (min-width: 900px) {
	.process__steps { grid-template-columns: repeat(4, 1fr); }
}
.process__stat {
	display: grid;
	gap: 1.5rem;
	align-items: center;
	background: var(--color-navy);
	background-image: radial-gradient(90% 130% at 90% 0%, rgba(125, 63, 255, 0.4), rgba(125, 63, 255, 0) 55%);
	border-radius: var(--radius);
	padding: clamp(2rem, 5vw, 3.5rem);
}
.process__stat-label {
	color: var(--color-teal);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 0.25rem;
}
.process__stat-number {
	font-family: var(--font-heading);
	color: var(--color-teal);
	font-size: clamp(4rem, 9vw, 6.5rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1;
	margin: 0;
}
.process__stat-text { color: var(--color-on-navy-soft); font-size: 1.0625rem; margin: 0; max-width: 40ch; }
@media (min-width: 768px) {
	.process__stat { grid-template-columns: auto 1fr; }
	.process__stat-text { justify-self: end; text-align: right; }
}

/* ---- Shortlist (ref: strip3-4) ---- */
.shortlist { background: var(--color-bg-soft); }
.shortlist__featured { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
.candidate {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}
.candidate__photo {
	position: relative;
	height: 280px;
	overflow: hidden;
	background: linear-gradient(170deg, var(--color-lavender-faint) 0%, var(--color-lavender-mid) 100%);
}
.candidate__photo img {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 92%;
	width: auto;
	max-width: none;
}
.candidate__body { padding: 1.5rem; }
.candidate__head { display: flex; align-items: center; flex-wrap: wrap; gap: 0.6rem; }
.candidate__name { font-size: 1.25rem; margin: 0; }
.candidate__match {
	background: var(--color-navy);
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 700;
	border-radius: 999px;
	padding: 0.25rem 0.65rem;
}
.candidate__avail {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	background: var(--color-success-bg);
	color: var(--color-success-text);
	font-size: 0.6875rem;
	font-weight: 700;
	border-radius: 999px;
	padding: 0.25rem 0.65rem;
}
.candidate__avail::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--color-success-dot); }
.candidate__role { color: var(--color-purple); font-size: 0.8125rem; font-weight: 700; margin: 0.5rem 0 0.6rem; }
.candidate__bio { color: var(--color-text-muted); font-size: 0.9375rem; margin: 0 0 1rem; }
.candidate__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.75rem; font-weight: 600; }
.candidate__chips li {
	background: var(--color-lavender);
	color: var(--color-purple-deep);
	border-radius: 999px;
	padding: 0.3rem 0.75rem;
}
.shortlist__row { display: grid; gap: 1.25rem; margin-top: 1.25rem; }
.mini-candidate {
	display: flex;
	gap: 0.9rem;
	align-items: flex-start;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 1.25rem;
}
.mini-candidate__avatar {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(160deg, var(--color-lavender-mid), var(--color-purple-light));
	color: #fff;
	font-weight: 700;
}
.mini-candidate__info { flex: 1; }
.mini-candidate__name { font-size: 1rem; margin: 0; }
.mini-candidate__role { color: var(--color-text-muted); font-size: 0.8125rem; margin: 0.15rem 0 0.6rem; }
.mini-candidate__match { font-size: 0.6875rem; color: var(--color-text-muted); text-align: right; }
.mini-candidate__match strong { display: block; color: var(--color-purple); font-size: 1rem; }
.shortlist__disclaimer {
	text-align: center;
	color: var(--color-text-muted);
	font-size: 0.8125rem;
	max-width: 72ch;
	margin: 2rem auto 0;
}
@media (min-width: 768px) {
	.shortlist__featured { grid-template-columns: 1fr 1fr; }
	.shortlist__row { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Security (ref: strip4) ---- */
.security__panel {
	display: grid;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}
.security__intro { background: var(--color-navy); padding: 2.5rem 2.25rem; }
.security__eyebrow { text-align: left; }
.security__title { color: #fff; font-size: clamp(1.5rem, 3vw, 2.125rem); }
.security__text { color: var(--color-on-navy-soft); font-size: 0.9375rem; margin: 0; }
.security__items {
	display: grid;
	gap: 1.75rem;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 0 0 var(--radius-lg) var(--radius-lg);
	padding: 2.5rem 2.25rem;
}
.security__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: var(--color-lavender);
	color: var(--color-purple);
}
.security__item-title { font-size: 0.9375rem; margin: 0.6rem 0 0.3rem; }
.security__item-text { font-size: 0.8125rem; color: var(--color-text-muted); margin: 0; }
@media (min-width: 640px) {
	.security__items { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
	.security__panel { grid-template-columns: 1.05fr 1.2fr; }
	.security__items { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; border-left: 0; }
	.security__intro { display: flex; flex-direction: column; justify-content: center; }
}

/* ---- Testimonials (v2): featured pull-quote + two voices ---- */
.testimonials { background: var(--color-bg-soft); }
.testimonials__featured { margin: 3rem auto 0; max-width: 820px; text-align: center; }
.testimonials__featured blockquote { margin: 0 0 1.5rem; }
.testimonials__featured blockquote p {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(1.5rem, 3.2vw, 2.375rem);
	line-height: 1.22;
	letter-spacing: -0.015em;
	color: var(--color-navy);
	margin: 0;
}
.testimonials__featured .testimonial__author { justify-content: center; border: 0; padding: 0; }
.testimonials__support {
	display: grid;
	gap: 2rem 3rem;
	max-width: 820px;
	margin: 3rem auto 0;
}
.testimonial { margin: 0; border-top: 1px solid var(--color-border); padding-top: 1.5rem; }
.testimonial__quote { margin: 0 0 1.25rem; }
.testimonial__quote p { margin: 0; font-size: 1rem; color: var(--color-text); }
.testimonial__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial__avatar {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--color-lavender);
	color: var(--color-purple-deep);
	font-weight: 700;
	font-size: 0.8125rem;
}
.testimonial__name { display: block; font-size: 0.875rem; color: var(--color-navy); }
.testimonial__role { display: block; font-size: 0.75rem; color: var(--color-text-muted); }
@media (min-width: 768px) { .testimonials__support { grid-template-columns: 1fr 1fr; } }

/* ---- Press (ref: strip5) ---- */
.press { padding-block: 3rem; }
.press__label {
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--color-purple);
	margin: 0 0 1.75rem;
}
.press__logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.5rem 3.5rem;
}
.press__logo img {
	display: block;
	height: 30px;
	width: auto;
	filter: grayscale(1);
	opacity: 0.7;
}
.press__logo--ap img { height: 38px; }

/* ---- Final CTA (ref: strip5) ---- */
.cta {
	background:
		radial-gradient(90% 120% at 85% 0%, rgba(125, 63, 255, 0.55) 0%, rgba(125, 63, 255, 0) 60%),
		var(--color-navy);
	padding-block: var(--section-y) 4rem;
}
.cta__inner { text-align: center; }
.cta__title { color: #fff; font-size: var(--fs-h2); }
.cta__subtitle { color: var(--color-on-navy-soft); max-width: 56ch; margin: 0 auto 2rem; }
.cta__points {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 2rem;
	font-size: 0.8125rem;
	color: var(--color-on-navy-soft);
	margin: 1.75rem 0 1.5rem;
}
.cta__points li { display: flex; align-items: baseline; gap: 0.5rem; }
.cta__points li::before { content: "\2713"; content: "\2713" / ""; color: var(--color-teal); font-weight: 700; }
.cta__plans {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding-block: 0.3rem;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 4px;
}
.cta__plans:hover { color: var(--color-teal); }

/* ---- Footer (ref: strip5) ---- */
.site-footer { background: var(--color-navy); color: var(--color-on-navy-soft); padding-block: 4rem 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.site-footer__inner { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
.site-footer__brand { max-width: 280px; }
/* Official logo is dark-on-transparent; footer shows it all white */
.site-footer__logo { filter: brightness(0) invert(1); }
.site-footer__tagline { font-size: 0.875rem; margin: 1.25rem 0; }
.site-footer__social { display: flex; gap: 0.6rem; }
.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}
.site-footer__social a:hover { background: var(--color-purple); }
.site-footer__cols { display: grid; gap: 2rem 2.5rem; grid-template-columns: 1fr 1fr; }
.site-footer__heading {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	margin: 0 0 0.9rem;
}
.site-footer__col ul { display: grid; gap: 0.2rem; }
/* inline-block + padding: >= 24px touch targets without changing visual rhythm */
.site-footer__col a { font-size: 0.8125rem; text-decoration: none; display: inline-block; padding-block: 0.28rem; }
.site-footer__col a:hover { color: #fff; text-decoration: underline; }
.site-footer__legal {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-block: 1.5rem;
	font-size: 0.75rem;
}
.site-footer__legal p { margin: 0; }
@media (min-width: 640px) {
	.site-footer__cols { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
	.site-footer__inner { grid-template-columns: 1.4fr 2fr; }
	.site-footer__cols { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Motion (v2) ----
   Scroll reveals driven by main.js IntersectionObserver: the block fades,
   its direct children rise with a small stagger. Everything collapses to
   static under prefers-reduced-motion (plus the global kill). */
@media (prefers-reduced-motion: no-preference) {
	html.js [data-reveal] { opacity: 0; transition: opacity 0.45s var(--ease-out); }
	html.js [data-reveal].is-revealed { opacity: 1; }
	html.js [data-reveal] > * {
		opacity: 0;
		transform: translateY(14px);
		transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
	}
	html.js [data-reveal].is-revealed > * { opacity: 1; transform: none; }
	html.js [data-reveal].is-revealed > *:nth-child(2) { transition-delay: 70ms; }
	html.js [data-reveal].is-revealed > *:nth-child(3) { transition-delay: 140ms; }
	html.js [data-reveal].is-revealed > *:nth-child(4) { transition-delay: 210ms; }
	html.js [data-reveal].is-revealed > *:nth-child(5) { transition-delay: 280ms; }
	html.js [data-reveal].is-revealed > *:nth-child(6) { transition-delay: 350ms; }
	html.js [data-reveal].is-revealed > *:nth-child(7) { transition-delay: 420ms; }

	/* Hero entrance: one staggered load-in, then done.
	   LCP candidates (H1 on desktop, hero photo on mobile) must paint
	   immediately: the visual animates transform only, never opacity. */
	.hero__subtitle { animation: rise-in 0.6s var(--ease-out) 60ms backwards; }
	.hero__actions { animation: rise-in 0.6s var(--ease-out) 140ms backwards; }
	.hero__visual { animation: rise-in-still 0.8s var(--ease-out) 200ms backwards; }
}

@keyframes rise-in {
	from { opacity: 0; transform: translateY(18px); }
}
@keyframes rise-in-still {
	from { transform: translateY(18px); }
}
@keyframes menu-panel-in {
	from { opacity: 0; }
}
@keyframes menu-link-in {
	from { opacity: 0; transform: translateY(12px); }
}
