/* =========================================================================
   AYEIM TECHNOLOGIES — DESIGN SYSTEM
   Brand: purple #654797 (from supplied logo). Restrained, enterprise-grade.
   Hand-authored tokens + a small, purposeful utility layer + components.
   No Tailwind, no runtime CSS. Ships one font family (Inter).
   ========================================================================= */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
	/* Brand purple scale */
	--brand-50:  #f5f2fb;
	--brand-100: #ece5f6;
	--brand-200: #d7c9ec;
	--brand-300: #b9a3dc;
	--brand-400: #9575c6;
	--brand-500: #7a55ac;
	--brand-600: #654797; /* logo base */
	--brand-700: #533a7c;
	--brand-800: #443163;
	--brand-900: #392a52;

	/* Ink / emphasis (dark navy-violet, used sparingly) */
	--ink-900: #14121f;
	--ink-800: #1c1930;
	--ink-700: #272341;

	/* Neutrals */
	--white:   #ffffff;
	--paper:   #fbfbfd; /* off-white page bg */
	--mist:    #f4f4f7; /* light gray section bg */
	--cloud:   #eef0f4;
	--line:    #e5e5ec; /* thin borders */
	--line-strong: #d3d3de;

	/* Text */
	--text:      #1e1d2b;
	--text-soft: #4b4a5c;
	--text-mute: #6c6b7e;
	--text-invert: #f4f2fb;
	--text-invert-soft: #c5bfd8;

	/* Warm accent — derived from logo warmth, used only for small marks */
	--accent: #c9704e;

	/* Feedback */
	--ok: #2f7d4f;
	--err: #c0392b;
	--warn: #b7791f;

	/* Radius */
	--r-sm: 6px;
	--r-md: 10px;
	--r-lg: 16px;
	--r-xl: 24px;
	--r-pill: 999px;

	/* Shadow — soft, low-opacity, faintly purple */
	--sh-xs: 0 1px 2px rgba(20, 18, 31, 0.05);
	--sh-sm: 0 2px 8px rgba(20, 18, 31, 0.06);
	--sh-md: 0 12px 28px -12px rgba(57, 42, 82, 0.18);
	--sh-lg: 0 32px 64px -24px rgba(57, 42, 82, 0.28);

	/* Layout */
	--container: 1200px;
	--container-wide: 1320px;
	--container-text: 760px;
	--gutter: clamp(1.15rem, 5vw, 2.5rem);
	--header-h: 76px;

	/* Type */
	--font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--fs-display-2xl: clamp(2.6rem, 1.75rem + 3.6vw, 4.25rem);
	--fs-display-xl:  clamp(2.15rem, 1.6rem + 2.5vw, 3.35rem);
	--fs-display-lg:  clamp(1.85rem, 1.5rem + 1.55vw, 2.6rem);
	--fs-h2:          clamp(1.55rem, 1.3rem + 1.05vw, 2.15rem);
	--fs-h3:          clamp(1.2rem, 1.08rem + 0.5vw, 1.4rem);
	--fs-h4:          1.075rem;
	--fs-lede:        clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
	--fs-body:        1rem;
	--fs-sm:          0.9rem;
	--fs-xs:          0.8rem;
	--fs-eyebrow:     0.72rem;

	--ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- 2. Reset / base ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
/* `overflow-x: clip` contains stray horizontal overflow (e.g. the off-canvas
   mobile drawer) WITHOUT creating a scroll container — so `position: sticky`
   on the header keeps working. `hidden` here would break the sticky header. */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}

body.ayeim {
	margin: 0;
	background: var(--paper);
	color: var(--text);
	font-family: var(--font);
	font-size: var(--fs-body);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

.ayeim h1, .ayeim h2, .ayeim h3, .ayeim h4, .ayeim h5 {
	margin: 0 0 0.5em;
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: var(--text);
	text-wrap: balance;
	overflow-wrap: break-word;
}
.ayeim h1 { font-size: var(--fs-display-xl); }
.ayeim h2 { font-size: var(--fs-h2); }
.ayeim h3 { font-size: var(--fs-h3); letter-spacing: -0.01em; }
.ayeim h4 { font-size: var(--fs-h4); letter-spacing: 0; }
.ayeim p { margin: 0 0 1rem; }
.ayeim a { color: var(--brand-700); text-decoration: none; }
.ayeim a:hover { color: var(--brand-800); }
/* Links styled as buttons/cards must not inherit the body link colour. */
.ayeim a.btn, .ayeim a.btn:hover, .ayeim a.btn:focus { color: var(--btn-fg); }
.ayeim a.card, .ayeim a.card:hover { color: var(--text); }
.ayeim img, .ayeim video { max-width: 100%; height: auto; display: block; }
/* Inline icons: sensible default size everywhere; per-component rules refine. */
.ayeim svg.i { width: 1.15em; height: 1.15em; flex: none; display: inline-block; vertical-align: middle; }
.ayeim svg.caret { width: 14px; height: 14px; flex: none; }
.ayeim ul, .ayeim ol { margin: 0 0 1rem; padding-left: 1.15rem; }
.ayeim li { margin: 0.3rem 0; }
.ayeim strong { font-weight: 650; }
.ayeim hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
.ayeim :focus-visible {
	outline: 2px solid var(--brand-600);
	outline-offset: 3px;
	border-radius: 3px;
}
.ayeim ::selection { background: var(--brand-200); color: var(--brand-900); }

/* Skip link */
.skip-link {
	position: absolute; left: 12px; top: -60px;
	background: var(--ink-900); color: #fff;
	padding: 10px 16px; border-radius: var(--r-sm); z-index: 999;
	transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- 3. Layout --------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.container--wide { max-width: var(--container-wide); }
.container--text { max-width: var(--container-text); }

.section { padding-block: clamp(3.5rem, 2.5rem + 5vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 2rem + 3vw, 4rem); }
.section--mist { background: var(--mist); }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--ink {
	background: var(--ink-900);
	color: var(--text-invert);
	background-image:
		radial-gradient(60% 90% at 15% 0%, rgba(101, 71, 151, 0.35), transparent 60%),
		radial-gradient(50% 80% at 100% 100%, rgba(101, 71, 151, 0.22), transparent 55%);
}
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink a { color: var(--brand-200); }
.section--ink .lede { color: var(--text-invert-soft); }

.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.75rem; }

.grid { display: grid; gap: var(--grid-gap, 1.5rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2rem, 1rem + 5vw, 5rem);
	align-items: center;
}
@media (max-width: 900px) {
	.grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
	.split { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- 4. Typographic helpers ------------------------------------- */
.eyebrow {
	display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 0.55rem;
	font-size: var(--fs-eyebrow);
	font-weight: 650;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--brand-700);
	margin: 0 0 0.9rem;
	overflow-wrap: anywhere;
}
.eyebrow::before {
	content: ""; width: 22px; height: 2px; flex: none;
	background: var(--accent); display: inline-block;
}
.section-head.text-center .eyebrow, .text-center > .eyebrow { justify-content: center; }
.section--ink .eyebrow { color: var(--brand-200); }

.display-2xl { font-size: var(--fs-display-2xl); font-weight: 780; line-height: 1.04; letter-spacing: -0.03em; }
.display-xl  { font-size: var(--fs-display-xl); font-weight: 760; line-height: 1.08; letter-spacing: -0.025em; }
.display-lg  { font-size: var(--fs-display-lg); font-weight: 740; line-height: 1.1; letter-spacing: -0.02em; }

.lede {
	font-size: var(--fs-lede);
	line-height: 1.62;
	color: var(--text-soft);
	max-width: 46ch;
}
.lede--wide { max-width: 60ch; }
.text-mute { color: var(--text-mute); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }

.section-head { max-width: 44rem; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.25rem); }
.section-head.text-center { margin-inline: auto; }
.section-head .lede { max-width: 54ch; }
.section-head.text-center .lede { margin-inline: auto; }

/* ---------- 5. Buttons ------------------------------------------------- */
.btn {
	--btn-bg: var(--brand-600);
	--btn-fg: #fff;
	display: inline-flex; align-items: center; gap: 0.55rem;
	padding: 0.85rem 1.4rem;
	font: inherit; font-size: var(--fs-sm); font-weight: 600;
	line-height: 1;
	border: 1px solid transparent;
	border-radius: var(--r-md);
	background: var(--btn-bg); color: var(--btn-fg);
	cursor: pointer;
	transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
	white-space: nowrap;
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn:active { transform: translateY(0); }
.btn .i { width: 1.05em; height: 1.05em; }
.btn--primary { --btn-bg: var(--brand-600); }
.btn--primary:hover { background: var(--brand-700); }
.btn--dark { --btn-bg: var(--ink-900); }
.btn--ghost {
	--btn-bg: transparent; --btn-fg: var(--text);
	border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--white); border-color: var(--brand-400); }
.section--ink .btn--ghost { --btn-fg: #fff; border-color: rgba(255,255,255,0.28); }
.section--ink .btn--ghost:hover { background: rgba(255,255,255,0.08); }
.btn--lg { padding: 1rem 1.7rem; font-size: var(--fs-body); }
.btn--block { display: flex; width: 100%; justify-content: center; }

.textlink {
	display: inline-flex; align-items: center; gap: 0.4rem;
	font-weight: 600; font-size: var(--fs-sm); color: var(--brand-700);
}
.textlink .i { transition: transform 0.2s var(--ease); }
.textlink:hover .i { transform: translateX(3px); }

/* ---------- 6. Cards ------------------------------------------------- */
.card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: clamp(1.4rem, 1rem + 1vw, 1.9rem);
	transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.card--link:hover {
	transform: translateY(-4px);
	box-shadow: var(--sh-md);
	border-color: var(--brand-200);
}
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--text-soft); font-size: var(--fs-sm); margin: 0; }
.card__icon {
	width: 44px; height: 44px; border-radius: var(--r-md);
	display: grid; place-items: center;
	background: var(--brand-50); color: var(--brand-700);
	margin-bottom: 1.1rem;
}
.card__icon .i { width: 22px; height: 22px; }
.card__kicker {
	font-size: var(--fs-xs); font-weight: 650; letter-spacing: 0.08em;
	text-transform: uppercase; color: var(--text-mute);
}
.card__list { list-style: none; margin: 1rem 0 0; padding: 0; }
.card__list li {
	position: relative; padding-left: 1.15rem;
	font-size: var(--fs-sm); color: var(--text-soft);
}
.card__list li::before {
	content: ""; position: absolute; left: 0; top: 0.6em;
	width: 6px; height: 6px; border-radius: 2px; background: var(--brand-400);
}
.card--pad-lg { padding: clamp(1.75rem, 1.2rem + 2vw, 2.75rem); }
.card--flush { background: var(--mist); border-color: transparent; }
.card--ink { background: var(--ink-800); border-color: rgba(255,255,255,0.08); color: var(--text-invert-soft); }
.card--ink h3 { color: #fff; }
.card--ink .card__icon { background: rgba(255,255,255,0.08); color: var(--brand-200); }

/* ---------- 7. Stats ------------------------------------------------- */
.statbar { display: grid; grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
@media (max-width: 520px) { .statbar { grid-template-columns: 1fr 1fr; } }
.stat { background: var(--white); padding: 1.5rem clamp(1rem, 0.5rem + 1.5vw, 1.75rem); }
.stat__value { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.25rem); font-weight: 760; letter-spacing: -0.02em; color: var(--brand-700); }
.stat__label { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mute); margin-top: 0.35rem; }
.section--ink .statbar { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.12); }
.section--ink .stat { background: transparent; }
.section--ink .stat__value { color: #fff; }

/* ---------- 8. Tags / pills --------------------------------------------- */
.tag {
	display: inline-flex; align-items: center; gap: 0.35rem;
	padding: 0.3rem 0.7rem;
	font-size: var(--fs-xs); font-weight: 600;
	border-radius: var(--r-pill);
	background: var(--brand-50); color: var(--brand-700);
	border: 1px solid var(--brand-100);
}
.tag--plain { background: var(--mist); color: var(--text-soft); border-color: var(--line); }
.taglist { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 0; }

.badge {
	display: inline-block; padding: 0.25rem 0.6rem; border-radius: var(--r-sm);
	font-size: var(--fs-xs); font-weight: 650; letter-spacing: 0.04em; text-transform: uppercase;
	background: var(--brand-600); color: #fff;
}
.placeholder {
	display: inline-block; padding: 0.15rem 0.5rem; border-radius: var(--r-sm);
	font-size: 0.78em; font-weight: 650; letter-spacing: 0.03em;
	background: repeating-linear-gradient(-45deg, var(--brand-50), var(--brand-50) 6px, var(--brand-100) 6px, var(--brand-100) 12px);
	color: var(--brand-800); border: 1px dashed var(--brand-300);
}

/* ---------- 9. Hero ------------------------------------------------- */
.hero { position: relative; padding-block: clamp(1.75rem, 1rem + 3vw, 3.5rem) clamp(3rem, 2rem + 4vw, 5rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(2rem, 1rem + 5vw, 4.5rem); align-items: center; }
.hero__grid > * { min-width: 0; }
.hero__visual { min-width: 0; }
.hero h1 { font-size: var(--fs-display-2xl); font-weight: 780; line-height: 1.03; letter-spacing: -0.03em; }
.hero .lede { font-size: var(--fs-lede); max-width: 44ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.9rem; }
.hero__eyebrow { margin-bottom: 1.25rem; }
@media (max-width: 940px) {
	.hero__grid { grid-template-columns: 1fr; }
	.hero__visual { order: 2; }
}

/* ---------- 9b. Immersive hero (homepage) --------------------------------
   Full-bleed, capability-specific background photography. Layered images
   crossfade; a single scrim keeps text legible without flattening the photo. */
.hero--immersive {
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-block: clamp(2.75rem, 1.75rem + 4vh, 4.5rem);
	/* Track the viewport (minus the sticky header) but never force the content
	   to overflow: capped so the eyebrow → headline → lede → note → CTAs →
	   pathway selector always fit one screen on a laptop. */
	min-height: 34rem;
	min-height: clamp(30rem, calc(100svh - var(--header-h, 76px)), 45rem);
}
.hero--immersive .container { position: relative; z-index: 2; width: 100%; }

.hero__media { position: absolute; inset: 0; z-index: 0; background: var(--ink-900); }
.hero__layer {
	position: absolute; inset: 0;
	background-image: var(--bg); background-size: cover; background-position: 50% 45%;
	opacity: 0; transform: scale(1.04);
	transition: opacity 0.85s var(--ease), transform 1.6s var(--ease);
	will-change: opacity;
}
.hero__layer.is-active { opacity: 1; transform: scale(1); }

/* Contrast layer — stronger on the text side, light on the image side, plus a
   restrained brand tint so all four photos read as one Ayeim system. */
.hero__scrim {
	position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background:
		linear-gradient(96deg, rgba(15, 12, 22, 0.93) 0%, rgba(15, 12, 22, 0.78) 26%, rgba(16, 12, 24, 0.42) 54%, rgba(18, 13, 28, 0.30) 78%, rgba(30, 18, 45, 0.55) 100%),
		linear-gradient(0deg, rgba(10, 8, 16, 0.62) 0%, rgba(10, 8, 16, 0) 34%),
		radial-gradient(60% 70% at 12% 8%, rgba(101, 71, 151, 0.30), transparent 60%);
}

.hero__inner { max-width: 41rem; }
.hero--immersive .hero__eyebrow { margin-bottom: 0.9rem; }
.hero--immersive .hero__title { font-size: clamp(2.1rem, 1.5rem + 2.7vw, 3.15rem); font-weight: 780; line-height: 1.05; letter-spacing: -0.03em; text-wrap: balance; overflow-wrap: break-word; }
.hero--immersive .hero__lede { margin-top: 1.1rem; color: var(--text-invert-soft); max-width: 42ch; }
.hero--immersive .hero__actions { margin-top: 1.5rem; }
.hero__note {
	margin-top: 0.9rem; max-width: 44ch;
	font-size: var(--fs-sm); font-weight: 550; color: var(--brand-200);
}

.hero__paths {
	display: flex; gap: clamp(0.75rem, 0.4rem + 1.4vw, 1.75rem);
	margin-top: clamp(1.5rem, 1rem + 2.5vh, 2.5rem);
	overflow-x: auto; scroll-snap-type: x proximity;
	scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.hero__paths::-webkit-scrollbar { display: none; }
.hero__path {
	position: relative;
	flex: 0 0 auto; min-width: 10.5rem; scroll-snap-align: start;
	display: flex; flex-direction: column; gap: 0.5rem;
	padding: 0.85rem 0 0; border: 0; border-top: 2px solid rgba(255, 255, 255, 0.16);
	background: none; font: inherit; text-align: left; cursor: pointer;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
/* The purple accent line that flows along the top of the active pathway and,
   when it reaches the end, advances the background to the next image. */
.hero__path::after {
	content: ""; position: absolute; top: -2px; left: 0;
	width: 100%; height: 2px; transform-origin: left center; transform: scaleX(0);
	background: linear-gradient(90deg, var(--brand-500), var(--brand-300));
	box-shadow: 0 0 10px rgba(140, 106, 196, 0.55);
}
/* No autoplay (reduced motion / paused) — active pathway shows a filled accent. */
.hero__path[aria-pressed="true"]::after { transform: scaleX(1); }
.hero__path.is-playing::after {
	transform: scaleX(0);
	animation: hero-path-fill var(--hero-interval, 6s) linear forwards;
}
.hero__path.is-playing.is-paused::after { animation-play-state: paused; }
.hero__path:hover { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.hero__path[aria-pressed="true"] { color: #fff; border-color: rgba(255, 255, 255, 0.32); }
.hero__path[aria-pressed="true"] .hero__path-num { opacity: 1; color: var(--brand-300); }
.hero__path:focus-visible { outline: 2px solid var(--brand-200); outline-offset: 4px; border-radius: 2px; }
.hero__path-num { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; color: var(--brand-200); opacity: 0.7; }
.hero__path-label { font-size: clamp(0.9rem, 0.86rem + 0.16vw, 1rem); font-weight: 620; line-height: 1.2; letter-spacing: -0.01em; white-space: nowrap; }

@keyframes hero-path-fill {
	from { transform: scaleX(0); }
	to   { transform: scaleX(1); }
}

@media (min-width: 60rem) {
	/* Selector spans its own natural width, wider than the text column, without
	   stretching the headline; it sits left-aligned under the content. */
	.hero__paths { width: max-content; gap: clamp(1.25rem, 0.5rem + 2.4vw, 2.75rem); }
	.hero__path { min-width: 11rem; }
}
@media (max-width: 59.99rem) {
	.hero__path { min-height: 44px; }
}
@media (max-width: 700px) {
	.hero--immersive { min-height: auto; min-height: clamp(28rem, calc(100svh - var(--header-h, 76px)), 40rem); padding-block: clamp(3rem, 2rem + 6vh, 4.5rem); }
	.hero__layer { background-image: var(--bg-sm); background-position: 50% 40%; }
	.hero__scrim { background:
		linear-gradient(180deg, rgba(14, 11, 20, 0.78) 0%, rgba(14, 11, 20, 0.5) 42%, rgba(16, 12, 24, 0.58) 72%, rgba(28, 17, 42, 0.85) 100%),
		radial-gradient(80% 40% at 20% 4%, rgba(101, 71, 151, 0.26), transparent 70%); }
	.hero__inner { max-width: none; }
	.hero--immersive .hero__title { font-size: clamp(1.65rem, 1.3rem + 2.4vw, 2.5rem); }
	.hero--immersive .hero__lede { font-size: 1rem; }
	.hero__eyebrow { display: block; letter-spacing: 0.08em; font-size: 0.7rem; }
	.hero__eyebrow::before { display: none; }
	.hero__actions .btn { flex: 1 1 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
	.hero__layer { transform: none !important; transition: opacity 0.001ms linear; }
	.hero__path.is-playing::after { animation: none; transform: scaleX(1); }
}

/* subtle top gradient wash for light hero */
.hero--wash::before {
	content: ""; position: absolute; inset: 0; z-index: -1;
	background:
		radial-gradient(48% 60% at 88% 8%, rgba(101, 71, 151, 0.10), transparent 60%),
		radial-gradient(40% 50% at 0% 100%, rgba(201, 112, 78, 0.06), transparent 55%);
}

/* ---------- 10. Page header (inner pages) ----------------------------- */
.pagehead { padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem) clamp(2rem, 1.5rem + 2vw, 3rem); }
.pagehead h1 { font-size: var(--fs-display-lg); margin-top: 0.6rem; }
.pagehead .lede { max-width: 58ch; margin-top: 0.5rem; }

/* ---------- 10b. Internal-page hero with a contextual background photo ---
   NOT the homepage. A page-specific image sits as a subtle, blurred layer,
   weighted to the right; a light wash keeps the left text column calm and the
   whole section reads as off-white. Never a dark hero, never a separate card. */
/* Shared: any hero that carries a contextual background photo. */
.has-herophoto { position: relative; isolation: isolate; overflow: hidden; }
.has-herophoto > .container { position: relative; z-index: 2; }

.pagehead--image {
	display: flex;
	align-items: center;
	background: var(--paper);
	min-height: clamp(24rem, 19rem + 12vw, 33.5rem); /* ~384 → 536px desktop */
	padding-block: clamp(2.5rem, 1.9rem + 3vw, 4rem);
}
.pagehead--image > .container { width: 100%; }
.pagehead--image .breadcrumbs a,
.pagehead--image .breadcrumbs [aria-current="page"] { text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6); }

.pagehead__bg {
	position: absolute; inset: 0; z-index: 0;
	background-image: var(--hero-img-sm);
	background-size: cover;
	background-position: var(--hero-focus, 78% 38%);
	background-repeat: no-repeat;
	filter: blur(3px) saturate(0.82) contrast(0.94) brightness(1.05);
	transform: scale(1.06);
	opacity: 0.5;
}
@media (min-width: 48rem) {
	.pagehead__bg { background-image: var(--hero-img); opacity: 0.55; }
}

.pagehead__wash {
	position: absolute; inset: 0; z-index: 1; pointer-events: none;
	background:
		linear-gradient(97deg, var(--paper) 0%, var(--paper) 28%, rgba(251, 251, 253, 0.74) 50%, rgba(251, 251, 253, 0.32) 76%, rgba(248, 246, 252, 0.10) 100%),
		linear-gradient(0deg, var(--paper) 1%, rgba(251, 251, 253, 0.34) 22%, rgba(251, 251, 253, 0) 46%),
		radial-gradient(60% 72% at 90% 6%, rgba(101, 71, 151, 0.10), transparent 62%);
}

.pagehead--image h1 { color: var(--text); }
.pagehead--image .lede { color: var(--text-soft); }

@media (min-width: 48rem) {
	.pagehead--image .container { max-width: min(100%, var(--container)); }
	.pagehead--image h1,
	.pagehead--image .lede,
	.pagehead--image .eyebrow,
	.pagehead--image .breadcrumbs,
	.pagehead--image .hero__actions { max-width: 40rem; }
}

@media (max-width: 47.99rem) {
	.pagehead--image {
		min-height: clamp(22rem, 17rem + 22vw, 27rem);
		padding-block: clamp(2.25rem, 1.75rem + 4vw, 3.25rem);
	}
	.pagehead__bg {
		opacity: 0.38;
		background-position: 72% 26%;
		filter: blur(4px) saturate(0.8) contrast(0.92) brightness(1.08);
	}
	/* Image drops behind and below the content — vertical wash, not left→right. */
	.pagehead__wash {
		background:
			linear-gradient(180deg, var(--paper) 6%, rgba(251, 251, 253, 0.72) 42%, rgba(251, 251, 253, 0.46) 70%, rgba(248, 246, 252, 0.22) 100%),
			radial-gradient(85% 45% at 82% 3%, rgba(101, 71, 151, 0.08), transparent 72%);
	}
}

@media (prefers-reduced-motion: no-preference) {
	.pagehead__bg { animation: pagehead-drift 34s ease-in-out infinite alternate; }
}
@keyframes pagehead-drift {
	from { transform: scale(1.05); }
	to   { transform: scale(1.11); }
}

/* ---------- 11. Breadcrumbs ---------------------------------------------- */
.breadcrumbs { font-size: var(--fs-xs); color: var(--text-mute); display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.breadcrumbs a { color: var(--text-mute); }
.breadcrumbs a:hover { color: var(--brand-700); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs [aria-current="page"] { color: var(--text-soft); }

/* ---------- 12. FAQ ------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
	width: 100%; background: none; border: 0; cursor: pointer;
	display: flex; justify-content: space-between; align-items: center; gap: 1rem;
	padding: 1.25rem 0; font: inherit; font-size: var(--fs-h4); font-weight: 640;
	color: var(--text); text-align: left;
}
.faq__q .i { flex: none; transition: transform 0.2s var(--ease); color: var(--brand-600); }
.faq__q[aria-expanded="true"] .i { transform: rotate(45deg); }
.faq__a { overflow: hidden; height: 0; }
.faq__a-inner { padding: 0 0 1.35rem; color: var(--text-soft); max-width: 68ch; }
.faq__a p:last-child { margin-bottom: 0; }

/* ---------- 13. Architecture diagram ---------------------------------- */
.diagram { display: grid; gap: 0.65rem; }
.diagram__layer {
	border: 1px solid var(--line); border-radius: var(--r-md);
	background: var(--white); padding: 0.9rem 1.1rem;
	display: grid; grid-template-columns: 190px 1fr; gap: 1rem; align-items: center;
}
.diagram__layer-name { font-weight: 660; font-size: var(--fs-sm); color: var(--brand-700); }
.diagram__nodes { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.diagram__node {
	font-size: var(--fs-xs); font-weight: 550;
	padding: 0.32rem 0.6rem; border-radius: var(--r-sm);
	background: var(--mist); color: var(--text-soft); border: 1px solid var(--line);
}
.diagram__layer--accent { border-color: var(--brand-200); background: var(--brand-50); }
.diagram__layer--accent .diagram__node { background: var(--white); border-color: var(--brand-100); }
.diagram__flow { text-align: center; color: var(--brand-400); font-size: 1rem; line-height: 1; }
.section--ink .diagram__layer { background: var(--ink-800); border-color: rgba(255,255,255,0.1); }
.section--ink .diagram__node { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: var(--text-invert-soft); }
.section--ink .diagram__layer-name { color: var(--brand-200); }
@media (max-width: 640px) {
	.diagram__layer { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* vertical flow diagram (healthcare) */
.flowchart { display: grid; gap: 0.4rem; max-width: 520px; }
.flowchart__step {
	border: 1px solid var(--line); border-radius: var(--r-md); background: var(--white);
	padding: 0.85rem 1.1rem; font-weight: 600; font-size: var(--fs-sm); text-align: center;
}
.flowchart__step span { display: block; font-weight: 400; font-size: var(--fs-xs); color: var(--text-mute); }
.flowchart__arrow { text-align: center; color: var(--brand-400); line-height: 0.6; }
.flowchart__step--key { background: var(--brand-600); color: #fff; border-color: var(--brand-600); }
.flowchart__step--key span { color: var(--brand-100); }

/* ---------- 14. Ecosystem visual (homepage hero) --------------------- */
.ecosystem { position: relative; width: 100%; max-width: 460px; aspect-ratio: 1 / 1; margin-inline: auto; }
.ecosystem__core {
	position: absolute; inset: 34% 34%; border-radius: var(--r-lg);
	background: var(--ink-900); color: #fff; display: grid; place-items: center;
	text-align: center; font-weight: 700; font-size: var(--fs-xs); letter-spacing: 0.02em;
	box-shadow: var(--sh-lg); z-index: 3; padding: 0.5rem;
}
.ecosystem__ring { position: absolute; inset: 0; border: 1px dashed var(--brand-200); border-radius: 50%; }
.ecosystem__ring--2 { inset: 14%; border-color: var(--brand-100); }
.ecosystem__node {
	position: absolute; transform: translate(-50%, -50%);
	background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill);
	padding: 0.4rem 0.8rem; font-size: var(--fs-xs); font-weight: 600; white-space: nowrap;
	box-shadow: var(--sh-sm); z-index: 2;
}
.ecosystem__line { position: absolute; left: 50%; top: 50%; height: 1px; background: linear-gradient(90deg, var(--brand-300), transparent); transform-origin: left center; z-index: 1; }
@media (max-width: 940px) { .ecosystem { max-width: 360px; } }
@media (prefers-reduced-motion: no-preference) {
	.ecosystem__ring { animation: spin 60s linear infinite; }
	.ecosystem__ring--2 { animation: spin 45s linear infinite reverse; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- 14b. Transformation flow (hero visual) ------------------- */
.tflow { display: grid; gap: 1.25rem; width: 100%; max-width: 460px; margin-inline: auto; }
.tflow__inputs { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
.tflow__chip {
	font-size: var(--fs-xs); font-weight: 600; padding: 0.3rem 0.7rem;
	border-radius: var(--r-pill); background: var(--white);
	border: 1px solid var(--line); color: var(--text-soft);
}
.tflow__spine { display: grid; justify-items: center; gap: 0; position: relative; }
.tflow__node {
	display: flex; align-items: center; gap: 0.7rem;
	background: var(--white); border: 1px solid var(--line);
	border-radius: var(--r-md); padding: 0.7rem 1.1rem; width: 100%;
	font-weight: 600; font-size: var(--fs-sm); box-shadow: var(--sh-xs);
}
.tflow__node .tflow__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); flex: none; }
.tflow__node.is-intelligent { border-color: var(--brand-200); }
.tflow__node.is-intelligent .tflow__dot { background: var(--brand-500); }
.tflow__node.is-intelligent .tflow__label { color: var(--brand-800); }
.tflow__link { width: 2px; height: 16px; background: linear-gradient(var(--line-strong), var(--brand-200)); }
@media (prefers-reduced-motion: no-preference) {
	.tflow__node.is-intelligent { animation: tflow-in 0.6s var(--ease) both; }
	.tflow__node.is-intelligent:nth-of-type(9) { animation-delay: 0.1s; }
	.tflow__node.is-intelligent:nth-of-type(11) { animation-delay: 0.2s; }
	.tflow__node.is-intelligent:nth-of-type(13) { animation-delay: 0.3s; }
}
@keyframes tflow-in { from { opacity: 0; transform: translateY(6px); } }

/* ---------- 14c. Transformation Journey — comet progress bar --------- */
.jcomet { --tab-active: 0; --tab-count: 5; }
.jcomet__bar {
	position: relative;
	padding-top: 8px;
	margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.25rem);
}
.jcomet__dots {
	display: grid;
	grid-template-columns: repeat(var(--tab-count, 5), 1fr);
}
/* A single element: the rail is a gradient whose stop (--jp) is the comet
   position; the ::after is the glowing comet head. left/width are set by JS
   so the rail spans exactly from the first dot centre to the last. */
.jcomet__rail {
	position: absolute; top: 14px; height: 3px; z-index: 0;
	left: 10%; width: 80%;
	border-radius: 3px;
	background: linear-gradient(90deg,
		var(--brand-600) 0, var(--brand-400) var(--jp, 0%),
		var(--line-strong) var(--jp, 0%), var(--line-strong) 100%);
	transition: --jp 0.55s var(--ease), background 0.55s var(--ease);
}
.jcomet__rail::after {
	content: ""; position: absolute; top: 50%; left: var(--jp, 0%);
	width: 13px; height: 13px; border-radius: 50%;
	transform: translate(-50%, -50%);
	background: var(--brand-500);
	box-shadow: 0 0 0 4px rgba(122, 85, 172, 0.28), 0 0 22px 4px rgba(122, 85, 172, 0.6);
	transition: left 0.55s var(--ease);
}
.jcomet__step {
	position: relative; z-index: 1;
	background: none; border: 0; cursor: pointer; font: inherit;
	display: grid; justify-items: center; gap: 0.5rem;
	padding: 0 0.25rem; color: var(--text-mute);
	transition: color 0.2s var(--ease);
}
.jcomet__dot {
	width: 14px; height: 14px; border-radius: 50%;
	background: var(--cloud); border: 2px solid var(--line-strong);
	transition: background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.3s var(--ease), transform 0.2s var(--ease);
}
.jcomet__step:hover .jcomet__dot { border-color: var(--brand-400); }
.jcomet__step[aria-selected="true"] { color: var(--text); }
.jcomet__step[aria-selected="true"] .jcomet__dot {
	background: var(--brand-500); border-color: var(--brand-500); transform: scale(1.25);
	box-shadow: 0 0 0 5px rgba(122, 85, 172, 0.22), 0 0 22px 4px rgba(122, 85, 172, 0.5);
}
/* dots at or before the active one read as "completed" */
.jcomet__no { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.06em; color: var(--brand-500); }
.jcomet__name { font-size: var(--fs-sm); font-weight: 640; line-height: 1.2; text-align: center; }
.jcomet__panels { max-width: 62rem; }
.jcomet__panel-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 0.75rem; }
.jcomet__panel-no {
	font-size: clamp(2.25rem, 1.4rem + 2.6vw, 3.5rem); font-weight: 780;
	line-height: 1; color: var(--brand-300); letter-spacing: -0.03em;
}
.jcomet__panel-head h2, .jcomet__panel-head h3 { margin: 0; font-size: var(--fs-h2); }
.jcomet__delta { margin: 0.15rem 0 0; font-size: var(--fs-xs); font-weight: 650; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-mute); }
.jcomet__detail { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem 2.5rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.jcomet__detail p { font-size: var(--fs-sm); color: var(--text-soft); }

/* Dark (section--ink) — matches the reference. */
.section--ink .jcomet__rail {
	background: linear-gradient(90deg,
		var(--brand-400) 0, var(--brand-300) var(--jp, 0%),
		rgba(255,255,255,0.16), rgba(255,255,255,0.16) 100%);
}
.section--ink .jcomet__dot { background: var(--ink-700); border-color: rgba(255,255,255,0.28); }
.section--ink .jcomet__step { color: var(--text-invert-soft); }
.section--ink .jcomet__step[aria-selected="true"] { color: #fff; }
.section--ink .jcomet__name { color: inherit; }
.section--ink .jcomet__panel-no { color: var(--brand-300); }
.section--ink .jcomet__delta { color: var(--text-invert-soft); }
.section--ink .jcomet__detail { border-top-color: rgba(255,255,255,0.14); }
.section--ink .jcomet__detail p { color: var(--text-invert-soft); }

@media (prefers-reduced-motion: reduce) {
	.jcomet__rail, .jcomet__rail::after { transition: none; }
}
@media (max-width: 780px) {
	.jcomet__bar { padding-top: 0; margin-bottom: 2rem; }
	.jcomet__dots { grid-template-columns: 1fr; gap: 0; }
	/* Vertical rail: left/height driven by JS (--jp becomes a vertical %). */
	.jcomet__rail {
		top: 20px; bottom: 20px; left: 13px !important; width: 3px !important; height: auto;
		background: linear-gradient(180deg,
			var(--brand-600) 0, var(--brand-400) var(--jp, 0%),
			var(--line-strong) var(--jp, 0%), var(--line-strong) 100%);
	}
	.section--ink .jcomet__rail {
		background: linear-gradient(180deg,
			var(--brand-400) 0, var(--brand-300) var(--jp, 0%),
			rgba(255,255,255,0.16), rgba(255,255,255,0.16) 100%);
	}
	.jcomet__rail::after { left: 50%; top: var(--jp, 0%); }
	.jcomet__step {
		grid-template-columns: 28px 1fr; justify-items: start; align-items: center;
		gap: 0 0.75rem; padding: 0.7rem 0;
	}
	.jcomet__name { text-align: left; }
	.jcomet__dot { order: -1; }
}

/* ---------- 14e. Transformation Studio (challenge cards) ------------- */
.tstudio__tabs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.tstudio__tab {
	font: inherit; font-size: var(--fs-sm); font-weight: 600; cursor: pointer;
	padding: 0.6rem 1.1rem; border-radius: var(--r-pill);
	background: var(--mist); color: var(--text-soft); border: 1px solid var(--line);
	transition: background 0.16s var(--ease), color 0.16s var(--ease), border-color 0.16s var(--ease);
}
.tstudio__tab[aria-selected="true"] { background: var(--brand-600); color: #fff; border-color: var(--brand-600); }
.section--ink .tstudio__tab { background: rgba(255,255,255,0.06); color: var(--text-invert-soft); border-color: rgba(255,255,255,0.16); }
.section--ink .tstudio__tab[aria-selected="true"] { background: var(--white); color: var(--ink-900); border-color: var(--white); }

.tcard {
	display: flex; flex-direction: column;
	border: 1px solid var(--line); border-radius: var(--r-lg);
	padding: clamp(1.3rem, 1rem + 1vw, 1.75rem);
	background: var(--white); color: var(--text);
	transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--brand-200); color: var(--text); }
.tcard__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.tcard__no { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.08em; color: var(--text-mute); }
.tcard__arrow { width: 18px; height: 18px; color: var(--brand-500); transition: transform 0.22s var(--ease); }
.tcard:hover .tcard__arrow { transform: translate(3px, -3px); }
.tcard__cat { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-600); margin-bottom: 0.5rem; }
.tcard__title { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 0.5rem; }
.tcard__desc { font-size: var(--fs-sm); color: var(--text-soft); }
.tcard__foot {
	margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line);
	font-size: var(--fs-xs); font-weight: 650; letter-spacing: 0.06em; color: var(--text-mute);
}
.section--ink .tcard { background: var(--ink-800); border-color: rgba(255,255,255,0.1); color: var(--text-invert); }
.section--ink .tcard:hover { border-color: rgba(190, 150, 235, 0.4); box-shadow: 0 24px 48px -20px rgba(0,0,0,0.5); }
.section--ink .tcard__no { color: var(--text-invert-soft); }
.section--ink .tcard__cat { color: var(--brand-300); }
.section--ink .tcard__title { color: #fff; }
.section--ink .tcard__desc { color: var(--text-invert-soft); }
.section--ink .tcard__foot { color: var(--text-invert-soft); border-top-color: rgba(255,255,255,0.12); }

/* ---------- 14d. SHARP framework ------------------------------------ */
.sharp { list-style: none; margin: 0; padding: 0; counter-reset: none; border-top: 1px solid var(--line); }
.sharp__row { display: grid; grid-template-columns: 96px 1fr; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.sharp__letter {
	font-size: clamp(2.5rem, 1.5rem + 3vw, 4rem); font-weight: 780; line-height: 1;
	color: var(--brand-600); letter-spacing: -0.03em;
}
.sharp__body h3 { font-size: var(--fs-h3); }
.sharp__body > p { color: var(--text-soft); max-width: 62ch; }
.sharp__detail { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 1.25rem 0; }
.sharp__detail .card__list { margin-top: 0.4rem; }
.sharp__outcome { font-size: var(--fs-sm); border-left: 3px solid var(--brand-300); padding-left: 1rem; color: var(--text); }
.section--ink .sharp { border-color: rgba(255,255,255,0.12); }
.section--ink .sharp__row { border-color: rgba(255,255,255,0.12); }
.section--ink .sharp__letter { color: var(--brand-300); }
@media (max-width: 720px) {
	.sharp__row { grid-template-columns: 1fr; gap: 0.5rem; }
	.sharp__detail { grid-template-columns: 1fr; }
}

/* ---------- 15. Logo cloud ----------------------------------------------- */
.logocloud { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem); }
.logocloud__item {
	height: 34px; min-width: 120px;
	display: grid; place-items: center;
	border: 1px dashed var(--line-strong); border-radius: var(--r-sm);
	padding: 0 1rem; color: var(--text-mute); font-size: var(--fs-xs); font-weight: 600;
}

/* ---------- 16. Process / steps ------------------------------------- */
/* numlist — a compact numbered sequence for "how we approach it" steps */
.numlist { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.85rem; max-width: 60ch; }
.numlist li { display: grid; grid-template-columns: 2.25rem 1fr; gap: 0.9rem; align-items: start; }
.numlist__n { font-size: var(--fs-xs); font-weight: 700; color: var(--brand-500); padding-top: 0.15rem; letter-spacing: 0.02em; }
.numlist li > span:last-child { color: var(--text-soft); }

.steps { counter-reset: step; display: grid; gap: 1rem; }
.steps--row { grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr)); }
.step {
	counter-increment: step;
	border: 1px solid var(--line); border-radius: var(--r-md);
	padding: 1.25rem; background: var(--white); position: relative;
}
.step::before {
	content: counter(step, decimal-leading-zero);
	font-size: var(--fs-xs); font-weight: 700; color: var(--brand-500);
	letter-spacing: 0.05em;
}
.step h3 { margin: 0.5rem 0 0.35rem; font-size: var(--fs-h4); letter-spacing: 0; }
.step p { margin: 0; font-size: var(--fs-sm); color: var(--text-soft); }

/* ---------- 17. Media / feature rows ------------------------------------ */
.feature-row + .feature-row { margin-top: clamp(3rem, 2rem + 4vw, 5rem); }
.feature-row:nth-child(even) .split { direction: rtl; }
.feature-row:nth-child(even) .split > * { direction: ltr; }

/* ---------- 18. Article / prose --------------------------------------- */
.prose { max-width: var(--container-text); }
.prose h2 { font-size: var(--fs-display-lg); margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; }
.prose p, .prose li { color: var(--text-soft); }
.prose > p:first-child { font-size: var(--fs-lede); color: var(--text); }
.prose img { border-radius: var(--r-md); margin: 1.75rem 0; }
.prose blockquote {
	margin: 1.75rem 0; padding: 0.5rem 0 0.5rem 1.5rem;
	border-left: 3px solid var(--brand-400); font-size: var(--fs-lede); color: var(--text);
}
/* Highlighted callout — a bordered box for a closing statement or key takeaway */
.prose .callout, .callout {
	margin: 2rem 0; padding: 1.5rem clamp(1.25rem, 0.75rem + 2vw, 2rem);
	border: 1px solid var(--brand-200); border-left: 4px solid var(--brand-500);
	border-radius: var(--r-md); background: var(--brand-50, #f6f3fb);
	font-size: var(--fs-lede); line-height: 1.5; color: var(--text);
}
.prose .callout p, .callout p { margin: 0; color: var(--text); }
.prose .callout p + p { margin-top: 0.75rem; }
.prose code {
	background: var(--mist); padding: 0.1em 0.4em; border-radius: var(--r-sm);
	font-size: 0.9em; font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}
.toc {
	border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.1rem 1.25rem;
	background: var(--mist); font-size: var(--fs-sm);
}
.toc strong { display: block; margin-bottom: 0.5rem; font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); }
.toc ol { margin: 0; }
.toc a { color: var(--text-soft); }

/* ---------- 19. Forms ------------------------------------------------- */
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: var(--fs-sm); font-weight: 600; margin-bottom: 0.4rem; }
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
	width: 100%; font: inherit; font-size: var(--fs-sm);
	padding: 0.75rem 0.9rem;
	border: 1px solid var(--line-strong); border-radius: var(--r-md);
	background: var(--white); color: var(--text);
	transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
	outline: none; border-color: var(--brand-500);
	box-shadow: 0 0 0 3px var(--brand-100);
}
.field__hint { font-size: var(--fs-xs); color: var(--text-mute); margin-top: 0.3rem; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field--consent label { display: flex; gap: 0.6rem; align-items: flex-start; font-weight: 400; font-size: var(--fs-sm); line-height: 1.5; }
.field--consent input { width: 1.05rem; height: 1.05rem; flex: 0 0 auto; margin-top: 0.15rem; padding: 0; }
.field--consent a { color: var(--brand-600); text-decoration: underline; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.1rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-note { font-size: var(--fs-xs); color: var(--text-mute); }
.alert { padding: 0.9rem 1.1rem; border-radius: var(--r-md); font-size: var(--fs-sm); margin-bottom: 1.25rem; }
.alert--ok { background: #e9f5ee; color: #1e5b38; border: 1px solid #bfe0cc; }
.alert--err { background: #fbeceb; color: #8f2c22; border: 1px solid #f0c8c4; }

/* ---------- 20. Utilities --------------------------------------------- */
.u-hide { display: none !important; }
@media (max-width: 780px) { .u-hide\@mob { display: none !important; } }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2.5rem; }
.mb-0 { margin-bottom: 0 !important; }
.gap-sm { --grid-gap: 1rem; }
.gap-lg { --grid-gap: 2rem; }
.relative { position: relative; }
.full-bleed-line { border: 0; border-top: 1px solid var(--line); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }


/* =======================================================================
   21. ABOUT PAGE
   Editorial narrative: light throughout, purple as accent, generous
   type, one visual anchor per section, alternating layout rhythm.
   ==================================================================== */

.section--tint { background: linear-gradient(180deg, #faf8fd, #f6f3fb); }

/* ---- Type scale (About only) ------------------------------------------ */
.about { color: var(--text); }
.about :where(p) { font-size: 1.075rem; line-height: 1.75; }
.about .lede { font-size: clamp(1.2rem, 1.1rem + 0.55vw, 1.45rem); line-height: 1.58; color: var(--text-soft); max-width: 46ch; }
.about .section { padding-block: clamp(4.5rem, 3.2rem + 4.5vw, 8rem); }
.about .section-head { margin-bottom: clamp(2.25rem, 1.5rem + 2.5vw, 3.5rem); }
.about .section-head .display-lg { font-size: clamp(2rem, 1.55rem + 2vw, 3rem); line-height: 1.08; }
.about .section-head .lede { margin-top: 1.1rem; max-width: 54ch; }
.about .eyebrow { font-size: 0.78rem; letter-spacing: 0.13em; margin-bottom: 1.15rem; }
.about .card__kicker { font-size: 0.8rem; letter-spacing: 0.1em; color: var(--text-mute); }
.about .tag--plain { font-size: 0.9rem; padding: 0.45rem 0.85rem; }
.textlink--lg { font-size: 1.05rem; }

/* ---- 01 Hero -------------------------------------------------------- */
.about-hero {
	position: relative;
	padding-block: clamp(3rem, 2rem + 5vw, 6rem) clamp(4rem, 3rem + 5vw, 7rem);
	background:
		radial-gradient(40% 50% at 100% 0%, rgba(101, 71, 151, 0.07), transparent 65%),
		var(--paper);
	border-bottom: 1px solid var(--line);
}
.about-hero__grid {
	display: grid; grid-template-columns: 1.2fr 0.8fr;
	gap: clamp(2.5rem, 1rem + 5vw, 5rem); align-items: center;
}
.about-hero .breadcrumbs { margin-bottom: 1.75rem; }
.about-hero__title {
	font-size: clamp(2.15rem, 1.35rem + 3vw, 3.35rem); font-weight: 760;
	line-height: 1.1; letter-spacing: -0.03em; margin: 0; text-wrap: balance;
}
.about-hero__lede { margin-top: 1.5rem; font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem); max-width: 42ch; }
.about-hero .hero__actions { margin-top: 2.25rem; }
.about-hero__visual-label {
	font-size: 0.75rem; font-weight: 650; letter-spacing: 0.14em; text-transform: uppercase;
	color: var(--text-mute); margin: 0 0 1.25rem;
}

/* transformation stack */
.stackviz { position: relative; display: grid; gap: 0.75rem; max-width: 27rem; }
.stackviz__spine {
	position: absolute; left: 1.35rem; top: 1.3rem; bottom: 1.3rem; width: 2px;
	background: linear-gradient(var(--brand-200), var(--brand-400));
}
.stackviz__layer {
	position: relative; display: flex; align-items: center; gap: 1rem;
	padding: 1.15rem 1.35rem; border: 1px solid var(--line-strong);
	border-radius: var(--r-md); background: var(--white); box-shadow: var(--sh-xs);
	font-weight: 600; font-size: 1rem; color: var(--text-soft);
}
.stackviz__dot {
	width: 0.7rem; height: 0.7rem; border-radius: 50%; flex: none;
	background: var(--white); border: 2px solid var(--brand-400); z-index: 1;
}
.stackviz__layer.is-top {
	border-color: var(--brand-300); background: var(--brand-50); color: var(--brand-800);
	box-shadow: 0 12px 28px -14px rgba(101, 71, 151, 0.35);
}
.stackviz__layer.is-top .stackviz__dot { background: var(--brand-500); border-color: var(--brand-500); }

/* ---- shared two-column ---------------------------------------------- */
.about-two {
	display: grid; grid-template-columns: 1fr 0.82fr;
	gap: clamp(2.5rem, 1rem + 6vw, 5.5rem); align-items: start;
}
.about-two--wide-aside { grid-template-columns: 1fr 0.95fr; }
.about-two__lead > p + p { margin-top: 1.1rem; }
.about-two__lead .lede + p { margin-top: 1.35rem; }

/* capability constellation */
.caphub {
	position: relative; width: 100%; max-width: 26rem; aspect-ratio: 1 / 1; margin-inline: auto;
}
.caphub__ring {
	position: absolute; inset: 16%; border: 1px dashed var(--brand-200); border-radius: 50%;
}
.caphub__core {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
	width: 6.5rem; height: 6.5rem; border-radius: 50%;
	display: grid; place-items: center; z-index: 2;
	background: var(--brand-600); color: #fff; font-weight: 700; letter-spacing: 0.01em;
	box-shadow: 0 18px 40px -16px rgba(57, 42, 82, 0.5);
}
.caphub__node {
	position: absolute; transform: translate(-50%, -50%);
	padding: 0.4rem 0.75rem; border-radius: var(--r-pill);
	background: var(--white); border: 1px solid var(--line-strong);
	font-size: 0.8rem; font-weight: 600; color: var(--text-soft); white-space: nowrap;
	box-shadow: var(--sh-sm); z-index: 3;
}
@media (prefers-reduced-motion: no-preference) {
	.caphub__ring { animation: spin 90s linear infinite; }
}

/* lens sequence (why Ayeim exists) */
.lensseq { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.lensseq__item {
	display: grid; grid-template-columns: 2.75rem 1fr; align-items: baseline;
	column-gap: 1rem; padding: 0.95rem 0; border-bottom: 1px solid var(--line);
}
.lensseq__item:first-child { border-top: 1px solid var(--line); }
.lensseq__no { font-size: 0.8rem; font-weight: 700; color: var(--brand-400); letter-spacing: 0.08em; }
.lensseq__label { font-size: 1.15rem; font-weight: 650; letter-spacing: -0.01em; }
.lensseq__gloss { grid-column: 2; font-size: 0.95rem; color: var(--text-mute); }

/* generic about list */
.about-list { list-style: none; margin: 0.75rem 0 0; padding: 0; display: grid; gap: 0; }
.about-list li {
	padding: 0.7rem 0 0.7rem 1.4rem; position: relative;
	border-bottom: 1px solid var(--line); font-size: 1rem; color: var(--text-soft);
}
.about-list li::before {
	content: ""; position: absolute; left: 0; top: 1.15rem;
	width: 0.4rem; height: 0.4rem; border-radius: 50%; background: var(--brand-400);
}

/* ---- 03 How Ayeim started (open statement) -------------------------- */
.about-open { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 1rem + 4vw, 4.5rem); align-items: start; }
.about-open .eyebrow { grid-column: 1 / -1; }
.about-open__title {
	margin: 0; font-size: clamp(2rem, 1.5rem + 2.4vw, 3.1rem); font-weight: 740;
	line-height: 1.12; letter-spacing: -0.025em;
}
.about-open__body > p { font-size: 1.2rem; line-height: 1.7; color: var(--text-soft); }
.about-open__body > p + p { margin-top: 1.1rem; }
.about-open__body > p:last-child { color: var(--text); font-weight: 550; }

/* ---- 04 Founder journey timeline ---------------------------------- */
.founder-timeline { position: relative; }
.founder-timeline__progress {
	display: flex; align-items: center; gap: 0.85rem;
	margin-bottom: clamp(1.75rem, 1.25rem + 1.5vw, 2.75rem);
}
.founder-timeline__progress::before {
	content: "Scroll"; font-size: 0.7rem; font-weight: 650; letter-spacing: 0.12em;
	text-transform: uppercase; color: var(--text-mute);
}
.founder-timeline__progress > span {
	position: relative; display: block; height: 3px; width: 9rem;
	border-radius: 3px; background: var(--line); overflow: hidden;
}
.founder-timeline__progress > span::after {
	content: ""; position: absolute; inset: 0 auto 0 0;
	width: calc(8% + var(--progress, 0) * 92%);
	background: linear-gradient(90deg, var(--brand-400), var(--brand-600));
	transition: width 0.15s linear;
}
.founder-timeline__track {
	list-style: none; margin: 0; padding: 0 0 0.5rem;
	display: flex; gap: 0;
	overflow-x: auto; scroll-snap-type: x proximity;
	scrollbar-width: none;
}
.founder-timeline__track::-webkit-scrollbar { display: none; }
.founder-stage {
	flex: 0 0 clamp(16rem, 46vw, 20rem); scroll-snap-align: start;
	position: relative; padding: 2.75rem 2rem 0 0; border-top: 2px solid var(--line-strong);
}
.founder-stage:last-child { padding-right: 0; }
.founder-stage__marker {
	position: absolute; top: -1.35rem; left: 0;
	width: 2.7rem; height: 2.7rem; border-radius: 50%;
	display: grid; place-items: center;
	background: var(--white); border: 2px solid var(--brand-300); color: var(--brand-600);
}
.founder-stage__marker .i { width: 1.2rem; height: 1.2rem; }
.founder-stage__no { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; color: var(--brand-500); }
.founder-stage__cat {
	display: block; margin-top: 0.6rem; font-size: 0.78rem; font-weight: 650;
	letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-mute);
}
.founder-stage__title { margin: 0.4rem 0 0.7rem; font-size: 1.3rem; line-height: 1.2; letter-spacing: -0.01em; }
.founder-stage p { margin: 0; font-size: 1rem; color: var(--text-soft); line-height: 1.65; }

/* ---- 06 Philosophy statement block -------------------------------- */
.about-statement-block { max-width: 74rem; }
.about-statement-block__kicker {
	margin: 0; font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.4rem); font-weight: 640;
	color: var(--text-soft); letter-spacing: -0.015em;
}
.about-statement-block__big {
	margin: 0.5rem 0 clamp(2.5rem, 1.5rem + 3vw, 4rem);
	font-size: clamp(2.8rem, 1.8rem + 4.4vw, 4.75rem); font-weight: 780;
	line-height: 1.02; letter-spacing: -0.04em; color: var(--brand-700);
}
.about-statement-block__grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 1rem + 3vw, 4rem);
	align-items: start;
}
.about-statement-block__intro { font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem); color: var(--text-soft); }
.about-cases { list-style: none; margin: 0; padding: 0; }
.about-cases li {
	padding: 0.85rem 0; border-bottom: 1px solid var(--line);
	font-size: 1.1rem; color: var(--text); position: relative; padding-left: 1.6rem;
}
.about-cases li::before {
	content: "\2192"; position: absolute; left: 0; top: 0.85rem;
	color: var(--brand-500); font-weight: 700;
}
.about-statement-block__coda {
	margin-top: clamp(2rem, 1.5rem + 2vw, 3rem);
	font-size: 1.3rem; font-weight: 640; color: var(--text);
}

/* ---- 07 Beliefs -------------------------------------------------- */
.beliefs {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(2, 1fr);
	column-gap: clamp(2.5rem, 1rem + 5vw, 5.5rem); row-gap: 0;
	border-top: 2px solid var(--line-strong);
}
.beliefs__row {
	display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.5rem;
	padding: clamp(1.75rem, 1.25rem + 1.5vw, 2.5rem) 0;
	border-bottom: 1px solid var(--line); align-items: start;
}
.beliefs__no { font-size: 1.75rem; font-weight: 760; line-height: 1.1; color: var(--brand-300); letter-spacing: -0.03em; }
.beliefs__body h3 { margin: 0 0 0.55rem; font-size: clamp(1.2rem, 1.05rem + 0.55vw, 1.45rem); letter-spacing: -0.01em; }
.beliefs__body p { margin: 0; font-size: 1.05rem; color: var(--text-soft); }
@media (max-width: 900px) { .beliefs { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .beliefs__row { grid-template-columns: 1fr; gap: 0.4rem; } }

/* ---- 09 Engineering --------------------------------------------- */
.about-engine {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 1rem + 6vw, 5rem); align-items: start;
}
.about-engine__statement {
	margin: 0 0 1.5rem; font-size: clamp(1.8rem, 1.35rem + 2vw, 2.75rem);
	font-weight: 740; line-height: 1.1; letter-spacing: -0.025em;
}
.pathflow { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 0.9rem; }
.pathflow li {
	display: inline-flex; align-items: center; padding: 0.6rem 1.05rem;
	border: 1px solid var(--line-strong); border-radius: var(--r-pill);
	font-size: 0.98rem; font-weight: 600; color: var(--text-soft); background: var(--white);
}
.pathflow li:not(:last-child)::after { content: "\2192"; margin-left: 0.9rem; color: var(--brand-400); font-weight: 700; }

/* ---- 11 Industry selector ------------------------------------- */
.industry-selector {
	display: grid; grid-template-columns: 15rem 1fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
	align-items: stretch;
}
.industry-selector__tabs { display: flex; flex-direction: column; gap: 0.15rem; }
.industry-selector__tab {
	appearance: none; border: 0; background: none; font: inherit; cursor: pointer;
	text-align: left; padding: 0.85rem 1rem; border-radius: var(--r-md);
	font-size: 1.05rem; font-weight: 550; color: var(--text-soft);
	border-left: 2px solid transparent; transition: background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.industry-selector__tab:hover { color: var(--text); background: rgba(101, 71, 151, 0.05); }
.industry-selector__tab[aria-selected="true"] {
	color: var(--brand-700); font-weight: 650;
	background: rgba(101, 71, 151, 0.08); border-left-color: var(--brand-500);
}
.industry-selector__tab:focus-visible { outline: 2px solid var(--brand-400); outline-offset: 2px; }
.industry-selector__content { display: flex; flex-direction: column; }
.industry-selector__panels { flex: 1; }
.industry-selector__panel[hidden] { display: none; }
.industry-selector__panel h3 { margin: 0 0 0.85rem; font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.15rem); letter-spacing: -0.02em; }
.industry-selector__panel p { font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem); line-height: 1.6; color: var(--text-soft); max-width: 44ch; margin: 0 0 1.25rem; }
.industry-selector__shared { margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.industry-selector__shared .taglist { margin-top: 0.85rem; }

/* ---- 12 Capability grid -------------------------------------- */
.capgrid {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
	background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
}
.capgrid__item > a {
	display: block; height: 100%; padding: 1.6rem 1.5rem; background: var(--white);
	transition: background 0.2s var(--ease);
}
.capgrid__item > a:hover, .capgrid__item > a:focus-visible { background: var(--brand-50); outline: none; }
.capgrid__icon {
	display: grid; place-items: center; width: 2.5rem; height: 2.5rem; margin-bottom: 1rem;
	border-radius: var(--r-md); background: var(--brand-50); color: var(--brand-600);
}
.capgrid__icon .i { width: 1.25rem; height: 1.25rem; }
.capgrid__title { display: block; font-size: 1.1rem; font-weight: 650; letter-spacing: -0.01em; }
.capgrid__desc {
	display: block; margin-top: 0.5rem; font-size: 0.95rem; line-height: 1.55; color: var(--text-mute);
	max-height: 0; opacity: 0; overflow: hidden;
	transition: max-height 0.3s var(--ease), opacity 0.25s var(--ease), margin-top 0.3s var(--ease);
}
.capgrid__item > a:hover .capgrid__desc,
.capgrid__item > a:focus-visible .capgrid__desc { max-height: 6rem; opacity: 1; }
@media (hover: none) {
	.capgrid__desc { max-height: none; opacity: 1; margin-top: 0.5rem; }
}

/* ---- 13 Process flow --------------------------------------- */
.process {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
	position: relative;
}
.process__step { position: relative; padding: 2.5rem 1.5rem 0 0; }
.process__step::before {
	content: ""; position: absolute; left: 0; right: 0; top: 0.55rem; height: 2px; background: var(--line-strong);
}
.process__step::after {
	content: ""; position: absolute; left: 0; top: 0.15rem;
	width: 0.8rem; height: 0.8rem; border-radius: 50%;
	background: var(--white); border: 2px solid var(--brand-400);
}
.process__step:first-child::after { background: var(--brand-500); }
.process__no { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; color: var(--brand-500); }
.process__step h3 { margin: 0.5rem 0 0.5rem; font-size: 1.2rem; letter-spacing: -0.01em; }
.process__step p { margin: 0; font-size: 0.98rem; line-height: 1.6; color: var(--text-soft); }

/* ---- 15 Why grid ------------------------------------------ */
.whygrid {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem, 1rem + 4vw, 4.5rem);
}
.whygrid__item {
	display: grid; grid-template-columns: 3rem 1fr; gap: 1.25rem; align-items: start;
	padding: clamp(1.5rem, 1rem + 1.5vw, 2.25rem) 0; border-bottom: 1px solid var(--line);
}
.whygrid__item:nth-child(1), .whygrid__item:nth-child(2) { border-top: 1px solid var(--line-strong); }
.whygrid__icon {
	display: grid; place-items: center; width: 3rem; height: 3rem;
	border-radius: var(--r-md); background: var(--brand-50); color: var(--brand-600);
}
.whygrid__icon .i { width: 1.4rem; height: 1.4rem; }
.whygrid__item h3 { margin: 0.15rem 0 0.5rem; font-size: 1.2rem; letter-spacing: -0.01em; }
.whygrid__item p { margin: 0; font-size: 1.02rem; color: var(--text-soft); }

/* ---- 16 Founder statement -------------------------------- */
.founder-statement { margin: 0; max-width: 46rem; position: relative; padding-left: clamp(0px, -2rem + 6vw, 7rem); }
.founder-statement__mark {
	position: absolute; left: 0; top: 0.35rem;
	font-size: 2rem; font-weight: 780; letter-spacing: -0.02em;
	color: var(--brand-300);
}
.founder-statement blockquote {
	margin: 0; font-size: clamp(1.7rem, 1.25rem + 2.2vw, 2.9rem); font-weight: 300;
	line-height: 1.22; letter-spacing: -0.02em; color: var(--text);
}
.founder-statement blockquote::before { content: "\201C"; color: var(--brand-400); }
.founder-statement blockquote::after { content: "\201D"; color: var(--brand-400); }
.founder-statement figcaption { margin-top: 1.75rem; display: grid; gap: 0.15rem; }
.founder-statement__name { font-weight: 650; font-size: 1.05rem; }
.founder-statement__role { font-size: 0.98rem; color: var(--text-mute); }
@media (max-width: 900px) {
	.founder-statement { padding-left: 0; }
	.founder-statement__mark { position: static; display: block; margin-bottom: 1rem; }
}

/* ---- 17 Final CTA (light) ------------------------------- */
.about-cta {
	background: linear-gradient(180deg, #f7f4fc, #efeaf8);
	border-top: 1px solid var(--brand-100);
	text-align: center;
}
.about-cta__title {
	margin: 0.25rem 0 0; font-size: clamp(2rem, 1.5rem + 2.4vw, 3.1rem);
	font-weight: 760; letter-spacing: -0.025em; line-height: 1.1;
}
.about-cta__sub { margin: 1.1rem auto 0; max-width: 52ch; text-align: center; }
.about-cta__actions { justify-content: center; margin-top: 2rem; }

/* ==== Responsive ===================================================== */
@media (max-width: 1000px) {
	.about-hero__grid,
	.about-two,
	.about-two--wide-aside,
	.about-open,
	.about-statement-block__grid,
	.about-engine { grid-template-columns: 1fr; }
	.about-hero__visual { order: 2; max-width: 30rem; }
	.about-two__aside { max-width: 26rem; }
	.about-open .eyebrow { grid-column: auto; }
	.industry-selector { grid-template-columns: 1fr; }
	.industry-selector__tabs {
		flex-direction: row; flex-wrap: nowrap; overflow-x: auto; gap: 0.4rem;
		scrollbar-width: none; padding-bottom: 0.25rem;
	}
	.industry-selector__tabs::-webkit-scrollbar { display: none; }
	.industry-selector__tab { flex: 0 0 auto; border-left: 0; border-bottom: 2px solid transparent; border-radius: var(--r-pill); }
	.industry-selector__tab[aria-selected="true"] { border-left: 0; border-bottom-color: var(--brand-500); }
	.industry-selector__shared { grid-column: auto; }
	.capgrid { grid-template-columns: repeat(2, 1fr); }
	.process { grid-template-columns: 1fr 1fr; }
	.whygrid { grid-template-columns: 1fr; gap: 0; }
	.whygrid__item:nth-child(2) { border-top: 0; }
}

@media (max-width: 860px) {
	.founder-timeline__track {
		flex-direction: column; gap: 0;
		border-left: 2px solid var(--brand-200); margin-left: 1.35rem; overflow: visible;
	}
	.founder-stage {
		flex: none; width: 100%; border-top: 0; padding: 0 0 2.5rem 2.5rem;
	}
	.founder-stage:last-child { padding-bottom: 0; }
	.founder-stage__marker { top: -0.2rem; left: calc(-1.35rem - 1px); transform: translateX(-50%); }
	.founder-timeline__progress { display: none; }
}

@media (max-width: 620px) {
	.capgrid { grid-template-columns: 1fr; }
	.process { grid-template-columns: 1fr; }
	.process__step { padding: 0 0 1.75rem 2rem; }
	.process__step::before { left: 0.35rem; right: auto; top: 0; bottom: 0; width: 2px; height: auto; }
	.process__step:last-child::before { display: none; }
	.about-hero__title { font-size: clamp(2rem, 1.4rem + 4vw, 2.6rem); }
	.about-hero__title br { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.founder-timeline__progress > span { transition: none; }
	.caphub__ring { animation: none; }
}
