/* =====================================================================
   MFT website — single stylesheet. No preprocessor, no framework.
   Brand (seg-audit/brand/palette.json, Ahmed 2026-08-23): navy #0D1B3E primary ·
   accent #0F7C91 for every button/link/focus ring · cyan #1BB7CD is the logo mark and
   large graphics only, never a button fill or text on light · white · mist.
   Fonts: Inter (Latin/digits) → Cairo (Arabic). Never letter-space Arabic.
   Type scale: golden ratio (1.618) from the 17px body: h2 = 27.5px, h1/display = 44.5px.
   ===================================================================== */

/* ---------- Fonts (self-hosted variable subsets) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2074, U+20AC, U+2122, U+2190, U+2191, U+2193, U+2212, U+2215;
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/assets/fonts/cairo-arabic-var.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF;
}

/* ---------- Tokens ---------- */
:root {
  /* brand */
  --navy: #0D1B3E;
  --accent: #0F7C91;        /* interaction colour: buttons, links, focus — 4.87:1 with white either way */
  --accent-hover: #0C6A7C;
  --cyan: #1BB7CD;          /* logo mark + decorative fills on navy only — 2.4:1 on white, NOT for text on light, never a button */
  --cyan-text: var(--accent); /* accent text on white/mist — 4.87:1 (WCAG AA) */
  /* severity (risk panel on navy) — numbers ≥ 5.6:1, labels ≥ 8.5:1 on navy */
  --sev-critical: #F26A6A;
  --sev-critical-text: #F5A3A3;
  --sev-high: #F59E0B;
  --sev-high-text: #F7C877;
  --sev-medium: #EAB308;
  --sev-medium-text: #F3D778;
  --gold: #C9A227;          /* one decorative rule per page, never text */
  --white: #FFFFFF;
  --mist: #F5F7FA;
  /* text */
  --ink: var(--navy);       /* 16.9:1 on white */
  --ink-2: #3B4262;         /* 9.8:1 on white */
  --ink-3: #5A6483;         /* 5.9:1 on white — minimum for small text */
  --on-navy: #FFFFFF;
  --on-navy-2: rgba(255, 255, 255, 0.78);  /* ≈ 11:1 on navy */
  --on-navy-3: rgba(255, 255, 255, 0.62);  /* ≈ 7.5:1 on navy */
  --on-navy-4: rgba(255, 255, 255, 0.5);   /* ≈ 5.0:1 on navy — reference trust line */
  /* lines & surfaces */
  --line: #E6E9F0;
  --line-strong: #6B7390;   /* input borders — 4.7:1 on white (non-text ≥ 3:1) */
  --navy-line: rgba(255, 255, 255, 0.12);
  --shadow-cta: 0 4px 14px rgba(15, 124, 145, 0.35);
  --shadow-card: 0 20px 50px rgba(16, 27, 58, 0.15);
  /* type scale — golden ratio (φ = 1.618) from the body size: h2 = body×φ, h1 = body×φ² */
  --fs-display: clamp(2.125rem, 1.75rem + 1.25vw, 2.78rem); /* 34 → 44.5px (17 × φ²) */
  --fs-h2: clamp(1.5rem, 1.35rem + 0.5vw, 1.72rem);         /* 24 → 27.5px (17 × φ) */
  --fs-body: 1.0625rem;                                     /* 17px */
  --fs-small: 0.8125rem;                                    /* 13px */
  --lh-tight: 1.1;
  --lh-body: 1.6;
  /* layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(56px, 8vw, 104px);
  --radius: 4px;
  --header-h: 76px;
  --font: 'Inter', 'Cairo', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: var(--lh-tight); text-wrap: balance; }
h1, .display { font-size: var(--fs-display); }
h2 { font-size: var(--fs-h2); line-height: 1.15; }
h3 { font-size: var(--fs-body); line-height: 1.35; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--cyan); color: var(--navy); }

/* Arabic: Cairo needs more leading; no tracking, no uppercase. */
[dir="rtl"] body, [lang="ar"] { line-height: 1.8; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] .display { line-height: 1.35; }
[dir="rtl"] h3 { line-height: 1.5; }
[dir="rtl"] .eyebrow, [dir="rtl"] .num, [dir="rtl"] .badge, [dir="rtl"] .kpi-label, [dir="rtl"] .chart-caption, [dir="rtl"] .dc-badge, [dir="rtl"] .footer-title {
  letter-spacing: 0;
  text-transform: none;
}
/* Latin / digits inside Arabic: isolate so bidi never reorders "100%" or ".xlsx" */
.lat { direction: ltr; unicode-bidi: isolate; white-space: nowrap; }
.prose .lat, .form-status .lat { white-space: normal; }
[dir="rtl"] .lat { font-family: 'Inter', 'Cairo', system-ui, sans-serif; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: 820px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.muted { color: var(--ink-3); }
.small { font-size: var(--fs-small); }
.skip-link {
  position: absolute; inset-inline-start: 16px; top: -100px; z-index: 100;
  padding: 10px 16px; background: var(--navy); color: var(--white); border-radius: var(--radius); font-weight: 700;
}
.skip-link:focus { top: 12px; outline: 3px solid var(--cyan); outline-offset: 2px; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 3px; }
.section-navy :focus-visible, .cta-band :focus-visible, .site-footer :focus-visible, .hero-b-left :focus-visible, .hero-c :focus-visible { outline-color: var(--white); }

/* ---------- Type components ---------- */
.eyebrow {
  margin: 0 0 18px;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan-text);
}
.section-navy .eyebrow, .hero-b-left .eyebrow, .hero-c .eyebrow { color: var(--cyan); }
.section-cyan .eyebrow { color: var(--navy); }
.accent { color: var(--cyan-text); }
.section-navy .accent, .hero-b .accent, .hero-c .accent { color: var(--cyan); }
.lead { font-size: var(--fs-body); color: var(--ink-2); max-width: 62ch; }
.section-navy .lead, .cta-band .lead { color: var(--on-navy-2); }
.num {
  display: block;
  margin-bottom: 14px;
  font-size: var(--fs-small);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--cyan-text);
}
.section-navy .num { color: var(--cyan); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 10px 22px;
  border: 2px solid transparent; border-radius: 6px;
  font-weight: 700; font-size: var(--fs-body); line-height: 1.2; text-align: center;
  cursor: pointer; transition: background-color .15s, color .15s, box-shadow .15s, transform .15s;
}
.btn-lg { min-height: 52px; padding: 14px 30px; font-weight: 800; }
.btn-sm { min-height: 40px; padding: 8px 18px; font-size: var(--fs-small); }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
/* Ghost (outline) button on navy: hero secondary action */
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.38); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.06); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: #172A5C; }
.btn-link {
  padding-inline: 0; min-height: 0; border: 0; border-radius: 0;
  color: var(--cyan-text); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; text-decoration-color: transparent;
}
.btn-link:hover { text-decoration-color: currentColor; }
.btn-link-light { color: var(--on-navy-2); }
.btn-link-light:hover { color: var(--white); }
.section-navy .btn-link, .cta-band .btn-link { color: var(--cyan); }

/* ---------- Header ---------- */
/* Navy navbar — per the reference hero file: navy bar, white logo, cyan CTA. */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy); border-bottom: 1px solid var(--navy-line); color: var(--white);
}
.site-header :focus-visible { outline-color: var(--cyan); }
/* Brand rule: logo pinned top-LEFT in both languages. The bar itself is LTR;
   the nav inside follows the page direction. */
.header-inner { direction: ltr; display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.brand { flex: none; display: block; }
.brand img { width: auto; height: 40px; }
.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
[dir="rtl"] .site-nav { direction: rtl; }
.site-nav ul { display: flex; align-items: center; gap: 28px; }
.site-nav ul a {
  display: inline-block; padding: 8px 0;
  font-size: var(--fs-small); font-weight: 600; color: var(--on-navy-2);
  border-bottom: 2px solid transparent;
}
.site-nav ul a:hover { color: var(--cyan); }
.site-nav ul a[aria-current="page"] { color: var(--white); border-bottom-color: var(--cyan); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.lang-switch { font-size: var(--fs-small); font-weight: 700; color: var(--on-navy-2); padding: 8px 4px; }
.lang-switch:hover { color: var(--cyan); }
.nav-toggle {
  display: none; align-items: center; gap: 10px;
  margin-left: auto; padding: 8px 10px; min-height: 44px;
  background: none; border: 1px solid var(--navy-line); border-radius: 6px; cursor: pointer;
  font-size: var(--fs-small); font-weight: 700; color: var(--white);
}
.nav-toggle-bars { position: relative; display: block; width: 18px; height: 2px; background: currentColor; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor; }
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

@media (max-width: 899px) {
  :root { --header-h: 64px; }
  .brand img { height: 34px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0; margin: 0;
    padding: 8px var(--gutter) 20px; background: var(--navy); border-bottom: 1px solid var(--navy-line);
    box-shadow: 0 16px 32px rgba(16, 27, 58, 0.35);
  }
  .site-header.nav-open .site-nav { display: flex; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav ul a { display: block; padding: 14px 0; font-size: var(--fs-body); border-bottom: 1px solid var(--navy-line); }
  .site-nav ul a[aria-current="page"] { border-bottom-color: var(--navy-line); color: var(--cyan); }
  .nav-actions { justify-content: space-between; padding-top: 16px; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section); }
.section-mist { background: var(--mist); }
.section-navy { background: var(--navy); color: var(--on-navy); }
.section-cyan { background: var(--cyan); color: var(--navy); }
.section-head { max-width: 820px; margin-bottom: clamp(32px, 4vw, 48px); }
.section-head .lead { margin-top: 18px; }
.section-foot { margin-top: clamp(28px, 4vw, 40px); }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 899px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Page header (inner pages) — carries the single gold rule of the page */
.page-header { padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 40px); border-bottom: 1px solid var(--line); }
.page-header .section-head { margin-bottom: 0; }
.page-header .eyebrow::after, .hero-a .eyebrow::after {
  content: ''; display: block; width: 64px; height: 3px; margin-top: 14px; background: var(--gold);
}
.breadcrumb { margin-bottom: 20px; font-size: var(--fs-small); color: var(--ink-3); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li + li::before { content: '/'; margin-inline-end: 6px; color: var(--line-strong); }
.breadcrumb a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Hero A (trust strip) ---------- */
.hero-a { padding: clamp(48px, 8vw, 96px) 0 0; }
.hero-a .hero-inner { max-width: 920px; }
.hero-a .subhead { margin-top: 26px; max-width: 560px; color: var(--ink-2); }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: 34px; }
.trust-strip {
  display: flex; flex-wrap: wrap; gap: 16px 28px;
  margin-top: clamp(40px, 6vw, 56px); padding: 28px 0 40px; border-top: 1px solid var(--line);
}
.badge { display: flex; align-items: center; gap: 10px; font-size: var(--fs-small); font-weight: 700; color: var(--ink-2); }
.dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); }
.section-navy .badge { color: var(--on-navy-2); }

/* ---------- Hero B (split dashboard) ---------- */
.hero-b { display: grid; grid-template-columns: 1fr 1fr; min-height: min(827px, 88vh); }
.hero-b h1 { font-size: clamp(2.125rem, 1.3rem + 2.4vw, 3.25rem); line-height: 1.15; }
.hero-b-left { display: flex; align-items: center; background: var(--navy); color: var(--on-navy); padding: clamp(48px, 7vw, 80px) var(--gutter); }
.hero-b-left .hero-inner { max-width: 592px; margin-inline-start: auto; }
[dir="rtl"] .hero-b-left .hero-inner { margin-inline-start: auto; }
.hero-b-left .subhead { margin-top: 24px; max-width: 480px; color: var(--on-navy-2); }
.trust-line { margin-top: 28px; font-size: var(--fs-small); font-weight: 600; color: var(--on-navy-4); }
.hero-b .eyebrow::after { content: ''; display: block; width: 64px; height: 3px; margin-top: 14px; background: var(--gold); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--navy-line); }
.hero-trust .badge { color: var(--on-navy-2); }
.hero-trust .dot { background: var(--cyan); }
.findings { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.findings-title { font-size: var(--fs-small); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
[dir="rtl"] .findings-title { letter-spacing: 0; text-transform: none; }
.findings li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-top: 1px solid var(--mist); font-size: var(--fs-small); color: var(--ink-2); }
.findings li:first-child { border-top: 0; }
.findings .dot { margin-top: 6px; }
.findings li > span:nth-child(2) { flex: 1; }
.finding-tag { flex: none; padding: 2px 8px; border-radius: 999px; background: var(--mist); color: var(--ink-3); font-weight: 700; }
.dc-badge { display: inline-flex; align-items: center; gap: 6px; }
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.hero-b-right { display: flex; align-items: center; justify-content: center; background: var(--mist); padding: clamp(32px, 5vw, 48px) var(--gutter); }
.dashboard-card { width: 100%; max-width: 520px; padding: 28px; background: var(--white); border-radius: 10px; box-shadow: var(--shadow-card); }
.dc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.dc-title { font-weight: 700; }
.dc-badge { padding: 4px 10px; border-radius: 4px; background: rgba(27, 183, 205, 0.14); color: var(--cyan-text); font-size: var(--fs-small); font-weight: 700; letter-spacing: 0.5px; }
.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
.kpi { padding: 14px; background: var(--mist); border-radius: 8px; }
.kpi-label { font-size: var(--fs-small); font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.5px; }
.kpi-value { margin-top: 6px; font-size: 1.375rem; font-weight: 800; color: var(--navy); font-variant-numeric: tabular-nums; }
.kpi-value.up { color: var(--cyan-text); }
.chart-area { border-top: 1px solid var(--line); padding-top: 16px; }
.bars { display: flex; align-items: flex-end; gap: 10px; height: 130px; }
.bar { flex: 1; background: var(--navy); border-radius: 3px 3px 0 0; }
.bar.accent { background: var(--cyan); }
.chart-caption { margin-top: 10px; font-size: var(--fs-small); font-weight: 600; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.3px; }
@media (max-width: 899px) {
  .hero-b { grid-template-columns: 1fr; }
  .hero-b-left .hero-inner { margin-inline-start: 0; }
  .kpi-row { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .kpi { padding: 10px; }
  .kpi-value { font-size: var(--fs-body); }
}

/* ---------- Hero C (risk dashboard, live) ----------
   One navy surface, copy on the start side, a small risk panel on the end side. The panel is the
   hook: three severity counters that say "there are issues in your books you do not know about".
   Counts come from content (illustrative until Ahmed supplies real aggregates). */
.hero-c { background: var(--navy); color: var(--on-navy); padding-block: clamp(56px, 8vw, 104px); }
.hero-c-inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(32px, 6vw, 88px); align-items: center; }
.hero-c h1 { max-width: 24ch; }
.hero-c .subhead { margin-top: 24px; max-width: 52ch; color: var(--on-navy-2); line-height: var(--lh-body); }
[dir="rtl"] .hero-c .subhead { line-height: 1.8; }
.hero-c .cta-row { margin-top: 32px; }
.risk-panel { width: 100%; max-width: 520px; justify-self: end; padding: 24px 28px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--navy-line); border-radius: 10px; }
[dir="rtl"] .risk-panel { justify-self: start; }
.risk-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.risk-title { margin: 0; font-size: var(--fs-small); font-weight: 600; color: var(--on-navy-3); max-width: 34ch; }
.risk-badge { flex: none; padding: 3px 10px; border-radius: 4px; background: rgba(255, 255, 255, 0.1); color: var(--on-navy-2); font-size: var(--fs-small); font-weight: 700; }
.risk-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.risk-card { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 18px 10px 14px; border-radius: 8px; text-align: center; }
.risk-num { font-size: 2rem; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
.risk-label { font-size: var(--fs-small); font-weight: 600; }
.risk-critical { background: rgba(217, 45, 45, 0.14); }
.risk-critical .risk-num { color: var(--sev-critical); }
.risk-critical .risk-label { color: var(--sev-critical-text); }
.risk-high { background: rgba(217, 119, 6, 0.14); }
.risk-high .risk-num { color: var(--sev-high); }
.risk-high .risk-label { color: var(--sev-high-text); }
.risk-medium { background: rgba(217, 180, 6, 0.12); }
.risk-medium .risk-num { color: var(--sev-medium); }
.risk-medium .risk-label { color: var(--sev-medium-text); }
.risk-caption { margin: 16px 0 0; font-size: var(--fs-small); color: var(--on-navy-3); }
@media (max-width: 899px) {
  .hero-c-inner { grid-template-columns: 1fr; }
  .risk-panel, [dir="rtl"] .risk-panel { justify-self: stretch; max-width: none; padding: 20px; }
  .risk-row { gap: 8px; }
  .risk-num { font-size: 1.75rem; }
}

/* ---------- Trust (home): five tested guarantees, rules not boxes ---------- */
.trust .deflist dt { font-size: 1.125rem; line-height: 1.35; }
[dir="rtl"] .trust .deflist dt { line-height: 1.6; }
.trust .deflist-row { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr); }
.trust .deflist dd { max-width: 62ch; }
.trust-note { margin-top: 20px; font-size: var(--fs-small); color: var(--ink-3); }
@media (max-width: 599px) { .trust .deflist-row { grid-template-columns: 1fr; } }

/* ---------- Cards, pillars, steps ---------- */
.card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.page-services .service-card { border: 0; border-top: 2px solid var(--navy); border-radius: 0; padding-inline: 0; background: transparent; }
.section-mist .card { border-color: transparent; }
.card h2, .card h3 { margin-bottom: 10px; }
.card h2 { font-size: var(--fs-body); line-height: 1.35; }
.card p { color: var(--ink-2); }
.card-more { margin-top: 14px; }
.service-card a { display: inline-block; }
.service-card a:hover { color: var(--cyan-text); text-decoration: underline; text-underline-offset: 4px; }
.pillars { gap: 0; }
.pillar { padding: 8px 32px 8px 0; }
.pillar + .pillar { border-inline-start: 1px solid var(--line); padding-inline-start: 32px; }
[dir="rtl"] .pillar { padding: 8px 0 8px 32px; }
[dir="rtl"] .pillar + .pillar { padding-inline-start: 32px; }
.pillar .num { padding-bottom: 12px; border-bottom: 2px solid var(--cyan); width: 40px; margin-bottom: 18px; }
.pillar h3 { margin-bottom: 10px; font-size: 1.125rem; }
.pillar p { color: var(--ink-2); }
@media (max-width: 599px) {
  .pillars { gap: 28px; }
  .pillar, [dir="rtl"] .pillar { padding: 0; }
  .pillar + .pillar, [dir="rtl"] .pillar + .pillar { border-inline-start: 0; padding-inline-start: 0; border-top: 1px solid var(--line); padding-top: 28px; }
}
/* Index list (home services): numbered rows separated by rules, no boxes */
.index-list { columns: 2; column-gap: 48px; border-top: 1px solid var(--line); }
.index-row { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); break-inside: avoid; }
.index-row .num { margin: 4px 0 0; flex: none; width: 28px; }
.index-row h3 { margin-bottom: 6px; }
.index-row p { color: var(--ink-2); margin: 0; }
.index-row a:hover { color: var(--cyan-text); text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 899px) { .index-list { columns: 1; } }
/* Timeline (how we work) */
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; position: relative; padding-top: 28px; }
.timeline::before { content: ''; position: absolute; top: 5px; left: 0; right: 0; height: 2px; background: var(--navy-line); }
.timeline .step { position: relative; }
.step-dot { position: absolute; top: -28px; inset-inline-start: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px var(--navy); }
.step-when { display: block; margin-bottom: 8px; font-size: var(--fs-small); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); }
[dir="rtl"] .step-when { letter-spacing: 0; text-transform: none; }
@media (max-width: 899px) {
  .timeline { grid-template-columns: 1fr; gap: 0; padding-top: 0; padding-inline-start: 28px; }
  .timeline::before { top: 0; bottom: 0; left: auto; right: auto; inset-inline-start: 5px; width: 2px; height: auto; }
  .timeline .step { padding: 0 0 32px; }
  .step-dot { top: 6px; inset-inline-start: -28px; }
}
/* Definition list (about values) */
.deflist { margin: 0; border-top: 1px solid var(--line); }
.deflist-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.deflist dt { font-weight: 800; }
.deflist dd { margin: 0; color: var(--ink-2); }
@media (max-width: 599px) { .deflist-row { grid-template-columns: 1fr; gap: 6px; } }
.step { padding-top: 20px; border-top: 1px solid var(--navy-line); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--on-navy-2); }

/* Seven services: the odd card out spans the last row instead of orphaning */
@media (min-width: 900px) { .service-grid > li:last-child:nth-child(3n + 1) { grid-column: 1 / -1; } }
@media (min-width: 600px) and (max-width: 899px) { .service-grid > li:last-child:nth-child(2n + 1) { grid-column: 1 / -1; } }
.service-grid > li:last-child:nth-child(3n + 1) p, .service-grid > li:last-child:nth-child(2n + 1) p { max-width: 62ch; }

/* Industry chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-chip {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 8px 18px;
  border: 1px solid var(--line); border-radius: 999px; font-weight: 700; font-size: var(--fs-small); color: var(--navy); background: var(--white);
}
.industry-chip:hover { border-color: var(--navy); }
.jump-row { padding: 28px 0 8px; }

/* Facts (cyan band) */
.facts { gap: 24px; }
.fact { display: flex; flex-direction: column; gap: 6px; padding-top: 18px; border-top: 2px solid var(--navy); }
.fact-value { font-size: var(--fs-display); font-weight: 800; line-height: 1; color: var(--navy); font-variant-numeric: tabular-nums; }
.fact-label { font-size: var(--fs-small); font-weight: 700; color: var(--navy); }

/* Client stories & testimonials */
.cases { margin-bottom: clamp(32px, 4vw, 48px); }
.case { padding: 28px; background: var(--white); border-radius: var(--radius); border-top: 3px solid var(--cyan); }
.case p { margin: 0; }
.case-sector { font-size: var(--fs-small); font-weight: 700; color: var(--cyan-text); margin-bottom: 14px !important; }
.case-figure { font-size: var(--fs-h2); font-weight: 800; line-height: 1.1; color: var(--navy); font-variant-numeric: tabular-nums; }
.case-label { font-weight: 700; color: var(--navy); margin: 6px 0 14px !important; }
.case-body { color: var(--ink-2); }
.case-quote { margin-top: 14px !important; color: var(--ink-2); font-weight: 600; }
.testimonials-title { margin-bottom: 20px; }
.testimonial { padding: 24px 28px; border-inline-start: 3px solid var(--navy); background: var(--white); border-radius: 0 var(--radius) var(--radius) 0; }
[dir="rtl"] .testimonial { border-radius: var(--radius) 0 0 var(--radius); }
.testimonial blockquote { margin: 0 0 12px; }
.testimonial blockquote p { color: var(--ink-2); }
.testimonial-by { font-size: var(--fs-small); color: var(--ink-3); }
.testimonial-by strong { color: var(--navy); }

/* Prose pages (privacy) */
.prose h2 { font-size: 1.5rem; margin: 36px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-2); max-width: 68ch; }
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

/* Tiers (pricing slot) */
.tier h3 { font-size: var(--fs-h2); font-weight: 800; }

/* Placeholder marker (dev builds only) */
.ph-tag {
  display: inline-block; margin-bottom: 16px; padding: 4px 10px;
  border: 1px dashed var(--gold); border-radius: 4px; background: #FFF4D6; color: #5A4600;
  font-size: var(--fs-small); font-weight: 700;
}
.section-navy .ph-tag, .cta-band .ph-tag { background: rgba(255, 244, 214, 0.95); }

/* Final CTA */
.final-cta { text-align: center; }
.final-cta .lead { margin: 20px auto 0; }
.final-cta .cta-row { justify-content: center; }
.alt-contact { margin-top: 24px; font-size: var(--fs-small); font-weight: 600; color: var(--on-navy-2); }
.alt-contact a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

/* CTA band (inner pages) */
.cta-band { background: var(--navy); color: var(--on-navy); padding-block: clamp(40px, 6vw, 64px); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-band h2 { margin-bottom: 10px; }
.cta-band p { color: var(--on-navy-2); max-width: 60ch; }
@media (max-width: 899px) { .cta-band-inner { flex-direction: column; align-items: flex-start; } }

/* ---------- Detail pages ---------- */
.detail-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); }
.detail-main h2 { margin: 40px 0 16px; font-size: 1.5rem; }
.detail-main h2:first-of-type { margin-top: 0; }
.detail-main .lead { max-width: 68ch; }
.detail-side { padding: 28px; background: var(--mist); border-radius: var(--radius); align-self: start; }
.detail-side .footer-title { color: var(--ink-3); }
.side-links { margin: 12px 0 20px; }
.side-links a { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--ink-2); }
.side-links a:hover { color: var(--navy); }
@media (max-width: 899px) { .detail-grid { grid-template-columns: 1fr; } }

.check-list li, .dash-list li { position: relative; padding-inline-start: 26px; margin-bottom: 10px; color: var(--ink-2); }
.check-list li::before, .dash-list li::before {
  content: ''; position: absolute; inset-inline-start: 0; top: 0.65em; width: 12px; height: 3px; background: var(--cyan);
}
.dash-list li::before { background: var(--line-strong); }
.industry-cols h3 { margin-bottom: 14px; }
.industry .section-head { margin-bottom: 28px; }

/* ---------- MFT Intelligence ---------- */
.teaser { border-top: 1px solid var(--line); }
.teaser-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.teaser h2 { margin-bottom: 14px; }
@media (max-width: 899px) { .teaser-inner { flex-direction: column; align-items: flex-start; } }
.agents { gap: 24px; }
.agent { padding: 32px; border-top: 3px solid var(--line); border-color: var(--line); border-top-color: var(--line-strong); }
.agent-available { border-top-color: var(--cyan); }
.agent-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.agent-head .num { margin-bottom: 0; }
.agent h3 { font-size: 1.25rem; margin-bottom: 16px; }
.agent .check-list { margin-bottom: 18px; }
.agent .check-list li { margin-bottom: 8px; }
.benefit { padding: 14px 18px; border-radius: 6px; background: var(--mist); color: var(--ink-2); }
.benefit strong { display: block; margin-bottom: 4px; color: var(--navy); font-size: var(--fs-small); letter-spacing: 1px; text-transform: uppercase; }
[dir="rtl"] .benefit strong { letter-spacing: 0; text-transform: none; }
.status { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: var(--fs-small); font-weight: 700; line-height: 1.4; }
.status-available { background: rgba(27, 183, 205, 0.14); color: var(--cyan-text); }
.status-validation { background: var(--mist); color: var(--ink-3); border: 1px solid var(--line); }
.status-design { background: transparent; color: var(--ink-3); border: 1px dashed var(--line-strong); }
.section-mist .status-validation { background: var(--white); }
.plans .plan { display: flex; flex-direction: column; border-color: transparent; }
.plan h3 { font-size: var(--fs-h2); font-weight: 800; margin-bottom: 6px; color: var(--navy); }
.section-navy .plan .check-list li, .section-navy .plan-summary { color: var(--ink-2); }
.plan-summary { color: var(--ink-2); font-weight: 600; margin-bottom: 18px !important; }
.plan .check-list { flex: 1; margin-bottom: 20px; }
.plan-cta { margin: 0; }
.plan-cta .btn { width: 100%; }
.plan-featured { outline: 3px solid var(--cyan); outline-offset: 0; }
.plans-note { margin-top: 24px; font-size: var(--fs-small); color: var(--on-navy-3); max-width: 70ch; }

/* ---------- FAQ (details/summary) ---------- */
.faq h2 { margin-bottom: 24px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-size: var(--fs-body); margin: 0; }
.faq-icon { flex: none; position: relative; width: 16px; height: 16px; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--cyan-text); left: 0; top: 7px; width: 16px; height: 2px; transition: transform .25s; }
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: rotate(0); }
.faq-item p { margin: 0 0 20px; color: var(--ink-2); max-width: 68ch; }
.definition { font-weight: 600; color: var(--navy); }

/* ---------- Governance flow diagram ---------- */
.flow-wrap { margin: 8px 0 40px; }
.flow { width: 100%; max-width: 900px; height: auto; display: block; font-family: var(--font); }
.flow-rtl { transform: scaleX(-1); }
.flow-rtl text { transform: scaleX(-1); transform-box: fill-box; transform-origin: center; }
.flow-num { font-size: 13px; font-weight: 700; fill: var(--cyan-text); letter-spacing: 1px; }
.flow-title { font-size: 16px; font-weight: 800; fill: var(--navy); }
.flow-small { font-size: 13px; font-weight: 700; fill: var(--navy); }
.flow-line, .flow-branch { fill: none; stroke: var(--navy); stroke-width: 2; }
.flow-branch { stroke: var(--cyan); stroke-dasharray: 4 4; }
.js-motion .flow-line, .js-motion .flow-branch { stroke-dasharray: 200; stroke-dashoffset: 200; transition: stroke-dashoffset .9s cubic-bezier(.2,.7,.2,1); }
.js-motion .flow-line:nth-of-type(1) { transition-delay: .35s; }
.js-motion .flow-line:nth-of-type(2) { transition-delay: 1.0s; }
.js-motion .flow-branch { transition-delay: 1.5s; }
.js-motion .flow-wrap.in .flow-line, .js-motion .flow-wrap.in .flow-branch { stroke-dashoffset: 0; }
.js-motion .flow-node, .js-motion .flow-dot { opacity: 0; transition: opacity .4s ease-out; transition-delay: calc(var(--i, 0) * .6s); }
.js-motion .flow-wrap.in .flow-node, .js-motion .flow-wrap.in .flow-dot { opacity: 1; }
.exec-note { max-width: 70ch; margin-top: 24px; }
.deflist-navy { border-top-color: var(--navy-line); }
.deflist-navy .deflist-row { border-bottom-color: var(--navy-line); }
.deflist-navy dt { color: var(--white); }
.deflist-navy dd { color: var(--on-navy-2); }

/* ---------- Latest (home) ---------- */
.latest { border-top: 1px solid var(--line); }
.latest-inner { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.latest h2 { margin-bottom: 14px; }
.latest-facts { display: grid; gap: 20px; }
.latest-facts li { display: flex; align-items: baseline; gap: 18px; padding-top: 14px; border-top: 2px solid var(--navy); }
.latest-facts .fact-value { font-size: var(--fs-display); font-weight: 800; line-height: 1; color: var(--navy); min-width: 2.2ch; font-variant-numeric: tabular-nums; }
.latest-facts .fact-label { font-weight: 700; color: var(--ink-2); }
@media (max-width: 899px) { .latest-inner { grid-template-columns: 1fr; } }

/* ---------- Milestones (about) ---------- */
.milestones { border-top: 1px solid var(--line); }
.milestone { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.ms-when { font-size: var(--fs-small); font-weight: 700; color: var(--cyan-text); padding-top: 4px; }
.milestone h3 { margin-bottom: 6px; }
.milestone p { color: var(--ink-2); margin: 0; }
@media (max-width: 599px) { .milestone { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- Numbered list (delivery steps) ---------- */
.num-list li { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.num-list .num { margin: 3px 0 0; flex: none; width: 28px; }
.contact-details .num-list { margin: 16px 0 24px; }
.form-rule { border: 0; border-top: 1px solid var(--line); margin: 8px 0 22px; }

/* ---------- About ---------- */
.badge-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 32px; }
.badge-grid .badge { font-size: var(--fs-body); font-weight: 600; align-items: flex-start; }
.badge-grid .dot { margin-top: 0.55em; }
@media (max-width: 599px) { .badge-grid { grid-template-columns: 1fr; } }
.team-card { text-align: center; }
.avatar { width: 96px; height: 96px; margin: 0 auto 18px; border-radius: 50%; background: var(--mist); border: 1px solid var(--line); }
.office { padding-top: 18px; border-top: 2px solid var(--navy); }
.office .dot { margin-bottom: 14px; }
.office h3 { margin-bottom: 8px; }
.office p { color: var(--ink-2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--on-navy-2); padding: clamp(48px, 6vw, 72px) 0 32px; font-size: var(--fs-small); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: 40px 32px; }
.footer-brand img { width: auto; height: 44px; margin-bottom: 20px; }
.footer-brand p { max-width: 36ch; }
.footer-title { margin: 0 0 14px; font-size: var(--fs-small); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--white); }
.footer-col ul + .footer-title { margin-top: 24px; }
.footer-col li { margin-bottom: 8px; }
.footer-col a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.site-footer .muted { color: var(--on-navy-3); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--navy-line); color: var(--on-navy-3); }
@media (max-width: 899px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 599px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 899px) { .contact-grid { grid-template-columns: 1fr; } }
.lead-form { padding: clamp(24px, 4vw, 40px); }
.lead-form h2 { margin-bottom: 20px; font-size: 1.5rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 599px) { .field-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field label { font-size: var(--fs-small); font-weight: 700; color: var(--navy); }
.req { color: var(--cyan-text); }
.hint { font-size: var(--fs-small); color: var(--ink-3); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 10px 14px;
  border: 1px solid var(--line-strong); border-radius: 6px; background: var(--white);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--cyan); outline-offset: 0; border-color: var(--navy); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #B3261E; }
.field-error { font-size: var(--fs-small); font-weight: 700; color: #B3261E; }
.field-check { flex-direction: row; align-items: flex-start; gap: 12px; }
.field-check input { width: 20px; height: 20px; min-height: 0; margin-top: 3px; flex: none; accent-color: var(--navy); }
.field-check label { font-weight: 500; color: var(--ink-2); }
.hp { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.form-status { min-height: 0; margin: 0 0 16px; font-weight: 600; color: var(--ink-2); }
.form-status:empty { display: none; }
.form-status.ok { padding: 12px 16px; border-radius: 6px; background: #E3F7F9; color: #0B5D69; }
.form-status.err { padding: 12px 16px; border-radius: 6px; background: #FBEAE9; color: #8C1D17; }
.form-status.info { padding: 12px 16px; border-radius: 6px; background: var(--mist); color: var(--ink-2); }
.contact-details dl { margin: 20px 0 0; }
.contact-details dt { font-size: var(--fs-small); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-3); margin-top: 20px; }
[dir="rtl"] .contact-details dt { letter-spacing: 0; text-transform: none; }
.contact-details dd { margin: 4px 0 0; color: var(--ink-2); }
.contact-details a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.contact-details a.btn { color: var(--white); text-decoration: none; }
.plain li { margin-bottom: 4px; }
.wa-btn { margin-top: 4px; }
.address { margin-bottom: 8px; }

/* ---------- Motion ----------
   Everything is transform/opacity (compositor-only). Load-time entrance in the hero, viewport-triggered
   reveals elsewhere via a small IntersectionObserver in main.js (adds .in / .js-motion). Users who prefer
   reduced motion get final states immediately; without JS everything is visible. */
.js-motion .rise { opacity: 0; transform: translateY(14px); animation: rise .6s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: calc(var(--i, 0) * 110ms); }
@keyframes rise { to { opacity: 1; transform: none; } }
.js-motion .bar { transform: scaleY(0); transform-origin: bottom; animation: grow .8s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: calc(420ms + var(--i, 0) * 90ms); }
@keyframes grow { to { transform: scaleY(1); } }
.js-motion .kpi { opacity: 0; animation: rise .5s ease-out forwards; animation-delay: calc(300ms + var(--i, 0) * 90ms); }
.js-motion .risk-card { opacity: 0; animation: rise .5s ease-out forwards; animation-delay: calc(420ms + var(--i, 0) * 120ms); }
.js-motion .findings li { opacity: 0; transform: translateX(-8px); animation: slide .5s ease-out forwards; animation-delay: calc(1100ms + var(--i, 0) * 140ms); }
[dir="rtl"] .js-motion .findings li { transform: translateX(8px); }
@keyframes slide { to { opacity: 1; transform: none; } }
.js-motion .pulse { animation: pulse 1.6s ease-out 1.2s 2; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(15,124,145,.55); } 100% { box-shadow: 0 0 0 10px rgba(15,124,145,0); } }
/* viewport reveals */
.js-motion .reveal { opacity: 0; transform: translateY(12px); transition: opacity .45s ease-out, transform .45s cubic-bezier(.2,.7,.2,1); transition-delay: calc(var(--i, 0) * 70ms); }
.js-motion .reveal.in { opacity: 1; transform: none; }
/* timeline draws when it enters */
.js-motion .timeline::before { transform: scaleX(0); transform-origin: left; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
[dir="rtl"] .js-motion .timeline::before { transform-origin: right; }
.js-motion .timeline.in::before { transform: scaleX(1); }
.js-motion .timeline .step-dot { transform: scale(0); transition: transform .35s cubic-bezier(.2,.7,.2,1); transition-delay: calc(200ms + var(--i, 0) * 220ms); }
.js-motion .timeline.in .step-dot { transform: scale(1); }
@media (max-width: 899px) { .js-motion .timeline::before { transform: scaleY(0); transform-origin: top; } .js-motion .timeline.in::before { transform: scaleY(1); } }
/* hover precision: top rule extends, number tints */
.index-row .num, .agent .num, .pillar .num, .service-card .num { transition: color .2s; }
.index-row:hover .num, .agent:hover .num, .service-card:hover .num { color: var(--cyan); }
.page-services .service-card { position: relative; transition: border-color .2s; }
.page-services .service-card::before { content: ''; position: absolute; top: -2px; inset-inline-start: 0; width: 40px; height: 2px; background: var(--cyan); transition: width .35s cubic-bezier(.2,.7,.2,1); }
.page-services .service-card:hover::before { width: 100%; }
.agent, .case, .plan { transition: border-color .2s; }
.status .dot { width: 7px; height: 7px; margin-inline-end: 6px; vertical-align: middle; display: inline-block; }
.js-motion .status-available .dot-pulse { animation: pulse 1.6s ease-out .6s 2; }
.count { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .js-motion .rise, .js-motion .bar, .js-motion .kpi, .js-motion .risk-card, .js-motion .findings li, .js-motion .reveal, .js-motion .timeline::before, .js-motion .timeline .step-dot { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
  .js-motion .pulse { animation: none; }
}

/* ---------- Motion / print ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
@media print {
  .js-motion .reveal, .js-motion .rise, .js-motion .kpi, .js-motion .risk-card, .js-motion .findings li, .js-motion .flow-node, .js-motion .flow-dot { opacity: 1 !important; transform: none !important; }
  .site-header, .site-footer, .cta-band, .nav-toggle, .skip-link { display: none !important; }
  .section { padding-block: 24px; }
  .section-navy, .section-cyan { background: none; color: var(--ink); }
}
