html.lenis,
html.lenis body {
  height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch],
.lenis [data-lenis-prevent-vertical],
.lenis [data-lenis-prevent-horizontal] {
  overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.lenis.lenis-autoToggle {
  transition-property: overflow;
  transition-duration: 1ms;
  transition-behavior: allow-discrete;
}
/* Self-hosted fonts — Sora (display) + Inter (body), latin subset, SIL OFL.
   Files fetched via google-webfonts-helper; see assets/vendor/VERSIONS.txt */

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/sora-v17-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/sora-v17-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/sora-v17-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/sora-v17-latin-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-v20-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/inter-v20-latin-700.woff2') format('woff2');
}

/* Metric-matched local fallbacks (Arial) — eliminate font-swap layout shift (CLS).
   Overrides computed from the shipped woff2 metrics vs Arial with fontTools
   (scripts note: knowledge/ERRORS.md 2026-07-18). Referenced by the font stacks
   in tokens.css; while the real fonts load, text renders in Arial scaled to the
   same metrics, so the swap moves (almost) nothing. */
@font-face {
  font-family: 'Sora Fallback';
  src: local('Arial');
  size-adjust: 115.23%;
  ascent-override: 84.18%;
  descent-override: 25.17%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Inter Fallback';
  src: local('Arial');
  size-adjust: 107.81%;
  ascent-override: 89.86%;
  descent-override: 22.37%;
  line-gap-override: 0%;
}
/* FinMile design tokens — source of truth: norbs-os knowledge/brand.md (official decks).
   Indigo-on-lavender, light-first. Lime is a SPARING accent only:
   (a) max one headline underline flick per page, (b) simulator "delivered" payoff,
   (c) one small delta chip. Never button fill / background / icon colour. */

:root {
  /* colour */
  --indigo: #4A25E0;
  --indigo-deep: #33199C;
  --ink: #0D0A2B;
  --bg: #F3F2FC;
  --surface: #FFFFFF;
  --lilac: #E8E6FB;
  --lavender: #C9C2F2;
  --lime: #C7F24A;
  --success: #37C26A;
  --error: #E5484D;
  /* warn = "at risk, being resolved" (hero exception story). NOT --error:
     red stays the failure colour (simulator, dashboard alerts). */
  --warn: #F97316;
  --warn-deep: #C2410C;   /* warn text on white — 4.9:1 */
  --warn-bg: #FFF7F0;
  --warn-16: rgba(249, 115, 22, .16);

  --indigo-08: rgba(74, 37, 224, .08);
  --indigo-16: rgba(74, 37, 224, .16);
  --ink-80: rgba(13, 10, 43, .80);
  --ink-60: rgba(13, 10, 43, .60);
  --ink-40: rgba(13, 10, 43, .40);
  --ink-border: rgba(13, 10, 43, .08);

  /* type */
  --font-display: 'Sora', 'Sora Fallback', 'Avenir Next', 'Helvetica Neue', system-ui, sans-serif;
  --font-body: 'Inter', 'Inter Fallback', -apple-system, 'Segoe UI', system-ui, sans-serif;

  --fs-display: clamp(2.6rem, 5.5vw, 4.25rem);
  --fs-h1: clamp(2.2rem, 4.5vw, 3.25rem);
  --fs-h2: clamp(1.8rem, 3.2vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fs-eyebrow: 0.8125rem;
  --fs-stat: clamp(2.75rem, 6vw, 4.5rem);

  /* space */
  --sp-1: 4px;  --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px;  --sp-7: 48px;  --sp-8: 64px;
  --sp-9: 80px; --sp-10: 96px; --sp-11: 112px; --sp-12: 128px;
  --section-pad: clamp(4rem, 9vw, 7.5rem);
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  /* radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* elevation (indigo-tinted, soft) */
  --shadow-rest: 0 1px 2px rgba(13, 10, 43, .05);
  --shadow-raised: 0 8px 24px rgba(13, 10, 43, .08);
  --shadow-hover: 0 16px 40px rgba(74, 37, 224, .12);

  /* motion */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --dur-fast: .2s;
  --dur-med: .4s;
}

/* Dark ("ink") section context — apply .theme-ink to a <section> */
.theme-ink {
  --section-bg: var(--ink);
  --text: #F3F2FC;
  --text-60: rgba(243, 242, 252, .66);
  --text-40: rgba(243, 242, 252, .45);
  --card-bg: rgba(255, 255, 255, .06);
  --card-border: rgba(255, 255, 255, .12);
  --chip-bg: rgba(255, 255, 255, .10);
  --chip-fg: #F3F2FC;
  --hl: var(--lavender);
  background: var(--section-bg);
  color: var(--text);
}

/* Light (default) context */
:root, .theme-light {
  --section-bg: var(--bg);
  --text: var(--ink);
  --text-60: var(--ink-60);
  --text-40: var(--ink-40);
  --card-bg: var(--surface);
  --card-border: var(--ink-border);
  --chip-bg: var(--lilac);
  --chip-fg: var(--indigo);
  --hl: var(--indigo);
}
/* Base — reset, typography, layout rhythm */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

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

/* Pre-reveal x-offset transforms (data-reveal="left|right") must never widen the
   page: body's clip propagates to the viewport, so descendant overflow still
   counts into document scrollWidth — clipping at <main> actually removes it.
   overflow:clip creates no scroll container, so position:sticky keeps working. */
main { overflow-x: clip; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 var(--sp-4);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: var(--fs-h2); font-weight: 700; }
h3 { font-size: var(--fs-h3); font-weight: 600; }
p { margin: 0 0 var(--sp-4); }
p:last-child { margin-bottom: 0; }

a { color: var(--indigo); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

::selection { background: var(--indigo-16); }

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px var(--indigo), 0 0 0 4px var(--indigo-16);
  border-radius: var(--r-sm);
}

/* Two-tone headline emphasis */
.hl { font-style: normal; color: var(--hl); }

/* Single-use lime underline flick (max one per page) */
.hl-lime {
  font-style: normal;
  background-image: linear-gradient(to top, var(--lime) 0 .14em, transparent .14em);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* Layout */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-pad); }
.section--slim { padding-block: calc(var(--section-pad) * .5); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hl);
  margin-bottom: var(--sp-4);
}

.lead {
  font-size: clamp(1.125rem, 1.6vw, 1.3rem);
  color: var(--text-60);
  max-width: 42em;
}

.grid { display: grid; gap: var(--sp-5); }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile scroll-snap card rail (CSS-only) */
@media (max-width: 719px) {
  .rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    padding-bottom: var(--sp-3);
    -webkit-overflow-scrolling: touch;
  }
  .rail > * { scroll-snap-align: start; }
  .rail::-webkit-scrollbar { display: none; }
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: var(--sp-4); top: var(--sp-4);
  z-index: 100;
  background: var(--surface);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-raised);
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

/* Reduced-motion blanket: kill decorative keyframes/transitions.
   JS applies the same gate (no Lenis, no pins/scrubs, instant reveals). */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
html.force-reduced-motion *, html.force-reduced-motion *::before, html.force-reduced-motion *::after {
  animation-duration: .01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: .01ms !important;
}
/* Components — buttons, cards, chips, nav, footer, CTA band, forms */

/* ---------- Buttons (pills) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast), color var(--dur-fast),
              border-color var(--dur-fast), box-shadow var(--dur-fast);
  will-change: transform;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--indigo); color: #fff; }
.btn-primary:hover { background: var(--indigo-deep); transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.theme-ink .btn-primary, .cta-band .btn-primary { background: #fff; color: var(--indigo); }
.theme-ink .btn-primary:hover, .cta-band .btn-primary:hover { background: var(--lilac); }

.btn-secondary { background: transparent; color: var(--text); border-color: var(--indigo); }
.btn-secondary:hover { background: var(--indigo-08); transform: translateY(-1px); }
.theme-ink .btn-secondary, .cta-band .btn-secondary { color: #fff; border-color: rgba(255,255,255,.4); }
.theme-ink .btn-secondary:hover, .cta-band .btn-secondary:hover { background: rgba(255,255,255,.08); }

.btn-ghost {
  background: none; border: 0; padding: 0;
  color: var(--hl); font-weight: 600; border-radius: var(--r-sm);
}
.btn-ghost .arrow { transition: transform var(--dur-fast) var(--ease-out); display: inline-block; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.btn--sm { padding: 11px 20px; font-size: var(--fs-small); }

/* ---------- Cards ---------- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-rest);
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast), border-color var(--dur-fast);
}
a.card { color: var(--text); display: block; }
a.card:hover { text-decoration: none; }
.card:hover, .card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--indigo-16);
}
.card--static:hover { transform: none; box-shadow: var(--shadow-rest); border-color: var(--card-border); }
.card--lilac { background: var(--lilac); border-color: transparent; }
.theme-ink .card--lilac { background: var(--card-bg); }

/* ---------- Icon chip (signature element) ---------- */
.chip {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--chip-bg);
  color: var(--chip-fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-bottom: var(--sp-4);
  transition: background-color var(--dur-fast), color var(--dur-fast);
}
.chip svg { width: 22px; height: 22px; stroke-width: 1.75; }
.card:hover .chip { background: var(--indigo); color: #fff; }

/* ---------- Pills / tags ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--chip-bg);
  color: var(--chip-fg);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .04em;
  padding: 7px 14px;
  border-radius: var(--r-pill);
}

/* ---------- "Result:" bar (from official decks) ---------- */
.result-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4) var(--sp-6);
  background: var(--indigo-deep);
  color: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-7);
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
}
.result-bar strong { color: var(--lavender); font-weight: 800; margin-right: .4em; }
.result-bar .result-num {
  margin-left: auto;
  font-size: var(--fs-stat);
  font-weight: 800;
  line-height: 1;
}
@media (max-width: 719px) { .result-bar .result-num { margin-left: 0; } }

/* ---------- Stat tiles ---------- */
.stat { text-align: left; }
.stat-num {
  font-family: var(--font-display);
  font-size: var(--fs-stat);
  font-weight: 800;
  line-height: 1;
  color: var(--hl);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.stat-label { color: var(--text-60); margin-top: var(--sp-2); font-size: var(--fs-small); }
.delta {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  vertical-align: middle;
}
.delta--up { background: rgba(55,194,106,.14); color: var(--success); }
.delta--lime { background: var(--lime); color: var(--ink); } /* max one per page */

/* ---------- Quote card ---------- */
.quote {
  background: var(--lilac);
  border-radius: var(--r-xl);
  padding: var(--sp-7);
  position: relative;
}
.theme-ink .quote { background: var(--card-bg); }
.quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 5rem;
  line-height: 1;
  color: var(--indigo);
  display: block;
  height: .55em;
  margin-bottom: var(--sp-3);
}
.quote blockquote {
  margin: 0 0 var(--sp-4);
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.4;
}
.quote figcaption { color: var(--text-60); font-size: var(--fs-small); }

/* ---------- Checklist bullets ---------- */
.list-check, .list-x { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-3); }
.list-check li, .list-x li { display: flex; gap: var(--sp-3); align-items: flex-start; }
.list-check li::before, .list-x li::before {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.list-check li::before { content: '\2713'; background: rgba(55,194,106,.14); color: var(--success); }
.list-x li::before { content: '\2715'; background: rgba(229,72,77,.10); color: var(--error); }

/* ---------- Forms ---------- */
.form { display: grid; gap: var(--sp-4); }
.form-row { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-size: var(--fs-small); font-weight: 600; }
.field input, .field select, .field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  width: 100%;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px var(--indigo-16);
}
.field .error-msg { color: var(--error); font-size: var(--fs-eyebrow); display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--error); }
.field.is-invalid .error-msg { display: block; }
.form-success {
  display: none;
  background: var(--lilac);
  border-radius: var(--r-lg);
  padding: var(--sp-7);
  text-align: center;
}
.form-success .tick {
  width: 56px; height: 56px;
  margin: 0 auto var(--sp-4);
  border-radius: 50%;
  background: rgba(55,194,106,.14);
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.form-wrap.is-done .form { display: none; }
.form-wrap.is-done .form-success { display: block; }
.form-alt { font-size: var(--fs-small); color: var(--text-60); margin-top: var(--sp-3); }

/* ---------- Header / nav (floating pill) ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding-top: 14px;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  height: 64px;
  max-width: min(1160px, calc(100% - 32px));
  padding: 0 10px 0 22px;
  background: rgba(255, 255, 255, .78);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(13, 10, 43, .06);
  border-radius: var(--r-pill);
  box-shadow: 0 8px 24px rgba(13, 10, 43, .08);
  transition: height .25s var(--ease-out), box-shadow .25s, background-color .25s;
}
.site-header.is-scrolled .container {
  height: 56px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 32px rgba(13, 10, 43, .12);
}
@media (max-width: 1023px) {
  .site-header { padding-top: 10px; }
  .site-header .container { height: 56px; max-width: calc(100% - 24px); padding: 0 8px 0 18px; }
}

.logo { display: inline-flex; align-items: center; flex: none; }
.logo svg { height: 26px; width: auto; }

.nav-desktop { display: none; }
.nav-actions { display: none; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; align-items: center; gap: var(--sp-2); margin-inline: auto; position: relative; }
  .nav-actions { display: flex; align-items: center; gap: var(--sp-4); }
}

/* Mega panels position against .nav-desktop (centered under the whole nav),
   not the individual item — item-centered panels clip the viewport edge. */
.nav-item { position: static; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink-80);
  padding: 10px 14px;
  border-radius: var(--r-pill);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.nav-link:hover { color: var(--indigo); text-decoration: none; background: var(--indigo-08); }
.nav-link.is-active { color: var(--indigo); }
.nav-link .caret { transition: transform var(--dur-fast); width: 10px; height: 10px; }
.nav-item.is-open .nav-link .caret { transform: rotate(180deg); }

/* Mega dropdown */
.mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, 8px);
  background: var(--surface);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-hover);
  padding: var(--sp-5);
  display: grid;
  gap: var(--sp-2);
  width: max-content;
  max-width: min(92vw, 880px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out), visibility .2s;
}
.nav-item.is-open .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
/* Hover bridge across the 10px visual gap between trigger and panel — without it,
   the pointer leaves .nav-item mid-crossing and the menu flickers closed/open. */
.mega::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: -16px; height: 16px;
}
.mega--cols { grid-template-columns: repeat(2, minmax(250px, 1fr)); }
.mega--promo { grid-template-columns: repeat(2, minmax(250px, 1fr)) 220px; }
.mega a {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  color: var(--text);
}
.mega a:hover { background: var(--bg); text-decoration: none; }
.mega a.is-active { background: var(--indigo-08); }
.mega .chip { width: 38px; height: 38px; margin: 0; }
.mega .chip svg { width: 19px; height: 19px; }
.mega .mega-name { display: block; font-weight: 600; font-size: var(--fs-small); line-height: 1.3; }
.mega .mega-desc { display: block; font-size: var(--fs-eyebrow); color: var(--text-60); line-height: 1.5; margin-top: 4px; }
.mega-promo {
  grid-row: 1 / span 10;
  grid-column: 3;
  background: var(--lilac);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--sp-2);
}
.mega-promo .mega-name { font-family: var(--font-display); }

/* Mobile menu */
.nav-burger {
  display: inline-flex;
  margin-left: auto;
  background: none; border: 0; cursor: pointer;
  color: var(--ink);
  padding: 10px;
  border-radius: var(--r-sm);
}
.nav-burger svg { width: 26px; height: 26px; }
@media (min-width: 1024px) { .nav-burger { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--ink);
  color: #F3F2FC;
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: var(--sp-5) var(--gutter) var(--sp-7);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: none; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-7); }
.mobile-menu-top .logo svg { height: 24px; }
.mobile-menu-close { background: none; border: 0; color: inherit; cursor: pointer; padding: 10px; }
.mobile-menu-close svg { width: 26px; height: 26px; }
.mobile-menu nav { display: grid; gap: var(--sp-2); flex: 1; }
.mobile-menu .m-link, .mobile-menu .m-acc-btn {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #F3F2FC;
  background: none; border: 0; cursor: pointer;
  text-align: left;
  padding: var(--sp-3) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-menu .m-acc-btn .caret { width: 14px; height: 14px; transition: transform var(--dur-fast); }
.mobile-menu .m-acc.is-open .m-acc-btn .caret { transform: rotate(180deg); }
.mobile-menu .m-acc-panel {
  display: none;
  padding: 0 0 var(--sp-4) var(--sp-4);
}
.mobile-menu .m-acc.is-open .m-acc-panel { display: grid; gap: 2px; }
.mobile-menu .m-acc-panel a {
  color: rgba(243,242,252,.75);
  font-size: 1.05rem;
  padding: 8px 0;
}
.mobile-menu .m-acc-panel a.is-active { color: #fff; font-weight: 600; }
.mobile-menu .m-cta { margin-top: var(--sp-6); }
body.menu-open { overflow: hidden; }

/* Scroll progress hairline (home + whitepaper details) */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: var(--indigo);
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 70;
  pointer-events: none;
}

/* ---------- CTA band ---------- */
.cta-band-wrap { padding-block: var(--section-pad); }
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--indigo-deep);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 6vw, 5rem);
  text-align: center;
}
.cta-band h2 { color: #fff; max-width: 18em; margin-inline: auto; }
.cta-band h2 .hl { color: var(--lavender); }
.cta-band p { color: rgba(243,242,252,.72); max-width: 38em; margin: 0 auto var(--sp-6); }
.cta-band .cta-actions { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }
.cta-band .cta-glow {
  position: absolute;
  width: 60%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201,194,242,.28), transparent);
  top: -30%; right: -15%;
  pointer-events: none;
}
.cta-band .cta-route {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 40%;
  opacity: .5;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(243,242,252,.66);
  padding: var(--sp-10) 0 var(--sp-6);
  position: relative;
  overflow: hidden;
  font-size: var(--fs-small);
}
.footer-grid {
  display: grid;
  gap: var(--sp-7);
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; } }
.footer-brand .logo svg { height: 24px; }
.footer-brand .strap {
  font-family: var(--font-display);
  font-weight: 700;
  color: #F3F2FC;
  margin: var(--sp-4) 0 var(--sp-2);
}
.footer-col .footer-col-title {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(243,242,252,.45);
  line-height: 1.12; /* matches the h4 default it replaced */
  margin: 0 0 var(--sp-4);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(243,242,252,.66); }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  position: relative;
}
.footer-bottom a { color: rgba(243,242,252,.66); }
.footer-watermark {
  position: absolute;
  right: -40px; bottom: -30px;
  width: 380px;
  opacity: .06;
  pointer-events: none;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: calc(94px + var(--sp-9)) 0 var(--sp-8); }
.page-hero .pill { margin-bottom: var(--sp-4); }
.hero-split {
  display: grid;
  gap: var(--sp-7);
  align-items: center;
}
@media (min-width: 1024px) { .hero-split { grid-template-columns: 55fr 45fr; } }
.hero-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-top: var(--sp-6); }

/* ---------- Sticky how-it-works rail ---------- */
.steps { display: grid; gap: var(--sp-7); }
@media (min-width: 1024px) { .steps { grid-template-columns: 280px 1fr; align-items: start; } }
.steps-rail { display: none; }
@media (min-width: 1024px) {
  .steps-rail {
    display: block;
    position: sticky;
    top: 120px;
  }
  .steps-rail .rail-num {
    font-family: var(--font-display);
    font-size: var(--fs-stat);
    font-weight: 800;
    color: var(--indigo);
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  .steps-rail .rail-track {
    width: 3px; height: 180px;
    background: var(--lilac);
    border-radius: 2px;
    margin-top: var(--sp-5);
    overflow: hidden;
  }
  .steps-rail .rail-fill {
    width: 100%; height: 100%;
    background: var(--indigo);
    transform: scaleY(0);
    transform-origin: 0 0;
  }
}
.step {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--ink-border);
  transition: opacity var(--dur-med);
}
.step:last-child { border-bottom: 0; }
.step-num {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lilac);
  color: var(--indigo);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 1024px) {
  .steps-list .step.is-dim { opacity: .45; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: var(--sp-9);
  width: max-content;
  align-items: center;
  max-height: 28px; /* caps the row so a stale/failed .logo-img load can't balloon the strip */
  overflow: hidden;
  animation: marquee 35s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.logo-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  opacity: .55;
  white-space: nowrap;
  transition: opacity var(--dur-fast);
  height: 28px;
  display: inline-flex;
  align-items: center;
}
.logo-word:hover { opacity: 1; }
.logo-img {
  height: 22px;
  max-height: 22px; /* belt-and-suspenders: caps size even if height is ever lost */
  width: auto;
  opacity: .6;
  filter: grayscale(1);
  mix-blend-mode: multiply; /* flattens baked-in white logo backgrounds into the strip */
  transition: opacity var(--dur-fast), filter var(--dur-fast);
}
.logo-img:hover { opacity: 1; filter: none; }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
}
html.force-reduced-motion .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }

/* ---------- Prose (legal / articles) ---------- */
.prose { max-width: 720px; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin-top: var(--sp-8); }
.prose h3 { font-size: 1.2rem; margin-top: var(--sp-6); }
.prose ul, .prose ol { padding-left: 1.4em; display: grid; gap: var(--sp-2); }
.prose table { border-collapse: collapse; width: 100%; font-size: var(--fs-small); }
.prose th, .prose td { border: 1px solid var(--ink-border); padding: 10px 14px; text-align: left; }
.prose th { background: var(--lilac); }
.article-body { max-width: 680px; margin-inline: auto; font-size: 1.125rem; }
.article-meta { display: flex; gap: var(--sp-4); align-items: center; color: var(--text-60); font-size: var(--fs-small); }

/* Anchor TOC (articles, desktop) */
.toc { display: none; }
@media (min-width: 1200px) {
  .toc {
    display: block;
    position: sticky;
    top: 120px;
    font-size: var(--fs-small);
  }
  .toc a { color: var(--text-60); display: block; padding: 6px 0 6px 14px; border-left: 2px solid var(--ink-border); }
  .toc a.is-active { color: var(--indigo); border-left-color: var(--indigo); }
  .toc a:hover { text-decoration: none; color: var(--indigo); }
}

/* FAQ (AEO) — on-page accordions + hub. Uses native <details> so answers are
   always in the DOM and crawlable whether open or closed. */
.faq-section .lead { max-width: 60ch; color: var(--text-60); }
.faq-list { display: grid; gap: var(--sp-3); max-width: 820px; }
.faq-item {
  border: 1px solid var(--ink-border);
  border-radius: var(--r-md);
  background: var(--card-bg);
  padding: 0 var(--sp-5);
}
.faq-item[open] { border-color: var(--indigo); box-shadow: var(--shadow-rest); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-4) 0; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-size: 1.05rem; margin: 0; line-height: 1.35; }
.faq-mark { position: relative; flex: 0 0 18px; height: 18px; }
.faq-mark::before, .faq-mark::after {
  content: ""; position: absolute; background: var(--indigo);
  transition: transform var(--dur-fast) var(--ease-out);
}
.faq-mark::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-mark::after  { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] .faq-mark::after { transform: scaleY(0); }
.faq-answer { padding: 0 0 var(--sp-5); }
.faq-answer p { margin: 0; color: var(--text-80); max-width: 68ch; }
@media (prefers-reduced-motion: reduce) { .faq-mark::before, .faq-mark::after { transition: none; } }

/* FAQ hub page — topic sections + jump nav */
.faq-hub-nav { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-6); }
.faq-hub-nav a {
  font-size: var(--fs-small); padding: 6px 14px; border-radius: var(--r-pill);
  border: 1px solid var(--ink-border); color: var(--text-80);
}
.faq-hub-nav a:hover { border-color: var(--indigo); color: var(--indigo); text-decoration: none; }
.faq-topic { scroll-margin-top: 110px; }
.faq-topic + .faq-topic { margin-top: var(--sp-9); }
.faq-topic h2 { margin-bottom: var(--sp-5); }

/* ---- Cookie consent (GA4-gated). Slim bottom bar, injected by main.js ---- */
.footer-bottom-links { display: flex; align-items: center; gap: 18px; }
.footer-cookie-btn {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; font-size: var(--fs-small, .85rem);
  color: rgba(243,242,252,.55); text-decoration: underline; text-underline-offset: 2px;
}
.footer-cookie-btn:hover { color: #fff; }

.cookie-bar {
  position: fixed; z-index: 60; left: 16px; right: 16px; bottom: 16px;
  max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px 20px; flex-wrap: wrap;
  background: var(--ink, #0D0A2B); color: #F3F2FC;
  border: 1px solid rgba(255,255,255,.12); border-radius: 12px;
  box-shadow: 0 12px 40px rgba(13,10,43,.28);
  padding: 14px 18px;
  font-size: 13.5px; line-height: 1.45;
  transform: translateY(140%); transition: transform .3s ease;
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar p { margin: 0; flex: 1 1 300px; color: rgba(243,242,252,.82); }
.cookie-bar a { color: #C7C0F5; text-decoration: underline; }
.cookie-bar .cookie-actions { display: flex; gap: 8px; flex: 0 0 auto; }
.cookie-bar button {
  font: 600 13px var(--font-body); cursor: pointer;
  padding: 8px 16px; border-radius: 8px; border: 1.5px solid transparent; white-space: nowrap;
}
.cookie-bar .cookie-accept { background: var(--indigo, #4A25E0); color: #fff; }
.cookie-bar .cookie-accept:hover { background: #5b39ea; }
.cookie-bar .cookie-decline { background: transparent; color: #F3F2FC; border-color: rgba(255,255,255,.32); }
.cookie-bar .cookie-decline:hover { border-color: #fff; }
@media (prefers-reduced-motion: reduce) { .cookie-bar { transition: none; } }
/* Hand-built product-UI mockups (M1 route map, M2 dashboard, M3 phone,
   M4 agent console, M5 tracking). Pure HTML/CSS/SVG — no rasters.
   Mock data must stay within the three live verticals:
   Routing & Optimisation / Live Ops & Visibility / Customer Comms. */

/* ---------- Shared frame ---------- */
.mock-frame {
  background: var(--surface);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-raised);
  overflow: hidden;
  position: relative;
}
.theme-ink .mock-frame { border-color: rgba(255,255,255,.14); }
.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--ink-border);
  background: var(--bg);
}
.mock-titlebar i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--lavender);
}
.mock-titlebar i:first-child { background: var(--indigo); }
.mock-titlebar .mock-url {
  margin-left: var(--sp-3);
  font-size: 11px;
  color: var(--text-40);
  background: var(--surface);
  border-radius: var(--r-pill);
  padding: 3px 12px;
}

/* Floating UI chips over mocks */
.map-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-raised);
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  z-index: 2;
}
.map-chip svg { width: 16px; height: 16px; color: var(--indigo); flex: none; }
.map-chip .ok { color: var(--success); }
.map-chip small { display: block; font-weight: 400; color: var(--text-60); }

/* ---------- M1 route map ---------- */
.m1 { position: relative; }
.m1 svg.m1-map { width: 100%; height: auto; display: block; background: #F8F7FE; }
.m1 .m1-block { fill: var(--lilac); stroke: #DDD9F6; stroke-width: 1; }
.m1 .m1-park { fill: #E4F2E9; }
.m1 .m1-river { fill: var(--lavender); opacity: .35; }
.m1 .m1-route { fill: none; stroke: var(--indigo); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.m1 .m1-route--alt { stroke: var(--lavender); stroke-width: 3; }
.m1 .m1-stop { fill: #fff; stroke: var(--indigo); stroke-width: 2; }
.m1 .m1-stop-num { font: 700 7px var(--font-body); fill: var(--indigo); }
.m1 .m1-depot { fill: var(--indigo); }
.m1 .m1-pin { fill: var(--ink); }
.m1 .m1-pin-dot { fill: var(--indigo); }
.m1 .m1-van {
  fill: var(--indigo);
  filter: drop-shadow(0 2px 3px rgba(13,10,43,.25));
}

/* ---------- M2 control-tower dashboard ---------- */
.m2 { display: grid; grid-template-columns: 52px 1fr; min-height: 340px; }
.m2-side {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}
.m2-side i {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,.14);
}
.m2-side i:first-child { background: var(--indigo); }
.m2-main { padding: 16px; display: grid; gap: 12px; align-content: start; background: var(--bg); }
.m2-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.m2-kpi {
  background: var(--surface);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-md);
  padding: 10px 12px;
}
.m2-kpi b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--indigo);
  font-variant-numeric: tabular-nums;
}
.m2-kpi span { font-size: 10px; color: var(--text-60); }
.m2-panel {
  background: var(--surface);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-md);
  padding: 12px;
}
/* mock-widget labels (were <h5>s; demoted to keep the document outline clean
   for a11y/AEO — visual style replicates the browser-default h5 they had) */
.mock-label { font-size: .83em; font-weight: 700; margin: 1.67em 0; }
.m2-panel .mock-label { margin: 0 0 8px; font: 600 11px var(--font-body); letter-spacing: .06em; text-transform: uppercase; color: var(--text-40); }
.m2-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 12px;
}
.m2-row + .m2-row { border-top: 1px dashed var(--ink-border); }
.m2-row .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex: none; }
.m2-row .dot--warn { background: var(--error); }
.m2-row .dot--info { background: var(--indigo); }
.m2-row .m2-meta { margin-left: auto; color: var(--text-40); font-size: 11px; white-space: nowrap; }
.m2-row.is-pulse { animation: m2pulse 2.4s ease-in-out infinite; }
@keyframes m2pulse {
  0%, 100% { background: transparent; }
  50% { background: rgba(229, 72, 77, .07); }
}
.m2-bars { display: flex; gap: 6px; align-items: flex-end; height: 60px; }
.m2-bars i { flex: 1; background: var(--lavender); border-radius: 3px 3px 0 0; }
.m2-bars i:nth-child(3n) { background: var(--indigo); }

/* ---------- M3 driver-app phone ---------- */
.phone-frame {
  width: min(320px, 88%);
  margin-inline: auto;
  background: var(--ink);
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-raised);
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 22px;
  background: var(--ink);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  background: var(--bg);
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9 / 18.5;
  display: flex;
  flex-direction: column;
}
.phone-bar {
  background: var(--indigo);
  color: #fff;
  padding: 34px 16px 12px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-body { padding: 12px; display: grid; gap: 10px; align-content: start; flex: 1; overflow: hidden; }
.phone-stop {
  background: var(--surface);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-md);
  padding: 10px 12px;
  font-size: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.phone-stop .n {
  width: 24px; height: 24px;
  flex: none;
  border-radius: 50%;
  background: var(--lilac);
  color: var(--indigo);
  font-weight: 700;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
}
.phone-stop.is-done { opacity: .55; }
.phone-stop.is-done .n { background: rgba(55,194,106,.16); color: var(--success); }
.phone-stop small { color: var(--text-60); display: block; }

/* ---------- M4 agent console ---------- */
.m4 { padding: var(--sp-5); display: grid; gap: 12px; align-content: start; min-height: 300px; }
.m4-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.5;
}
.m4-line .chip { width: 32px; height: 32px; margin: 0; border-radius: 10px; }
.m4-line .chip svg { width: 16px; height: 16px; }
.m4-line b { display: block; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--text-40); font-weight: 600; }
.theme-ink .m4-line b { color: var(--text-40); }
.m4-line .m4-ok { color: var(--success); font-weight: 600; }
.m4-caret {
  display: inline-block;
  width: 8px; height: 15px;
  background: var(--indigo);
  vertical-align: -2px;
  animation: caretblink 1s steps(1) infinite;
}
@keyframes caretblink { 50% { opacity: 0; } }

/* ---------- M5 tracking mini ---------- */
.m5 { padding: var(--sp-5); display: grid; gap: var(--sp-4); }
.m5-status { display: flex; align-items: center; gap: 0; }
.m5-status .node {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--lilac);
  color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
  flex: none;
  z-index: 1;
}
.m5-status .node svg { width: 13px; height: 13px; }
.m5-status .node.is-done { background: var(--indigo); color: #fff; }
.m5-status .bar { flex: 1; height: 3px; background: var(--lilac); }
.m5-status .bar.is-done { background: var(--indigo); }
.m5-labels { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--text-60); }
.m5-eta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--lilac);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 13px;
}
.m5-eta b { font-family: var(--font-display); color: var(--indigo); font-size: 1.1rem; }

/* ---------- Whitepaper cover art (M7) ---------- */
.wp-cover {
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--indigo-deep), var(--indigo));
  position: relative;
  overflow: hidden;
  margin-bottom: var(--sp-4);
}
.wp-cover svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .5; }
.wp-cover .wp-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

/* Mobile: dashboards simplify */
@media (max-width: 719px) {
  .m2 { grid-template-columns: 1fr; min-height: 0; }
  .m2-side { display: none; }
  .m2-kpis { grid-template-columns: repeat(2, 1fr); }
}
