/* ==========================================================================
   InList Consult — design system
   Source Serif 4 for headings, Inter for everything else, weights 400/500.
   Deep navy base, bronze accent used sparingly, fine 1px rules.
   ========================================================================== */

:root {
	/* Ink and surfaces */
	--ink: #1a1a2e;
	--ink-2: #262640;
	--ink-line: rgba(255, 255, 255, 0.14);

	--bg: #ffffff;
	--bg-alt: #faf9f7;
	--surface: #f5f4f1;
	--line: #e5e3de;
	--line-strong: #cfccc4;

	/* Text hierarchy */
	--text-1: #17171f;
	--text-2: #52525f;
	--text-3: #71717a;

	/* Single accent: bronze. --accent-ink carries text on light, --accent-light
	   carries text on the dark hero and footer. */
	--accent: #b87333;
	--accent-ink: #8a5322;
	--accent-light: #dda972;
	--accent-soft: #f4ece3;

	/* Type */
	--serif: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
	--sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	/* Rhythm */
	--section-y: clamp(72px, 9vw, 118px);
	--gap: clamp(20px, 2.4vw, 32px);
	--radius-card: 10px;
	--radius-chip: 6px;
	--radius-btn: 6px;

	--maxw: 1200px;
	--maxw-narrow: 820px;

	/* Navigation. The colour tokens alias the design system above rather than
	   duplicating it, so there is still one source of truth for colour. */
	--nav-height: 72px;
	--nav-height-scrolled: 56px;
	--header-h: var(--nav-height);
	--nav-bg: rgba(255, 255, 255, 0.94);
	--nav-bg-scrolled: rgba(255, 255, 255, 0.92);
	--nav-blur: blur(12px);
	--nav-border: var(--line);
	--nav-border-scrolled: var(--line);
	--nav-padding-y: 16px;
	--nav-padding-y-scrolled: 12px;
	--nav-padding-x: 32px;
	--nav-padding-x-mobile: 20px;

	--color-text-primary: var(--text-1);
	--color-text-secondary: var(--text-2);
	--color-border: var(--line);
	--color-bg: var(--bg);

	--transition-fast: 200ms;
	--transition-normal: 250ms;
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);

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

/* --------------------------------------------------------------------------
   Reset and base
   -------------------------------------------------------------------------- */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	/* Anchor targets clear the fixed bar. */
	scroll-padding-top: calc(var(--nav-height-scrolled) + 16px);
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text-1);
	font-family: var(--sans);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: -0.003em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0 0 1.1em;
}

p:last-child {
	margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
	font-family: var(--serif);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.015em;
	margin: 0;
	color: var(--text-1);
	text-wrap: balance;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

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

::selection {
	background: var(--accent-soft);
	color: var(--text-1);
}

:focus-visible {
	outline: 2px solid var(--accent-ink);
	outline-offset: 3px;
	border-radius: 2px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: -60px;
	left: 16px;
	z-index: 200;
	padding: 10px 16px;
	background: var(--ink);
	color: #fff;
	border-radius: var(--radius-btn);
	transition: top 0.2s var(--ease);
}

.skip-link:focus {
	top: 12px;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.container {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 clamp(20px, 4vw, 40px);
}

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

.site-main {
	display: block;
}

.section {
	padding: var(--section-y) 0;
}

.section + .section {
	border-top: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   Type utilities
   -------------------------------------------------------------------------- */

.eyebrow,
.section-label {
	font-family: var(--sans);
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.06em;
	margin: 0 0 18px;
	color: var(--accent-ink);
	display: flex;
	align-items: center;
	gap: 10px;
}

.eyebrow::before,
.section-label::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--accent);
	flex: none;
}

.section-label {
	color: var(--text-2);
}

.section-label::before {
	background: var(--line-strong);
}

.section-head {
	max-width: 720px;
	margin-bottom: clamp(36px, 5vw, 56px);
}

.section-head--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	max-width: none;
}

.section-title {
	font-size: clamp(1.6rem, 3.1vw, 2rem);
	line-height: 1.2;
}

.section-title--sm {
	font-size: clamp(1.25rem, 2.2vw, 1.5rem);
	margin-bottom: 28px;
}

.section-lede {
	margin: 16px 0 0;
	color: var(--text-2);
	font-size: 1.0625rem;
	max-width: 62ch;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--text-1);
	padding-bottom: 2px;
	border-bottom: 1px solid var(--line-strong);
	transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
	white-space: nowrap;
}

.text-link:hover {
	color: var(--accent-ink);
	border-color: var(--accent);
}

.text-link .icon {
	transition: transform 0.25s var(--ease);
}

.text-link:hover .icon {
	transform: translateX(3px);
}

.icon {
	flex: none;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 26px;
	font-family: var(--sans);
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.2;
	border-radius: var(--radius-btn);
	border: 1px solid transparent;
	transition: background-color 0.2s var(--ease), border-color 0.2s var(--ease),
		color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn-sm {
	padding: 10px 18px;
	font-size: 0.875rem;
}

.btn-primary {
	background: var(--ink);
	color: #fff;
}

.btn-primary:hover {
	background: var(--ink-2);
	transform: translateY(-1px);
}

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

.btn-ghost:hover {
	border-color: var(--ink);
	transform: translateY(-1px);
}

/* Outlined button that inverts on hover — the header CTA. */
.btn-outline {
	padding: 10px 22px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	background: transparent;
	border: 1.5px solid var(--color-text-primary);
	border-radius: var(--radius-btn);
	color: var(--color-text-primary);
	transition: background-color var(--transition-fast) var(--ease-out),
		color var(--transition-fast) var(--ease-out),
		border-color var(--transition-fast) var(--ease-out),
		padding var(--transition-normal) var(--ease-out);
}

.btn-outline:hover {
	background: var(--color-text-primary);
	color: var(--color-bg);
	transform: none;
}

.btn-ghost-light {
	border-color: rgba(255, 255, 255, 0.35);
	color: #fff;
}

.btn-ghost-light:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-1px);
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

/* --------------------------------------------------------------------------
   Header
   Fixed, transparent over the hero, solid glass after 60px of scroll.
   -------------------------------------------------------------------------- */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: var(--nav-bg);
	-webkit-backdrop-filter: var(--nav-blur);
	backdrop-filter: var(--nav-blur);
	border-bottom: 1px solid var(--nav-border);
	transition: background-color var(--transition-normal) var(--ease-out),
		border-color var(--transition-normal) var(--ease-out);
}

.site-header.is-stuck {
	background: var(--nav-bg-scrolled);
	-webkit-backdrop-filter: var(--nav-blur);
	backdrop-filter: var(--nav-blur);
	border-bottom-color: var(--nav-border-scrolled);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	max-width: var(--maxw);
	margin: 0 auto;
	min-height: var(--nav-height);
	padding: var(--nav-padding-y) var(--nav-padding-x);
	transition: min-height var(--transition-normal) var(--ease-out),
		padding var(--transition-normal) var(--ease-out);
}

.site-header.is-stuck .header-inner {
	min-height: var(--nav-height-scrolled);
	padding-top: var(--nav-padding-y-scrolled);
	padding-bottom: var(--nav-padding-y-scrolled);
}

/* The CTA tightens with the bar, so 12px padding + button = exactly 56px. */
.site-header.is-stuck .header-cta .btn-outline {
	padding: 8px 20px;
}

/* --- Wordmark ----------------------------------------------------------- */

.brand {
	display: inline-flex;
	align-items: center;
	flex: none;
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.5px;
	line-height: 1.2;
	color: var(--color-text-primary);
	transition: color var(--transition-fast) var(--ease-out);
}

.brand img,
.brand .custom-logo {
	max-height: 40px;
	width: auto;
}

.brand-text-light {
	font-weight: 400;
	color: var(--color-text-secondary);
	transition: color var(--transition-fast) var(--ease-out);
}

/* --- Navigation links --------------------------------------------------- */

.main-nav {
	margin-left: auto;
}

.main-nav .menu {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.2vw, 32px);
}

.main-nav a {
	position: relative;
	display: inline-block;
	padding: 6px 0;
	font-size: 14px;
	font-weight: 400;
	/* Explicit, so the links don't inherit body leading and push the bar past
	   the 56px scrolled height. */
	line-height: 1.4;
	color: var(--color-text-secondary);
	transition: color var(--transition-fast) var(--ease-out);
}

/* Underline grows from the left, sitting 4px under the text. */
.main-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 2px;
	width: 0;
	height: 1.5px;
	background: currentColor;
	transition: width var(--transition-fast) var(--ease-out);
}

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

.main-nav a:hover::after {
	width: 100%;
}

/* Current page keeps the underline. */
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current_page_ancestor > a,
.main-nav .current-menu-ancestor > a {
	color: var(--color-text-primary);
}

.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after,
.main-nav .current_page_ancestor > a::after,
.main-nav .current-menu-ancestor > a::after {
	width: 100%;
}

/* Sub-menu for the pillar pages under What we do. */
.main-nav .menu li {
	position: relative;
}

.main-nav .sub-menu {
	position: absolute;
	top: calc(100% + 14px);
	left: -18px;
	min-width: 290px;
	padding: 10px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-card);
	box-shadow: 0 18px 40px -24px rgba(26, 26, 46, 0.28);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity var(--transition-fast) var(--ease-out),
		transform var(--transition-fast) var(--ease-out), visibility var(--transition-fast);
}

.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.main-nav .sub-menu a {
	display: block;
	padding: 9px 12px;
	border-radius: var(--radius-chip);
	line-height: 1.4;
	color: var(--color-text-secondary);
}

.main-nav .sub-menu a::after {
	display: none;
}

.main-nav .sub-menu a:hover {
	background: var(--surface);
	color: var(--color-text-primary);
}

/* A menu item given the nav-cta class renders as the outlined button. */
.main-nav .nav-cta > a,
.main-nav .nav-cta-link {
	padding: 10px 22px;
	border: 1.5px solid var(--color-text-primary);
	border-radius: var(--radius-btn);
	font-size: 13px;
	font-weight: 500;
	color: var(--color-text-primary);
}

.main-nav .nav-cta > a::after,
.main-nav .nav-cta-link::after {
	display: none;
}

.main-nav .nav-cta > a:hover,
.main-nav .nav-cta-link:hover {
	background: var(--color-text-primary);
	color: var(--color-bg);
}

.header-cta {
	flex: none;
}

/* Shown only inside the open mobile menu. Scoped to .main-nav so it outranks
   the .main-nav a rule above. */
.main-nav .nav-cta-mobile {
	display: none;
}

/* --- Hamburger ---------------------------------------------------------- */

.nav-toggle {
	display: none;
	margin-left: auto;
	padding: 0;
	width: 24px;
	height: 24px;
	background: none;
	border: 0;
	color: var(--color-text-primary);
	transition: color var(--transition-fast) var(--ease-out);
}

.nav-toggle-icon {
	display: block;
	width: 24px;
}

.nav-toggle-icon span {
	display: block;
	height: 1.8px;
	border-radius: 2px;
	background: currentColor;
	transition: transform var(--transition-normal) var(--ease-out),
		opacity var(--transition-fast) var(--ease-out);
}

.nav-toggle-icon span + span {
	margin-top: 5px;
}

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

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

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

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

/* Dark, asymmetric, and high contrast — the page's one loud moment.
   The negative top margin pulls the hero up under the sticky header, so the
   bar can sit transparent on the dark field instead of on a white strip. */
.hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: calc(var(--nav-height) + clamp(56px, 8vw, 88px)) 0 clamp(56px, 7vw, 88px);
	/* Owns the first screen, but leaves the next section visibly starting. */
	min-height: min(86vh, 880px);
	display: flex;
	align-items: center;
	background: radial-gradient(
		130% 120% at 78% -10%,
		#282847 0%,
		#1c1c31 42%,
		#14141f 100%
	);
	color: #fff;
	text-align: left;
}

.hero-glow {
	position: absolute;
	right: -10%;
	top: -34%;
	z-index: -1;
	width: min(860px, 80vw);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(184, 115, 51, 0.32),
		rgba(184, 115, 51, 0.07) 46%,
		transparent 66%
	);
	pointer-events: none;
}

/* The network sits to the right of the headline rather than under it. */
.hero-canvas {
	position: absolute;
	inset: -8% -14% -8% 20%;
	z-index: -1;
	color: #fff;
	opacity: 0.22;
	pointer-events: none;
	-webkit-mask-image: radial-gradient(
		80% 88% at 70% 50%,
		#000 24%,
		rgba(0, 0, 0, 0.6) 60%,
		transparent 92%
	);
	mask-image: radial-gradient(
		80% 88% at 70% 50%,
		#000 24%,
		rgba(0, 0, 0, 0.6) 60%,
		transparent 92%
	);
}

.systems-graphic {
	width: 100%;
	height: 100%;
}

.systems-graphic .sg-grid {
	opacity: 0.32;
}

.hero .sg-nodes .sg-hub {
	fill: var(--accent-light);
}

.hero-inner {
	position: relative;
	width: 100%;
}

.hero-copy {
	max-width: 46rem;
}

.hero .eyebrow {
	color: var(--accent-light);
}

.hero .eyebrow::before {
	width: 30px;
	background: var(--accent-light);
}

.hero-title {
	font-size: clamp(2.6rem, 6.4vw, 4.25rem);
	line-height: 1.06;
	letter-spacing: -0.028em;
	margin: 0 0 24px;
	max-width: 20ch;
	color: #fff;
}

.hero-accent {
	position: relative;
	color: var(--accent-light);
	white-space: nowrap;
}

.hero-underline {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.15em;
	width: 100%;
	height: 0.18em;
	color: var(--accent);
	overflow: visible;
}

.hero-lede {
	margin: 0;
	max-width: 36rem;
	font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.78);
}

.hero .btn-row {
	margin-top: 36px;
}

/* On the dark field the filled button has to be the light one. */
.hero .btn-primary {
	background: #fff;
	color: var(--ink);
}

.hero .btn-primary:hover {
	background: rgba(255, 255, 255, 0.9);
}

.hero .btn-primary::after {
	background: linear-gradient(90deg, transparent, rgba(26, 26, 46, 0.14), transparent);
}

.hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 0;
	margin-top: clamp(40px, 5vw, 58px);
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.64);
}

.hero-meta li {
	display: flex;
	align-items: center;
}

/* The separator trails its own item, so a wrapped row never starts with a dot. */
.hero-meta li:not(:last-child)::after {
	content: "";
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.36);
	margin: 0 16px;
	flex: none;
}

.hero-scroll {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	margin-top: clamp(30px, 4vw, 44px);
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.62);
	transition: color 0.25s var(--ease);
}

.hero-scroll:hover {
	color: #fff;
}

.hero-scroll-rail {
	position: relative;
	width: 58px;
	height: 1px;
	background: rgba(255, 255, 255, 0.24);
	overflow: hidden;
	flex: none;
}

.hero-scroll-rail::after {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 20px;
	background: var(--accent-light);
	animation: railSlide 2.8s var(--ease) infinite;
}

@keyframes railSlide {
	0% {
		transform: translateX(-24px);
	}
	60%,
	100% {
		transform: translateX(62px);
	}
}

/* --------------------------------------------------------------------------
   Positioning band
   -------------------------------------------------------------------------- */

.positioning {
	display: grid;
	grid-template-columns: minmax(150px, 220px) 1fr;
	gap: clamp(24px, 5vw, 72px);
	align-items: start;
}

.positioning-label {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--text-3);
	margin: 6px 0 0;
	padding-top: 8px;
	border-top: 1px solid var(--ink);
}

.positioning-body p {
	font-family: var(--serif);
	font-size: clamp(1.25rem, 2.5vw, 1.625rem);
	line-height: 1.42;
	letter-spacing: -0.012em;
	color: var(--text-1);
	margin-bottom: 26px;
}

/* --------------------------------------------------------------------------
   Five-stage arc
   -------------------------------------------------------------------------- */

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

.arc {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
}

.arc-step {
	--arc-pad: clamp(10px, 1.6vw, 20px);
	position: relative;
	padding: 0 var(--arc-pad);
}

/* The rail bleeds past the step padding so the line reads as continuous. */
.arc-rail {
	position: relative;
	display: flex;
	align-items: center;
	height: 18px;
	margin: 0 calc(-1 * var(--arc-pad)) 20px;
}

.arc-line {
	flex: 1;
	height: 1px;
	background: var(--line);
}

.arc-step:first-child .arc-line--before,
.arc-step:last-child .arc-line--after {
	background: transparent;
}

.arc-dot {
	position: relative;
	width: 13px;
	height: 13px;
	flex: none;
	border: 1px solid var(--line-strong);
	border-radius: 50%;
	background: var(--bg);
	display: grid;
	place-items: center;
	transition: border-color 0.25s var(--ease);
}

.arc-dot-inner {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--line-strong);
	transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.arc-num {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--text-3);
	margin: 0 0 6px;
}

.arc-name {
	font-size: 1.1875rem;
	margin: 0 0 8px;
	transition: color 0.2s var(--ease);
}

.arc-copy {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--text-2);
	margin: 0;
	max-width: 30ch;
}

.arc-step:hover .arc-dot {
	border-color: var(--accent);
}

.arc-step:hover .arc-dot-inner {
	background: var(--accent);
	transform: scale(1.25);
}

.arc-step:hover .arc-name {
	color: var(--accent-ink);
}

.arc--full .arc-copy {
	font-size: 0.9375rem;
}

/* Inline arc chips on pillar pages */
.arc-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.arc-inline li {
	font-size: 0.8125rem;
	padding: 6px 12px;
	border: 1px solid var(--line);
	border-radius: var(--radius-chip);
	color: var(--text-3);
}

.arc-inline li.is-active {
	border-color: var(--accent);
	background: var(--accent-soft);
	color: var(--accent-ink);
}

/* --------------------------------------------------------------------------
   Pillars
   -------------------------------------------------------------------------- */

.section--pillars {
	background: var(--bg-alt);
}

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

.pillar-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: clamp(24px, 2.6vw, 32px);
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: var(--radius-card);
	transition: border-color 0.25s var(--ease), transform 0.25s var(--ease),
		box-shadow 0.25s var(--ease);
}

.pillar-card::before {
	content: "";
	position: absolute;
	left: clamp(24px, 2.6vw, 32px);
	right: clamp(24px, 2.6vw, 32px);
	top: 0;
	height: 2px;
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--ease);
}

.pillar-card:hover {
	border-color: var(--line-strong);
	transform: translateY(-2px);
	box-shadow: 0 22px 45px -34px rgba(26, 26, 46, 0.45);
}

.pillar-card:hover::before,
.pillar-card.is-current::before {
	transform: scaleX(1);
}

.pillar-card.is-current {
	background: var(--surface);
}

.pillar-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
}

.pillar-icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: var(--radius-chip);
	background: var(--accent-soft);
	color: var(--accent-ink);
}

.pillar-num {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--text-3);
}

.pillar-title {
	font-size: 1.1875rem;
	line-height: 1.3;
	margin: 0 0 12px;
}

.pillar-title a {
	transition: color 0.2s var(--ease);
}

.pillar-title a:hover {
	color: var(--accent-ink);
}

.pillar-copy {
	font-size: 0.9375rem;
	color: var(--text-2);
	margin: 0 0 22px;
}

.pillar-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-1);
}

.pillar-link .icon {
	transition: transform 0.25s var(--ease);
	color: var(--accent-ink);
}

.pillar-card:hover .pillar-link .icon {
	transform: translateX(3px);
}

.pillar-link--current {
	color: var(--text-3);
	font-weight: 400;
}

/* --------------------------------------------------------------------------
   Audiences
   -------------------------------------------------------------------------- */

.audience-strip {
	background: var(--ink);
	color: #fff;
	padding: clamp(30px, 4vw, 42px) 0;
}

.audience-strip .container {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 12px clamp(24px, 4vw, 48px);
}

.audience-strip-label {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	flex: none;
}

.audience-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 0;
	font-size: 1rem;
}

.audience-row li {
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.94);
}

.audience-row li:not(:last-child)::after {
	content: "";
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	margin: 0 16px;
	flex: none;
}

.audience-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 0;
	margin: 0;
	border-top: 1px solid var(--line);
}

.audience-item {
	padding: 26px 0;
	border-bottom: 1px solid var(--line);
	display: grid;
	grid-template-columns: minmax(180px, 260px) 1fr;
	gap: clamp(16px, 4vw, 48px);
	grid-column: 1 / -1;
}

.audience-item dt {
	font-family: var(--serif);
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--text-1);
}

.audience-item dd {
	margin: 0;
	color: var(--text-2);
	max-width: 68ch;
}

/* --------------------------------------------------------------------------
   Engagement cards
   -------------------------------------------------------------------------- */

.engagement-grid {
	display: grid;
	gap: var(--gap);
}

.engagement-grid--two {
	grid-template-columns: repeat(2, 1fr);
}

.engagement-grid--three {
	grid-template-columns: repeat(3, 1fr);
}

.engagement-card {
	display: flex;
	flex-direction: column;
	padding: clamp(22px, 2.4vw, 30px);
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: var(--radius-card);
	transition: border-color 0.25s var(--ease), transform 0.25s var(--ease),
		box-shadow 0.25s var(--ease);
}

.engagement-card:hover {
	border-color: var(--line-strong);
	transform: translateY(-2px);
	box-shadow: 0 22px 45px -34px rgba(26, 26, 46, 0.4);
}

.engagement-client {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	color: var(--accent-ink);
	margin: 0 0 12px;
}

.engagement-client--lg {
	font-size: 0.9375rem;
	margin-bottom: 16px;
}

.engagement-title {
	font-size: 1.0625rem;
	line-height: 1.35;
	margin: 0 0 12px;
}

.engagement-title a:hover {
	color: var(--accent-ink);
}

.engagement-blurb {
	font-size: 0.9375rem;
	color: var(--text-2);
	margin: 0 0 20px;
}

.engagement-theme {
	margin: 14px 0 0;
	padding-top: 14px;
	border-top: 1px solid var(--line);
	font-size: 0.8125rem;
	color: var(--text-3);
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
}

/* Which of the six pillars an engagement drew on. */
.engagement-pillars {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--line);
}

.engagement-pillars-label {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: var(--text-3);
	margin: 0 0 8px;
}

.engagement-pillars ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
}

.engagement-pillars a {
	display: inline-flex;
	align-items: center;
	font-size: 0.8125rem;
	color: var(--accent-ink);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s var(--ease);
}

.engagement-pillars a:hover {
	border-bottom-color: var(--accent);
}

.engagement-pillar-block {
	margin-top: clamp(32px, 4vw, 44px);
	padding-top: clamp(24px, 3vw, 32px);
	border-top: 1px solid var(--line);
}

.tag {
	font-size: 0.8125rem;
	line-height: 1.3;
	padding: 5px 11px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-chip);
	color: var(--text-2);
}

.tag-list--lg .tag {
	font-size: 0.875rem;
	padding: 7px 13px;
}

/* --------------------------------------------------------------------------
   Why InList — differentiators
   -------------------------------------------------------------------------- */

.section--why {
	background: var(--bg-alt);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--radius-card);
	overflow: hidden;
}

.why-item {
	padding: clamp(24px, 2.8vw, 34px);
	background: var(--bg);
	transition: background-color 0.3s var(--ease);
}

.why-item:hover {
	background: var(--surface);
}

.why-num {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--accent-ink);
	margin: 0 0 16px;
}

.why-title {
	font-size: 1.125rem;
	line-height: 1.3;
	margin: 0 0 10px;
}

.why-copy {
	font-size: 0.9375rem;
	color: var(--text-2);
	margin: 0;
}

.why--full .why-grid {
	grid-template-columns: repeat(2, 1fr);
}

.why--full .why-copy {
	max-width: 46ch;
}

/* --------------------------------------------------------------------------
   Sectors
   -------------------------------------------------------------------------- */

.page-jump {
	position: sticky;
	top: var(--nav-height-scrolled);
	z-index: 40;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--line);
}

.page-jump ul {
	display: flex;
	flex-wrap: wrap;
	gap: 4px clamp(6px, 1.4vw, 18px);
	padding: 12px 0;
}

.page-jump a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	font-size: 0.875rem;
	color: var(--text-2);
	border: 1px solid transparent;
	border-radius: var(--radius-chip);
	transition: color 0.2s var(--ease), border-color 0.2s var(--ease),
		background-color 0.2s var(--ease);
}

.page-jump a .icon {
	color: var(--accent-ink);
}

.page-jump a:hover {
	color: var(--text-1);
	border-color: var(--line);
	background: var(--bg);
}

.section--sector {
	scroll-margin-top: calc(var(--header-h) + 64px);
}

.sector-layout {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
}

.sector-num {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--text-3);
	margin: 0 0 14px;
}

.sector-name {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: clamp(1.5rem, 2.8vw, 1.875rem);
	line-height: 1.2;
	margin: 0 0 16px;
}

.sector-icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	flex: none;
	border-radius: var(--radius-chip);
	background: var(--accent-soft);
	color: var(--accent-ink);
}

.sector-lede {
	font-size: 1.0625rem;
	color: var(--text-2);
	max-width: 58ch;
	margin: 0 0 28px;
}

.sector-subhead {
	font-family: var(--sans);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--text-3);
	margin: 0 0 16px;
}

.sector-main .statement-list {
	margin-bottom: 30px;
}

.pillar-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pillar-links a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	font-size: 0.875rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-chip);
	color: var(--text-1);
	transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.pillar-links a:hover {
	border-color: var(--accent);
	color: var(--accent-ink);
}

.pillar-links .icon {
	color: var(--text-3);
	transition: transform 0.25s var(--ease);
}

.pillar-links a:hover .icon {
	transform: translateX(2px);
	color: var(--accent-ink);
}

.sector-aside .engagement-grid {
	grid-template-columns: 1fr;
}

.section--insights-preview {
	background: var(--bg-alt);
}

/* --------------------------------------------------------------------------
   Filter bar
   -------------------------------------------------------------------------- */

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 14px;
}

.filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 15px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-2);
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: var(--radius-chip);
	transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease),
		color 0.2s var(--ease);
}

.filter-chip:hover {
	border-color: var(--line-strong);
	color: var(--text-1);
}

.filter-chip.is-active {
	background: var(--ink);
	border-color: var(--ink);
	color: #fff;
}

.filter-count {
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--text-3);
}

.filter-chip.is-active .filter-count {
	color: rgba(255, 255, 255, 0.65);
}

.filter-status {
	font-size: 0.875rem;
	color: var(--text-3);
	margin: 0 0 26px;
	min-height: 1.4em;
}

/* Theme intros are stacked and cross-faded, so the row never jumps height. */
.theme-intros {
	position: relative;
	margin: 0 0 30px;
	min-height: 3.2em;
}

.theme-intro {
	position: absolute;
	inset: 0;
	margin: 0;
	max-width: 62ch;
	font-family: var(--serif);
	font-size: clamp(1.0625rem, 1.7vw, 1.1875rem);
	line-height: 1.45;
	color: var(--text-1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

.theme-intro.is-active {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.engagement-card[hidden] {
	display: none;
}

.experience-note {
	margin-top: 36px;
	font-size: 0.9375rem;
	color: var(--text-3);
}

/* --------------------------------------------------------------------------
   Page hero
   -------------------------------------------------------------------------- */

.page-hero {
	position: relative;
	padding: calc(var(--nav-height) + clamp(46px, 6vw, 74px)) 0 clamp(42px, 5vw, 62px);
	background: radial-gradient(
		120% 150% at 82% -20%,
		#282847 0%,
		#1c1c31 46%,
		#14141f 100%
	);
	color: #fff;
}

.page-hero .eyebrow {
	color: var(--accent-light);
}

.page-hero .eyebrow::before {
	background: var(--accent-light);
}

.page-hero .tag {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	color: rgba(255, 255, 255, 0.82);
}

.page-hero .engagement-client {
	color: var(--accent-light);
}

.page-hero-title {
	color: #fff;
	font-size: clamp(2rem, 4.4vw, 2.75rem);
	line-height: 1.14;
	letter-spacing: -0.02em;
	margin: 0;
	max-width: 24ch;
}

.page-hero-lede {
	margin: 22px 0 0;
	max-width: 68ch;
	font-size: clamp(1.0625rem, 1.6vw, 1.125rem);
	color: rgba(255, 255, 255, 0.78);
}

.page-hero-meta {
	margin: 18px 0 0;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 26px;
}

.breadcrumb a {
	color: rgba(255, 255, 255, 0.8);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s var(--ease);
}

.breadcrumb a:hover {
	border-color: rgba(255, 255, 255, 0.5);
}

/* Pillar hero */
.pillar-hero {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: clamp(20px, 3vw, 36px);
	align-items: start;
}

.pillar-hero-mark {
	display: grid;
	place-items: center;
	gap: 8px;
	width: 64px;
	padding: 14px 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-card);
	background: rgba(255, 255, 255, 0.07);
	color: var(--accent-light);
}

.pillar-hero-num {
	font-family: var(--sans);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.6);
}

.pillar-hero-body .page-hero-title {
	max-width: 30ch;
}

.pillar-hero-body .eyebrow {
	color: var(--accent-light);
	margin-bottom: 12px;
}

.pillar-hero-body .eyebrow::before {
	background: var(--accent-light);
}

/* --------------------------------------------------------------------------
   Pillar detail
   -------------------------------------------------------------------------- */

.detail-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(28px, 5vw, 72px);
}

.detail-grid--secondary {
	margin-top: clamp(40px, 6vw, 72px);
	padding-top: clamp(40px, 6vw, 72px);
	border-top: 1px solid var(--line);
}

.detail-heading {
	font-size: 1.25rem;
	margin: 0 0 20px;
}

.detail-copy {
	color: var(--text-2);
	max-width: 60ch;
}

.rule-list li {
	padding: 13px 0;
	border-bottom: 1px solid var(--line);
	color: var(--text-1);
	font-size: 0.9375rem;
}

.rule-list li:first-child {
	border-top: 1px solid var(--line);
}

.statement-list li {
	position: relative;
	padding: 0 0 16px 22px;
	color: var(--text-2);
	font-size: 0.9375rem;
	max-width: 56ch;
}

.statement-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 10px;
	height: 1px;
	background: var(--accent);
}

.statement-list li:last-child {
	padding-bottom: 0;
}

/* Note card */
.note-card {
	display: grid;
	grid-template-columns: minmax(140px, 200px) 1fr;
	gap: clamp(20px, 4vw, 48px);
	padding: clamp(24px, 3vw, 36px);
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-card);
}

.note-label {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--accent-ink);
	margin: 0;
}

.note-body {
	margin: 0;
	color: var(--text-2);
	max-width: 72ch;
}

/* Other pillars */
.other-pillars {
	border-top: 1px solid var(--line);
}

.other-pillars li {
	border-bottom: 1px solid var(--line);
}

.other-pillars a {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 18px 4px;
	transition: padding-left 0.25s var(--ease), color 0.2s var(--ease);
}

.other-pillars a:hover {
	padding-left: 12px;
	color: var(--accent-ink);
}

.other-num {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--text-3);
	flex: none;
}

.other-title {
	font-family: var(--serif);
	font-size: 1.0625rem;
	margin-right: auto;
}

.other-pillars .icon {
	color: var(--text-3);
	transition: transform 0.25s var(--ease), color 0.2s var(--ease);
}

.other-pillars a:hover .icon {
	transform: translateX(3px);
	color: var(--accent-ink);
}

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */

.prose-columns {
	display: grid;
	grid-template-columns: minmax(150px, 240px) 1fr;
	gap: clamp(24px, 5vw, 72px);
	align-items: start;
}

.prose-aside .section-label {
	margin: 0;
}

.prose {
	max-width: 72ch;
	color: var(--text-2);
}

.prose p {
	margin-bottom: 1.35em;
}

.prose-lede {
	font-family: var(--serif);
	font-size: clamp(1.1875rem, 2.1vw, 1.375rem);
	line-height: 1.5;
	color: var(--text-1);
	letter-spacing: -0.01em;
}

.prose h2,
.prose h3 {
	color: var(--text-1);
	margin: 2em 0 0.7em;
}

.prose h2 {
	font-size: clamp(1.4rem, 2.6vw, 1.75rem);
}

.prose h3 {
	font-size: 1.25rem;
}

.prose a {
	color: var(--text-1);
	border-bottom: 1px solid var(--accent);
}

.prose a:hover {
	color: var(--accent-ink);
}

.prose ul,
.prose ol {
	margin: 0 0 1.35em;
	padding-left: 1.2em;
	list-style: disc;
}

.prose ol {
	list-style: decimal;
}

.prose li {
	margin-bottom: 0.5em;
}

.prose blockquote {
	margin: 1.8em 0;
	padding-left: 24px;
	border-left: 2px solid var(--accent);
	font-family: var(--serif);
	font-size: 1.25rem;
	line-height: 1.5;
	color: var(--text-1);
}

.prose img {
	border-radius: var(--radius-card);
	margin: 1.6em 0;
}

.prose figcaption {
	font-size: 0.875rem;
	color: var(--text-3);
	margin-top: 10px;
}

.purpose-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--gap);
}

.purpose-card {
	padding: clamp(24px, 3vw, 36px);
	background: var(--bg-alt);
	border: 1px solid var(--line);
	border-radius: var(--radius-card);
}

.purpose-heading {
	font-size: 1.25rem;
	margin: 0 0 14px;
}

.purpose-card p {
	color: var(--text-2);
	margin: 0;
}

/* Team */
.team-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--gap);
}

.team-card {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: clamp(18px, 2.4vw, 28px);
	padding: clamp(22px, 2.6vw, 32px);
	background: var(--bg);
	border: 1px solid var(--line);
	border-radius: var(--radius-card);
}

.team-portrait {
	width: 88px;
	height: 88px;
	border-radius: var(--radius-card);
	background: var(--ink);
	display: grid;
	place-items: center;
	overflow: hidden;
}

.team-portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-initials {
	font-family: var(--serif);
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.92);
	letter-spacing: 0.02em;
}

.team-name {
	font-size: 1.25rem;
	margin: 0 0 4px;
}

.team-role {
	font-size: 0.875rem;
	color: var(--accent-ink);
	margin: 0 0 16px;
}

.team-bio {
	font-size: 0.9375rem;
	color: var(--text-2);
	margin: 0 0 12px;
}

.team-card .tag-list {
	margin-top: 16px;
}

/* --------------------------------------------------------------------------
   Insights
   -------------------------------------------------------------------------- */

.article-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(28px, 3vw, 40px);
}

.article-card {
	display: flex;
	flex-direction: column;
	padding-top: 22px;
	border-top: 1px solid var(--ink);
}

.article-thumb {
	display: block;
	margin-bottom: 20px;
	border-radius: var(--radius-card);
	overflow: hidden;
}

.article-thumb img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.4s var(--ease);
}

.article-card:hover .article-thumb img {
	transform: scale(1.02);
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 14px;
	font-size: 0.8125rem;
	color: var(--text-3);
	margin: 0 0 14px;
}

.article-category {
	color: var(--accent-ink);
	font-weight: 500;
}

.article-title {
	font-size: 1.1875rem;
	line-height: 1.32;
	margin: 0 0 12px;
}

.article-title a:hover {
	color: var(--accent-ink);
}

.article-excerpt {
	font-size: 0.9375rem;
	color: var(--text-2);
	margin: 0 0 20px;
}

.article-card .text-link {
	margin-top: auto;
	align-self: flex-start;
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: clamp(40px, 5vw, 64px);
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	font-size: 0.9375rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-chip);
	color: var(--text-2);
	transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.pagination .page-numbers:hover {
	border-color: var(--line-strong);
	color: var(--text-1);
}

.pagination .page-numbers.current {
	background: var(--ink);
	border-color: var(--ink);
	color: #fff;
}

.empty-note {
	color: var(--text-3);
}

/* Single article */
.single-hero {
	padding: calc(var(--nav-height) + clamp(40px, 5vw, 64px)) 0 clamp(32px, 4vw, 44px);
	background: radial-gradient(
		120% 150% at 82% -20%,
		#282847 0%,
		#1c1c31 46%,
		#14141f 100%
	);
	color: #fff;
}

.single-hero .article-category {
	color: var(--accent-light);
}

.single-title {
	color: #fff;
}

.single-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.62);
	margin: 0 0 20px;
}

.single-title {
	font-size: clamp(2rem, 4.2vw, 2.625rem);
	line-height: 1.16;
	letter-spacing: -0.02em;
	margin: 0;
}

.single-standfirst {
	margin: 22px 0 0;
	font-size: clamp(1.0625rem, 1.7vw, 1.1875rem);
	color: rgba(255, 255, 255, 0.78);
	max-width: 62ch;
}

.single-figure {
	margin: 0;
	padding: clamp(28px, 4vw, 48px) 0 0;
}

.single-figure img {
	width: 100%;
	border-radius: var(--radius-card);
}

.section--article-body {
	padding: clamp(44px, 6vw, 76px) 0;
}

.section--article-body .prose {
	font-size: 1.0625rem;
	line-height: 1.72;
}

.single-footer {
	padding-bottom: clamp(48px, 6vw, 76px);
}

.single-back {
	padding-bottom: 28px;
	border-bottom: 1px solid var(--line);
}

.post-nav {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--gap);
	margin-top: 28px;
}

.post-nav-item {
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: var(--radius-card);
	transition: border-color 0.2s var(--ease);
}

.post-nav-item:hover {
	border-color: var(--line-strong);
}

.post-nav-item--next {
	text-align: right;
}

.post-nav-label {
	display: block;
	font-size: 0.8125rem;
	color: var(--text-3);
	margin-bottom: 6px;
}

.post-nav-title {
	font-family: var(--serif);
	font-size: 1.0625rem;
	line-height: 1.35;
	color: var(--text-1);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
}

.contact-form {
	display: grid;
	gap: 20px;
}

.field-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin: 0;
}

.field {
	display: grid;
	gap: 8px;
	margin: 0;
}

.field label {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--text-1);
}

.field-optional {
	font-weight: 400;
	color: var(--text-3);
	margin-left: 6px;
}

.field input,
.field textarea {
	width: 100%;
	padding: 13px 15px;
	font-family: var(--sans);
	font-size: 1rem;
	color: var(--text-1);
	background: var(--bg);
	border: 1px solid var(--line-strong);
	border-radius: var(--radius-chip);
	transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--ink);
	box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.08);
}

.field textarea {
	resize: vertical;
	min-height: 150px;
}

.field--hidden {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-actions {
	margin: 4px 0 0;
}

.form-notice {
	padding: 14px 18px;
	border-radius: var(--radius-chip);
	border: 1px solid var(--line);
	background: var(--surface);
	font-size: 0.9375rem;
	margin-bottom: 24px;
}

.form-notice--ok {
	border-color: var(--accent);
	background: var(--accent-soft);
	color: var(--accent-ink);
}

.form-notice--error {
	border-color: #c0392b;
	background: #fdf2f0;
	color: #96271b;
}

.contact-aside {
	display: grid;
	gap: 32px;
	padding: clamp(24px, 3vw, 32px);
	background: var(--bg-alt);
	border: 1px solid var(--line);
	border-radius: var(--radius-card);
}

.contact-heading {
	font-size: 1.0625rem;
	margin: 0 0 14px;
}

.office + .office {
	margin-top: 18px;
}

.office-city {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	margin: 0 0 4px;
	color: var(--text-1);
}

.office-city .icon {
	color: var(--accent-ink);
}

.office-lines {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--text-2);
	padding-left: 26px;
}

.contact-line {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 10px;
	font-size: 0.9375rem;
}

.contact-line .icon {
	color: var(--accent-ink);
}

.contact-line a {
	border-bottom: 1px solid var(--line-strong);
	transition: border-color 0.2s var(--ease);
}

.contact-line a:hover {
	border-color: var(--accent);
}

.contact-note {
	font-size: 0.9375rem;
	color: var(--text-2);
	margin: 0;
}

/* --------------------------------------------------------------------------
   Call to action band
   -------------------------------------------------------------------------- */

.section--cta {
	background: var(--ink);
	color: #fff;
	border-top: 0 !important;
}

.cta-title {
	font-size: clamp(1.75rem, 3.4vw, 2.25rem);
	line-height: 1.18;
	color: #fff;
	margin: 0 0 16px;
	max-width: 26ch;
}

.cta-body {
	color: rgba(255, 255, 255, 0.76);
	max-width: 60ch;
	margin: 0;
}

.section--cta .btn-primary {
	background: #fff;
	color: var(--ink);
}

.section--cta .btn-primary:hover {
	background: rgba(255, 255, 255, 0.9);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
	background: var(--ink);
	color: rgba(255, 255, 255, 0.78);
	padding: clamp(56px, 7vw, 84px) 0 32px;
	font-size: 0.9375rem;
}

.footer-top {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1.3fr 1fr;
	gap: clamp(28px, 4vw, 56px);
	padding-bottom: clamp(36px, 5vw, 56px);
}

.brand--footer {
	color: #fff;
	margin-bottom: 18px;
}

.brand--footer .brand-text-light {
	color: rgba(255, 255, 255, 0.6);
}

.brand--footer .brand-mark::after {
	border-color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
	font-family: var(--serif);
	font-size: 1.125rem;
	color: #fff;
	margin: 0 0 12px;
}

/* Three-word mark under the wordmark. */
.footer-mark {
	font-family: var(--serif);
	font-size: 1.125rem;
	color: #fff;
	letter-spacing: -0.005em;
	margin: 0 0 12px;
}

.footer-registration {
	color: rgba(255, 255, 255, 0.5);
}

.footer-positioning {
	max-width: 40ch;
	color: rgba(255, 255, 255, 0.66);
	margin: 0 0 20px;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.86);
	transition: color 0.2s var(--ease);
}

.footer-social a:hover {
	color: #fff;
}

.footer-heading {
	font-family: var(--sans);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 0 16px;
}

.footer-list li + li {
	margin-top: 10px;
}

.footer-list a {
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.2s var(--ease);
}

.footer-list a:hover {
	color: #fff;
}

.footer-list--plain .footer-city {
	display: block;
	color: #fff;
}

.footer-list--plain .footer-country {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.875rem;
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	justify-content: space-between;
	padding-top: 26px;
	border-top: 1px solid var(--ink-line);
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
	margin: 0;
}

/* --------------------------------------------------------------------------
   Reveal on scroll — opt-in, and off entirely for reduced motion
   -------------------------------------------------------------------------- */

.js-reveal .reveal {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.js-reveal .reveal.is-in {
	opacity: 1;
	transform: none;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
	.pillar-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.article-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.engagement-grid--three {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-top {
		grid-template-columns: 1.4fr 1fr 1fr;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 960px) {
	.header-inner {
		padding-left: var(--nav-padding-x-mobile);
		padding-right: var(--nav-padding-x-mobile);
	}

	.header-cta {
		display: none;
	}

	.nav-toggle {
		display: block;
	}

	/* Full-width dropdown directly below the bar. Anchored to the header, so
	   it follows the bar as it shrinks on scroll. */
	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		max-height: calc(100vh - var(--nav-height-scrolled));
		overflow-y: auto;
		margin: 0;
		padding: 16px var(--nav-padding-x-mobile);
		background: var(--nav-bg-scrolled);
		-webkit-backdrop-filter: var(--nav-blur);
		backdrop-filter: var(--nav-blur);
		border-bottom: 1px solid var(--color-border);
		display: none;
	}

	.main-nav.is-open {
		display: block;
		animation: drawerIn var(--transition-fast) var(--ease-out) both;
	}

	@keyframes drawerIn {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}
		to {
			opacity: 1;
			transform: none;
		}
	}

	.main-nav .menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.main-nav .menu > li {
		border-bottom: 1px solid var(--color-border);
	}

	.main-nav .menu > li:last-child {
		border-bottom: 0;
	}

	.main-nav a {
		display: block;
		padding: 12px 0;
		font-size: 16px;
		color: var(--color-text-primary);
	}

	.main-nav a::after {
		display: none;
	}

	/* CTA as a full-width button at the foot of the menu. */
	.main-nav .nav-cta-mobile {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		margin-top: 16px;
		padding: 12px 22px;
		font-size: 14px;
		font-weight: 500;
		color: var(--color-text-primary);
	}

	.main-nav .nav-cta-mobile:hover {
		background: var(--color-text-primary);
		color: var(--color-bg);
	}

	.main-nav .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		min-width: 0;
		padding: 0 0 10px 14px;
		border: 0;
		box-shadow: none;
	}

	.main-nav .sub-menu a {
		padding: 9px 0;
		font-size: 0.9375rem;
		color: var(--text-2);
	}

	.main-nav .nav-cta > a,
	.main-nav .nav-cta-link {
		display: inline-block;
		margin-top: 16px;
	}

	.arc {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.arc-step {
		display: grid;
		grid-template-columns: 18px 1fr;
		grid-template-areas:
			"rail num"
			"rail name"
			"rail copy";
		column-gap: 18px;
		padding: 0 0 26px;
	}

	.arc-step:last-child {
		padding-bottom: 0;
	}

	.arc-rail {
		grid-area: rail;
		flex-direction: column;
		height: 100%;
		margin: 0;
		align-self: stretch;
	}

	.arc-line {
		width: 1px;
		flex: 1;
		height: auto;
	}

	.arc-line--before {
		max-height: 6px;
	}

	.arc-num {
		grid-area: num;
	}

	.arc-name {
		grid-area: name;
	}

	.arc-copy {
		grid-area: copy;
		max-width: none;
	}

	.engagement-grid--two,
	.engagement-grid--three,
	.pillar-grid,
	.purpose-grid,
	.team-grid,
	.detail-grid,
	.contact-grid,
	.article-grid,
	.post-nav,
	.why-grid,
	.why--full .why-grid,
	.sector-layout {
		grid-template-columns: 1fr;
	}

	.page-jump {
		position: static;
	}

	.page-jump ul {
		gap: 4px;
		overflow-x: auto;
		flex-wrap: nowrap;
		scrollbar-width: none;
	}

	.page-jump ul::-webkit-scrollbar {
		display: none;
	}

	.page-jump a {
		white-space: nowrap;
	}

	.positioning,
	.prose-columns {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.positioning-label {
		display: inline-block;
	}

	.audience-item {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.note-card,
	.pillar-hero {
		grid-template-columns: 1fr;
	}

	.section-head--split {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.footer-top {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	/* The graphic goes full width behind the copy rather than beside it. */
	.hero-canvas {
		inset: -6% -22%;
		opacity: 0.16;
	}

	.hero-glow {
		top: -22%;
		right: -30%;
	}

	.hero-title {
		max-width: none;
	}

	.hero .eyebrow,
	.hero .btn-row,
	.hero-meta {
		justify-content: flex-start;
	}

	.hero-lede {
		margin-left: 0;
	}

	.hero-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.hero-meta li:not(:last-child)::after {
		display: none;
	}

	.btn {
		width: 100%;
	}

	.btn-row {
		flex-direction: column;
		align-items: stretch;
	}

	.field-row {
		grid-template-columns: 1fr;
	}

	.team-card {
		grid-template-columns: 1fr;
	}

	.footer-top {
		grid-template-columns: 1fr;
	}

	.post-nav-item--next {
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}

	.js-reveal .reveal {
		opacity: 1;
		transform: none;
	}
}

/* ==========================================================================
   Motion layer
   Everything here is transform and opacity only, so it stays off the main
   thread. All of it is neutralised by the reduced-motion block at the end.
   ========================================================================== */

/* Cross-page fade, where the browser supports view transitions. */
@view-transition {
	navigation: auto;
}

::view-transition-old(root) {
	animation: vtOut 0.2s var(--ease) both;
}

::view-transition-new(root) {
	animation: vtIn 0.32s var(--ease) both;
}

@keyframes vtOut {
	to {
		opacity: 0;
	}
}

@keyframes vtIn {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
}

/* --- Reading progress in the header ------------------------------------- */

/* Sits on the bottom edge of the white bar. */
.scroll-progress {
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--accent), #d3a06a);
	transform: scaleX(var(--progress, 0));
	transform-origin: left center;
	opacity: 0;
	transition: opacity 0.3s var(--ease);
	pointer-events: none;
}

.site-header.is-stuck .scroll-progress {
	opacity: 1;
}

/* --- Hero entrance ------------------------------------------------------ */

@keyframes riseIn {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* The headline wipes up from its own baseline rather than just fading. */
@keyframes headlineIn {
	from {
		opacity: 0;
		clip-path: inset(0 0 105% 0);
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		clip-path: inset(0 0 -25% 0);
		transform: none;
	}
}

.hero .eyebrow {
	animation: riseIn 0.7s var(--ease) 0.06s both;
}

.hero-title {
	animation: headlineIn 0.95s var(--ease) 0.14s both;
}

.hero-lede {
	animation: riseIn 0.8s var(--ease) 0.32s both;
}

.hero .btn-row {
	animation: riseIn 0.8s var(--ease) 0.44s both;
}

.hero-meta {
	animation: riseIn 0.8s var(--ease) 0.56s both;
}

.hero-scroll {
	animation: riseIn 0.8s var(--ease) 0.68s both;
}

/* The accent underline draws itself just after the headline settles. */
.hero-underline path {
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	animation: drawLine 0.9s var(--ease) 1.05s both;
}

.hero-glow {
	animation: glowDrift 26s ease-in-out infinite alternate;
}

/* --- Systems graphic: draws itself, then drifts ------------------------- */

.systems-graphic {
	animation: drift 32s ease-in-out infinite alternate;
}

@keyframes drift {
	from {
		transform: translate3d(0, 0, 0) scale(1);
	}
	to {
		transform: translate3d(-16px, -10px, 0) scale(1.035);
	}
}

.sg-lines path {
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
	animation: drawLine 2s var(--ease) both;
}

@keyframes drawLine {
	to {
		stroke-dashoffset: 0;
	}
}

.sg-lines path:nth-child(1) {
	animation-delay: 0.2s;
}
.sg-lines path:nth-child(2) {
	animation-delay: 0.32s;
}
.sg-lines path:nth-child(3) {
	animation-delay: 0.5s;
}
.sg-lines path:nth-child(4) {
	animation-delay: 0.58s;
}
.sg-lines path:nth-child(5) {
	animation-delay: 0.66s;
}
.sg-lines path:nth-child(6) {
	animation-delay: 0.74s;
}
.sg-lines path:nth-child(7) {
	animation-delay: 0.82s;
}
.sg-lines path:nth-child(8) {
	animation-delay: 0.9s;
}

.sg-nodes circle {
	transform-box: fill-box;
	transform-origin: center;
	opacity: 0;
	animation: nodeIn 0.6s var(--ease) both;
}

@keyframes nodeIn {
	from {
		opacity: 0;
		transform: scale(0.2);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.sg-nodes circle:nth-child(1) {
	animation-delay: 0.8s;
}
.sg-nodes circle:nth-child(2) {
	animation-delay: 0.87s;
}
.sg-nodes circle:nth-child(3) {
	animation-delay: 0.94s;
}
.sg-nodes circle:nth-child(5) {
	animation-delay: 1.08s;
}
.sg-nodes circle:nth-child(6) {
	animation-delay: 1.15s;
}
.sg-nodes circle:nth-child(7) {
	animation-delay: 1.22s;
}
.sg-nodes circle:nth-child(9) {
	animation-delay: 1.36s;
}
.sg-nodes circle:nth-child(10) {
	animation-delay: 1.43s;
}
.sg-nodes circle:nth-child(11) {
	animation-delay: 1.5s;
}

/* The two junction nodes keep breathing after everything lands.
   Selector needs the type as well, to outrank `.sg-nodes circle` above. */
.sg-nodes circle.sg-hub {
	animation: nodeIn 0.6s var(--ease) 1s both, hubPulse 4s ease-in-out 1.8s infinite;
}

@keyframes hubPulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.5);
	}
}

/* Scroll-linked parallax where supported — no JavaScript involved. */
@supports (animation-timeline: scroll()) {
	.hero-canvas {
		animation: heroPar linear both;
		animation-timeline: scroll(root);
		animation-range: 0 80vh;
	}

	@keyframes heroPar {
		to {
			transform: translateY(60px);
			opacity: 0.045;
		}
	}
}

/* --- Reveal on scroll --------------------------------------------------- */

.js-reveal .reveal {
	opacity: 0;
	transform: translateY(20px) scale(0.995);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js-reveal .reveal.is-in {
	opacity: 1;
	transform: none;
}

/* --- Five-stage arc: the rail draws, then the stages land --------------- */

.arc-step:nth-child(1) {
	--i: 0;
}
.arc-step:nth-child(2) {
	--i: 1;
}
.arc-step:nth-child(3) {
	--i: 2;
}
.arc-step:nth-child(4) {
	--i: 3;
}
.arc-step:nth-child(5) {
	--i: 4;
}

.arc-anim .arc-step {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
	transition-delay: calc(var(--i, 0) * 90ms);
}

.arc-anim .arc-line {
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.5s var(--ease);
	transition-delay: calc(var(--i, 0) * 90ms + 60ms);
}

.arc-anim .arc-dot {
	transform: scale(0);
	transition: transform 0.45s var(--ease);
	transition-delay: calc(var(--i, 0) * 90ms + 140ms);
}

.arc-anim.is-in .arc-step {
	opacity: 1;
	transform: none;
}

.arc-anim.is-in .arc-line {
	transform: scaleX(1);
}

.arc-anim.is-in .arc-dot {
	transform: scale(1);
}

/* --- Pillar cards: navy icon tile, and light that follows the cursor ---- */

.pillar-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(
		320px circle at var(--mx, 50%) var(--my, 0%),
		rgba(184, 115, 51, 0.13),
		transparent 68%
	);
	opacity: 0;
	transition: opacity 0.35s var(--ease);
	pointer-events: none;
}

.pillar-card:hover::after {
	opacity: 1;
}

.pillar-card > * {
	position: relative;
	z-index: 1;
}

.pillar-icon {
	transition: transform 0.35s var(--ease), background-color 0.35s var(--ease),
		color 0.35s var(--ease);
}

.pillar-card:hover .pillar-icon {
	transform: translateY(-3px) scale(1.06);
	background: var(--ink);
	color: #fff;
}

/* --- Buttons: a single pass of light on hover --------------------------- */

.btn {
	position: relative;
	overflow: hidden;
}

.btn-primary::after {
	content: "";
	position: absolute;
	top: 0;
	left: -40%;
	width: 35%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.24),
		transparent
	);
	transform: skewX(-18deg);
	transition: left 0.6s var(--ease);
	pointer-events: none;
}

.btn-primary:hover::after {
	left: 135%;
}

.section--cta .btn-primary::after {
	background: linear-gradient(90deg, transparent, rgba(26, 26, 46, 0.14), transparent);
}

/* --- Call to action band: one slow drifting glow ------------------------ */

.section--cta {
	position: relative;
	overflow: hidden;
}

.section--cta::before {
	content: "";
	position: absolute;
	left: -12%;
	top: -70%;
	width: 780px;
	height: 780px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(184, 115, 51, 0.17), transparent 62%);
	animation: glowDrift 24s ease-in-out infinite alternate;
	pointer-events: none;
}

@keyframes glowDrift {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(150px, 70px, 0) scale(1.14);
	}
}

.section--cta .container {
	position: relative;
	z-index: 1;
}

/* --- Leadership portraits ---------------------------------------------- */

.team-portrait {
	transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.team-card:hover .team-portrait {
	transform: translateY(-3px);
	box-shadow: 0 16px 32px -20px rgba(26, 26, 46, 0.65);
}

.team-initials {
	transition: transform 0.4s var(--ease);
}

.team-card:hover .team-initials {
	transform: scale(1.07);
}

/* --- Engagement cards re-entering after a filter change ---------------- */

@keyframes cardIn {
	from {
		opacity: 0;
		transform: translateY(14px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.engagement-card.anim-in {
	animation: cardIn 0.5s var(--ease) both;
	animation-delay: calc(var(--d, 0) * 45ms);
}

/* --- Filter chips ------------------------------------------------------- */

.filter-chip {
	transform: translateY(0);
}

.filter-chip:hover {
	transform: translateY(-1px);
}

.filter-chip.is-active .filter-count {
	animation: riseIn 0.35s var(--ease) both;
}

@media (max-width: 960px) {
	/* The mobile rail runs vertically, so it has to grow downward. */
	.arc-anim .arc-line {
		transform: scaleY(0);
		transform-origin: top center;
	}

	.arc-anim.is-in .arc-line {
		transform: scaleY(1);
	}

}

/* Nothing above survives a reduced-motion preference. */
@media (prefers-reduced-motion: reduce) {
	.sg-lines path {
		stroke-dashoffset: 0;
	}

	.sg-nodes circle {
		opacity: 1;
		transform: none;
	}

	.arc-anim .arc-step,
	.arc-anim .arc-line,
	.arc-anim .arc-dot {
		opacity: 1;
		transform: none;
	}

	.hero .eyebrow,
	.hero-title,
	.hero-lede,
	.hero .btn-row,
	.hero-meta,
	.hero-scroll {
		opacity: 1;
		clip-path: none;
		transform: none;
	}

	.hero-underline path {
		stroke-dashoffset: 0;
	}

	.hero-scroll-rail::after {
		transform: none;
	}

	.scroll-progress,
	.section--cta::before,
	.pillar-card::after,
	.btn-primary::after {
		display: none;
	}
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */

@media print {
	.site-header,
	.nav-toggle,
	.section--cta,
	.site-footer,
	.hero-canvas {
		display: none !important;
	}

	body {
		color: #000;
	}
}
