/* ==========================================================================
   100XD — globals.css
   Light-mode design system.

   Derived from a live audit of the four reference sites:
     highnote.com     warm off-white ground (#F5F3EB), 100px/105px display at
                      weight 400, concentric radial gradient hero, pill CTAs
     agent-media.ai   Manrope 700 at -0.04em tracking, floating pill nav,
                      GSAP/ScrollTrigger scroll choreography, word rotator
     crealo.app       Manrope body, 64px h1 at -0.012em, radius 1024px pills
     rothfinder.com   warm cream ground (#FBF7EF), GSAP, preloader gate

   The synthesis: warm off-white ground + Manrope + tight negative tracking +
   pill geometry + scroll-linked canvas, in 100XD blue/gold.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
	/* Ground — warm off-white, the midpoint of highnote #F5F3EB and
	   rothfinder #FBF7EF. THE CANVAS MUST MATCH THIS EXACTLY. */
	--ground:        #f7f5f1;
	--ground-raise:  #fffefb;
	--ground-sink:   #efece5;

	/* Ink */
	--ink:      #0a0e1a;
	--ink-80:   rgba(10, 14, 26, 0.80);
	--ink-60:   rgba(10, 14, 26, 0.60);
	--ink-45:   rgba(10, 14, 26, 0.45);
	--ink-30:   rgba(10, 14, 26, 0.30);
	--ink-12:   rgba(10, 14, 26, 0.12);
	--ink-07:   rgba(10, 14, 26, 0.07);

	/* Brand — eye-dropped from the 100XD mark */
	--blue-700: #0a4fd0;
	--blue-600: #0b5fea;
	--blue-500: #1a7bff;
	--blue-400: #4d9aff;
	--gold-500: #ffc107;
	--gold-400: #ffd34d;
	--navy:     #060d1a;

	/* Tints for wash + glow */
	--blue-wash: rgba(26, 123, 255, 0.10);
	--gold-wash: rgba(255, 193, 7, 0.14);

	--line:      var(--ink-12);
	--line-soft: var(--ink-07);

	/* Type */
	--font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI",
	             Inter, Helvetica, Arial, sans-serif;
	--font-mono: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;

	/* Fluid scale — refined 2027 standard */
	--fs-display: clamp(2.75rem, 6.2vw, 5.25rem);
	--fs-h1:      clamp(2.35rem, 4.8vw, 4.25rem);
	--fs-h2:      clamp(1.95rem, 3.2vw, 2.85rem);
	--fs-h3:      clamp(1.35rem, 2vw, 1.85rem);
	--fs-h4:      clamp(1.1rem, 1.35vw, 1.3rem);
	--fs-lede:    clamp(1.0625rem, 1.25vw, 1.25rem);
	--fs-body:    1.0625rem;
	--fs-sm:      0.9375rem;
	--fs-xs:      0.8125rem;
	--fs-kicker:  0.75rem;

	/* Rhythm */
	--gutter:     clamp(1.25rem, 4vw, 3rem);
	--max:        1320px;
	--max-narrow: 860px;
	--sec-y:      clamp(2.75rem, 5vw, 4.75rem);

	/* Geometry — crealo's 1024px pill, softened card radii */
	--r-pill: 999px;
	--r-lg:   26px;
	--r-md:   18px;
	--r-sm:   12px;

	/* Elevation — low-contrast, warm */
	--sh-sm: 0 1px 2px rgba(10, 14, 26, 0.04),
	         0 4px 14px rgba(10, 14, 26, 0.04);
	--sh-md: 0 2px 6px rgba(10, 14, 26, 0.05),
	         0 14px 40px rgba(10, 14, 26, 0.07);
	--sh-lg: 0 4px 12px rgba(10, 14, 26, 0.06),
	         0 30px 80px rgba(10, 14, 26, 0.10);

	/* Motion — the "expo out" curve that gives the reference sites their feel */
	--ease:      cubic-bezier(0.16, 1, 0.30, 1);
	--ease-io:   cubic-bezier(0.65, 0, 0.35, 1);
	--dur:       0.72s;
	--dur-slow:  1.05s;

	--nav-h: 72px;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: clip;
}

/* Lenis drives scrolling; native smooth would fight it. */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
	margin: 0;
	background: var(--ground);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: var(--fs-body);
	line-height: 1.6;
	font-weight: 400;
	letter-spacing: -0.011em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

h1, h2, h3, h4, h5 {
	margin: 0;
	font-weight: 500;
	line-height: 1.04;
	letter-spacing: -0.038em;   /* agent-media.ai's -0.04em */
	text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
img, svg, canvas, video { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

:focus-visible {
	outline: 2px solid var(--blue-600);
	outline-offset: 3px;
	border-radius: 4px;
}

::selection { background: var(--blue-500); color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.page,
main {
	position: relative;
	width: 100%;
	overflow-x: clip;
}

.wrap {
	width: 100%;
	max-width: var(--max);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.wrap--narrow { max-width: var(--max-narrow); }

.section,
.scrubsec,
.scrolly,
.panact,
.journey-showcase,
.finale {
	position: relative;
	isolation: isolate;
	clear: both;
}

.section { padding-block: var(--sec-y); }
.section--tight  { padding-block: clamp(1.75rem, 3.5vw, 3rem); }
.section--flush-top { padding-top: 0; }

/* Hairline separators, never a hard rule */
.section--ruled { border-top: 1px solid var(--line-soft); }

.grid { display: grid; gap: clamp(1rem, 2vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

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

/* Section head: kicker + title + intro, used across all major sections */
.shead {
	max-width: 62ch;
	margin-bottom: clamp(1.25rem, 2.5vw, 2.25rem);
}
.shead--center { margin-inline: auto; text-align: center; }
.shead__title {
	font-size: var(--fs-h2);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.16;
	margin-top: 0;
	margin-bottom: 0.85rem;
	max-width: 26ch;
}
.shead--center .shead__title { margin-inline: auto; }
.shead__intro {
	font-size: var(--fs-lede);
	color: var(--ink-60);
	line-height: 1.62;
	max-width: 58ch;
	margin-top: 0;
	margin-bottom: 0;
}
.shead--center .shead__intro { margin-inline: auto; }

/* --------------------------------------------------------------------------
   4. Type utilities
   -------------------------------------------------------------------------- */

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: var(--fs-kicker);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-45);
	margin-bottom: 0.95rem;
}

.kicker::before {
	content: "";
	width: 20px;
	height: 2px;
	border-radius: 1px;
	background: linear-gradient(90deg, var(--blue-500), var(--gold-500));
}

.kicker--plain::before { display: none; }

.display  { font-size: var(--fs-display); letter-spacing: -0.04em; line-height: 1.05; }
.t-h1     { font-size: var(--fs-h1); letter-spacing: -0.035em; line-height: 1.12; font-weight: 700; }
.t-h2     { font-size: var(--fs-h2); letter-spacing: -0.03em; line-height: 1.16; font-weight: 700; max-width: 28ch; }
.t-h3     { font-size: var(--fs-h3); letter-spacing: -0.025em; line-height: 1.25; font-weight: 600; }
.t-h4     { font-size: var(--fs-h4); letter-spacing: -0.015em; line-height: 1.35; font-weight: 600; }
.t-lede   { font-size: var(--fs-lede); color: var(--ink-60); line-height: 1.62; max-width: 58ch; }
.t-sm     { font-size: var(--fs-sm); line-height: 1.55; }
.t-muted  { color: var(--ink-60); line-height: 1.6; }
.t-faint  { color: var(--ink-45); }
.t-center { text-align: center; }

.t-grad {
	background: linear-gradient(104deg, var(--blue-600) 8%, var(--blue-400) 46%, var(--gold-500) 96%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* Legal / disclaimer note — required repeatedly by the brief */
.note {
	font-size: var(--fs-xs);
	line-height: 1.55;
	color: var(--ink-45);
	padding-left: 0.9rem;
	border-left: 2px solid var(--gold-500);
}

/* --------------------------------------------------------------------------
   5. Buttons — pill geometry
   -------------------------------------------------------------------------- */

.btn {
	--btn-bg: var(--ink);
	--btn-fg: #fff;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.95rem 1.7rem;
	border-radius: var(--r-pill);
	background: var(--btn-bg);
	color: var(--btn-fg);
	font-size: var(--fs-sm);
	font-weight: 600;
	letter-spacing: -0.012em;
	white-space: nowrap;
	overflow: hidden;
	isolation: isolate;
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
	will-change: transform;
}

/* Sheen wipe on hover — the highnote CTA behaviour */
.btn::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(100deg, var(--blue-600), var(--blue-500) 55%, var(--gold-500));
	opacity: 0;
	transition: opacity 0.4s var(--ease);
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(0); }

.btn__arrow { transition: transform 0.4s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--ghost {
	--btn-bg: transparent;
	--btn-fg: var(--ink);
	box-shadow: inset 0 0 0 1px var(--ink-12);
}
.btn--ghost:hover { --btn-fg: #fff; box-shadow: inset 0 0 0 1px transparent, var(--sh-md); }

.btn--light {
	--btn-bg: var(--ground-raise);
	--btn-fg: var(--ink);
	box-shadow: var(--sh-sm);
}
.btn--light:hover { --btn-fg: #fff; }

.btn--sm { padding: 0.62rem 1.15rem; font-size: var(--fs-xs); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: var(--fs-body); }

/* Text link with animated underline */
.link-u {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 600;
	font-size: var(--fs-sm);
	color: var(--blue-600);
	background-image: linear-gradient(currentColor, currentColor);
	background-size: 0% 1px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 0.45s var(--ease);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.link-u:hover { background-size: 100% 1px; }

/* --------------------------------------------------------------------------
   6. Ambient gradient field
   The seamless-blend requirement: the hero canvas is TRANSPARENT and this
   field shows through it, so frame edges are structurally invisible rather
   than colour-matched by hand.
   -------------------------------------------------------------------------- */

.field {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(58% 44% at 50% 8%,  var(--blue-wash) 0%, transparent 68%),
		radial-gradient(44% 36% at 84% 24%, var(--gold-wash) 0%, transparent 70%),
		radial-gradient(50% 40% at 10% 62%, rgba(26,123,255,0.07) 0%, transparent 72%),
		var(--ground);
}

/* Concentric rings — the highnote hero signature, at low opacity */
.field::after {
	content: "";
	position: absolute;
	left: 50%;
	top: -32vh;
	width: 145vmax;
	aspect-ratio: 1;
	transform: translateX(-50%);
	border-radius: 50%;
	background: repeating-radial-gradient(
		circle at center,
		transparent 0 62px,
		rgba(26, 123, 255, 0.030) 62px 63px
	);
	mask-image: radial-gradient(circle at center, #000 24%, transparent 66%);
	-webkit-mask-image: radial-gradient(circle at center, #000 24%, transparent 66%);
	opacity: 0.85;
}

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

/* Fine grain — kills banding in the large gradient */
.grain {
	position: fixed;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	opacity: 0.03;
	mix-blend-mode: multiply;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   7. Preloader — gate the scroll animation until frames are decoded
   -------------------------------------------------------------------------- */

.loader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-content: center;
	justify-items: center;
	gap: 1.6rem;
	background: var(--ground);
	transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}

.loader.is-done { opacity: 0; visibility: hidden; }

.loader .brand { --logo-h: 34px; }

.loader__track {
	width: 190px;
	height: 2px;
	background: var(--ink-12);
	border-radius: var(--r-pill);
	overflow: hidden;
}

.loader__bar {
	height: 100%;
	width: 0%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--blue-600), var(--gold-500));
	transition: width 0.3s var(--ease);
}

.loader__pct {
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	color: var(--ink-45);
	font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   8. Navigation — floating pill (agent-media.ai)
   -------------------------------------------------------------------------- */

.nav {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 500;
	padding: 1rem var(--gutter);
	transition: transform 0.5s var(--ease);
}

.nav.is-hidden { transform: translateY(calc(-100% - 1rem)); }

.nav__inner {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	max-width: var(--max);
	margin-inline: auto;
	padding: 0.5rem 0.5rem 0.5rem 1.25rem;
	border-radius: var(--r-pill);
	transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease),
	            backdrop-filter 0.45s var(--ease);
}

.nav.is-stuck .nav__inner {
	background: rgba(255, 254, 251, 0.72);
	backdrop-filter: saturate(180%) blur(18px);
	-webkit-backdrop-filter: saturate(180%) blur(18px);
	box-shadow: var(--sh-sm), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

/* --------------------------------------------------------------------------
   Brand logo

   The mark is fixed — gold arrow, blue XD. Only the "100" changes, and it is
   drawn with currentColor, so placing it is a matter of setting `color`:
   ink on a light ground, white on a dark one.
   -------------------------------------------------------------------------- */

.brand {
	display: inline-flex;
	align-items: center;
	flex: none;
}

.brand img,
.brand__svg {
	height: var(--logo-h, 32px);
	width: auto;
	max-width: 100%;
	object-fit: contain;
	display: block;
}

.brand--on-light { color: var(--ink); }
.brand--on-dark  { color: #fff; }

.nav .brand { margin-right: auto; --logo-h: 32px; }
@media (max-width: 640px) { .nav .brand { --logo-h: 26px; } }
.foot .brand { --logo-h: 34px; }

.nav__menu { display: flex; align-items: center; gap: 0.25rem; }

.nav__item { position: relative; }

.nav__link {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.55rem 0.8rem;
	border-radius: var(--r-pill);
	font-size: var(--fs-sm);
	font-weight: 500;
	color: var(--ink-80);
	transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.nav__link:hover,
.nav__item.is-open .nav__link { background: var(--ink-07); color: var(--ink); }

.nav__chev { width: 9px; opacity: 0.4; transition: transform 0.3s var(--ease); }
.nav__item.is-open .nav__chev { transform: rotate(180deg); }

/* Mega dropdown */
.nav__panel {
	position: absolute;
	top: calc(100% + 0.75rem);
	left: 50%;
	translate: -50% 0;
	min-width: 320px;
	padding: 0.6rem;
	border-radius: var(--r-lg);
	background: rgba(255, 254, 251, 0.94);
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	box-shadow: var(--sh-lg), inset 0 0 0 1px rgba(255, 255, 255, 0.7);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.35s var(--ease), transform 0.35s var(--ease),
	            visibility 0.35s;
}

.nav__item.is-open .nav__panel {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav__panel a {
	display: block;
	padding: 0.7rem 0.85rem;
	border-radius: var(--r-md);
	transition: background 0.25s var(--ease);
}
.nav__panel a:hover { background: var(--blue-wash); }
.nav__panel strong { display: block; font-size: var(--fs-sm); font-weight: 600; }
.nav__panel span   { font-size: var(--fs-xs); color: var(--ink-45); }

/* Mega Menu (Servicebird Architecture) */
.nav__item--mega {
	position: static;
}

.nav__item--mega.is-open .nav__link--services,
.nav__link--services:hover {
	background: rgba(18, 115, 255, 0.09);
	color: var(--blue-600);
}

.nav__panel--mega {
	position: absolute;
	top: calc(100% + 0.65rem);
	left: 50%;
	translate: -50% 0;
	width: min(1040px, calc(100vw - 2.5rem));
	max-width: 1040px;
	padding: 0;
	border-radius: 20px;
	background: #ffffff;
	border: 1px solid rgba(226, 232, 240, 0.95);
	box-shadow: 0 24px 60px -12px rgba(15, 23, 42, 0.16), 0 0 1px rgba(15, 23, 42, 0.12);
	overflow: hidden;
	z-index: 1000;
}

.mega-menu {
	display: grid;
	grid-template-columns: 310px 1fr;
	background: #ffffff;
	text-align: left;
}

.mega-menu__left {
	padding: 1.6rem 1.4rem;
	background: #fbfcfe;
	border-right: 1px solid #edf2f7;
	display: flex;
	flex-direction: column;
}

.mega-label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--blue-600);
	margin-bottom: 0.65rem;
}

.mega-label--mt {
	margin-top: 1.6rem;
}

.mega-active-card {
	display: flex !important;
	align-items: flex-start;
	gap: 0.85rem;
	background: #eff6ff !important;
	border: 1px solid rgba(37, 99, 235, 0.16);
	border-radius: 12px !important;
	padding: 0.85rem 0.95rem !important;
	text-decoration: none;
	transition: all 0.25s ease;
}

.mega-active-card:hover {
	background: #e5edff !important;
	border-color: rgba(37, 99, 235, 0.35);
	transform: translateY(-1px);
}

.mega-active-card__icon {
	width: 36px;
	height: 36px;
	background: #ffffff;
	color: var(--blue-600);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 1px 3px rgba(37, 99, 235, 0.12);
}

.mega-active-card__content {
	flex: 1;
	min-width: 0;
}

.mega-active-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}

.mega-active-card__title {
	font-size: 0.86rem;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.25;
}

.mega-active-card__desc {
	font-size: 0.74rem;
	color: var(--ink-60);
	margin-top: 0.2rem;
	line-height: 1.35;
}

.mega-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.18rem 0.55rem;
	border-radius: 9999px;
	font-size: 0.68rem;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
}

.mega-badge--active {
	background: var(--blue-600);
	color: #ffffff;
}

.mega-badge--live {
	background: rgba(16, 185, 129, 0.12);
	color: #059669;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 600;
}

.mega-badge__dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #10b981;
	box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}

.mega-badge--soon {
	background: #f1f5f9;
	color: #64748b;
}

.mega-pipeline {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.mega-pipeline li {
	margin: 0;
	padding: 0;
}

.mega-pipeline__item {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	padding: 0.5rem 0.65rem !important;
	border-radius: 8px !important;
	background: transparent !important;
	border: 1px solid transparent;
	text-decoration: none !important;
	transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
}

.mega-pipeline__item:hover {
	background: #eff6ff !important;
	border-color: rgba(37, 99, 235, 0.15);
	transform: translateX(2px);
}

.mega-pipeline__item:hover .mega-pipeline__name {
	color: var(--blue-600);
}

.mega-pipeline__name {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ink-80);
	transition: color 0.2s ease;
}

.mega-menu__right {
	padding: 1.6rem 1.85rem;
	display: flex;
	flex-direction: column;
}

.mega-banner {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	margin-bottom: 1.35rem;
	padding-bottom: 1.15rem;
	border-bottom: 1px solid #f1f5f9;
}

.mega-banner__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	background: #fef3c7;
	color: #92400e;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.22rem 0.55rem;
	border-radius: 9999px;
	flex-shrink: 0;
	margin-top: 0.15rem;
}

.mega-banner__badge--live {
	background: #ecfdf5;
	color: #065f46;
}

.mega-banner__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #f59e0b;
}

.mega-banner__dot--emerald {
	background: #10b981;
	box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
}

.mega-banner__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	line-height: 1.25;
}

.mega-banner__sub {
	font-size: 0.77rem;
	color: var(--ink-60);
	margin: 0.2rem 0 0;
	line-height: 1.4;
}

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

.mega-cluster {
	display: flex;
	flex-direction: column;
}

.mega-cluster__head {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 0.55rem;
}

.mega-cluster__icon {
	width: 26px;
	height: 26px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mega-cluster__icon--blue   { background: #eff6ff; color: #2563eb; }
.mega-cluster__icon--amber  { background: #fffbeb; color: #d97706; }
.mega-cluster__icon--purple { background: #faf5ff; color: #7c3aed; }
.mega-cluster__icon--teal   { background: #f0fdfa; color: #0d9488; }
.mega-cluster__icon--rose   { background: #fff1f2; color: #e11d48; }
.mega-cluster__icon--indigo { background: #eef2ff; color: #4f46e5; }

.mega-cluster__title-link {
	display: inline-flex !important;
	align-items: center;
	gap: 0.35rem;
	padding: 0 !important;
	background: none !important;
	text-decoration: none !important;
	color: var(--ink);
	cursor: pointer;
	transition: color 0.2s ease;
}

.mega-cluster__title-link:hover {
	color: var(--blue-600) !important;
}

.mega-cluster__arrow {
	opacity: 0;
	transform: translateX(-4px);
	transition: all 0.22s ease;
	color: var(--blue-600);
}

.mega-cluster__title-link:hover .mega-cluster__arrow {
	opacity: 1;
	transform: translateX(0);
}

.mega-cluster__title {
	font-size: 0.84rem;
	font-weight: 700;
	color: inherit;
	line-height: 1.25;
}

.mega-cluster__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.mega-cluster__list li {
	position: relative;
	padding-left: 0.75rem;
	font-size: 0.74rem;
	color: var(--ink-60);
	line-height: 1.35;
}

.mega-cluster__list li::before {
	content: "";
	position: absolute;
	left: 0.1rem;
	top: 0.42rem;
	width: 3.5px;
	height: 3.5px;
	border-radius: 50%;
	background: #94a3b8;
}

.mega-cluster__list a {
	display: inline-block !important;
	padding: 0.1rem 0 !important;
	border-radius: 0 !important;
	background: none !important;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease, transform 0.2s ease;
}

.mega-cluster__list a:hover {
	color: var(--blue-600) !important;
	transform: translateX(2px);
}

.mega-footer {
	margin-top: 1.35rem;
	padding-top: 0.85rem;
	border-top: 1px solid #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--ink-60);
}

.mega-footer__link {
	display: inline-flex !important;
	align-items: center;
	gap: 0.3rem;
	padding: 0.25rem 0.65rem !important;
	border-radius: var(--r-pill) !important;
	background: rgba(18, 115, 255, 0.08) !important;
	color: var(--blue-600) !important;
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.2s ease;
}

.mega-footer__link:hover {
	background: var(--blue-600) !important;
	color: #ffffff !important;
}

.nav__actions { display: flex; align-items: center; gap: 0.5rem; }

.nav__burger {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: var(--r-pill);
	place-items: center;
	background: var(--ink-07);
}
.nav__burger span {
	display: block;
	width: 16px;
	height: 1.5px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav__burger span + span { margin-top: 4px; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
	position: fixed;
	inset: 0;
	z-index: 499;
	padding: calc(var(--nav-h) + 2.5rem) var(--gutter) 2.5rem;
	background: var(--ground);
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s var(--ease), visibility 0.4s;
}
body.menu-open .drawer { opacity: 1; visibility: visible; }
.drawer__group { border-bottom: 1px solid var(--line-soft); padding-block: 1rem; }
.drawer__group > a { font-size: 1.6rem; font-weight: 500; letter-spacing: -0.035em; }
.drawer__sub { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.drawer__sub a {
	padding: 0.4rem 0.8rem;
	border-radius: var(--r-pill);
	background: var(--ink-07);
	font-size: var(--fs-xs);
}
.drawer__cta { display: grid; gap: 0.6rem; margin-top: 2rem; }
.drawer__cta .btn { width: 100%; }

@media (max-width: 1100px) {
	.nav__menu, .nav__actions .btn--ghost { display: none; }
	.nav__burger { display: grid; }
}
@media (max-width: 480px) {
	.nav { padding: 0.6rem 0.75rem; }
	.nav__inner {
		padding: 0.35rem 0.35rem 0.35rem 0.85rem;
		gap: 0.5rem;
	}
	.nav__actions { gap: 0.35rem; }
	.nav__actions .btn {
		padding: 0.45rem 0.8rem;
		font-size: 0.78rem;
	}
	.nav__burger {
		width: 38px;
		height: 38px;
	}
}

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */

.hero {
	position: relative;
	padding-top: calc(var(--nav-h) + clamp(3.5rem, 9vw, 8rem));
	padding-bottom: clamp(3rem, 7vw, 6rem);
	text-align: center;
}

.hero__eyebrow {
	font-size: var(--fs-kicker);
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-45);
	margin-bottom: 1.6rem;
}

.hero__title { font-size: var(--fs-display); margin-bottom: 1.6rem; }

/* Word rotator — agent-media.ai's headline mechanic */
.rotator {
	display: inline-grid;
	justify-items: start;   /* words size to their own text, not the widest */
	vertical-align: bottom;
	overflow: hidden;
	text-align: left;
	/* Room for descenders, which overflow:hidden would otherwise shave. */
	padding-bottom: 0.14em;
	margin-bottom: -0.14em;
	/* Width is driven by JS so the line closes up on short words instead of
	   holding a gap sized to the longest one. */
	transition: width 0.55s var(--ease);
}

.rotator__word {
	grid-area: 1 / 1;
	opacity: 0;
	transform: translateY(0.6em);
	transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
	white-space: nowrap;

	/* The gradient lives on each WORD, never on .rotator. background-clip:text
	   on the container would clip to the glyphs of every child at once —
	   opacity:0 does not remove a child's glyphs from that clip path — and all
	   four words ghost on top of each other. */
	background: linear-gradient(104deg, var(--blue-600) 8%, var(--blue-400) 46%, var(--gold-500) 96%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.rotator__word.is-in  { opacity: 1; transform: translateY(0); }
.rotator__word.is-out { opacity: 0; transform: translateY(-0.6em); }

.hero__lede {
	font-size: var(--fs-lede);
	font-weight: 500;
	margin-inline: auto;
	margin-bottom: 1rem;
	max-width: 46ch;
}

.hero__body {
	font-size: var(--fs-body);
	color: var(--ink-60);
	max-width: 58ch;
	margin-inline: auto;
	margin-bottom: 2.25rem;
	line-height: 1.62;
}

.hero__cta { justify-content: center; margin-bottom: 3rem; }

.hero__trust {
	font-size: var(--fs-xs);
	color: var(--ink-45);
	letter-spacing: 0.01em;
	max-width: 62ch;
	margin-inline: auto;
}

/* --------------------------------------------------------------------------
   9b. The Opportunity Orbit

   The live section under the hero. Eight service nodes turn around a core
   representing the visitor's profile; one auto-focuses at a time and its real
   contents appear in the detail panel.

   The rotation is three nested transforms:
     .orbit__track  shared spin, one animation for the whole ring
     .orbit__arm    static rotate(--a) translate(R), places the node
     .orbit__hold   counter-spin, so labels never turn upside down
   -------------------------------------------------------------------------- */

.orbit { padding-block: clamp(1.75rem, 3.5vw, 3.25rem) var(--sec-y); }

.orbit__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}

/* ---- stage ---- */

.orbit__stage {
	position: relative;
	width: 100%;
	max-width: 600px;
	margin-inline: auto;
	aspect-ratio: 1;
	--r: 41.5%;               /* node orbit radius, matches the r=252/600 ring */
}

.orbit__rings { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }

.orbit__ring {
	fill: none;
	stroke: var(--ink-12);
	stroke-width: 1;
}
.orbit__ring--mid { stroke: var(--ink-07); stroke-dasharray: 3 7; }
.orbit__ring--in  { stroke: var(--ink-07); }

.orbit__spoke {
	stroke: var(--ink-12);
	stroke-width: 1;
	stroke-dasharray: 2 8;
	opacity: 0.5;
	transition: stroke 0.5s var(--ease), opacity 0.5s var(--ease);
}
.orbit__spoke.is-on { stroke: var(--blue-500); opacity: 1; stroke-dasharray: none; }

/* Shared rotation. The spokes group and the node track run the same
   animation, so the lines stay pinned to their nodes. */
@keyframes orbitSpin    { to { transform: rotate(360deg); } }
@keyframes orbitCounter { to { transform: rotate(-360deg); } }

.orbit__spokes {
	transform-box: view-box;          /* resolve the origin in viewBox units */
	transform-origin: 300px 300px;
	animation: orbitSpin 64s linear infinite;
}

.orbit__track {
	position: absolute;
	inset: 0;
	animation: orbitSpin 64s linear infinite;
}

.orbit.is-paused .orbit__track,
.orbit.is-paused .orbit__spokes,
.orbit.is-paused .orbit__hold { animation-play-state: paused; }

/* The arm fills the stage and simply turns. Placement on the circle comes
   from .orbit__hold sitting at (50%, 50% - radius) inside it — a percentage
   translate would resolve against the arm's own box, which is why the arm
   must be full-size rather than a zero-size point. */
.orbit__arm {
	position: absolute;
	inset: 0;
	transform: rotate(var(--a));
	pointer-events: none;
}

.orbit__hold {
	position: absolute;
	left: 50%;
	top: calc(50% - var(--r));
	width: 0;
	height: 0;
	/* Cancel the track's turn so the pill never rotates with the ring. */
	animation: orbitCounter 64s linear infinite;
}

.orbit__node {
	position: absolute;
	left: 50%;
	top: 50%;
	pointer-events: auto;
	display: grid;
	justify-items: center;
	gap: 0.3rem;
	width: 92px;
	padding: 0.7rem 0.5rem 0.6rem;
	border-radius: var(--r-md);
	background: var(--ground-raise);
	box-shadow: var(--sh-sm), inset 0 0 0 1px var(--line-soft);
	/* Undo the arm's own tilt so the pill sits square to the page. */
	transform: translate(-50%, -50%) rotate(calc(-1 * var(--a)));
	transition: box-shadow 0.45s var(--ease), background 0.45s var(--ease),
	            color 0.45s var(--ease), scale 0.45s var(--ease);
	cursor: pointer;
}

.orbit__node:hover { scale: 1.06; box-shadow: var(--sh-md); }

.orbit__node.is-on {
	background: linear-gradient(140deg, var(--blue-600), var(--blue-500));
	color: #fff;
	scale: 1.12;
	box-shadow: 0 10px 30px rgba(11, 95, 234, 0.30), inset 0 0 0 1px transparent;
}

.orbit__ico { display: grid; place-items: center; }
.orbit__ico .ico { width: 21px; height: 21px; }

.orbit__label {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1.15;
	text-align: center;
}

/* ---- core ---- */

.orbit__core {
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
	z-index: 2;
	display: grid;
	justify-items: center;
	gap: 0.45rem;
	width: 43%;
	padding: 1.2rem 1rem;
	border-radius: 50%;
	aspect-ratio: 1;
	align-content: center;
	text-align: center;
	background:
		radial-gradient(70% 70% at 50% 30%, rgba(255,255,255,0.95), rgba(255,255,255,0.72)),
		var(--ground-raise);
	box-shadow: var(--sh-md), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.orbit__logo { --logo-h: clamp(20px, 3.4vw, 30px); }

.orbit__core-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.2;
	max-width: 12ch;
}
.orbit__core-sub {
	font-size: 0.625rem;
	color: var(--ink-45);
	line-height: 1.3;
	max-width: 16ch;
}

/* Expanding rings out of the core — the "live" tell that the system is
   continuously matching, even while the ring is paused. */
.orbit__pulse {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid var(--blue-500);
	opacity: 0;
	animation: orbitPulse 4.2s var(--ease-io) infinite;
	pointer-events: none;
}
.orbit__pulse--b { animation-delay: 2.1s; }

@keyframes orbitPulse {
	0%   { transform: scale(1);    opacity: 0.45; }
	70%  { opacity: 0; }
	100% { transform: scale(2.15); opacity: 0; }
}

/* ---- detail panel ---- */

.orbit__detail { position: relative; min-height: 320px; }

.orbit__panel { display: grid; justify-items: start; gap: 0.85rem; }
.orbit__panel[hidden] { display: none; }
.orbit__panel.is-on { animation: panelIn 0.55s var(--ease); }

.orbit__panel-n {
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	color: var(--ink-30);
	letter-spacing: 0.08em;
}

.orbit__panel-title { font-size: var(--fs-h3); font-weight: 600; letter-spacing: -0.035em; }
.orbit__panel-lede  { font-size: var(--fs-h4); font-weight: 500; }
.orbit__panel-body  { font-size: var(--fs-sm); color: var(--ink-60); line-height: 1.58; }

.orbit__panel-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.4rem 1.25rem;
	width: 100%;
}
@media (max-width: 480px) { .orbit__panel-list { grid-template-columns: minmax(0, 1fr); } }

.orbit__panel-list li {
	display: flex;
	align-items: baseline;
	gap: 0.55rem;
	font-size: var(--fs-sm);
	color: var(--ink-60);
	padding-block: 0.22rem;
}
.orbit__panel-list li::before {
	content: "";
	width: 5px; height: 5px;
	flex: none;
	border-radius: 50%;
	background: var(--blue-500);
	opacity: 0.55;
}
.orbit__panel-list li.is-more { color: var(--ink-30); font-style: italic; }
.orbit__panel-list li.is-more::before { opacity: 0; }

/* ---- ticks ---- */

.orbit__ticks { display: flex; gap: 0.4rem; margin-top: 1.75rem; }

.orbit__tick {
	position: relative;
	width: 30px;
	height: 3px;
	border-radius: 3px;
	background: var(--ink-12);
	overflow: hidden;
	transition: background 0.4s var(--ease);
}
.orbit__tick:hover { background: var(--ink-30); }

.orbit__tick-fill {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--blue-600), var(--gold-500));
	transform: scaleX(0);
	transform-origin: left;
}
/* The fill duration is the dwell time; JS owns the value. */
.orbit__tick.is-on .orbit__tick-fill {
	animation: tickFill var(--dwell, 5200ms) linear forwards;
}
.orbit.is-paused .orbit__tick-fill { animation-play-state: paused; }

@keyframes tickFill { to { transform: scaleX(1); } }

/* ---- responsive ---- */

@media (max-width: 900px) {
	.orbit__layout { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
	.orbit__stage { max-width: 420px; }
	.orbit__node { width: 78px; padding: 0.55rem 0.4rem; }
	.orbit__label { font-size: 0.625rem; }
	.orbit__detail { min-height: 0; }
	.orbit__ticks { justify-content: center; }
	.orbit__panel { justify-items: center; text-align: center; }
	.orbit__panel-list { max-width: 30rem; margin-inline: auto; }
}

@media (max-width: 420px) {
	.orbit__stage { max-width: 320px; }
	.orbit__node { width: 64px; border-radius: var(--r-sm); }
	.orbit__ico .ico { width: 17px; height: 17px; }
	.orbit__label { font-size: 0.5625rem; }
	.orbit__core-label { font-size: 0.6875rem; }
	.orbit__core-sub { display: none; }
}

/* Reduced motion: hold the ring still. The section still works — the panel
   cycles, the ticks advance, nothing spins. */
@media (prefers-reduced-motion: reduce) {
	.orbit__track, .orbit__spokes, .orbit__hold, .orbit__pulse { animation: none; }
	.orbit__tick.is-on .orbit__tick-fill { animation: none; transform: scaleX(1); }
}

/* --------------------------------------------------------------------------
   10. Scrollytelling — sticky canvas
   -------------------------------------------------------------------------- */

.scrolly {
	position: relative;

	/*
	 * Was 400vh. At 1440x900 that is a 3,600px runway for four beats, so
	 * between them you scroll through long stretches where the beat sits
	 * centred and the whole lower half of the sticky stage is empty — which
	 * reads as a large gap between sections rather than as a slow reveal.
	 *
	 * 260vh keeps the full explode/reassemble arc and cuts roughly 1,100px of
	 * dead scroll out of the middle of the page.
	 */
	height: 260vh;
	margin-block: clamp(2rem, 5vw, 5rem);
}

.scrolly__stage {
	position: sticky;
	top: 0;
	height: 100vh;
	height: 100svh;
	width: 100%;
	display: grid;
	place-items: center;
	overflow: hidden;
}

/* Transparent canvas — the .field gradient reads straight through it, so the
   frame edge can never be seen. Nothing to colour-match. */
.scrolly__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	object-fit: contain;
}

.scrolly__overlays {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--max);
	height: 100%;
	margin-inline: auto;
	padding-inline: var(--gutter);
	pointer-events: none;
}

.beat {
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	max-width: 34rem;
	opacity: 0;
	transform: translateY(1.5rem);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
	will-change: opacity, transform;
}

.beat.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }

.beat--center {
	left: 50%;
	translate: -50% -50%;
	text-align: center;
	max-width: 40rem;
}

/*
 * The centre beats need the same scrim the side beats get.
 *
 * Without it the closing beat's two CTAs land half on the painted plate and
 * half off it, which reads as buttons sticking out of the artwork rather than
 * copy sitting over it. The scrim gives the whole block one ground to sit on,
 * so the plate edge stops cutting through it.
 */
.beat--center::before {
	content: "";
	position: absolute;
	inset: -2.5rem -3rem;
	z-index: -1;
	border-radius: 2rem;
	background: radial-gradient(
		62% 62% at 50% 50%,
		var(--ground) 0%,
		rgba(247, 245, 241, 0.86) 48%,
		transparent 78%);
	pointer-events: none;
}

.beat--left  { left: var(--gutter); text-align: left; }
.beat--right { right: var(--gutter); text-align: right; }

/* Side beats sit over the artwork, so give them a soft scrim in the page's
   own ground colour — enough to hold contrast, not enough to read as a box. */
.beat--left::before,
.beat--right::before {
	content: "";
	position: absolute;
	inset: -2.5rem -3.5rem;
	z-index: -1;
	background: radial-gradient(62% 66% at var(--scrim-x, 30%) 50%,
		rgba(247, 245, 241, 0.94) 30%, rgba(247, 245, 241, 0) 78%);
}
.beat--right::before { --scrim-x: 70%; }

.beat__title {
	font-size: clamp(1.75rem, 3.4vw, 3.1rem);
	margin-bottom: 0.9rem;
}

.beat__body {
	font-size: var(--fs-body);
	color: var(--ink-60);
	line-height: 1.6;
}

.beat__cta { margin-top: 1.6rem; }
.beat--center .beat__cta { justify-content: center; }
.beat--right  .beat__cta { justify-content: flex-end; }

/* On phones and tablets (<=860px), collapse the 400vh sticky runway into clean document flow
   so beats and canvas never overlap or bleed into adjacent sections (#model / #future-map) */
@media (max-width: 860px) {
	.scrolly {
		height: auto !important;
		margin-block: clamp(2rem, 4vw, 3.5rem) !important;
		overflow: visible !important;
	}
	.scrolly__stage {
		position: relative !important;
		top: auto !important;
		height: auto !important;
		min-height: auto !important;
		display: flex !important;
		flex-direction: column !important;
		gap: 2rem !important;
		overflow: visible !important;
	}
	.scrolly__canvas {
		position: relative !important;
		width: 100% !important;
		height: clamp(260px, 45vh, 380px) !important;
		margin: 0 auto !important;
		display: block !important;
	}
	.scrolly__overlays {
		position: relative !important;
		height: auto !important;
		padding-inline: var(--gutter) !important;
		padding-block: 1rem 2rem !important;
		display: flex !important;
		flex-direction: column !important;
		gap: 1.5rem !important;
		pointer-events: auto !important;
	}
	.scrolly__overlays .beat {
		position: relative !important;
		top: auto !important;
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		translate: none !important;
		transform: none !important;
		opacity: 1 !important;
		max-width: 100% !important;
		text-align: center !important;
		pointer-events: auto !important;
		background: var(--ground-raise) !important;
		border-radius: var(--r-lg) !important;
		padding: clamp(1.5rem, 4vw, 2rem) clamp(1.25rem, 3vw, 1.75rem) !important;
		box-shadow: var(--sh-sm), inset 0 0 0 1px var(--line-soft) !important;
	}
	.scrolly__overlays .beat--left::before,
	.scrolly__overlays .beat--right::before {
		display: none !important;
	}
	.scrolly__overlays .beat__cta {
		justify-content: center !important;
	}
	.scroll-hint,
	.scrolly__rail {
		display: none !important;
	}
}

/* Scroll hint */
.scroll-hint {
	position: absolute;
	left: 50%;
	bottom: 2.2rem;
	translate: -50% 0;
	z-index: 3;
	display: grid;
	justify-items: center;
	gap: 0.5rem;
	font-size: var(--fs-xs);
	color: var(--ink-30);
	transition: opacity 0.4s var(--ease);
}
.scroll-hint.is-gone { opacity: 0; }
.scroll-hint__rail {
	width: 1px;
	height: 34px;
	background: linear-gradient(var(--ink-30), transparent);
}

/* Progress rail down the side of the scrolly */
.scrolly__rail {
	position: absolute;
	right: clamp(0.75rem, 2vw, 1.75rem);
	top: 50%;
	translate: 0 -50%;
	z-index: 3;
	display: grid;
	gap: 0.55rem;
}
.scrolly__rail b {
	width: 2px;
	height: 26px;
	border-radius: 2px;
	background: var(--ink-12);
	transition: background 0.4s var(--ease), height 0.4s var(--ease);
}
.scrolly__rail b.is-on { background: var(--blue-600); height: 38px; }
@media (max-width: 860px) { .scrolly__rail { display: none; } }

/* --------------------------------------------------------------------------
   11. Cards
   -------------------------------------------------------------------------- */

.card {
	position: relative;
	padding: clamp(1.5rem, 2.4vw, 2.15rem);
	border-radius: var(--r-lg);
	background: var(--ground-raise);
	box-shadow: var(--sh-sm), inset 0 0 0 1px rgba(255, 255, 255, 0.55);
	transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
	overflow: hidden;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

/* Top edge lights up on hover */
.card::before {
	content: "";
	position: absolute;
	inset-inline: 0;
	top: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--blue-600), var(--gold-500));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.6s var(--ease);
}
.card:hover::before { transform: scaleX(1); }

.card__n {
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	color: var(--ink-30);
	letter-spacing: 0.08em;
	margin-bottom: 1rem;
	display: block;
}

.card__title { font-size: var(--fs-h4); font-weight: 600; margin-bottom: 0.85rem; }
.card__body  { font-size: var(--fs-sm); color: var(--ink-60); line-height: 1.58; }

.card__list { display: grid; gap: 0.45rem; margin-block: 1.1rem; }
.card__list li {
	position: relative;
	padding-left: 1.1rem;
	font-size: var(--fs-sm);
	color: var(--ink-60);
}
.card__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--blue-500);
	opacity: 0.5;
}

.card__foot { margin-top: auto; padding-top: 1rem; }

/* Feature card — Learn2Earn */
.card--feature {
	grid-column: span 2;
	background:
		radial-gradient(120% 140% at 0% 0%, rgba(26,123,255,0.10), transparent 58%),
		radial-gradient(110% 130% at 100% 100%, rgba(255,193,7,0.14), transparent 60%),
		var(--ground-raise);
}
@media (max-width: 640px) { .card--feature { grid-column: span 1; } }

.card--feature .card__title { font-size: var(--fs-h3); }

/* Audience selector cards */
.who {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 2rem;
	min-height: 158px;
	padding: 1.35rem 1.5rem;
	border-radius: var(--r-md);
	background: var(--ground-raise);
	box-shadow: inset 0 0 0 1px var(--line-soft);
	transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
	            background 0.45s var(--ease);
}
.who:hover {
	transform: translateY(-3px);
	background: var(--ground-raise);
	box-shadow: var(--sh-md), inset 0 0 0 1px transparent;
}
.who__label { font-size: var(--fs-h4); font-weight: 600; letter-spacing: -0.025em; }
.who__line  { font-size: var(--fs-sm); color: var(--ink-45); }
.who__go {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--ink-07);
	transition: background 0.4s var(--ease), color 0.4s var(--ease),
	            transform 0.4s var(--ease);
}
.who:hover .who__go { background: var(--blue-600); color: #fff; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   12. The 100XD Model — vertical stage list
   -------------------------------------------------------------------------- */

.model { display: grid; gap: 0; position: relative; }

.model__row {
	display: grid;
	grid-template-columns: 5.5rem minmax(0, 15rem) minmax(0, 1fr);
	gap: clamp(1rem, 3vw, 3rem);
	align-items: start;
	padding-block: clamp(1.5rem, 2.6vw, 2.35rem);
	border-top: 1px solid var(--line-soft);
	transition: background 0.5s var(--ease);
}
.model__row:last-child { border-bottom: 1px solid var(--line-soft); }
.model__row:hover { background: rgba(255, 255, 255, 0.5); }

.model__n {
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	color: var(--ink-30);
	padding-top: 0.45rem;
	letter-spacing: 0.08em;
}

.model__name {
	font-size: clamp(1.35rem, 2.3vw, 2rem);
	font-weight: 500;
	letter-spacing: -0.035em;
}

.model__line { font-size: var(--fs-sm); color: var(--blue-600); font-weight: 600; margin-top: 0.3rem; }
.model__body { font-size: var(--fs-body); color: var(--ink-60); padding-top: 0.35rem; line-height: 1.58; }

@media (max-width: 860px) {
	.model__row { grid-template-columns: 3rem minmax(0, 1fr); }
	.model__body { grid-column: 2; }
}

/* --------------------------------------------------------------------------
   13. Routes — the Future Map
   -------------------------------------------------------------------------- */

.route {
	display: grid;
	gap: 1rem;
	padding: 1.5rem;
	border-radius: var(--r-lg);
	background: var(--ground-raise);
	box-shadow: inset 0 0 0 1px var(--line-soft);
	transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease);
}
.route:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.route__head { display: flex; align-items: baseline; gap: 0.7rem; }
.route__id {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	flex: none;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-size: var(--fs-xs);
	font-weight: 700;
	align-self: center;
}
.route__name { font-size: var(--fs-h4); font-weight: 600; }

.route__steps { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; }
.route__step {
	padding: 0.42rem 0.8rem;
	border-radius: var(--r-pill);
	background: var(--ink-07);
	font-size: var(--fs-xs);
	font-weight: 500;
	white-space: nowrap;
}
.route__arrow { color: var(--ink-30); font-size: var(--fs-xs); }

/* Evaluation axes */
.axes { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.axes span {
	padding: 0.5rem 1rem;
	border-radius: var(--r-pill);
	font-size: var(--fs-sm);
	font-weight: 500;
	background: var(--ground-raise);
	box-shadow: inset 0 0 0 1px var(--line-soft);
}

/* --------------------------------------------------------------------------
   14. Chains — Investment → Development → … and Learn → Practice → …
   -------------------------------------------------------------------------- */

.chain {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem;
}
.chain--center { justify-content: center; }

.chain__node {
	padding: 0.72rem 1.3rem;
	border-radius: var(--r-pill);
	background: var(--ground-raise);
	box-shadow: var(--sh-sm), inset 0 0 0 1px rgba(255,255,255,0.6);
	font-size: var(--fs-sm);
	font-weight: 600;
	letter-spacing: -0.015em;
	white-space: nowrap;
}

.chain__node--accent {
	background: linear-gradient(100deg, var(--blue-600), var(--blue-500));
	color: #fff;
	box-shadow: var(--sh-md);
}

.chain__sep {
	color: var(--ink-30);
	font-size: 0.9rem;
	flex: none;
}

/* Question grid — "The Problem" and Student ROI */
.qgrid { display: grid; gap: 0; }
.qgrid li {
	display: flex;
	align-items: baseline;
	gap: 1rem;
	padding-block: clamp(0.75rem, 1.2vw, 1rem);
	border-bottom: 1px solid var(--line-soft);
	font-size: clamp(1rem, 1.35vw, 1.22rem);
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: -0.02em;
	transition: padding-left 0.45s var(--ease), color 0.45s var(--ease);
}
.qgrid li:first-child { border-top: 1px solid var(--line-soft); }
.qgrid li:hover { padding-left: 0.6rem; color: var(--blue-600); }
.qgrid li i {
	font-style: normal;
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	color: var(--ink-30);
	flex: none;
	width: 2rem;
}

/* Interactive Question Expand/Collapse */
.qgrid[data-qgrid-expandable] {
	cursor: pointer;
}
.qgrid-expand-item {
	display: block !important;
	padding: 0.75rem 0 !important;
	border-bottom: 1px solid var(--line-soft);
	border-top: none !important;
}
.qgrid-expand-item:hover {
	padding-left: 0 !important;
}
.qgrid[data-qgrid-expandable]:not(.is-expanded) li:not(.qgrid-expand-item) {
	cursor: pointer;
}
.qgrid[data-qgrid-expandable]:not(.is-expanded) li:not(.qgrid-expand-item):hover {
	background: rgba(18, 115, 255, 0.03);
}
.qgrid-expand-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.55rem 1.15rem;
	border-radius: var(--r-pill);
	background: rgba(18, 115, 255, 0.08);
	border: 1px solid rgba(18, 115, 255, 0.2);
	color: var(--blue-600);
	font-family: var(--font-sans);
	font-size: 0.84rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s var(--ease);
}
.qgrid-expand-btn:hover {
	background: var(--blue-600);
	color: #fff;
	border-color: var(--blue-600);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(18, 115, 255, 0.25);
}
.qgrid-expand-btn__badge {
	font-size: 0.72rem;
	font-weight: 500;
	opacity: 0.85;
	background: rgba(18, 115, 255, 0.12);
	padding: 0.15rem 0.5rem;
	border-radius: var(--r-pill);
	transition: background 0.3s ease;
}
.qgrid-expand-btn:hover .qgrid-expand-btn__badge {
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
}
.qgrid-expand-btn__arrow {
	transition: transform 0.35s var(--ease);
}
.qgrid__collapsed {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
	opacity: 0;
	overflow: hidden;
}
.qgrid__collapsed-inner {
	min-height: 0;
	display: grid;
}
.qgrid.is-expanded .qgrid__collapsed {
	grid-template-rows: 1fr;
	opacity: 1;
}
.qgrid.is-expanded .qgrid-expand-item {
	display: none !important;
}

/* Silo list — "A university helps with university." */
.silos {
	display: grid;
	gap: 0.45rem;
	margin-block: 1.5rem 1.85rem;
	list-style: none;
	padding: 0;
}
.silos li {
	display: flex;
	align-items: baseline;
	gap: 0.65rem;
	font-size: clamp(0.95rem, 1.4vw, 1.125rem);
	color: var(--ink-60);
	padding-block: 0.4rem;
	border-bottom: 1px solid var(--line-soft);
	line-height: 1.5;
}
.silos li::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--blue-600);
	flex-shrink: 0;
	transform: translateY(-2px);
}
.silos b {
	font-weight: 600;
	color: var(--ink);
	margin-right: 0.25rem;
}

/* Pull quote */
.pull {
	font-size: clamp(1.5rem, 3.1vw, 2.6rem);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.14;
	max-width: 22ch;
}
.pull span { color: var(--ink-30); display: block; }

/* Tag cloud — ecosystem + combine lists */
.tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tags--center { justify-content: center; }
.tags a, .tags span {
	display: inline-flex;
	align-items: center;
	padding: 0.72rem 1.35rem;
	border-radius: var(--r-pill);
	background: var(--ground-raise);
	box-shadow: inset 0 0 0 1px var(--line-soft);
	font-size: var(--fs-sm);
	font-weight: 500;
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
	            background 0.4s var(--ease), color 0.4s var(--ease);
}
.tags a:hover {
	transform: translateY(-2px);
	background: var(--ink);
	color: #fff;
	box-shadow: var(--sh-md);
}

/* Flow strip — Discovery → Matching → … */
.flow {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	align-items: center;
	padding: 1.1rem;
	border-radius: var(--r-lg);
	background: var(--ground-sink);
}
.flow span { font-size: var(--fs-xs); font-weight: 600; color: var(--ink-60); }
.flow i { font-style: normal; color: var(--ink-30); }

/* --------------------------------------------------------------------------
   15. Organizations tabs
   -------------------------------------------------------------------------- */

.tabs { display: grid; gap: 2.5rem; }

.tabs__bar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	padding: 0.4rem;
	border-radius: var(--r-pill);
	background: var(--ground-sink);
	width: fit-content;
	max-width: 100%;
}
@media (max-width: 640px) {
	.tabs__bar {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		width: 100%;
		padding: 0.35rem;
	}
	.tabs__bar::-webkit-scrollbar { display: none; }
	.tabs__btn {
		flex-shrink: 0;
		padding: 0.5rem 0.95rem;
		font-size: var(--fs-xs);
	}
}

.tabs__btn {
	padding: 0.62rem 1.2rem;
	border-radius: var(--r-pill);
	font-size: var(--fs-sm);
	font-weight: 600;
	color: var(--ink-60);
	white-space: nowrap;
	transition: background 0.4s var(--ease), color 0.4s var(--ease),
	            box-shadow 0.4s var(--ease);
}
.tabs__btn:hover { color: var(--ink); }
.tabs__btn.is-on {
	background: var(--ground-raise);
	color: var(--ink);
	box-shadow: var(--sh-sm);
}

.tabs__panel { display: none; }
.tabs__panel.is-on { display: grid; animation: panelIn 0.6s var(--ease); }

@keyframes panelIn {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}

.tabs__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: start;
}
@media (max-width: 900px) { .tabs__grid { grid-template-columns: minmax(0, 1fr); } }

.checks { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.55rem 1.25rem; }
@media (max-width: 560px) { .checks { grid-template-columns: minmax(0, 1fr); } }
.checks li {
	display: flex;
	align-items: baseline;
	gap: 0.6rem;
	font-size: var(--fs-sm);
	color: var(--ink-60);
	padding-block: 0.3rem;
	border-bottom: 1px solid var(--line-soft);
}
.checks li::before { content: "+"; color: var(--blue-500); font-weight: 700; flex: none; }

/* --------------------------------------------------------------------------
   16. Why 100XD — numbered feature grid
   -------------------------------------------------------------------------- */

.why-item { padding-block: 1.5rem; border-top: 1px solid var(--line); }
.why-item__name {
	font-size: var(--fs-h4);
	font-weight: 600;
	margin-bottom: 0.55rem;
	display: flex;
	align-items: baseline;
	gap: 0.65rem;
}
.why-item__name i {
	font-style: normal;
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	color: var(--blue-500);
}
.why-item__body { font-size: var(--fs-sm); color: var(--ink-60); line-height: 1.6; }

/* --------------------------------------------------------------------------
   17. Technology bridge
   -------------------------------------------------------------------------- */

.bridge {
	display: grid;
	gap: 1.25rem;
	justify-items: center;
	text-align: center;
	padding: clamp(2rem, 5vw, 4rem);
	border-radius: var(--r-lg);
	background:
		radial-gradient(90% 120% at 50% 0%, rgba(26,123,255,0.09), transparent 62%),
		var(--ground-raise);
	box-shadow: var(--sh-sm), inset 0 0 0 1px rgba(255,255,255,0.6);
}
.bridge__node { font-size: var(--fs-h3); font-weight: 500; letter-spacing: -0.03em; }
.bridge__word { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-30); }

/* --------------------------------------------------------------------------
   18. Dark final CTA
   -------------------------------------------------------------------------- */

.finale {
	position: relative;
	margin-inline: var(--gutter);
	border-radius: clamp(24px, 3vw, 40px);
	background:
		radial-gradient(70% 90% at 50% 0%, rgba(26,123,255,0.24), transparent 62%),
		radial-gradient(50% 60% at 88% 96%, rgba(255,193,7,0.16), transparent 66%),
		var(--navy);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}

.finale::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: repeating-radial-gradient(
		circle at 50% 0%,
		transparent 0 70px,
		rgba(255, 255, 255, 0.032) 70px 71px
	);
	mask-image: radial-gradient(circle at 50% 0%, #000 8%, transparent 62%);
	-webkit-mask-image: radial-gradient(circle at 50% 0%, #000 8%, transparent 62%);
}

.finale__inner {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 1.6rem;
	padding: clamp(4rem, 9vw, 8rem) var(--gutter);
}

/* The large mark on the dark band — same asset, white "100". */
.finale .brand { --logo-h: clamp(48px, 9vw, 104px); }

.finale__title {
	font-size: var(--fs-h2);
	max-width: 18ch;
	color: rgba(255, 255, 255, 0.94);
}

.finale__steps { display: grid; gap: 0.45rem; margin-block: 0.5rem; }
.finale__steps li { color: rgba(255, 255, 255, 0.58); font-size: var(--fs-body); }
.finale__steps li:first-child { color: rgba(255, 255, 255, 0.9); font-weight: 500; }

.finale__rhythm {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	justify-content: center;
	font-size: var(--fs-xs);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 0.5rem;
}
.finale__rhythm b { font-weight: 500; }
.finale__rhythm span { color: var(--gold-500); }

.finale .btn--ghost { --btn-fg: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22); }
.finale .btn--light { --btn-bg: #fff; --btn-fg: var(--navy); }

/* Brand statement showcase */
.statement {
	display: grid;
	gap: 1.25rem;
	text-align: center;
	justify-items: center;
	padding-block: clamp(2rem, 4vw, 3.75rem);
}
.statement__lead {
	font-size: clamp(1.75rem, 4vw, 3.4rem);
	font-weight: 500;
	letter-spacing: -0.04em;
	line-height: 1.1;
	max-width: 20ch;
}
.statement__sub { font-size: var(--fs-lede); color: var(--ink-60); max-width: 52ch; }

.journey-showcase {
	position: relative;
	overflow: visible;
	padding-block: clamp(2rem, 4vw, 3.75rem);
}
.journey-showcase__inner {
	position: relative;
	max-width: var(--max);
	margin: 0 auto;
}
.journey-showcase__glow {
	position: absolute;
	width: clamp(280px, 35vw, 440px);
	height: clamp(280px, 35vw, 440px);
	top: -40px;
	left: -60px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(18, 115, 255, 0.25) 0%, rgba(11, 95, 234, 0.08) 55%, transparent 70%);
	filter: blur(60px);
	pointer-events: none;
	z-index: 0;
}
.journey-showcase__intro {
	position: relative;
	z-index: 1;
	max-width: 820px;
	margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.journey-showcase__lead {
	font-size: clamp(1.4rem, 2.6vw, 1.85rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.35;
	color: var(--ink);
	margin: 0 0 0.75rem 0;
}
.journey-showcase__sub {
	font-size: var(--fs-sm);
	color: var(--ink-60);
	line-height: 1.6;
	margin: 0;
	max-width: 68ch;
}
.journey-showcase__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.9fr) minmax(0, 1.1fr);
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: start;
	position: relative;
	z-index: 1;
}
@media (max-width: 900px) {
	.journey-showcase__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 2.25rem;
	}
}
.journey-hero {
	position: relative;
}
.journey-hero__frame {
	position: relative;
	border-radius: clamp(20px, 3vw, 30px);
	overflow: hidden;
	box-shadow: var(--sh-md);
	aspect-ratio: 16 / 10.2;
	background: var(--ground-sink);
}
.journey-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.journey-hero:hover .journey-hero__img {
	transform: scale(1.035);
}
.journey-glass {
	position: absolute;
	top: clamp(14px, 2.5vw, 24px);
	right: clamp(14px, 2.5vw, 24px);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	background: rgba(255, 255, 255, 0.28);
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: var(--r-md);
	padding: clamp(10px, 1.8vw, 15px) clamp(14px, 2.2vw, 22px);
	box-shadow: 0 8px 30px rgba(10, 14, 26, 0.16);
	color: #ffffff;
	text-align: left;
	pointer-events: none;
}
.journey-glass__title {
	display: block;
	font-size: clamp(1.5rem, 2.8vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
	color: #fff;
}
.journey-glass__sub {
	display: block;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
	margin-top: 4px;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.journey-social {
	position: absolute;
	bottom: clamp(14px, 2.5vw, 24px);
	left: clamp(14px, 2.5vw, 24px);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: rgba(11, 95, 234, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--r-pill);
	padding: 9px 18px;
	box-shadow: 0 12px 36px rgba(11, 95, 234, 0.38);
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	color: #fff;
	max-width: calc(100% - 28px);
}
.journey-social__avatars {
	display: flex;
	align-items: center;
}
.journey-social__av {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid #0b5fea;
	object-fit: cover;
	margin-left: -8px;
	background: #fff;
}
.journey-social__avatars .journey-social__av:first-child {
	margin-left: 0;
}
.journey-social__more {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	background: var(--blue-400);
}
.journey-social__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.journey-social__stars {
	display: flex;
	gap: 2px;
	color: #ffc107;
}
.journey-star {
	width: 14px;
	height: 14px;
	fill: currentColor;
}
.journey-social__label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	letter-spacing: -0.01em;
}

@media (max-width: 640px) {
	.journey-hero__frame {
		aspect-ratio: 16 / 11;
		min-height: 230px;
	}
	.journey-glass {
		padding: 6px 12px;
		border-radius: 12px;
	}
	.journey-glass__title {
		font-size: 1.35rem;
	}
	.journey-glass__sub {
		font-size: 0.58rem;
		letter-spacing: 0.08em;
	}
	.journey-social {
		padding: 6px 12px;
		gap: 8px;
		bottom: 10px;
		left: 10px;
		max-width: calc(100% - 20px);
	}
	.journey-social__av {
		width: 26px;
		height: 26px;
		margin-left: -6px;
	}
	.journey-social__label {
		font-size: 0.72rem;
	}
	.journey-star {
		width: 11px;
		height: 11px;
	}
}
@media (max-width: 420px) {
	.journey-hero__frame {
		min-height: 210px;
	}
	.journey-glass {
		padding: 4px 8px;
		top: 8px;
		right: 8px;
	}
	.journey-glass__title {
		font-size: 1.15rem;
	}
	.journey-social {
		padding: 5px 10px;
		bottom: 8px;
		left: 8px;
		max-width: calc(100% - 16px);
	}
}
.journey-side {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.journey-chart-card {
	width: 100%;
	border-radius: clamp(16px, 2.5vw, 24px);
	background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
	padding: 16px;
	box-shadow: var(--sh-md);
	transition: transform 0.3s var(--ease);
}
.journey-chart-card:hover {
	transform: translateY(-4px);
}
.journey-chart-card__inner {
	background: #ffffff;
	border-radius: var(--r-md);
	padding: 18px 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.journey-chart-card__meta {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--ink-45);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.journey-chart-card__value {
	display: block;
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -0.03em;
	margin-top: 2px;
}
.journey-bars {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	height: 72px;
	margin-top: 14px;
	padding-top: 6px;
}
.journey-bar {
	flex: 1;
	height: var(--h, 50%);
	background: rgba(79, 70, 229, 0.18);
	border-radius: 4px 4px 0 0;
	transition: height 0.6s var(--ease);
}
.journey-bar--lead {
	background: #4f46e5;
	box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
	animation: sparkPulseIndigo 2.4s ease-in-out infinite;
	transform-origin: bottom;
}
@keyframes sparkPulseIndigo {
	0%, 100% { transform: scaleY(1); opacity: 0.9; box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35); }
	50% { transform: scaleY(1.06); opacity: 1; box-shadow: 0 6px 18px rgba(79, 70, 229, 0.6); }
}
.journey-side__title {
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.25;
	color: var(--ink);
	margin: 1.5rem 0 0.5rem 0;
}
.journey-side__desc {
	font-size: var(--fs-sm);
	color: var(--ink-60);
	line-height: 1.6;
	margin: 0 0 1.25rem 0;
}
.journey-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #4f46e5;
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: color 0.2s ease, gap 0.2s ease;
}
.journey-link:hover {
	color: #3730a3;
	gap: 12px;
}
.journey-link__arrow {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	transition: transform 0.2s ease;
}
.journey-link:hover .journey-link__arrow {
	transform: translate(2px, -2px);
}

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */

.foot { padding-block: clamp(2.5rem, 5vw, 3.75rem) 2rem; border-top: 1px solid var(--line-soft); margin-top: var(--sec-y); }
.foot__top { display: grid; grid-template-columns: minmax(0, 1.3fr) repeat(4, minmax(0, 1fr)); gap: 2.5rem; }
@media (max-width: 1024px) { .foot__top { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .foot__top { grid-template-columns: minmax(0, 1fr); } }

.foot .brand { --logo-h: 34px; margin-bottom: 1rem; }
.foot__tag { font-size: var(--fs-sm); color: var(--ink-60); max-width: 30ch; }

.foot__col h4 {
	font-size: var(--fs-xs);
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--ink-45);
	margin-bottom: 1.1rem;
}
.foot__col li { margin-bottom: 0.6rem; }
.foot__col a { font-size: var(--fs-sm); color: var(--ink-60); }
.foot__col a:hover { color: var(--ink); }

.foot__legal {
	margin-top: clamp(3rem, 6vw, 5rem);
	padding-top: 1.75rem;
	border-top: 1px solid var(--line-soft);
	display: grid;
	gap: 0.8rem;
}
.foot__legal p { font-size: var(--fs-xs); color: var(--ink-45); line-height: 1.55; max-width: 92ch; }
.foot__base { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; margin-top: 1rem; }
.foot__base span { font-size: var(--fs-xs); color: var(--ink-30); }

/* --------------------------------------------------------------------------
   20. Scroll reveal
   -------------------------------------------------------------------------- */

[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity var(--dur-slow) var(--ease),
	            transform var(--dur-slow) var(--ease);
	transition-delay: var(--d, 0ms);
}

[data-reveal].is-in { opacity: 1; transform: none; }

/* Per-line headline reveal */
.line-mask { display: block; overflow: hidden; }
.line-mask > span {
	display: block;
	transform: translateY(110%);
	transition: transform 1s var(--ease);
	transition-delay: var(--d, 0ms);
}
[data-reveal].is-in .line-mask > span,
.is-in > .line-mask > span { transform: translateY(0); }

/* --------------------------------------------------------------------------
   21. Inner page (page.php)
   -------------------------------------------------------------------------- */

.phero {
	padding-top: calc(var(--nav-h) + clamp(3.5rem, 8vw, 7rem));
	padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.phero__title { font-size: var(--fs-h1); max-width: 18ch; margin-bottom: 1.35rem; }
.phero__lede { font-size: var(--fs-lede); color: var(--ink-60); max-width: 56ch; }

.crumbs { display: flex; gap: 0.5rem; align-items: center; font-size: var(--fs-xs); color: var(--ink-45); margin-bottom: 1.75rem; }
.crumbs a:hover { color: var(--ink); }
.crumbs i { font-style: normal; color: var(--ink-30); }

/* Long-form body for CMS content */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.35rem; }
.prose h2 { font-size: var(--fs-h3); margin-top: 3rem; }
.prose h3 { font-size: var(--fs-h4); margin-top: 2.25rem; }
.prose p, .prose li { color: var(--ink-80); line-height: 1.68; }
.prose ul { display: grid; gap: 0.5rem; padding-left: 1.15rem; list-style: disc; }
.prose a { color: var(--blue-600); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.6rem;
	border-left: 2px solid var(--blue-500);
	background: var(--ground-raise);
	border-radius: 0 var(--r-md) var(--r-md) 0;
	font-size: var(--fs-lede);
}
.prose img { border-radius: var(--r-md); }

/* --------------------------------------------------------------------------
   21b. Inner Page Components (.phero--split, .role-tabs, .hub-grid, .faq-wrap)
   -------------------------------------------------------------------------- */

.phero--split .phero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}
@media (max-width: 900px) {
	.phero--split .phero__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}
.phero__art {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(145deg, #ffffff, #f0f5ff);
	border: 1px solid rgba(18, 115, 255, 0.22);
	border-radius: 26px;
	padding: clamp(1.5rem, 3.5vw, 2.75rem);
	box-shadow: 0 18px 48px rgba(18, 115, 255, 0.09);
}
.phero__art .lot {
	width: 100%;
	max-width: 440px;
	aspect-ratio: 4 / 3;
	filter: drop-shadow(0 10px 24px rgba(18, 115, 255, 0.16));
}
.phero__art .lot svg {
	width: 100% !important;
	height: 100% !important;
	transform: scale(1.18);
	transform-origin: center center;
}

/* Interactive Role Selector Tabs */
.role-tabs {
	display: flex;
	gap: 0.5rem;
	background: rgba(10, 14, 26, 0.05);
	padding: 0.35rem;
	border-radius: 999px;
	margin-bottom: 2rem;
	max-width: max-content;
}
@media (max-width: 600px) {
	.role-tabs {
		flex-direction: column;
		border-radius: 16px;
		max-width: 100%;
	}
}
.role-tab {
	border: none;
	background: transparent;
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--ink-60);
	padding: 0.55rem 1.25rem;
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.2s ease;
}
.role-tab.is-active {
	background: #fff;
	color: var(--blue-600);
	box-shadow: 0 2px 8px rgba(10, 14, 26, 0.08);
}

/* Global Hubs Grid */
.hub-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
	margin-top: 2rem;
}
@media (max-width: 900px) {
	.hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
	.hub-grid { grid-template-columns: minmax(0, 1fr); }
}
.hub-card {
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid var(--line-soft);
	border-radius: 18px;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	transition: border-color 0.2s ease, transform 0.2s ease;
}
.hub-card:hover {
	border-color: rgba(18, 115, 255, 0.3);
	transform: translateY(-2px);
}
.hub-card__city {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--ink-90);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.hub-card__flag { font-size: 1.25rem; }
.hub-card__addr {
	font-size: 0.875rem;
	color: var(--ink-60);
	line-height: 1.45;
}
.hub-card__email {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--blue-600);
	text-decoration: none;
	margin-top: auto;
}

/* Accordion FAQs */
.faq-wrap {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 2rem;
}
.faq-card {
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid var(--line-soft);
	border-radius: 16px;
	overflow: hidden;
	transition: border-color 0.2s ease;
}
.faq-card[open] {
	border-color: rgba(18, 115, 255, 0.3);
	background: #fff;
}
.faq-summary {
	padding: 1.25rem 1.5rem;
	font-weight: 700;
	font-size: 1rem;
	color: var(--ink-90);
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
	content: "+";
	font-size: 1.35rem;
	font-weight: 400;
	color: var(--blue-600);
	transition: transform 0.2s ease;
}
.faq-card[open] .faq-summary::after {
	transform: rotate(45deg);
}
.faq-body {
	padding: 0 1.5rem 1.25rem;
	font-size: 0.9375rem;
	color: var(--ink-70);
	line-height: 1.6;
}

/* --------------------------------------------------------------------------
   22. Accessibility + print
   -------------------------------------------------------------------------- */

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

.skip {
	position: absolute;
	left: 50%;
	top: -100px;
	translate: -50% 0;
	z-index: 9999;
	padding: 0.8rem 1.4rem;
	border-radius: 0 0 var(--r-md) var(--r-md);
	background: var(--ink);
	color: #fff;
	font-size: var(--fs-sm);
	transition: top 0.3s var(--ease);
}
.skip:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	[data-reveal] { opacity: 1; transform: none; }
	.line-mask > span { transform: none; }
	.beat { opacity: 1; transform: none; position: static; translate: 0 0;
	        margin-bottom: 2rem; text-align: left; max-width: none; }
	/* Collapse the 400vh runway so the page stays a sane length. */
	.scrolly { height: auto; }
	.scrolly__stage { position: static; height: auto; display: block; }
	.scrolly__canvas { position: relative; height: 60vh; }
	.scrolly__overlays { height: auto; padding-block: 3rem; }
	.scroll-hint, .scrolly__rail { display: none; }
}

@media print {
	.nav, .loader, .grain, .field, .scroll-hint, .scrolly__rail { display: none !important; }
	body { background: #fff; }
	.scrolly { height: auto; }
	.beat { position: static; opacity: 1; transform: none; translate: 0 0; }
}

/* --------------------------------------------------------------------------
   23. Interactive Modals (Consultation & Future Map)
   -------------------------------------------------------------------------- */

body.modal-open { overflow: hidden; }

.xmodal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(1rem, 3vw, 2.5rem);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s var(--ease);
}
.xmodal.is-open {
	opacity: 1;
	pointer-events: auto;
}
.xmodal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(6, 13, 26, 0.68);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.xmodal__card {
	position: relative;
	z-index: 1;
	background: var(--ground-raise);
	border-radius: var(--r-lg);
	box-shadow: var(--sh-lg);
	width: 100%;
	max-width: 660px;
	max-height: 88vh;
	overflow-y: auto;
	padding: clamp(1.75rem, 4vw, 2.5rem);
	border: 1px solid var(--line);
	transform: scale(0.96) translateY(14px);
	transition: transform 0.35s var(--ease);
}
.xmodal.is-open .xmodal__card {
	transform: scale(1) translateY(0);
}
.xmodal__close {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: var(--ground);
	color: var(--ink);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}
.xmodal__close:hover {
	background: var(--ground-sink);
	transform: scale(1.08);
}
.xmodal__title {
	font-size: clamp(1.4rem, 2.5vw, 1.85rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	margin: 0 0 0.5rem 0;
	color: var(--ink);
}
.xmodal__sub {
	font-size: var(--fs-sm);
	color: var(--ink-60);
	margin: 0 0 1.5rem 0;
	line-height: 1.55;
}
.xmodal__roles {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}
.xmodal__role {
	padding: 0.45rem 0.95rem;
	border-radius: var(--r-pill);
	border: 1px solid var(--line);
	background: var(--ground);
	color: var(--ink-80);
	font-size: 0.8125rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s ease;
}
.xmodal__role:hover {
	border-color: var(--blue-500);
	color: var(--blue-600);
}
.xmodal__role.is-on {
	background: var(--blue-600);
	color: #fff;
	border-color: var(--blue-600);
	box-shadow: 0 2px 8px rgba(11, 95, 234, 0.25);
}
.xform-group {
	margin-bottom: 1.15rem;
}
.xform-label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ink-80);
	margin-bottom: 0.4rem;
}
.xform-input, .xform-select, .xform-textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border-radius: var(--r-sm);
	border: 1px solid var(--line);
	background: var(--ground);
	font-family: inherit;
	font-size: var(--fs-sm);
	color: var(--ink);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.xform-input:focus, .xform-select:focus, .xform-textarea:focus {
	outline: none;
	border-color: var(--blue-500);
	box-shadow: 0 0 0 3px rgba(26, 123, 255, 0.18);
	background: #fff;
}
.xform-textarea {
	resize: vertical;
	min-height: 85px;
}

@media (max-width: 520px) {
	.xmodal {
		padding: 0.5rem;
	}
	.xmodal__card {
		padding: 1.35rem 1rem 1.5rem;
		max-height: 92vh;
		border-radius: var(--r-md);
	}
	.xmodal__close {
		top: 0.85rem;
		right: 0.85rem;
		width: 32px;
		height: 32px;
	}
	.xmodal__title {
		font-size: 1.35rem;
		padding-right: 2rem;
	}
	.xmodal__roles {
		gap: 0.35rem;
	}
	.xmodal__role {
		padding: 0.35rem 0.75rem;
		font-size: 0.75rem;
	}
	.xform-input, .xform-select, .xform-textarea {
		padding: 0.65rem 0.85rem;
		font-size: 0.85rem;
	}
}

