/* ============================================================
   CCAN Access — main stylesheet
   Palette : Navy #072146 + Cool Pearl #F8FAFC
   Type    : Playfair Display (headings) + Inter (body)
   ============================================================ */

/* -----------------------------------------------------------
   1. Design tokens
   ----------------------------------------------------------- */
:root {
	/* Brand */
	--navy-900:        #04152C;
	--navy-800:        #072146;   /* PRIMARY */
	--navy-700:        #0F2F5C;
	--navy-600:        #1A4078;
	--navy-500:        #2C5896;
	--navy-100:        #D6DEEA;
	--navy-50:         #EEF2F8;

	--pearl-50:        #FFFFFF;   /* pure white (cards, top-of-page) */
	--pearl-100:       #F8FAFC;   /* COOL PEARL — page background */
	--pearl-200:       #F1F5F9;   /* section background */
	--pearl-300:       #E2E8F0;   /* borders / dividers */

	--gold-500:        #C9A65A;   /* warm accent */
	--gold-300:        #E5D2A1;

	--accent-500:      #1F5AE0;   /* CTA blue (pops on dark photo) */
	--accent-600:      #1747B8;

	--ink-900:         #0B1A2E;
	--ink-700:         #334155;
	--ink-500:         #64748B;
	--ink-300:         #94A3B8;

	--success-500:     #1E9C6B;
	--danger-500:      #C0392B;

	/* Semantic */
	--bg:              var(--pearl-100);
	--surface:         var(--pearl-50);
	--surface-2:       #FFFFFF;
	--border:          rgba(7, 33, 70, 0.08);
	--border-strong:   rgba(7, 33, 70, 0.16);
	--text:            var(--ink-900);
	--text-muted:      var(--ink-500);
	--primary:         var(--navy-800);
	--primary-hover:   var(--navy-700);
	--on-primary:      var(--pearl-100);

	/* Typography */
	--font-display:    'Playfair Display', Georgia, 'Times New Roman', serif;
	--font-sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	/* Scale */
	--text-xs:   0.75rem;
	--text-sm:   0.875rem;
	--text-base: 1rem;
	--text-lg:   1.125rem;
	--text-xl:   1.25rem;
	--text-2xl:  1.5rem;
	--text-3xl:  1.875rem;
	--text-4xl:  2.25rem;
	--text-5xl:  3rem;
	--text-6xl:  3.75rem;
	--text-7xl:  4.5rem;

	/* Spacing */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.25rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-10: 2.5rem;
	--space-12: 3rem;
	--space-16: 4rem;
	--space-20: 5rem;
	--space-24: 6rem;

	/* Radius */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 18px;
	--radius-xl: 24px;
	--radius-pill: 999px;

	/* Shadow */
	--shadow-sm: 0 1px 2px rgba(7, 33, 70, 0.06);
	--shadow-md: 0 6px 18px rgba(7, 33, 70, 0.08);
	--shadow-lg: 0 18px 40px rgba(7, 33, 70, 0.14);
	--shadow-xl: 0 28px 60px rgba(7, 33, 70, 0.22);

	/* Layout */
	--container: 1200px;
	--header-h: 78px;

	/* Motion */
	--ease: cubic-bezier(0.2, 0.7, 0.2, 1);
	--dur-fast: 160ms;
	--dur: 240ms;
	--dur-slow: 420ms;
}

/* -----------------------------------------------------------
   2. Reset / base
   ----------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	scroll-padding-top: var(--header-h);
	/* The mobile slide-in nav parks off-screen to the right; clip horizontal
	   overflow so it never creates a stray bottom scrollbar. `clip` (not
	   `hidden`) avoids creating a scroll container that would break the
	   sticky header. */
	overflow-x: clip;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: var(--text-base);
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: 'cv11', 'ss01', 'ss03';
}

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

a {
	color: var(--primary);
	text-decoration: none;
	transition: color var(--dur-fast) var(--ease);
}
a:hover { color: var(--primary-hover); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin: 0 0 0.5em;
	color: var(--ink-900);
}

p { margin: 0 0 1em; }

ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

::selection { background: var(--navy-800); color: var(--pearl-100); }

/* Accessibility */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px; width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	white-space: nowrap;
}
.skip-link {
	position: absolute; left: -9999px; top: 8px; z-index: 100000;
	background: var(--navy-800); color: var(--pearl-100);
	padding: 10px 16px; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { left: 16px; }

:focus-visible {
	outline: 2px solid var(--navy-700);
	outline-offset: 3px;
	border-radius: 6px;
}

/* -----------------------------------------------------------
   3. Layout primitives
   ----------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section {
	padding-block: clamp(4rem, 8vw, 7rem);
}
.section--pearl,
.section--cream { background: var(--pearl-200); }
.section--white { background: var(--pearl-50); }
.section--navy {
	background: var(--navy-800);
	color: var(--pearl-100);
	position: relative;
	overflow: hidden;
}
.section--navy::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(800px circle at 90% 10%, rgba(201,166,90,0.10), transparent 60%),
	            radial-gradient(700px circle at 10% 90%, rgba(44,88,150,0.35), transparent 55%);
	pointer-events: none;
}
.section__head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section__head--center { margin-inline: auto; text-align: center; }

/* -----------------------------------------------------------
   4. Typography helpers
   ----------------------------------------------------------- */
.display {
	font-family: var(--font-sans);
	font-size: clamp(1.875rem, 3.2vw, 2.75rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.022em;
	color: var(--ink-900);
	margin: 0;
}
.display--light { color: var(--pearl-100); }
.display__accent { color: var(--gold-300); font-style: italic; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--navy-600);
	margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--navy-700); }
.eyebrow--light { color: var(--gold-300); }
.eyebrow--accent { color: var(--accent-500); }
.eyebrow--accent .eyebrow__dot { background: var(--accent-500); box-shadow: 0 0 0 4px rgba(31,90,224,0.18); }
.eyebrow__dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--gold-500);
	box-shadow: 0 0 0 4px rgba(201,166,90,0.18);
}

.link-muted {
	color: var(--ink-700);
	font-weight: 500;
	font-size: var(--text-sm);
}
.link-muted:hover { color: var(--navy-800); }

/* -----------------------------------------------------------
   5. Buttons
   ----------------------------------------------------------- */
.btn {
	--btn-bg: var(--navy-800);
	--btn-fg: var(--pearl-100);
	--btn-border: transparent;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 1.25rem;
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: var(--text-sm);
	letter-spacing: 0.01em;
	line-height: 1;
	border-radius: var(--radius-pill);
	background: var(--btn-bg);
	color: var(--btn-fg);
	border: 1px solid var(--btn-border);
	cursor: pointer;
	transition: transform var(--dur-fast) var(--ease),
	            box-shadow var(--dur) var(--ease),
	            background var(--dur-fast) var(--ease),
	            color var(--dur-fast) var(--ease);
	white-space: nowrap;
}
.btn:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
	color: var(--btn-fg);
}
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--navy-800); --btn-fg: var(--pearl-100); }
.btn--primary:hover { --btn-bg: var(--navy-700); }

.btn--cream { --btn-bg: var(--pearl-100); --btn-fg: var(--navy-800); }
.btn--cream:hover { --btn-bg: #fff; }

.btn--ghost {
	--btn-bg: transparent;
	--btn-fg: var(--navy-800);
	--btn-border: var(--border-strong);
}
.btn--ghost:hover { --btn-bg: rgba(7,33,70,0.04); }

.btn--ghost-light {
	--btn-bg: transparent;
	--btn-fg: #FFFFFF;
	--btn-border: rgba(255,255,255,0.65);
}
.btn--ghost-light:hover {
	--btn-bg: rgba(255,255,255,0.08);
	--btn-border: #FFFFFF;
}

.btn--accent { --btn-bg: var(--accent-500); --btn-fg: #FFFFFF; }
.btn--accent:hover { --btn-bg: var(--accent-600); }

.btn--lg { padding: 0.95rem 1.6rem; font-size: var(--text-base); }

/* -----------------------------------------------------------
   6. Site header
   ----------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(248, 250, 252, 0.85);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid transparent;
	transition: background var(--dur) var(--ease),
	            border-color var(--dur) var(--ease),
	            box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled {
	background: rgba(248, 250, 252, 0.96);
	border-bottom-color: var(--border);
	box-shadow: var(--shadow-sm);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: var(--header-h);
}

/* Brand */
.site-header__brand { flex: 0 0 auto; }
.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	color: var(--navy-800);
}
.brand:hover { color: var(--navy-700); }
.brand__mark {
	width: 38px; height: 38px;
	display: grid; place-items: center;
	color: var(--navy-800);
}
.brand__text { display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand__name {
	font-family: var(--font-display);
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}
.brand__tagline {
	font-family: var(--font-sans);
	font-size: 0.7rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--navy-600);
	margin-top: 2px;
}
.brand--light { color: var(--pearl-100); }
.brand--light .brand__mark { color: var(--pearl-100); }
.brand--light .brand__tagline { color: var(--pearl-300); }

/* Nav */
/* DOM order is brand → actions → nav; restore the intended desktop visual
   order (brand · nav · actions) with flex `order` so the markup reorder
   (button before nav, for mobile) doesn't shuffle the desktop header. */
.site-nav { flex: 1 1 auto; display: flex; justify-content: center; order: 1; }
.nav-menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: clamp(1.1rem, 2.2vw, 2rem);
	margin: 0;
	padding: 0;
}
.nav-menu > .menu-item > a {
	position: relative;
	display: inline-block;
	font-family: var(--font-sans);
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--ink-900);
	padding: 0.5rem 0;
	letter-spacing: 0.01em;
}
.nav-menu > .menu-item > a::after {
	content: '';
	position: absolute;
	left: 0; right: 100%; bottom: 0;
	height: 2px;
	background: var(--navy-800);
	border-radius: 2px;
	transition: right var(--dur) var(--ease);
}
.nav-menu > .menu-item > a:hover,
.nav-menu > .menu-item.current-menu-item > a {
	color: var(--navy-800);
}
.nav-menu > .menu-item > a:hover::after,
.nav-menu > .menu-item.current-menu-item > a::after { right: 0; }

/* Dropdowns (basic) */
.nav-menu .sub-menu {
	display: none;
	position: absolute;
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	padding: 0.5rem;
	box-shadow: var(--shadow-md);
	min-width: 200px;
	list-style: none;
}
.nav-menu .menu-item-has-children { position: relative; }
.nav-menu .menu-item-has-children:hover > .sub-menu,
.nav-menu .menu-item-has-children:focus-within > .sub-menu { display: block; }
.nav-menu .sub-menu a { display: block; padding: 0.5rem 0.75rem; border-radius: 6px; color: var(--ink-900); font-size: var(--text-sm); }
.nav-menu .sub-menu a:hover { background: var(--pearl-200); color: var(--navy-800); }

/* Header actions */
.site-header__actions {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 1rem;
	order: 2; /* keep actions to the right of the nav on desktop (see .site-nav) */
}

/* In-menu CTA only appears inside the mobile slide-in panel */
.site-nav__cta { display: none; }

/* Hamburger */
.nav-toggle {
	display: none;
	width: 44px; height: 44px;
	border: 1px solid var(--border-strong);
	background: transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	padding: 0;
	position: relative;
}
.nav-toggle__bar {
	position: absolute;
	left: 11px;
	width: 22px; height: 2px;
	background: var(--navy-800);
	border-radius: 2px;
	transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), top var(--dur) var(--ease);
}
.nav-toggle__bar:nth-child(2) { top: 15px; }
.nav-toggle__bar:nth-child(3) { top: 21px; }
.nav-toggle__bar:nth-child(4) { top: 27px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(4) { top: 21px; transform: rotate(-45deg); }

/* -----------------------------------------------------------
   7. Hero (full-bleed photo banner)
   ----------------------------------------------------------- */
.hero {
	--hero-image: none;
	position: relative;
	min-height: clamp(620px, 92vh, 880px);
	color: #FFFFFF;
	overflow: hidden;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	background-color: var(--navy-900);
}

/* Layered background: photo (with var fallback) + gradient overlays */
.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(90deg, rgba(4,21,44,0.86) 0%, rgba(4,21,44,0.55) 45%, rgba(4,21,44,0.2) 75%, rgba(4,21,44,0.55) 100%),
		linear-gradient(180deg, rgba(4,21,44,0.45) 0%, rgba(4,21,44,0.0) 30%, rgba(4,21,44,0.0) 55%, rgba(4,21,44,0.85) 100%),
		var(--hero-image),
		linear-gradient(135deg, #0A2A55 0%, #04152C 100%);
	background-size: cover, cover, cover, cover;
	background-position: center, center, center, center;
	background-repeat: no-repeat;
}

.hero__inner {
	position: relative;
	z-index: 1;
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	padding-block: clamp(5rem, 12vh, 9rem) clamp(8rem, 16vh, 12rem);
}

.hero__content { max-width: 640px; }

.hero__title {
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #FFFFFF;
	margin: 0 0 1.25rem;
	text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero__lede {
	font-size: clamp(1rem, 1.25vw, 1.15rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
	max-width: 460px;
	margin: 0 0 2.25rem;
}

.hero__ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-bottom: 0;
}
.hero__ctas .btn { padding: 1rem 1.6rem; border-radius: var(--radius-sm); font-weight: 600; }
.hero__ctas .btn--accent { box-shadow: 0 12px 28px rgba(31,90,224,0.35); }

/* In-hero feature strip pinned to bottom */
.hero__features {
	position: relative;
	z-index: 1;
	padding-block: clamp(1.75rem, 4vw, 2.75rem);
	margin-top: auto;
	border-top: 1px solid rgba(255,255,255,0.08);
	background: linear-gradient(180deg, rgba(4,21,44,0.0), rgba(4,21,44,0.55));
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}

.hero-features {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(2rem, 4vw, 3.75rem);
}

.hero-feature {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}
.hero-feature__icon {
	flex: 0 0 auto;
	width: 52px; height: 52px;
	display: grid; place-items: center;
	border: 1.5px solid rgba(255,255,255,0.55);
	border-radius: 50%;
	color: #FFFFFF;
	transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.hero-feature__icon svg { width: 22px; height: 22px; }
.hero-feature:hover .hero-feature__icon {
	border-color: #FFFFFF;
	background: rgba(255,255,255,0.06);
}
.hero-feature__body { min-width: 0; }
.hero-feature h3 {
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: -0.005em;
	color: #FFFFFF;
	margin: 0 0 0.25rem;
}
.hero-feature p {
	font-size: 0.875rem;
	line-height: 1.5;
	color: rgba(255,255,255,0.72);
	margin: 0;
}

/* -----------------------------------------------------------
   8. Feature grid
   ----------------------------------------------------------- */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.25rem;
}
.feature-card {
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--border-strong);
}
.feature-card__icon {
	display: inline-grid; place-items: center;
	width: 48px; height: 48px;
	background: var(--navy-50);
	color: var(--navy-800);
	border-radius: var(--radius-md);
	margin-bottom: 1rem;
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: var(--text-xl); margin: 0 0 0.5rem; }
.feature-card p { color: var(--text-muted); margin: 0; }

/* -----------------------------------------------------------
   9. Flow (How It Works)
   ----------------------------------------------------------- */
.flow {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	position: relative;
	max-width: 1080px;
	margin-inline: auto;
}

/* 3-step variant (e.g. For Buildings rollout) — fill the row evenly, not 3-of-5 */
.flow--3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 820px;
}

.flow__step {
	position: relative;
	text-align: center;
	padding: 0 0.75rem;
	z-index: 1;
}

/* Dashed connector between icons */
.flow__step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 38px;                                 /* center of 76px icon */
	left: calc(50% + 44px);                    /* right edge of icon + small gap */
	right: calc(-50% + 44px);                  /* left edge of next icon - small gap */
	border-top: 2px dashed rgba(31, 90, 224, 0.35);
	z-index: -1;
}

.flow__icon {
	position: relative;
	width: 76px;
	height: 76px;
	margin: 0 auto 1rem;
	display: grid;
	place-items: center;
	background: var(--pearl-50);
	border: 1.8px solid var(--accent-500);
	border-radius: 50%;
	color: var(--accent-500);
	transition:
		transform var(--dur) var(--ease),
		background var(--dur) var(--ease),
		color var(--dur) var(--ease),
		box-shadow var(--dur) var(--ease);
}
.flow__icon svg {
	width: 32px;
	height: 32px;
	transition: transform var(--dur) var(--ease);
}
.flow__step:hover .flow__icon {
	transform: translateY(-3px);
	background: var(--accent-500);
	color: #FFFFFF;
	box-shadow: 0 14px 30px rgba(31, 90, 224, 0.25);
}
.flow__step:hover .flow__icon svg { transform: scale(1.06); }

.flow__title {
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--ink-900);
	letter-spacing: -0.005em;
	margin: 0 0 0.5rem;
}

.flow__desc {
	max-width: 19ch;
	margin: 0 auto;
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.55;
}

/* -----------------------------------------------------------
   9b. Stats strip (on navy)
   ----------------------------------------------------------- */
.stats-section { padding-block: clamp(3.5rem, 7vw, 6rem); }

.stats {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 2.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.stat {
	position: relative;
	padding: 1.5rem 1rem;
	text-align: center;
}
.stat + .stat::before {
	content: '';
	position: absolute;
	left: 0; top: 20%;
	width: 1px; height: 60%;
	background: linear-gradient(180deg, transparent, rgba(248,250,252,0.15), transparent);
}

.stat__num {
	display: inline-flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.05em;
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: clamp(2.75rem, 5.5vw, 4.25rem);
	line-height: 1;
	color: var(--gold-300);
	letter-spacing: -0.03em;
	margin: 0 0 0.75rem;
	font-variant-numeric: tabular-nums;
}
.stat__value { display: inline-block; }
.stat__unit {
	font-size: 0.55em;
	font-weight: 700;
	color: var(--gold-300);
	opacity: 0.85;
	letter-spacing: -0.02em;
}
.stat__unit--prefix { margin-right: 0.05em; }

.stat__label {
	font-family: var(--font-sans);
	font-size: 0.9375rem;
	font-weight: 500;
	color: rgba(248, 250, 252, 0.78);
	line-height: 1.4;
	margin: 0;
	max-width: 22ch;
	margin-inline: auto;
}

/* -----------------------------------------------------------
   9c. Market Analysis (problem stats + chart + solutions + callout)
   ----------------------------------------------------------- */
.market {
	background-color: var(--pearl-200);
	background-image:
		radial-gradient(circle at 1px 1px, rgba(7, 33, 70, 0.06) 1px, transparent 1px);
	background-size: 28px 28px;
	background-position: 0 0;
}

.section__lede {
	max-width: 640px;
	margin: 1rem auto 0;
	color: var(--text-muted);
	font-size: 1.0625rem;
	line-height: 1.6;
}

/* --- Problem stats grid --- */
.market-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	margin-bottom: clamp(3rem, 6vw, 5rem);
}

.market-stat {
	background: var(--pearl-50);
	border: 1px solid var(--pearl-300);
	border-radius: var(--radius-lg);
	padding: 1.75rem 1.5rem;
	transition:
		transform var(--dur) var(--ease),
		border-color var(--dur) var(--ease),
		box-shadow var(--dur) var(--ease);
}
.market-stat:hover {
	transform: translateY(-3px);
	border-color: var(--accent-500);
	box-shadow: 0 12px 24px rgba(7, 33, 70, 0.08);
}
.market-stat__icon {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	background: rgba(31, 90, 224, 0.1);
	color: var(--accent-500);
	margin-bottom: 1rem;
}
.market-stat__icon svg { width: 22px; height: 22px; }
.market-stat__num {
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: 2.25rem;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--navy-800);
	margin-bottom: 0.75rem;
	font-variant-numeric: tabular-nums;
}
.market-stat__title {
	font-family: var(--font-sans);
	font-size: 1rem;
	font-weight: 700;
	color: var(--ink-900);
	margin: 0 0 0.4rem;
	letter-spacing: -0.005em;
}
.market-stat__desc {
	color: var(--text-muted);
	font-size: 0.875rem;
	line-height: 1.5;
	margin: 0;
}

/* --- Chart block (split: copy + chart) --- */
.market-chart-block {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	background: var(--pearl-50);
	border: 1px solid var(--pearl-300);
	border-radius: var(--radius-xl);
	padding: clamp(1.75rem, 4vw, 3rem);
	margin-bottom: clamp(3rem, 6vw, 5rem);
	box-shadow: 0 14px 38px rgba(7, 33, 70, 0.06);
}

.market-chart-block__copy .eyebrow { margin-bottom: 0.75rem; }
.market-chart-block__title {
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: clamp(1.375rem, 2.2vw, 1.75rem);
	line-height: 1.2;
	letter-spacing: -0.015em;
	color: var(--ink-900);
	margin: 0 0 1rem;
}
.market-chart-block__copy p {
	color: var(--text-muted);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin: 0 0 1.5rem;
}

.market-chart-block__legend {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	font-size: 0.875rem;
	color: var(--ink-700);
}
.market-chart-block__legend li { display: inline-flex; align-items: center; gap: 0.5rem; }
.legend-dot {
	width: 14px; height: 14px;
	border-radius: 3px;
	display: inline-block;
}
.legend-dot--actual { background: linear-gradient(180deg, #1F5AE0, #072146); }
.legend-dot--projected {
	background: linear-gradient(180deg, rgba(31,90,224,0.55), rgba(7,33,70,0.55));
	border: 1px dashed var(--accent-500);
}

.market-chart-block__chart { margin: 0; min-width: 0; }
.market-chart { width: 100%; height: auto; display: block; }
.market-chart .bar-group rect {
	transform-origin: bottom;
	transition: filter var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.market-chart .bar-group:hover rect {
	filter: brightness(1.08);
	transform: scaleY(1.02);
}
.market-chart-block__caption {
	margin: 0.75rem 0 0;
	font-size: 0.75rem;
	color: var(--text-muted);
	text-align: right;
}

/* --- Problem → Solution matrix --- */
.market-solutions { margin-bottom: clamp(3rem, 6vw, 5rem); }
.market-solutions__head { text-align: center; max-width: 640px; margin: 0 auto 2rem; }
.market-solutions__head .market-chart-block__title { margin: 0; }

.problem-solution {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	gap: 0.85rem;
	max-width: 980px;
	margin-inline: auto;
}

.ps {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 1rem;
	align-items: center;
	background: var(--pearl-50);
	border: 1px solid var(--pearl-300);
	border-radius: var(--radius-lg);
	padding: 1.25rem 1.5rem;
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.ps:hover { border-color: var(--accent-500); box-shadow: 0 10px 22px rgba(7, 33, 70, 0.06); }

.ps__problem, .ps__solution {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	font-size: 1rem;
	color: var(--ink-900);
	line-height: 1.45;
}

.ps__chip {
	display: inline-flex;
	align-items: center;
	width: max-content;
	padding: 0.2rem 0.55rem;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: var(--radius-pill);
	line-height: 1.2;
}
.ps__chip--problem { background: rgba(192, 57, 43, 0.1); color: var(--danger-500); }
.ps__chip--solution { background: rgba(31, 90, 224, 0.1); color: var(--accent-500); }

.ps__arrow {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	color: var(--accent-500);
	border-radius: 50%;
	background: rgba(31, 90, 224, 0.08);
}
.ps__arrow svg { width: 18px; height: 18px; }

/* --- Market opportunity callout --- */
.market-opportunity {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: center;
	background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
	color: var(--pearl-100);
	border-radius: var(--radius-xl);
	padding: clamp(2rem, 4vw, 2.75rem);
	overflow: hidden;
	position: relative;
}
.market-opportunity::after {
	content: '';
	position: absolute;
	right: -120px; top: -120px;
	width: 400px; height: 400px;
	background: radial-gradient(circle, rgba(201, 166, 90, 0.18) 0%, transparent 60%);
	pointer-events: none;
}
.market-opportunity__visual {
	position: relative;
	z-index: 1;
	width: 100px; height: 100px;
	flex: 0 0 auto;
	color: var(--gold-300);
}
.market-opportunity__visual svg { width: 100%; height: 100%; }
.market-opportunity__copy { position: relative; z-index: 1; }
.market-opportunity__num {
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: clamp(2.5rem, 4.5vw, 3.5rem);
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--gold-300);
	margin-bottom: 0.5rem;
	font-variant-numeric: tabular-nums;
}
.market-opportunity__title {
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: clamp(1.125rem, 1.8vw, 1.375rem);
	color: var(--pearl-100);
	margin: 0 0 0.5rem;
	letter-spacing: -0.005em;
}
.market-opportunity__copy p {
	color: rgba(248, 250, 252, 0.78);
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
}

/* -----------------------------------------------------------
   10. Benefits (light layout, text + device mockup)
   ----------------------------------------------------------- */
.benefits {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: clamp(2.5rem, 6vw, 5.5rem);
	align-items: center;
}

.benefits__copy { max-width: 560px; }

.benefits__title {
	font-size: clamp(2rem, 3.6vw, 3rem);
	line-height: 1.1;
	letter-spacing: -0.025em;
	margin: 0 0 1.75rem;
}

.benefits__list {
	list-style: none;
	margin: 0 0 2.25rem;
	padding: 0;
	display: grid;
	gap: 1rem;
}
.benefits__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	font-size: 1.0625rem;
	line-height: 1.5;
	color: var(--ink-900);
	font-weight: 500;
}

.benefits__check {
	flex: 0 0 auto;
	display: inline-grid;
	place-items: center;
	width: 26px;
	height: 26px;
	color: var(--accent-500);
	margin-top: 0.0625rem;
}
.benefits__check svg { width: 100%; height: 100%; display: block; }

.benefits__cta {
	display: inline-flex;
	padding: 1rem 1.75rem;
	border-radius: var(--radius-sm);
	font-weight: 600;
	box-shadow: 0 12px 28px rgba(31, 90, 224, 0.28);
}
.benefits__cta svg { transition: transform var(--dur-fast) var(--ease); }
.benefits__cta:hover svg { transform: translateX(3px); }

.benefits__visual {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.benefits__visual img {
	width: 100%;
	height: auto;
	max-width: 720px;
	display: block;
	filter: drop-shadow(0 30px 60px rgba(7, 33, 70, 0.18));
}

/* -----------------------------------------------------------
   10b. Final CTA banner (dark)
   ----------------------------------------------------------- */
.cta-final {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding-block: clamp(4.5rem, 9vw, 7rem);
}
.cta-final__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}
.cta-final__grid { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.85; }
.cta-final__glow {
	position: absolute;
	width: 700px; height: 700px;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.5;
}
.cta-final__glow--a { background: rgba(31, 90, 224, 0.55); top: -240px; left: -180px; }
.cta-final__glow--b { background: rgba(201, 166, 90, 0.25); bottom: -280px; right: -200px; }

.cta-final__inner {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}
.cta-final .eyebrow { color: var(--gold-300); }
.cta-final .eyebrow__dot { background: var(--gold-300); box-shadow: 0 0 0 4px rgba(229, 210, 161, 0.18); }

.cta-final__title {
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.12;
	letter-spacing: -0.022em;
	color: var(--pearl-100);
	margin: 1rem 0 1.25rem;
}
.cta-final__title-accent {
	color: var(--gold-300);
}

.cta-final__lede {
	max-width: 560px;
	margin: 0 auto 2.25rem;
	color: rgba(248, 250, 252, 0.78);
	font-size: 1.0625rem;
	line-height: 1.6;
}

.cta-final__actions {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	justify-content: center;
	margin-bottom: 2.25rem;
}
.cta-final__actions .btn {
	padding: 1rem 1.75rem;
	border-radius: var(--radius-sm);
	font-weight: 600;
}
.cta-final__actions .btn--accent {
	box-shadow: 0 14px 32px rgba(31, 90, 224, 0.4);
}

.cta-final__trust {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
	color: rgba(248, 250, 252, 0.65);
	font-size: 0.875rem;
}
.cta-final__trust li { display: inline-flex; align-items: center; gap: 0.4rem; }
.cta-final__trust svg { color: var(--gold-300); }

/* -----------------------------------------------------------
   11. Footer
   ----------------------------------------------------------- */
.site-footer {
	background: var(--navy-900);
	color: var(--pearl-200);
	padding-block: clamp(3.5rem, 6vw, 5rem) 0;
	position: relative;
	overflow: hidden;
}
@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.3); opacity: 0.6; }
}
.site-footer::before {
	content: '';
	position: absolute;
	left: 0; right: 0; top: 0;
	height: 1px;
	background: linear-gradient(90deg,
		transparent 0%,
		rgba(201, 166, 90, 0.35) 30%,
		rgba(31, 90, 224, 0.45) 70%,
		transparent 100%);
}

/* Decorative watermark shield */
.site-footer__watermark {
	position: absolute;
	right: -90px;
	top: 40px;
	width: 360px; height: 360px;
	color: rgba(248, 250, 252, 0.025);
	pointer-events: none;
	z-index: 0;
}
.site-footer__watermark svg { width: 100%; height: 100%; }

.site-footer__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: flex-start;
	padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

/* Brand column */
.site-footer__brand-col { max-width: 480px; }
.site-footer__brand-col .brand { margin-bottom: 1.25rem; }
.site-footer__pitch {
	color: rgba(248, 250, 252, 0.72);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin: 0 0 1.5rem;
}

/* Status badges */
.site-footer__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.footer-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.375rem 0.75rem;
	font-family: var(--font-sans);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(248, 250, 252, 0.7);
	background: rgba(248, 250, 252, 0.05);
	border: 1px solid rgba(248, 250, 252, 0.1);
	border-radius: var(--radius-pill);
}
.footer-badge--status {
	color: var(--gold-300);
	border-color: rgba(229, 210, 161, 0.3);
	background: rgba(229, 210, 161, 0.06);
}
.footer-badge__dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--gold-300);
	box-shadow: 0 0 0 3px rgba(229, 210, 161, 0.18);
	animation: pulse 2.4s ease-in-out infinite;
}

/* Generic footer column */
.site-footer__col { min-width: 0; }
.site-footer__heading {
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-300);
	margin: 0 0 1.25rem;
}
.site-footer__col ul {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	gap: 0.7rem;
}
.site-footer__col a {
	color: rgba(248, 250, 252, 0.78);
	font-size: 0.9375rem;
	display: inline-block;
	transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.site-footer__col a:hover {
	color: #FFFFFF;
	transform: translateX(2px);
}

/* Facts list (dt/dd) */
.footer-facts {
	margin: 0;
	display: grid;
	gap: 0.85rem;
}
.footer-fact {
	display: grid;
	gap: 0.15rem;
}
.footer-fact dt {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(248, 250, 252, 0.45);
}
.footer-fact dd {
	margin: 0;
	color: rgba(248, 250, 252, 0.88);
	font-size: 0.9375rem;
	line-height: 1.35;
}

/* "Why now" points list with leading numbers */
.footer-points {
	list-style: none;
	margin: 0; padding: 0;
	display: grid;
	gap: 0.85rem;
}
.footer-points li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.75rem;
	align-items: baseline;
	color: rgba(248, 250, 252, 0.7);
	font-size: 0.875rem;
	line-height: 1.4;
}
.footer-points__num {
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: 1.0625rem;
	color: var(--gold-300);
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
}

/* Bottom bar */
.site-footer__bottom {
	position: relative;
	z-index: 1;
	border-top: 1px solid rgba(248, 250, 252, 0.08);
	padding-block: 1.25rem;
}
.site-footer__bottom-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}
.site-footer__copy {
	color: rgba(248, 250, 252, 0.5);
	font-size: 0.8125rem;
}
.site-footer__legal {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem;
}
.site-footer__legal a {
	color: rgba(248, 250, 252, 0.6);
	font-size: 0.8125rem;
	transition: color var(--dur-fast) var(--ease);
}
.site-footer__legal a:hover { color: #FFFFFF; }
.site-footer__top {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: rgba(248, 250, 252, 0.65);
	font-size: 0.8125rem;
	font-weight: 500;
	padding: 0.4rem 0.85rem;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(248, 250, 252, 0.1);
	transition: all var(--dur-fast) var(--ease);
}
.site-footer__top:hover {
	color: #FFFFFF;
	background: rgba(248, 250, 252, 0.06);
	border-color: rgba(248, 250, 252, 0.2);
	transform: translateY(-1px);
}
.site-footer__top svg { transition: transform var(--dur-fast) var(--ease); }
.site-footer__top:hover svg { transform: translateY(-2px); }

/* -----------------------------------------------------------
   11a. Shared sub-page components (banner + product mockups)
   ----------------------------------------------------------- */

/* --- Photo banner hero (matches homepage hero treatment) --- */
.pbanner {
	--hero-image: none;
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	min-height: clamp(380px, 56vh, 560px);
	color: #FFFFFF;
	background-color: var(--navy-900);
	overflow: hidden;
}
.pbanner--short { min-height: clamp(300px, 40vh, 420px); }
.pbanner__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(90deg, rgba(4,21,44,0.9) 0%, rgba(4,21,44,0.62) 48%, rgba(4,21,44,0.32) 100%),
		linear-gradient(180deg, rgba(4,21,44,0.55) 0%, rgba(4,21,44,0) 38%, rgba(4,21,44,0) 60%, rgba(4,21,44,0.75) 100%),
		var(--hero-image),
		linear-gradient(135deg, #0A2A55 0%, #04152C 100%);
	background-size: cover, cover, cover, cover;
	background-position: center, center, center, center;
	background-repeat: no-repeat;
}
.pbanner__inner {
	position: relative;
	z-index: 1;
	padding-block: clamp(3rem, 8vw, 5.5rem);
}
.pbanner .breadcrumb { color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }
.pbanner .breadcrumb a { color: rgba(255,255,255,0.82); }
.pbanner .breadcrumb a:hover { color: #FFFFFF; }
.pbanner .breadcrumb span[aria-current] { color: var(--gold-300); }
.pbanner .eyebrow { color: var(--gold-300); }
.pbanner .eyebrow__dot { background: var(--gold-300); box-shadow: 0 0 0 4px rgba(229,210,161,0.18); }
.pbanner__title {
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: clamp(2rem, 4.8vw, 3.4rem);
	line-height: 1.08;
	letter-spacing: -0.025em;
	color: #FFFFFF;
	margin: 1rem 0 1.25rem;
	max-width: 22ch;
	text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.pbanner__title em { font-style: normal; color: var(--gold-300); }
.pbanner__lede {
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	line-height: 1.65;
	color: rgba(255,255,255,0.85);
	max-width: 600px;
	margin: 0 0 2rem;
}
.pbanner__ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.75rem; }
.pbanner__ctas .btn { padding: 1rem 1.6rem; border-radius: var(--radius-sm); }
.pbanner__ctas .btn--accent { box-shadow: 0 12px 28px rgba(31,90,224,0.35); }
.pbanner__meta {
	list-style: none; margin: 0; padding: 0;
	display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem;
	color: rgba(255,255,255,0.78); font-size: 0.875rem;
}
.pbanner__meta li { display: inline-flex; align-items: center; gap: 0.45rem; }
.pbanner__meta svg { color: var(--gold-300); }

/* --- Generic product/diagram frame (browser-style chrome) --- */
.frame {
	background: var(--pearl-50);
	border: 1px solid var(--pearl-300);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl);
	overflow: hidden;
}
.frame__bar {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.8rem 1.1rem;
	background: var(--pearl-200);
	border-bottom: 1px solid var(--pearl-300);
}
.frame__bar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--pearl-300); }
.frame__title { margin-left: auto; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }
.frame__body { padding: clamp(1rem, 2.4vw, 1.5rem); }

/* --- Mini product-UI primitives (used inside frames) --- */
.ui-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 0.9rem; }
.ui-statbox { background: var(--pearl-100); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.7rem 0.8rem; }
.ui-statbox b { display: block; font-family: var(--font-sans); font-size: 1.35rem; font-weight: 800; color: var(--navy-800); letter-spacing: -0.02em; line-height: 1; }
.ui-statbox span { font-size: 0.6875rem; color: var(--text-muted); letter-spacing: 0.02em; }
.ui-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.3rem; }
.ui-item {
	display: grid; grid-template-columns: auto 1fr auto; gap: 0.75rem; align-items: center;
	padding: 0.55rem 0.65rem; border-radius: var(--radius-sm); background: var(--pearl-100);
	font-size: 0.8125rem; color: var(--ink-700); font-variant-numeric: tabular-nums;
}
.ui-item .t { color: var(--text-muted); }
.ui-badge {
	font-style: normal; font-weight: 700; font-size: 0.625rem; letter-spacing: 0.06em; text-transform: uppercase;
	padding: 0.15rem 0.5rem; border-radius: var(--radius-pill);
}
.ui-badge.ok { background: rgba(30,156,107,0.12); color: var(--success-500); }
.ui-badge.bad { background: rgba(192,57,43,0.1); color: var(--danger-500); }
.ui-badge.muted { background: var(--pearl-200); color: var(--text-muted); }
.ui-qr { width: 92px; height: 92px; margin: 0 auto 0.75rem; display: grid; place-items: center; color: var(--navy-800); }
.ui-qr svg { width: 100%; height: 100%; }
.ui-ring { position: relative; width: 104px; height: 104px; margin: 0 auto 0.75rem; }
.ui-ring svg { width: 100%; height: 100%; }
.ui-ring b { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-sans); font-weight: 800; font-size: 1.25rem; color: var(--navy-800); font-variant-numeric: tabular-nums; }
.ui-center { text-align: center; }
.ui-grant { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.3rem 0.7rem; border-radius: var(--radius-pill); background: rgba(30,156,107,0.12); color: var(--success-500); font-size: 0.75rem; font-weight: 700; }

/* --- Section intro lede reused on sub-pages --- */
.shot-cap { margin: 0.75rem 0 0; font-size: 0.8125rem; color: var(--text-muted); text-align: center; }

/* -----------------------------------------------------------
   11b. Features page  (page-features.php)
   ----------------------------------------------------------- */

/* --- Breadcrumb --- */
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	color: var(--text-muted);
	margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--ink-700); }
.breadcrumb a:hover { color: var(--navy-800); }
.breadcrumb span[aria-current] { color: var(--accent-500); font-weight: 600; }
.breadcrumb--dark { color: var(--text-muted); }

/* --- Hero (split: copy + preview cluster) --- */
.fp-hero {
	position: relative;
	background:
		radial-gradient(620px circle at 88% 8%, rgba(31,90,224,0.08), transparent 60%),
		linear-gradient(180deg, var(--pearl-100) 0%, var(--pearl-200) 100%);
	padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5rem);
	overflow: hidden;
}
.fp-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.fp-hero__copy { max-width: 580px; }
.fp-hero__title {
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: clamp(2rem, 4.2vw, 3.1rem);
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: var(--ink-900);
	margin: 1rem 0 1.25rem;
}
.fp-hero__title em {
	font-style: normal;
	color: var(--accent-500);
	position: relative;
}
.fp-hero__lede {
	color: var(--text-muted);
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	line-height: 1.65;
	margin: 0 0 2rem;
	max-width: 520px;
}
.fp-hero__ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.75rem; }
.fp-hero__ctas .btn { padding: 1rem 1.6rem; border-radius: var(--radius-sm); }
.fp-hero__ctas .btn--accent { box-shadow: 0 12px 28px rgba(31,90,224,0.28); }
.fp-hero__chips {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.fp-hero__chips li {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.8rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--ink-700);
	background: var(--pearl-50);
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
}
.fp-hero__chips li::before {
	content: '';
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--accent-500);
}

/* Hero preview cluster (floating mini cards) */
.fp-hero__preview {
	position: relative;
	min-height: 360px;
	display: grid;
	align-content: center;
	gap: 1rem;
	padding-inline: clamp(0px, 2vw, 1.5rem);
}
.fp-prev {
	background: var(--pearl-50);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 1rem 1.15rem;
}
.fp-prev--access {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-areas: 'dot dot' 'qr txt';
	gap: 0.5rem 1rem;
	align-items: center;
	background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
	color: var(--pearl-100);
	border-color: transparent;
	margin-left: clamp(0px, 4vw, 2.5rem);
}
.fp-prev__dot { grid-area: dot; width: 8px; height: 8px; border-radius: 50%; background: var(--success-500); box-shadow: 0 0 0 4px rgba(30,156,107,0.25); }
.fp-prev__qr { grid-area: qr; width: 56px; height: 56px; display: grid; place-items: center; color: var(--gold-300); background: rgba(255,255,255,0.06); border-radius: var(--radius-md); }
.fp-prev__qr svg { width: 38px; height: 38px; }
.fp-prev__txt { grid-area: txt; display: grid; }
.fp-prev__txt strong { font-family: var(--font-sans); font-size: 0.95rem; }
.fp-prev__txt span { font-size: 0.8125rem; color: rgba(248,250,252,0.7); }

.fp-prev--verify {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.85rem;
	align-items: center;
	margin-right: clamp(0px, 3vw, 1.5rem);
}
.fp-prev__avatar { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--navy-50); color: var(--navy-800); }
.fp-prev__avatar svg { width: 22px; height: 22px; }
.fp-prev--verify strong { display: block; font-family: var(--font-sans); font-size: 0.9rem; color: var(--ink-900); }
.fp-prev--verify span { font-size: 0.8rem; color: var(--text-muted); }
.fp-prev__tick { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(30,156,107,0.12); color: var(--success-500); }
.fp-prev__tick svg { width: 16px; height: 16px; }

.fp-prev--log {
	display: grid;
	gap: 0.4rem;
	font-size: 0.8125rem;
	color: var(--ink-700);
	font-variant-numeric: tabular-nums;
	margin-left: clamp(0px, 6vw, 4rem);
}
.fp-prev__log-bad { color: var(--danger-500); font-weight: 600; }

/* --- Sticky sub-nav --- */
.fp-subnav {
	position: sticky;
	top: var(--header-h);
	z-index: 80;
	background: rgba(248,250,252,0.9);
	-webkit-backdrop-filter: saturate(180%) blur(10px);
	backdrop-filter: saturate(180%) blur(10px);
	border-bottom: 1px solid var(--border);
}
.fp-subnav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 56px;
}
.fp-subnav ul {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	gap: 0.4rem;
	overflow-x: auto;
	scrollbar-width: none;
}
.fp-subnav ul::-webkit-scrollbar { display: none; }
.fp-subnav a {
	display: inline-block;
	padding: 0.45rem 0.9rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--ink-700);
	border-radius: var(--radius-pill);
	white-space: nowrap;
	transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.fp-subnav a:hover { background: var(--pearl-200); color: var(--navy-800); }
.fp-subnav__cta { padding: 0.5rem 1.1rem; font-size: var(--text-sm); }

/* Offset anchored sections for sticky header + sub-nav */
.fp-anchor { scroll-margin-top: calc(var(--header-h) + 56px); }
#overview { scroll-margin-top: var(--header-h); }

/* --- Bento showcase --- */
.fp-bento {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: minmax(170px, auto);
	gap: 1.1rem;
}
.fp-tile {
	display: flex;
	flex-direction: column;
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.6rem;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.fp-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.fp-tile--a { grid-column: span 2; grid-row: span 2; }
.fp-tile--b { grid-column: span 1; grid-row: span 2; }
.fp-tile--c { grid-column: span 1; }
.fp-tile--d { grid-column: span 1; }
.fp-tile--e { grid-column: span 2; }
.fp-tile--f { grid-column: span 2; }

.fp-tile__icon {
	display: inline-grid; place-items: center;
	width: 46px; height: 46px;
	border-radius: var(--radius-md);
	background: var(--navy-50);
	color: var(--navy-800);
	margin-bottom: 1rem;
	flex: 0 0 auto;
}
.fp-tile__icon svg { width: 24px; height: 24px; }
.fp-tile h3 {
	font-family: var(--font-sans);
	font-size: 1.1875rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--ink-900);
	margin: 0 0 0.5rem;
}
.fp-tile p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.55; margin: 0; }
.fp-tile__tag {
	margin-top: auto;
	align-self: flex-start;
	padding: 0.3rem 0.7rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: var(--radius-pill);
	background: rgba(229,210,161,0.18);
	color: var(--gold-300);
}

/* Large navy tile */
.fp-tile--navy {
	background: linear-gradient(150deg, var(--navy-800) 0%, var(--navy-900) 100%);
	border-color: transparent;
	color: var(--pearl-100);
	position: relative;
	overflow: hidden;
}
.fp-tile--navy::after {
	content: '';
	position: absolute; right: -80px; top: -80px;
	width: 240px; height: 240px;
	background: radial-gradient(circle, rgba(201,166,90,0.18), transparent 60%);
	pointer-events: none;
}
.fp-tile--navy .fp-tile__icon { background: rgba(255,255,255,0.1); color: var(--gold-300); }
.fp-tile--navy h3 { color: #FFFFFF; font-size: 1.5rem; }
.fp-tile--navy p { color: rgba(248,250,252,0.78); font-size: 1rem; }

/* Wide tile with embedded log */
.fp-tile__head { display: flex; gap: 1rem; align-items: flex-start; }
.fp-tile__head .fp-tile__icon { margin-bottom: 0; }
.fp-tile__head h3 { margin-bottom: 0.25rem; }
.fp-tile__log {
	list-style: none;
	margin: 1.1rem 0 0; padding: 0;
	display: grid; gap: 0.3rem;
	font-size: 0.8125rem;
	font-variant-numeric: tabular-nums;
}
.fp-tile__log li {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.6rem;
	align-items: center;
	padding: 0.45rem 0.6rem;
	background: var(--pearl-100);
	border-radius: var(--radius-sm);
	color: var(--ink-700);
}
.fp-tile__log span { color: var(--text-muted); }
.fp-tile__log em {
	font-style: normal;
	font-weight: 700;
	font-size: 0.6875rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.fp-tile__log em.ok { color: var(--success-500); }
.fp-tile__log em.bad { color: var(--danger-500); }
.fp-tile__log em.muted { color: var(--text-muted); }

/* --- Category detail cards --- */
.fp-cats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}
.fp-cat {
	background: var(--pearl-50);
	border: 1px solid var(--pearl-300);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.fp-cat:hover { border-color: var(--accent-500); box-shadow: 0 12px 24px rgba(7,33,70,0.07); }
.fp-cat__head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.25rem; }
.fp-cat__icon {
	display: inline-grid; place-items: center;
	width: 40px; height: 40px;
	border-radius: var(--radius-md);
	background: rgba(31,90,224,0.1);
	color: var(--accent-500);
}
.fp-cat__icon svg { width: 22px; height: 22px; }
.fp-cat__head h3 { font-family: var(--font-sans); font-size: 1.125rem; font-weight: 700; color: var(--ink-900); margin: 0; }
.fp-cat__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.fp-cat__list li {
	position: relative;
	padding-left: 1.85rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--ink-700);
}
.fp-cat__list li::before {
	content: '';
	position: absolute;
	left: 0; top: 1px;
	width: 18px; height: 18px;
	border-radius: 50%;
	background: rgba(31,90,224,0.1)
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5 6.5 12 13 4.5' fill='none' stroke='%231F5AE0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
		center / 11px no-repeat;
}

/* --- Spotlight band (navy, copy + log panel) --- */
.fp-spotlight__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.fp-spotlight__copy { max-width: 520px; }
.fp-spotlight__title { font-size: clamp(1.75rem, 3.2vw, 2.5rem); margin: 1rem 0 1rem; }
.fp-spotlight__lede { color: rgba(248,250,252,0.8); font-size: 1.0625rem; line-height: 1.65; margin: 0 0 2rem; }
.fp-spotlight__metrics {
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: clamp(1.5rem, 4vw, 2.75rem);
	margin: 0;
}
.fp-spotlight__metrics dt { font-size: 0.8125rem; color: rgba(248,250,252,0.6); margin-bottom: 0.35rem; }
.fp-spotlight__metrics dd {
	margin: 0;
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	line-height: 1;
	color: var(--gold-300);
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
}
.fp-spotlight__metrics dd span { font-size: 0.45em; font-weight: 700; opacity: 0.85; margin-left: 0.05em; }

.fp-spotlight__visual { margin: 0; }
.fp-panel {
	background: var(--pearl-50);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl);
	overflow: hidden;
	color: var(--ink-900);
}
.fp-panel__head {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.9rem 1.2rem;
	background: var(--pearl-200);
	border-bottom: 1px solid var(--pearl-300);
}
.fp-panel__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--pearl-300); }
.fp-panel__label { margin-left: auto; font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }
.fp-panel__rows { list-style: none; margin: 0; padding: 0.5rem 0.75rem; display: grid; gap: 0.15rem; }
.fp-panel__rows li {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.85rem;
	align-items: center;
	padding: 0.6rem 0.6rem;
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
	font-variant-numeric: tabular-nums;
}
.fp-panel__rows li:nth-child(odd) { background: var(--pearl-100); }
.fp-panel__time { color: var(--text-muted); }
.fp-panel__txt { color: var(--ink-900); }
.fp-panel__rows em {
	font-style: normal;
	font-weight: 700;
	font-size: 0.6875rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.15rem 0.5rem;
	border-radius: var(--radius-pill);
}
.fp-panel__rows em.ok { background: rgba(30,156,107,0.12); color: var(--success-500); }
.fp-panel__rows em.bad { background: rgba(192,57,43,0.1); color: var(--danger-500); }
.fp-panel__rows em.muted { background: var(--pearl-200); color: var(--text-muted); }
.fp-panel__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.9rem 1.2rem;
	border-top: 1px solid var(--pearl-200);
	font-size: 0.8125rem;
	color: var(--text-muted);
}
.fp-panel__export { color: var(--accent-500); font-weight: 600; }

/* --- FAQ (sticky intro + accordion) --- */
.fp-faq {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
.fp-faq__intro { position: sticky; top: calc(var(--header-h) + 72px); }
.fp-faq__intro .display { margin: 0.75rem 0 1rem; }
.fp-faq__intro p { color: var(--text-muted); margin: 0 0 1.5rem; max-width: 36ch; }
.fp-faq__list { display: grid; gap: 0.85rem; }
.fp-faq__item {
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.fp-faq__item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.fp-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.2rem 1.4rem;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-sans);
	font-weight: 600;
	font-size: 1.0625rem;
	color: var(--ink-900);
}
.fp-faq__q::-webkit-details-marker { display: none; }
.fp-faq__icon {
	flex: 0 0 auto;
	display: inline-grid; place-items: center;
	width: 30px; height: 30px;
	border-radius: 50%;
	background: var(--navy-50);
	color: var(--navy-800);
	transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.fp-faq__icon svg { width: 16px; height: 16px; }
.fp-faq__item[open] .fp-faq__icon { transform: rotate(45deg); background: var(--accent-500); color: #FFFFFF; }
.fp-faq__a { padding: 0 1.4rem 1.3rem; }
.fp-faq__a p { margin: 0; color: var(--text-muted); font-size: 0.9375rem; line-height: 1.65; }

/* --- Features page responsive --- */
@media (max-width: 960px) {
	.fp-hero__inner { grid-template-columns: 1fr; }
	.fp-hero__preview { display: none; }
	.fp-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.fp-tile--a, .fp-tile--b, .fp-tile--e, .fp-tile--f { grid-column: span 2; }
	.fp-tile--a, .fp-tile--b { grid-row: span 1; }
	.fp-tile--c, .fp-tile--d { grid-column: span 1; }
	.fp-cats { grid-template-columns: 1fr; }
	.fp-spotlight__inner { grid-template-columns: 1fr; }
	.fp-spotlight__visual { order: -1; }
	.fp-faq { grid-template-columns: 1fr; }
	.fp-faq__intro { position: static; }
}
@media (max-width: 560px) {
	.fp-hero__ctas .btn { width: 100%; justify-content: center; }
	.fp-bento { grid-template-columns: 1fr; }
	.fp-tile--a, .fp-tile--b, .fp-tile--c, .fp-tile--d, .fp-tile--e, .fp-tile--f { grid-column: span 1; grid-row: span 1; }
	.fp-subnav__cta { display: none; }
	.fp-spotlight__metrics { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* Reusable checklist (also used on the interface section) */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.checklist li {
	position: relative;
	padding-left: 2rem;
	font-size: 0.9375rem;
	line-height: 1.45;
	color: var(--ink-900);
	font-weight: 500;
}
.checklist li::before {
	content: '';
	position: absolute;
	left: 0; top: 1px;
	width: 20px; height: 20px;
	border-radius: 50%;
	background: rgba(31, 90, 224, 0.1)
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5 6.5 12 13 4.5' fill='none' stroke='%231F5AE0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
		center / 12px no-repeat;
}

/* Product-in-action screens */
.fx-screens {
	display: grid;
	grid-template-columns: 1fr 1.3fr 1fr;
	gap: 1.5rem;
	align-items: start;
}
.fx-screen { margin: 0; }
.fx-screen .frame { transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.fx-screen:hover .frame { transform: translateY(-4px); }
.fx-screen__cap { margin: 1rem 0 0; text-align: center; font-size: 0.875rem; color: var(--text-muted); }
.fx-screen__cap strong { color: var(--ink-900); font-family: var(--font-sans); }

/* Interface (device image) split */
.fx-interface__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.fx-interface__copy { max-width: 520px; }
.fx-interface__title { font-size: clamp(1.75rem, 3.2vw, 2.5rem); margin: 1rem 0 1rem; }
.fx-interface__copy p { color: var(--text-muted); font-size: 1rem; line-height: 1.65; margin: 0 0 1.5rem; }
.fx-interface__visual { margin: 0; display: flex; justify-content: center; }
.fx-interface__visual img { width: 100%; max-width: 680px; height: auto; filter: drop-shadow(0 30px 60px rgba(7,33,70,0.18)); }

@media (max-width: 960px) {
	.fx-screens { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
	.fx-interface__inner { grid-template-columns: 1fr; }
	.fx-interface__visual { order: -1; }
}

/* -----------------------------------------------------------
   11c. How It Works page  (page-how-it-works.php)
   ----------------------------------------------------------- */

/* --- Hero --- */
.hiw-hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5rem); }
.hiw-hero__inner { position: relative; z-index: 1; max-width: 820px; text-align: center; margin-inline: auto; }
.hiw-hero .breadcrumb { justify-content: center; }
.hiw-hero .eyebrow { justify-content: center; }
.hiw-hero__title { font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.12; margin: 1rem 0 1.25rem; }
.hiw-hero__lede {
	max-width: 600px;
	margin: 0 auto 2.25rem;
	color: rgba(248, 250, 252, 0.8);
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	line-height: 1.65;
}

/* Horizontal step strip */
.hiw-strip {
	list-style: none;
	margin: 0 auto 2.5rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.65rem;
	max-width: 720px;
}
.hiw-strip li {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.5rem 1rem 0.5rem 0.5rem;
	font-family: var(--font-sans);
	font-size: 0.875rem;
	font-weight: 600;
	color: rgba(248, 250, 252, 0.85);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-pill);
}
.hiw-strip__num {
	display: inline-grid; place-items: center;
	width: 26px; height: 26px;
	border-radius: 50%;
	background: var(--accent-500);
	color: #FFFFFF;
	font-size: 0.8125rem;
	font-weight: 700;
}
.hiw-hero__ctas { display: inline-flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.hiw-hero__ctas .btn { padding: 1rem 1.6rem; border-radius: var(--radius-sm); }
.hiw-hero__ctas .btn--accent { box-shadow: 0 12px 28px rgba(31, 90, 224, 0.35); }

/* --- Vertical step timeline --- */
.hiw-timeline {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: 760px;
	counter-reset: hiw;
}
.hiw-step {
	position: relative;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: clamp(1rem, 3vw, 1.75rem);
	padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
/* Dashed connector down the marker column */
.hiw-step:not(:last-child)::before {
	content: '';
	position: absolute;
	left: 27px;
	top: 60px;
	bottom: -4px;
	width: 2px;
	border-left: 2px dashed rgba(31, 90, 224, 0.3);
}
.hiw-step__marker { position: relative; z-index: 1; }
.hiw-step__num {
	display: grid; place-items: center;
	width: 56px; height: 56px;
	border-radius: 50%;
	background: var(--pearl-50);
	border: 2px solid var(--accent-500);
	color: var(--accent-500);
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: 1.375rem;
	letter-spacing: -0.02em;
	transition: background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.hiw-step:hover .hiw-step__num {
	background: var(--accent-500);
	color: #FFFFFF;
	box-shadow: 0 12px 26px rgba(31, 90, 224, 0.25);
}

.hiw-step__body {
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.5rem 1.6rem;
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.hiw-step:hover .hiw-step__body {
	border-color: var(--border-strong);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}
.hiw-step__top {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin-bottom: 0.85rem;
}
.hiw-step__icon {
	flex: 0 0 auto;
	display: inline-grid; place-items: center;
	width: 44px; height: 44px;
	border-radius: var(--radius-md);
	background: var(--navy-50);
	color: var(--navy-800);
}
.hiw-step__icon svg { width: 26px; height: 26px; }
.hiw-step__eyebrow {
	display: block;
	font-family: var(--font-sans);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-500);
}
.hiw-step__title {
	font-family: var(--font-sans);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--ink-900);
	margin: 0.15rem 0 0;
}
.hiw-step__tag {
	margin-left: auto;
	flex: 0 0 auto;
	align-self: flex-start;
	padding: 0.3rem 0.65rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: var(--radius-pill);
	background: rgba(31, 90, 224, 0.1);
	color: var(--accent-500);
	white-space: nowrap;
}
.hiw-step__body p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; margin: 0 0 1rem; }
.hiw-step__list {
	list-style: none;
	margin: 0; padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
}
.hiw-step__list li {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.875rem;
	color: var(--ink-700);
}
.hiw-step__list li::before {
	content: '';
	position: absolute;
	left: 0; top: 2px;
	width: 16px; height: 16px;
	border-radius: 50%;
	background: rgba(31, 90, 224, 0.1)
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5 6.5 12 13 4.5' fill='none' stroke='%231F5AE0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
		center / 10px no-repeat;
}

/* --- Roles grid --- */
.hiw-roles {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}
.hiw-role {
	background: var(--pearl-50);
	border: 1px solid var(--pearl-300);
	border-radius: var(--radius-lg);
	padding: 1.75rem 1.5rem;
	transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.hiw-role:hover {
	transform: translateY(-3px);
	border-color: var(--accent-500);
	box-shadow: 0 12px 24px rgba(7, 33, 70, 0.08);
}
.hiw-role__icon {
	display: inline-grid; place-items: center;
	width: 46px; height: 46px;
	border-radius: var(--radius-md);
	background: rgba(31, 90, 224, 0.1);
	color: var(--accent-500);
	margin-bottom: 1rem;
}
.hiw-role__icon svg { width: 24px; height: 24px; }
.hiw-role h3 {
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--ink-900);
	margin: 0 0 0.4rem;
}
.hiw-role p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.55; margin: 0; }

/* --- Why it's secure (navy band) --- */
.hiw-why__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.hiw-why__copy { max-width: 460px; }
.hiw-why__title { font-size: clamp(1.625rem, 3vw, 2.25rem); margin: 1rem 0 1rem; }
.hiw-why__lede { color: rgba(248, 250, 252, 0.8); font-size: 1.0625rem; line-height: 1.65; margin: 0; }
.hiw-why__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.hiw-why__list li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: start;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	padding: 1.1rem 1.25rem;
}
.hiw-why__list strong {
	display: block;
	font-family: var(--font-sans);
	font-size: 1rem;
	color: #FFFFFF;
	margin-bottom: 0.2rem;
}
.hiw-why__list li > div { color: rgba(248, 250, 252, 0.72); font-size: 0.9375rem; line-height: 1.5; }
.hiw-why__check {
	flex: 0 0 auto;
	width: 26px; height: 26px;
	color: var(--gold-300);
	margin-top: 0.1rem;
}
.hiw-why__check svg { width: 100%; height: 100%; display: block; }

/* --- Closing CTA (light) --- */
.hiw-cta__inner { max-width: 640px; margin-inline: auto; text-align: center; }
.hiw-cta__inner p { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.6; margin: 1rem auto 2rem; max-width: 460px; }
.hiw-cta__actions { display: inline-flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.hiw-cta__actions .btn { padding: 1rem 1.75rem; border-radius: var(--radius-sm); }
.hiw-cta__actions .btn--accent { box-shadow: 0 12px 28px rgba(31, 90, 224, 0.28); }

/* --- How It Works responsive --- */
@media (max-width: 860px) {
	.hiw-roles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hiw-why__inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.hiw-hero__ctas .btn, .hiw-cta__actions .btn { width: 100%; justify-content: center; }
	.hiw-step { grid-template-columns: 44px 1fr; gap: 1rem; }
	.hiw-step__num { width: 44px; height: 44px; font-size: 1.125rem; }
	.hiw-step:not(:last-child)::before { left: 21px; top: 48px; }
	.hiw-step__top { flex-wrap: wrap; }
	.hiw-step__tag { margin-left: 0; }
	.hiw-roles { grid-template-columns: 1fr; }
}

/* Light section lede (for navy bands) */
.section__lede--light { color: rgba(248,250,252,0.78); }

/* System architecture diagram (navy band) */
.hiw-arch-sec { position: relative; }
.arch {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr auto 1.15fr auto 1fr;
	gap: clamp(0.75rem, 2vw, 1.5rem);
	align-items: center;
	max-width: 1040px;
	margin-inline: auto;
}
.arch-node, .arch-core, .arch-out li {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: var(--radius-lg);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
.arch-node {
	padding: 1.5rem 1.25rem;
	text-align: center;
	display: grid;
	justify-items: center;
	gap: 0.35rem;
}
.arch-node__icon {
	width: 48px; height: 48px;
	display: grid; place-items: center;
	border-radius: 50%;
	border: 1.5px solid rgba(255,255,255,0.4);
	color: #FFFFFF;
	margin-bottom: 0.4rem;
}
.arch-node__icon svg { width: 24px; height: 24px; }
.arch-node strong { font-family: var(--font-sans); font-size: 1rem; color: #FFFFFF; }
.arch-node span { font-size: 0.8125rem; color: rgba(248,250,252,0.7); }

.arch-core {
	padding: 1.6rem 1.4rem;
	text-align: center;
	display: grid;
	justify-items: center;
	gap: 0.6rem;
	background: linear-gradient(150deg, rgba(31,90,224,0.22), rgba(7,33,70,0.4));
	border-color: rgba(31,90,224,0.5);
	box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.arch-core__mark { width: 52px; height: 52px; color: var(--gold-300); }
.arch-core__mark svg { width: 100%; height: 100%; }
.arch-core__name {
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: 0.02em;
	color: #FFFFFF;
}
.arch-core__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; width: 100%; }
.arch-core__list li {
	position: relative;
	padding-left: 1.4rem;
	font-size: 0.8125rem;
	color: rgba(248,250,252,0.85);
	text-align: left;
}
.arch-core__list li::before {
	content: '';
	position: absolute; left: 0; top: 6px;
	width: 7px; height: 7px; border-radius: 2px;
	background: var(--gold-300);
}
.arch-core__chip {
	margin-top: 0.25rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--gold-300);
	background: rgba(229,210,161,0.12);
	border: 1px solid rgba(229,210,161,0.25);
	border-radius: var(--radius-pill);
	padding: 0.3rem 0.7rem;
	line-height: 1.3;
}
.arch-arrow {
	display: grid; place-items: center;
	width: 34px; height: 34px;
	color: var(--gold-300);
	justify-self: center;
}
.arch-arrow svg { width: 24px; height: 24px; }
.arch-out { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.arch-out li {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.85rem;
	align-items: center;
	padding: 0.85rem 1rem;
}
.arch-out__icon {
	width: 40px; height: 40px;
	display: grid; place-items: center;
	border-radius: var(--radius-md);
	background: rgba(255,255,255,0.08);
	color: var(--gold-300);
}
.arch-out__icon svg { width: 22px; height: 22px; }
.arch-out strong { display: block; font-family: var(--font-sans); font-size: 0.9375rem; color: #FFFFFF; }
.arch-out span { font-size: 0.8125rem; color: rgba(248,250,252,0.7); }

@media (max-width: 860px) {
	.arch {
		grid-template-columns: 1fr;
		gap: 1rem;
		max-width: 440px;
	}
	.arch-arrow { transform: rotate(90deg); }
}

/* -----------------------------------------------------------
   11d. Benefits page  (page-benefits.php)
   ----------------------------------------------------------- */

/* --- Hero (split: copy + device image) --- */
.bf-hero {
	position: relative;
	background:
		radial-gradient(620px circle at 92% 12%, rgba(31,90,224,0.08), transparent 60%),
		linear-gradient(180deg, var(--pearl-100) 0%, var(--pearl-200) 100%);
	padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5rem);
	overflow: hidden;
}
.bf-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.bf-hero__copy { max-width: 560px; }
.bf-hero__title {
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: clamp(2rem, 4.2vw, 3rem);
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: var(--ink-900);
	margin: 1rem 0 1.25rem;
}
.bf-hero__lede {
	color: var(--text-muted);
	font-size: clamp(1rem, 1.3vw, 1.15rem);
	line-height: 1.65;
	margin: 0 0 2rem;
	max-width: 520px;
}
.bf-hero__ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.75rem; }
.bf-hero__ctas .btn { padding: 1rem 1.6rem; border-radius: var(--radius-sm); }
.bf-hero__ctas .btn--accent { box-shadow: 0 12px 28px rgba(31,90,224,0.28); }
.bf-hero__chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.bf-hero__chips li {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.8rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--ink-700);
	background: var(--pearl-50);
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
}
.bf-hero__chips li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-500); }
.bf-hero__visual { margin: 0; display: flex; justify-content: center; }
.bf-hero__visual img {
	width: 100%;
	max-width: 680px;
	height: auto;
	display: block;
	filter: drop-shadow(0 30px 60px rgba(7, 33, 70, 0.2));
}

/* --- Outcome metrics --- */
.bf-outcomes {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	margin: 0;
}
.bf-outcome {
	text-align: center;
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2rem 1.25rem;
	transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.bf-outcome:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.bf-outcome__num {
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: clamp(2.5rem, 4.5vw, 3.25rem);
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--navy-800);
	margin: 0 0 0.65rem;
	font-variant-numeric: tabular-nums;
}
.bf-outcome__num span { font-size: 0.45em; font-weight: 700; color: var(--accent-500); margin-left: 0.04em; }
.bf-outcome__num .bf-outcome__pre { margin-left: 0; margin-right: 0.02em; }
.bf-outcome__label {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--text-muted);
	line-height: 1.4;
	max-width: 18ch;
	margin-inline: auto;
}

/* --- Audience segments --- */
.bf-audience {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: start;
}
.bf-aud {
	background: var(--pearl-50);
	border: 1px solid var(--pearl-300);
	border-radius: var(--radius-lg);
	padding: 2rem 1.75rem;
	height: 100%;
	transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.bf-aud:hover { transform: translateY(-4px); border-color: var(--accent-500); box-shadow: 0 14px 30px rgba(7, 33, 70, 0.1); }
.bf-aud__icon {
	display: inline-grid; place-items: center;
	width: 52px; height: 52px;
	border-radius: var(--radius-md);
	background: var(--navy-50);
	color: var(--navy-800);
	margin-bottom: 1.1rem;
}
.bf-aud__icon svg { width: 28px; height: 28px; }
.bf-aud__title { font-family: var(--font-sans); font-size: 1.25rem; font-weight: 700; color: var(--ink-900); margin: 0 0 0.35rem; }
.bf-aud__desc { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.5; margin: 0 0 1.25rem; }
.bf-aud__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.bf-aud__list li {
	position: relative;
	padding-left: 1.85rem;
	font-size: 0.9375rem;
	line-height: 1.45;
	color: var(--ink-700);
}
.bf-aud__list li::before {
	content: '';
	position: absolute;
	left: 0; top: 1px;
	width: 18px; height: 18px;
	border-radius: 50%;
	background: rgba(31,90,224,0.1)
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5 6.5 12 13 4.5' fill='none' stroke='%231F5AE0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
		center / 11px no-repeat;
}

/* Featured (residents) card — navy emphasis */
.bf-aud--featured {
	background: linear-gradient(150deg, var(--navy-800) 0%, var(--navy-900) 100%);
	border-color: transparent;
	color: var(--pearl-100);
	position: relative;
	overflow: hidden;
}
.bf-aud--featured::after {
	content: '';
	position: absolute; right: -90px; top: -90px;
	width: 280px; height: 280px;
	background: radial-gradient(circle, rgba(201,166,90,0.18), transparent 60%);
	pointer-events: none;
}
.bf-aud--featured .bf-aud__icon { background: rgba(255,255,255,0.1); color: var(--gold-300); }
.bf-aud--featured .bf-aud__title { color: #FFFFFF; }
.bf-aud--featured .bf-aud__desc { color: rgba(248,250,252,0.78); }
.bf-aud--featured .bf-aud__list li { color: rgba(248,250,252,0.85); }
.bf-aud--featured .bf-aud__list li::before {
	background: rgba(229,210,161,0.18)
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5 6.5 12 13 4.5' fill='none' stroke='%23E5D2A1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
		center / 11px no-repeat;
}

/* --- Closing statement + CTA (navy) --- */
.bf-close { position: relative; overflow: hidden; isolation: isolate; padding-block: clamp(4rem, 8vw, 6.5rem); }
.bf-close__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.bf-close__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; text-align: center; }
.bf-close .eyebrow { justify-content: center; }
.bf-close__title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; margin: 1rem 0 1.25rem; }
.bf-close__lede { max-width: 540px; margin: 0 auto 2.25rem; color: rgba(248,250,252,0.78); font-size: 1.0625rem; line-height: 1.6; }
.bf-close__actions { display: inline-flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin-bottom: 2.25rem; }
.bf-close__actions .btn { padding: 1rem 1.75rem; border-radius: var(--radius-sm); }
.bf-close__actions .btn--accent { box-shadow: 0 14px 32px rgba(31,90,224,0.4); }
.bf-close__trust {
	list-style: none; margin: 0; padding: 0;
	display: inline-flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center;
	color: rgba(248,250,252,0.65); font-size: 0.875rem;
}
.bf-close__trust li { display: inline-flex; align-items: center; gap: 0.4rem; }
.bf-close__trust svg { color: var(--gold-300); }

/* --- Benefits responsive --- */
@media (max-width: 960px) {
	.bf-hero__inner { grid-template-columns: 1fr; }
	.bf-hero__visual { order: -1; }
	.bf-outcomes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.bf-audience { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
	.bf-hero__ctas .btn, .bf-close__actions .btn { width: 100%; justify-content: center; }
	.bf-outcomes { grid-template-columns: 1fr; }
	.bf-close__trust { gap: 0.75rem 1.25rem; }
}

/* --- Market / ROI --- */
.bf-market__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
}
.bf-market__chart {
	margin: 0;
	background: var(--pearl-50);
	border: 1px solid var(--pearl-300);
	border-radius: var(--radius-xl);
	padding: clamp(1.25rem, 3vw, 2rem);
	box-shadow: var(--shadow-md);
}
.bf-market__chart-head { display: grid; gap: 0.15rem; margin-bottom: 1rem; }
.bf-market__chart-head strong { font-family: var(--font-sans); font-size: 1.0625rem; color: var(--ink-900); }
.bf-market__chart-head span { font-size: 0.8125rem; color: var(--text-muted); }
.bf-chart { width: 100%; height: auto; display: block; }
.bf-chart rect[fill="url(#bfBar)"] { transition: filter var(--dur) var(--ease); }
.bf-market__chart:hover .bf-chart rect[fill="url(#bfBar)"] { filter: brightness(1.05); }

.bf-market__figures { display: grid; gap: 1rem; }
.bf-figure {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: center;
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.25rem 1.4rem;
	transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.bf-figure:hover { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.bf-figure__num {
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: 1.75rem;
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--navy-800);
	font-variant-numeric: tabular-nums;
	min-width: 4ch;
}
.bf-figure p { margin: 0; font-size: 0.9375rem; line-height: 1.5; color: var(--text-muted); }

@media (max-width: 860px) {
	.bf-market__grid { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------
   11e. Contact page  (page-contact.php)
   ----------------------------------------------------------- */

/* --- Hero --- */
.ct-hero {
	position: relative;
	background:
		radial-gradient(620px circle at 88% 10%, rgba(31,90,224,0.08), transparent 60%),
		linear-gradient(180deg, var(--pearl-100) 0%, var(--pearl-200) 100%);
	padding-block: clamp(2.5rem, 6vw, 4rem) clamp(2.5rem, 6vw, 4rem);
	overflow: hidden;
}
.ct-hero__inner { position: relative; z-index: 1; max-width: 720px; }
.ct-hero__title {
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: clamp(2rem, 4.2vw, 3rem);
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: var(--ink-900);
	margin: 1rem 0 1.25rem;
}
.ct-hero__lede { color: var(--text-muted); font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.65; margin: 0; max-width: 600px; }

/* --- Layout: info + form --- */
.ct-section { scroll-margin-top: calc(var(--header-h) + 8px); }
.ct-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

/* Info column */
.ct-info__title { font-family: var(--font-sans); font-size: 1.5rem; font-weight: 700; color: var(--ink-900); margin: 0 0 0.5rem; }
.ct-info__lede { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.6; margin: 0 0 1.75rem; max-width: 34ch; }

.ct-methods { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: 1rem; }
.ct-method { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: center; }
.ct-method__icon {
	display: inline-grid; place-items: center;
	width: 46px; height: 46px;
	border-radius: var(--radius-md);
	background: var(--navy-50);
	color: var(--navy-800);
}
.ct-method__icon svg { width: 24px; height: 24px; }
.ct-method__body { display: grid; gap: 0.1rem; min-width: 0; }
.ct-method__label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--text-muted);
}
.ct-method__body a, .ct-method__body span { font-size: 0.9375rem; color: var(--ink-900); }
.ct-method__body a:hover { color: var(--accent-500); }

/* What happens next */
.ct-next {
	border-top: 1px solid var(--border);
	padding-top: 1.5rem;
}
.ct-next__title {
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-500);
	margin: 0 0 1rem;
}
.ct-next__list { list-style: none; margin: 0; padding: 0; counter-reset: ctn; display: grid; gap: 0.85rem; }
.ct-next__list li {
	position: relative;
	counter-increment: ctn;
	padding-left: 2.25rem;
	font-size: 0.9375rem;
	color: var(--ink-700);
	line-height: 1.4;
}
.ct-next__list li::before {
	content: counter(ctn);
	position: absolute;
	left: 0; top: -0.1rem;
	width: 26px; height: 26px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: rgba(31,90,224,0.1);
	color: var(--accent-500);
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 0.8125rem;
}

/* Form card */
.ct-form-card {
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: clamp(1.5rem, 3vw, 2.25rem);
	box-shadow: var(--shadow-md);
}
.ct-form-card__title { font-family: var(--font-sans); font-size: 1.5rem; font-weight: 700; color: var(--ink-900); margin: 0 0 0.35rem; }
.ct-form-card__sub { color: var(--text-muted); font-size: 0.875rem; margin: 0 0 1.5rem; }

/* Alerts */
.ct-alert {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.85rem;
	align-items: start;
	padding: 1rem 1.15rem;
	border-radius: var(--radius-md);
	margin-bottom: 1.5rem;
	font-size: 0.9375rem;
	line-height: 1.5;
}
.ct-alert strong { display: block; font-family: var(--font-sans); margin-bottom: 0.15rem; }
.ct-alert__icon { width: 24px; height: 24px; flex: 0 0 auto; }
.ct-alert__icon svg { width: 100%; height: 100%; display: block; }
.ct-alert--ok { background: rgba(30,156,107,0.1); color: var(--success-500); border: 1px solid rgba(30,156,107,0.25); }
.ct-alert--ok div { color: var(--ink-900); }
.ct-alert--bad { background: rgba(192,57,43,0.08); color: var(--danger-500); border: 1px solid rgba(192,57,43,0.22); }
.ct-alert--bad div { color: var(--ink-900); }
.ct-alert--ok strong { color: var(--success-500); }
.ct-alert--bad strong { color: var(--danger-500); }

/* Form fields */
.ct-form { display: grid; gap: 1.1rem; }
.ct-field { display: grid; gap: 0.4rem; }
.ct-field label {
	font-family: var(--font-sans);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ink-900);
	letter-spacing: 0.01em;
}
.ct-req { color: var(--accent-500); }
.ct-field input,
.ct-field textarea {
	width: 100%;
	font-family: var(--font-sans);
	font-size: 0.9375rem;
	color: var(--ink-900);
	background: var(--pearl-100);
	border: 1px solid var(--border-strong);
	border-radius: var(--radius-sm);
	padding: 0.75rem 0.9rem;
	transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.ct-field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: var(--ink-300); }
.ct-field input:focus,
.ct-field textarea:focus {
	outline: none;
	background: var(--surface-2);
	border-color: var(--accent-500);
	box-shadow: 0 0 0 3px rgba(31,90,224,0.15);
}

/* Honeypot — visually hidden but not display:none (bots skip those) */
.ct-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.ct-form__submit { width: 100%; justify-content: center; margin-top: 0.25rem; }
.ct-form__fineprint { color: var(--text-muted); font-size: 0.8125rem; text-align: center; margin: 0.25rem 0 0; }

/* --- Explore band (navy) --- */
.ct-explore__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem 2rem;
}
.ct-explore__copy { max-width: 520px; }
.ct-explore .eyebrow { margin-bottom: 0.75rem; }
.ct-explore__title { font-size: clamp(1.5rem, 2.8vw, 2.25rem); margin: 0; }
.ct-explore__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* --- Contact responsive --- */
@media (max-width: 860px) {
	.ct-layout { grid-template-columns: 1fr; }
	.ct-explore__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
	.ct-explore__actions { width: 100%; }
	.ct-explore__actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* -----------------------------------------------------------
   12. Posts (fallback index.php)
   ----------------------------------------------------------- */
.post-list { display: grid; gap: 1.5rem; }
.post-card {
	background: var(--surface-2);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
}
.post-card__title { font-size: var(--text-2xl); margin: 0 0 0.25rem; }
.post-card__meta { color: var(--text-muted); font-size: var(--text-sm); margin-bottom: 0.75rem; }

/* -----------------------------------------------------------
   13. Utilities
   ----------------------------------------------------------- */
.hide-on-mobile { display: inline; }

/* -----------------------------------------------------------
   14. Responsive
   ----------------------------------------------------------- */
@media (max-width: 960px) {
	.hero-features { grid-template-columns: repeat(2, 1fr); row-gap: 2.25rem; }
	/* Tighten the stacked dashboard/mockup section so it isn't marooned in whitespace */
	.benefits { grid-template-columns: 1fr; gap: 2.25rem; }
	.about-intro--split { grid-template-columns: 1fr; }
	.about-intro__copy { max-width: none; }

	/* Footer: 4 cols → 2 cols, brand spans both */
	.site-footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
	.site-footer__brand-col { grid-column: 1 / -1; max-width: 600px; }
	.site-footer__watermark { right: -140px; top: 80px; width: 280px; height: 280px; }

	/* Flow: 5 cols → 3 cols, hide connectors that would span rows */
	.flow {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		row-gap: 2.5rem;
	}
	.flow__step:nth-child(3n)::after { display: none; }

	/* Stats: 4 cols → 2 cols, restyle separator for new positions */
	.stats { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
	.stat + .stat::before { display: none; }

	/* Market section */
	.market-stats { grid-template-columns: repeat(2, 1fr); }
	.market-chart-block { grid-template-columns: 1fr; gap: 2rem; }
	.market-opportunity { grid-template-columns: 1fr; text-align: center; }
	.market-opportunity__visual { margin-inline: auto; width: 80px; height: 80px; }

	/* Problem→Solution stacks vertically */
	.ps {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 1.25rem;
		justify-items: center;
		text-align: center;
	}
	.ps__problem, .ps__solution { align-items: center; }
	.ps__arrow { transform: rotate(90deg); }
}

@media (max-width: 640px) {
	.flow {
		grid-template-columns: 1fr;
		max-width: 360px;
		row-gap: 2rem;
	}
	.flow__step { padding: 0; }
	.flow__step::after { display: none !important; }

	/* Smaller workflow icons on mobile so steps read more compactly */
	.flow__icon { width: 60px; height: 60px; margin-bottom: 0.85rem; }
	.flow__icon svg { width: 26px; height: 26px; }

	/* Vertical dashed connector between stacked steps */
	.flow__step:not(:last-child) .flow__icon::before {
		content: '';
		position: absolute;
		top: 100%;
		left: 50%;
		width: 0;
		height: 2rem;
		border-left: 2px dashed rgba(31, 90, 224, 0.35);
		transform: translateX(-50%);
	}
}

@media (max-width: 540px) {
	.hero-features { grid-template-columns: 1fr; gap: 1.75rem; }
	.hero__title { font-size: clamp(1.75rem, 7vw, 2.25rem); }
	.hero__ctas .btn { width: 100%; justify-content: center; }
	.stats { grid-template-columns: 1fr; }
	.stat { padding: 1.25rem 0; }
	.market-stats { grid-template-columns: 1fr; }

	.cta-final__actions .btn { width: 100%; justify-content: center; }
	.cta-final__trust { gap: 0.75rem 1.25rem; }

	.site-footer__inner { grid-template-columns: 1fr; }
	.site-footer__brand-col { max-width: none; }
	.site-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 1024px) {
	:root { --header-h: 68px; }

	/* Drop the header's backdrop-filter on mobile: it makes the header the
	   containing block for the fixed nav panel (anchoring it to the 68px bar
	   instead of the viewport). Removing it lets the slide-in cover the full
	   screen and stay put while the page is scrolled. A solid background keeps
	   the bar opaque without the blur. */
	.site-header,
	.site-header.is-scrolled {
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
		background: var(--pearl-50);
	}

	.nav-toggle { display: block; }
	.hide-on-mobile { display: none; }

	/* The flex-growing nav is pulled out of flow (fixed) on mobile, so push
	   the actions/hamburger to the far right of the header bar. */
	.site-header__actions { margin-left: auto; }

	/* Off-canvas panel: anchored under the fixed header, sized to the
	   viewport, slid in from the right via the body.nav-is-open class. */
	.site-nav {
		position: fixed;
		top: var(--header-h);
		right: -100%;
		width: 100%;
		height: calc(100vh - var(--header-h));
		height: calc(100dvh - var(--header-h));
		z-index: 140;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		gap: 0;
		background: var(--pearl-100);
		padding: clamp(1rem, 4vw, 1.5rem) clamp(1.25rem, 5vw, 1.75rem) 2rem;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		transition: right var(--dur) var(--ease);
		box-shadow: var(--shadow-lg);
		border-top: 1px solid var(--border);
	}
	body.nav-is-open .site-nav { right: 0; }

	.nav-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
	}
	.nav-menu > .menu-item { border-bottom: 1px solid var(--border); }
	.nav-menu > .menu-item:first-child { border-top: 1px solid var(--border); }
	.nav-menu > .menu-item > a {
		display: block;
		padding: 1rem 0.15rem;
		font-size: var(--text-lg);
		font-family: var(--font-display);
		color: var(--ink-900);
	}
	.nav-menu > .menu-item > a::after { display: none; }

	/* Dropdowns flow inline within the panel instead of floating */
	.nav-menu .sub-menu {
		position: static;
		display: block;
		box-shadow: none;
		border: none;
		background: transparent;
		padding: 0 0 0 var(--space-4);
		width: 100%;
	}

	/* Move the Request Pilot button out of the header bar and into the
	   slide-in menu, pinned to the bottom of the panel. */
	.site-header__actions .btn { display: none; }
	.site-nav__cta {
		display: inline-flex;
		justify-content: center;
		width: 100%;
		margin-top: auto;
		padding-top: 1.5rem;
	}

	body.nav-is-open { overflow: hidden; }

	/* When open: lock the whole header at the top of the viewport as a fixed
	   bar (so it never slides away with the sticky flow) and blend it into the
	   open panel so the logo + X read as the top of the navigation. The
	   panel's own border-top is the single divider between bar and links. */
	body.nav-is-open .site-header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 150;
		background: var(--pearl-100);
		box-shadow: none;
		border-bottom-color: transparent;
	}
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
	html { scroll-behavior: auto; }
}

/* -----------------------------------------------------------
   15. Approved-scope page helpers (post-realignment)
   ----------------------------------------------------------- */
/* Numbered step markers (How It Works page reuses .flow) */
.flow__num {
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: 1.75rem;
	line-height: 1;
	color: var(--accent-500);
	letter-spacing: -0.02em;
}
.flow__step:hover .flow__num { color: #FFFFFF; }

/* How It Works closing band */
.hiw-close__inner { max-width: 640px; margin-inline: auto; text-align: center; }
.hiw-close__inner .display { margin: 0 0 1.5rem; }

/* About intro — single column by default (e.g. Company overview) */
.about-intro { max-width: 720px; }

/* Split variant — copy + image side by side (About page) */
.about-intro--split {
	max-width: none;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}
.about-intro__copy { max-width: 560px; }
.about-intro__title { font-size: clamp(1.75rem, 3.2vw, 2.5rem); margin: 1rem 0 1rem; }
.about-intro__lede { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.7; margin: 0; }
.about-intro__visual { margin: 0; }
.about-intro__visual img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--radius-md);
	box-shadow: 0 30px 60px rgba(7, 33, 70, 0.18);
}
.about-cta { margin-top: 1.75rem; }

/* About — Mission & Vision cards */
.about-mv {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2rem);
}
.about-mv__card {
	background: var(--pearl-50);
	border: 1px solid rgba(7, 33, 70, 0.08);
	border-radius: var(--radius-md, 16px);
	padding: clamp(1.75rem, 3vw, 2.5rem);
	box-shadow: 0 18px 40px rgba(7, 33, 70, 0.06);
}
.about-mv__icon {
	display: inline-grid;
	place-items: center;
	width: 48px; height: 48px;
	border-radius: 12px;
	background: rgba(31, 90, 224, 0.1);
	color: var(--accent-500);
	margin-bottom: 1.1rem;
}
.about-mv__icon svg { width: 26px; height: 26px; }
.about-mv__title { font-size: clamp(1.35rem, 2.4vw, 1.75rem); margin: 0 0 0.75rem; letter-spacing: -0.01em; }
.about-mv__text { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.7; margin: 0; }

/* Benefits — before / after comparison (reuses the .about-mv card grid) */
.bcompare__card { display: flex; flex-direction: column; }
.bcompare__card--neg { background: var(--pearl-200); box-shadow: none; }
.bcompare__card--pos { border-color: rgba(31, 90, 224, 0.25); box-shadow: 0 18px 40px rgba(31, 90, 224, 0.10); }
.bcompare__list { list-style: none; margin: 1.1rem 0 0; padding: 0; display: grid; gap: 0.85rem; }
.bcompare__list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 1rem; line-height: 1.6; }
.bcompare__mark { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 0.1rem; }
.bcompare__mark svg { width: 100%; height: 100%; display: block; }
.bcompare__list--neg { color: var(--text-muted); }
.bcompare__list--neg .bcompare__mark { color: var(--ink-300); }
.bcompare__list--pos { color: var(--text); }
.bcompare__list--pos .bcompare__mark { color: var(--accent-500); }

/* About — What Makes CCAN Different */
.about-diff {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.25rem, 3vw, 2rem);
}
.about-diff__item { display: flex; gap: 1rem; align-items: flex-start; }
.about-diff__check {
	flex: 0 0 auto;
	width: 28px; height: 28px;
	color: var(--accent-500);
	margin-top: 0.15rem;
}
.about-diff__check svg { width: 100%; height: 100%; display: block; }
.about-diff__title { font-size: 1.1875rem; margin: 0 0 0.4rem; letter-spacing: -0.01em; }
.about-diff__desc { color: var(--text-muted); font-size: 1rem; line-height: 1.65; margin: 0; }

/* About — Current Focus Areas */
.about-focus {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.about-focus__title { font-size: clamp(1.75rem, 3.2vw, 2.5rem); margin: 1rem 0 1rem; }
.about-focus__lede { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.7; margin: 0; }
.about-focus__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.about-focus__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	font-size: 1.0625rem;
	line-height: 1.5;
	color: var(--ink-900);
	font-weight: 500;
}
.about-focus__dot {
	flex: 0 0 auto;
	width: 10px; height: 10px;
	margin-top: 0.5rem;
	border-radius: 50%;
	background: var(--accent-500);
	box-shadow: 0 0 0 4px rgba(31, 90, 224, 0.14);
}

/* Homepage pilot section CTA */
.pilot__cta { margin-top: 1.75rem; }

/* Legal pages (privacy / terms) — readable prose */
.legal { max-width: 760px; }
.legal__updated { color: var(--text-muted); font-size: 0.95rem; margin: 0 0 2rem; }
.legal h2 {
	font-size: clamp(1.25rem, 2.2vw, 1.6rem);
	letter-spacing: -0.01em;
	margin: 2.25rem 0 0.75rem;
}
.legal p {
	color: var(--ink-900);
	font-size: 1.0625rem;
	line-height: 1.75;
	margin: 0 0 1rem;
}
.legal a { color: var(--accent-500); text-decoration: underline; }

@media (max-width: 760px) {
	.about-mv,
	.about-diff,
	.about-focus { grid-template-columns: 1fr; }
}

/* Lean footer (3 columns) */
.site-footer__inner--lean { grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr) minmax(0, 1fr); }
.site-footer__inner--lean .site-footer__col ul { display: grid; gap: 0.6rem; list-style: none; margin: 0; padding: 0; }
@media (max-width: 860px) {
	.site-footer__inner--lean { grid-template-columns: 1fr 1fr; }
	.site-footer__inner--lean .site-footer__brand-col { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
	.site-footer__inner--lean { grid-template-columns: 1fr; }
}

/* Header brand image logo (full CCAN lockup) */
.brand--image { gap: 0; }
.brand__logo { height: 46px; width: auto; display: block; }
@media (max-width: 1024px) { .brand__logo { height: 38px; } }

/* Footer brand icon — recolour the black-outline shield PNG to white */
.brand__mark--img { width: auto; height: auto; }
.brand__mark--img img {
	width: 44px;
	height: 44px;
	display: block;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

/* Footer contact list (icon + value) */
.site-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}
.site-footer__contact li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: rgba(248, 250, 252, 0.78);
	font-size: 0.9375rem;
}
.site-footer__contact-icon {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	color: var(--gold-300);
}
.site-footer__contact-icon svg { width: 100%; height: 100%; display: block; }
.site-footer__contact a {
	color: rgba(248, 250, 252, 0.78);
	transition: color var(--dur-fast) var(--ease);
}
.site-footer__contact a:hover { color: #FFFFFF; }

/* Footer social (LinkedIn) */
.site-footer__social {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-top: 1.1rem;
	color: var(--pearl-100);
	background: rgba(248, 250, 252, 0.08);
	border-radius: var(--radius-sm);
	transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.site-footer__social svg { width: 18px; height: 18px; display: block; }
.site-footer__social:hover {
	background: rgba(248, 250, 252, 0.16);
	transform: translateY(-1px);
}

/* Centered copyright bottom bar */
.site-footer__bottom-inner--center {
	justify-content: center;
	align-items: center;
	text-align: center;
}
