/* ============================================================================
   FCI ADVISORY — SHARED SITE SYSTEM  (site.css)
   Canonical design system for the whole website.
   Single typeface: DM Sans. Brand: navy #1E2671 + maroon #C23764 on cream.
   Load order on every page:
     <link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
     <link rel="stylesheet" href="/assets/css/site.css">
   ...page-specific <style> may follow and override locally.
   ========================================================================== */

/* ----------------------------------------------------------------- TOKENS */
:root {
  /* Brand */
  --fci-blue: #1E2671;
  --fci-blue-deep: #11164A;
  --fci-blue-soft: #2A337F;
  --fci-maroon: #C23764;
  --fci-maroon-2: #E04F7E;
  --fci-maroon-soft: #F4D3DE;

  /* Status */
  --status-green: #22C55E;
  --status-amber: #F59E0B;
  --status-red:   #EF4444;

  /* Neutrals */
  --cream: #F7F5F1;
  --cream-light: #FCFBF8;
  --navy: #1E2671;
  --navy-deep: #11164A;
  --grey-warm: #D8D2C8;
  --grey-warm-soft: #EAE4DA;
  --grey-slate: #7A8C99;
  --grey-axis: #3A4759;
  --white: #FFFFFF;
  --ink: #1B2030;

  /* Gradients */
  --gradient-fci:   linear-gradient(135deg, #C23764 0%, #1E2671 100%);
  --gradient-fci-h: linear-gradient(90deg, #C23764, #1E2671);
  --gradient-fci-v: linear-gradient(180deg, #C23764, #1E2671);
  --gradient-ink:   linear-gradient(160deg, #1E2671 0%, #11164A 70%);

  /* Type */
  --font-display: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', 'Menlo', monospace;

  /* Layout */
  --max-wide: 1440px;
  --max-content: 760px;
  --gutter: 32px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --header-h: 74px;

  /* Elevation */
  --shadow-sm:   0 1px 2px rgba(30,38,113,0.05), 0 4px 14px rgba(30,38,113,0.05);
  --shadow-card: 0 2px 4px rgba(30,38,113,0.04), 0 12px 32px rgba(30,38,113,0.07);
  --shadow-card-hover: 0 8px 18px rgba(194,55,100,0.10), 0 26px 60px rgba(194,55,100,0.18);
  --shadow-pop:  0 24px 70px rgba(17,22,74,0.18);

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

/* ------------------------------------------------------------------ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
:focus-visible { outline: 2px solid var(--fci-maroon); outline-offset: 3px; border-radius: 4px; }

/* ------------------------------------------------------------- TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  line-height: 1.08;
}
h1 { font-size: clamp(38px, 5vw, 64px); letter-spacing: -0.04em; line-height: 1.04; }
h2 { font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.03em; }
h3 { font-size: clamp(19px, 1.6vw, 22px); letter-spacing: -0.02em; }
h4 { font-size: 16px; letter-spacing: -0.01em; }
p { color: var(--grey-axis); }
strong { color: var(--navy); font-weight: 700; }

.text-gradient {
  background: var(--gradient-fci-h);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* --------------------------------------------------------------- LAYOUT */
.container { width: 100%; max-width: var(--max-wide); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 1120px; }
.section { padding: clamp(64px, 8vw, 112px) 0; position: relative; }
.section--cream-light { background: var(--cream-light); }
.section--white { background: var(--white); }
.section--ink { background: var(--gradient-ink); color: rgba(255,255,255,0.86); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--tight { padding: clamp(48px, 5vw, 72px) 0; }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: clamp(16px, 1.4vw, 18px); color: var(--grey-axis); }
.section--ink .section-head p { color: rgba(255,255,255,0.72); }

/* ------------------------------------------------------------ EYEBROW PILL */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fci-maroon);
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 22px; height: 1.5px; background: var(--gradient-fci-h); border-radius: 2px; }
.eyebrow--pill {
  color: var(--navy); background: var(--white);
  border: 1px solid var(--grey-warm);
  padding: 7px 14px; border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
}
.eyebrow--pill::before { display: none; }
.eyebrow--pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--fci-maroon); }
.section--ink .eyebrow { color: var(--fci-maroon-2); }

/* ----------------------------------------------------------------- BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; letter-spacing: 0.01em;
  padding: 14px 26px; border-radius: var(--radius-pill);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer; white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.25s var(--ease); }
.btn:hover svg.arrow { transform: translateX(4px); }
.btn--sm { padding: 11px 20px; font-size: 13px; }
.btn--lg { padding: 17px 34px; font-size: 15px; }

.btn--gradient { background: var(--gradient-fci-h); color: var(--white); box-shadow: 0 6px 18px rgba(194,55,100,0.26); }
.btn--gradient:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(194,55,100,0.38); }

.btn--navy { background: var(--navy); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--navy:hover { transform: translateY(-2px); background: var(--fci-blue-deep); box-shadow: var(--shadow-card); }

.btn--white { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }

.btn--ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--grey-warm); }
.btn--ghost:hover { border-color: var(--fci-maroon); color: var(--fci-maroon); transform: translateY(-2px); }

.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.28); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.06); transform: translateY(-2px); }

/* text link with arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--fci-maroon);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============================================================ SITE HEADER */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(247,245,241,0.82);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-warm);
  transition: box-shadow 0.3s var(--ease), background 0.3s;
}
.site-header.is-stuck { box-shadow: 0 6px 28px rgba(17,22,74,0.08); background: rgba(247,245,241,0.92); }
.site-header__inner {
  max-width: var(--max-wide); margin: 0 auto;
  padding: 0 var(--gutter); height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.site-header__brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-header__logo { height: 30px; width: auto; }

.site-nav { display: flex; }
.site-nav__list { display: flex; align-items: center; gap: 4px; }
.site-nav__item { position: static; }
.site-nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  color: var(--navy); padding: 10px 14px; border-radius: 10px;
  transition: color 0.18s, background 0.18s;
}
.site-nav__link:hover, .site-nav__item.is-open .site-nav__link { color: var(--fci-maroon); }
.site-nav__link .chev { width: 13px; height: 13px; transition: transform 0.25s var(--ease); opacity: 0.7; }
.site-nav__item.is-open .site-nav__link .chev { transform: rotate(180deg); }
.site-nav__link.is-active { color: var(--fci-maroon); }

.site-header__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

/* ------------------------------------------------------------- MEGA MENU */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--cream-light);
  border-bottom: 1px solid var(--grey-warm);
  box-shadow: var(--shadow-pop);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  pointer-events: none;
}
.site-nav__item.is-open .mega { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.mega__inner {
  max-width: var(--max-wide); margin: 0 auto; padding: 40px var(--gutter) 44px;
  display: grid; grid-template-columns: 0.85fr 2.15fr; gap: 48px;
}
.mega__intro { padding-right: 28px; border-right: 1px solid var(--grey-warm); }
.mega__intro .eyebrow { margin-bottom: 14px; }
.mega__intro h3 { font-size: 24px; line-height: 1.12; margin-bottom: 12px; letter-spacing: -0.03em; }
.mega__intro p { font-size: 14px; color: var(--grey-axis); margin-bottom: 18px; }

.mega__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px 14px; align-content: start; }
.mega__grid--2 { grid-template-columns: repeat(2, 1fr); }
.mega__link {
  display: flex; gap: 13px; padding: 13px; border-radius: 14px;
  transition: background 0.18s, transform 0.18s;
}
.mega__link:hover { background: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.mega__ico {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(194,55,100,0.08); color: var(--fci-maroon);
}
.mega__ico svg { width: 19px; height: 19px; }
.mega__link h4 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.mega__link p { font-size: 12.5px; line-height: 1.45; color: var(--grey-slate); }

.mega__feature {
  grid-column: span 1; border-radius: 16px; overflow: hidden; position: relative;
  min-height: 150px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px; color: #fff; background: var(--gradient-ink);
}
.mega__feature-img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.5; }
.mega__feature-body { position: relative; z-index: 1; }
.mega__feature .tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fci-maroon-2); }
.mega__feature h4 { color: #fff; font-size: 17px; margin: 5px 0 4px; }
.mega__feature p { color: rgba(255,255,255,0.78); font-size: 12.5px; }

/* mega: logos/links beside a far-right square feature */
.mega__split { display: flex; gap: 30px; align-items: stretch; }
.mega__split-main { flex: 1 1 auto; min-width: 0; display: flex; align-items: center; }
.mega__split-main > * { width: 100%; }
.mega__feature--square { flex: 0 0 216px; width: 216px; aspect-ratio: 1 / 1; min-height: 0; align-self: center; }
.mega__feature--square h4 { font-size: 16px; }
.mega__feature--square p { font-size: 11.5px; }

/* mega: labeled taxonomy groups (e.g. By format / By topic) */
.mega__groups { display: grid; grid-template-columns: 1fr 1fr; gap: 0 26px; align-items: start; }
.mega__group-label { font-size: 10.5px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--grey-slate); padding: 4px 13px 9px; border-bottom: 1px solid var(--grey-warm-soft); margin: 0 4px 6px; }

@media (max-width: 1040px){
  .mega__split { flex-direction: column; align-items: stretch; }
  .mega__feature--square { width: auto; flex: none; aspect-ratio: auto; min-height: 132px; }
  .mega__groups { grid-template-columns: 1fr; gap: 0; }
}

/* mobile nav toggle */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 11px; flex-direction: column; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; position: relative; }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================== SITE FOOTER */
.site-footer { background: #11164A; color: rgba(247,245,241,0.66); padding: 72px 0 28px; }
.site-footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.10);
}
.site-footer__brand-logo { height: 30px; width: auto; margin-bottom: 18px; }
.site-footer__tag { font-size: 14px; line-height: 1.6; color: rgba(247,245,241,0.6); max-width: 320px; }
.site-footer__tagline { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: var(--font-display); font-weight: 700; font-size: 13.5px; color: #fff; }
.site-footer__tagline::before { content: ''; width: 18px; height: 1.5px; background: var(--gradient-fci-h); }

.site-footer__col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.site-footer__col ul li { margin-bottom: 11px; }
.site-footer__col ul li a { font-size: 14px; color: rgba(247,245,241,0.66); transition: color 0.18s; }
.site-footer__col ul li a:hover { color: var(--fci-maroon-2); }

.site-footer__contact-row { display: flex; gap: 11px; margin-bottom: 15px; font-size: 14px; line-height: 1.5; color: rgba(247,245,241,0.72); }
.site-footer__contact-row svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--fci-maroon-2); }
.site-footer__contact-row a:hover { color: #fff; }

.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-top: 26px; font-size: 12.5px; color: rgba(247,245,241,0.42); letter-spacing: 0.01em;
}
.site-footer__bottom a { color: rgba(247,245,241,0.42); }
.site-footer__bottom a:hover { color: rgba(247,245,241,0.7); }
.site-footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ================================================================== CARDS */
.card {
  background: var(--white); border: 1px solid var(--grey-warm-soft);
  border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); border-color: rgba(194,55,100,0.25); }
.card__ico {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: var(--gradient-fci); color: #fff; margin-bottom: 20px; box-shadow: 0 6px 16px rgba(194,55,100,0.22);
}
.card__ico svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--grey-axis); }
.card__link { margin-top: 18px; }

/* generic responsive grids */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================== STATS BAND */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: left; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 4vw, 52px); letter-spacing: -0.04em; line-height: 1; background: var(--gradient-fci-h); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { margin-top: 12px; font-size: 14px; color: var(--grey-axis); font-weight: 500; line-height: 1.4; }
.section--ink .stat__num { background: linear-gradient(90deg, #fff, #F4D3DE); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section--ink .stat__label { color: rgba(255,255,255,0.7); }

/* =============================================================== CTA BAND */
.cta {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--gradient-ink); color: #fff; padding: clamp(48px, 6vw, 80px);
  text-align: center;
}
.cta::before { content: ''; position: absolute; top: -120px; right: -80px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(194,55,100,0.38), transparent 65%); filter: blur(40px); }
.cta__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta h2 { color: #fff; margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.78); font-size: clamp(16px,1.5vw,18px); margin-bottom: 30px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================= BREADCRUMB */
.breadcrumb { font-family: var(--font-display); font-size: 12.5px; font-weight: 500; color: var(--grey-slate); padding: 18px 0; }
.breadcrumb a { color: var(--grey-slate); }
.breadcrumb a:hover { color: var(--fci-maroon); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.55; }
.breadcrumb .current { color: var(--navy); font-weight: 700; }

/* ============================================================== LOGO WALL */
.logowall { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px 56px; }
.logowall img { height: 34px; width: auto; object-fit: contain; opacity: 0.62; filter: grayscale(1); transition: opacity 0.25s, filter 0.25s; }
.logowall img:hover { opacity: 1; filter: grayscale(0); }
.logowall--label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-slate); margin-bottom: 32px; }

/* ============================================== SCROLL-REVEAL ANIMATION */
:root { --ease-out: cubic-bezier(0.16, 1, 0.3, 1); }
.reveal { opacity: 0; transform: translateY(30px) scale(0.985); transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out), filter 0.95s var(--ease-out); will-change: opacity, transform; }
@media (pointer: fine) { .reveal { filter: blur(6px); } .reveal.is-in { filter: blur(0); } }
.reveal.is-in { opacity: 1; transform: none; }
.reveal--scale { transform: translateY(34px) scale(0.955); }
.reveal--left  { transform: translateX(-44px); }
.reveal--right { transform: translateX(44px); }
.reveal--scale.is-in, .reveal--left.is-in, .reveal--right.is-in { transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.09s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal[data-delay="3"] { transition-delay: 0.27s; }
.reveal[data-delay="4"] { transition-delay: 0.36s; }
.reveal[data-delay="5"] { transition-delay: 0.45s; }
/* hero entrance — children of hero copy rise in sequence on page load (shell.js assigns delays) */
@keyframes introUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.intro-up { animation: introUp 0.9s var(--ease-out) both; }

/* header steps aside while reading, returns the instant you scroll up */
.site-header { transition: transform 0.45s var(--ease-out), box-shadow 0.3s var(--ease), background 0.3s; }
.site-header.is-hidden { transform: translateY(-110%); }

/* image reveal-zoom — image settles from a slight zoom as it enters (inside overflow:hidden media) */
.reveal-zoom img { transform: scale(1.12); transition: transform 1.15s var(--ease); }
.reveal-zoom.is-in img { transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--scale, .reveal--left, .reveal--right { opacity: 1; transform: none; transition: none; filter: none; }
  .intro-up { animation: none; }
  .site-header.is-hidden { transform: none; }
  .reveal-zoom img { transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* =============================================================== UTILITIES */
.u-center { text-align: center; }
.u-mt-0 { margin-top: 0; }
.u-mb-0 { margin-bottom: 0; }
.u-maxw-720 { max-width: 720px; }
.u-mx-auto { margin-left: auto; margin-right: auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0; z-index: 2000; }
.skip-link:focus { left: 0; }

/* ============================================================= RESPONSIVE */
@media (max-width: 1080px) {
  .mega__inner { grid-template-columns: 1fr; gap: 28px; }
  .mega__intro { border-right: none; border-bottom: 1px solid var(--grey-warm); padding-right: 0; padding-bottom: 22px; }
}
@media (max-width: 920px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header__actions .btn { display: none; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .cta__actions { flex-direction: column; }
  .cta__actions .btn { width: 100%; }
}

/* ===================================================== MOBILE NAV DRAWER */
.mobile-nav {
  position: fixed; inset: 0; z-index: 1500;
  background: linear-gradient(168deg, #1E2671 0%, #262370 38%, #7E2F6B 80%, #C23764 118%);
  color: #fff;
  transform: translateX(100%); transition: transform 0.35s var(--ease);
  display: flex; flex-direction: column; padding: 22px var(--gutter) 40px; overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.mobile-nav__close { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); }
.mobile-nav__close svg { width: 22px; height: 22px; }
.mobile-nav__list { display: flex; flex-direction: column; }
.mobile-nav__link { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 15px 4px; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.015em; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.12); }
.mobile-nav__link svg { width: 16px; height: 16px; opacity: 0.7; transform: rotate(-45deg); flex-shrink: 0; }
.mobile-nav__link:active { opacity: 0.8; }
.mobile-nav__cta { margin-top: 28px; display: grid; gap: 10px; }
.mobile-nav__cta .btn { width: 100%; }
.mobile-nav__cta .btn--gradient { background: #fff; color: var(--navy); box-shadow: none; }
.mobile-nav__cta .btn--ghost { border-color: rgba(255,255,255,0.45); color: #fff; background: transparent; }
.mobile-nav__contact { margin-top: 26px; border-top: 1px solid rgba(255,255,255,0.18); padding-top: 18px; display: grid; gap: 7px; }
.mobile-nav__contact a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); }
.mobile-nav__contact a:hover { color: #fff; }
.mobile-nav__contact span { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.mobile-nav a:focus-visible, .mobile-nav summary:focus-visible, .mobile-nav__close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
body.nav-locked { overflow: hidden; }

/* ===================================================== FOOTER SUBSCRIBE BAR */
.footer-sub { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 38px; margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-sub__tx h3 { color: #fff; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 6px; }
.footer-sub__tx p { color: rgba(255,255,255,0.6); font-size: 14px; max-width: 48ch; line-height: 1.5; }
.footer-sub__form { display: flex; gap: 10px; flex: 0 0 auto; }
.footer-sub__form input { width: 280px; max-width: 62vw; padding: 13px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.06); color: #fff; font: inherit; font-size: 14px; outline: none; transition: border-color 0.2s, background 0.2s; }
.footer-sub__form input::placeholder { color: rgba(255,255,255,0.45); }
.footer-sub__form input:focus { border-color: var(--fci-maroon-2); background: rgba(255,255,255,0.1); }
.footer-sub__msg { color: #fff; font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 9px; }
.footer-sub__msg svg { color: var(--fci-maroon-2); }
@media (max-width: 680px){ .footer-sub { flex-direction: column; align-items: flex-start; } .footer-sub__form { width: 100%; } .footer-sub__form input { flex: 1; width: auto; max-width: none; } }

/* ===================================================== SPLIT SIGN-IN MODAL */
.signin { position: fixed; inset: 0; z-index: 2100; display: none; }
.signin.is-open { display: block; }
.signin__backdrop { position: absolute; inset: 0; background: rgba(11,15,40,0.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s var(--ease); }
.signin.is-open .signin__backdrop { opacity: 1; }
.signin__dialog { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; background: #fff; opacity: 0; transform: translateY(14px); transition: opacity 0.35s var(--ease), transform 0.4s var(--ease); }
.signin.is-open .signin__dialog { opacity: 1; transform: none; }
.signin__close { position: absolute; top: 22px; right: 26px; z-index: 3; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28); cursor: pointer; transition: background 0.2s, transform 0.25s var(--ease); }
.signin__close:hover { background: rgba(255,255,255,0.26); transform: rotate(90deg); }
.signin__close svg { width: 18px; height: 18px; }

.signin__form { display: flex; flex-direction: column; justify-content: center; width: 100%; max-width: 600px; margin: 0 auto; padding: clamp(36px,5vw,80px) clamp(26px,5vw,92px); overflow-y: auto; }
.signin__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 26px; }
.signin__brand img { width: 28px; height: auto; }
.signin__brand span { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: -0.02em; color: var(--navy); }
.signin__form h2 { font-size: clamp(25px,3vw,33px); letter-spacing: -0.03em; margin-bottom: 9px; color: var(--navy); }
.signin__lede { font-size: 15px; color: var(--grey-axis); margin-bottom: 28px; }
.signin__label { font-size: 12.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; display: block; }
.signin__inrow { display: flex; border: 1.5px solid var(--grey-warm); border-radius: 12px; overflow: hidden; transition: border-color 0.2s, box-shadow 0.2s; }
.signin__inrow:focus-within { border-color: var(--fci-maroon); box-shadow: 0 0 0 4px rgba(194,55,100,0.10); }
.signin__inrow input { flex: 1; min-width: 0; border: 0; padding: 15px 16px; font: inherit; font-size: 15px; color: var(--navy); background: transparent; outline: none; }
.signin__go { flex: 0 0 auto; width: 54px; background: var(--gradient-fci-h); color: #fff; display: grid; place-items: center; border: 0; cursor: pointer; transition: filter 0.2s; }
.signin__go:hover { filter: brightness(1.08); }
.signin__go svg { width: 20px; height: 20px; }
.signin__or { display: flex; align-items: center; gap: 14px; margin: 22px 0; color: var(--grey-slate); font-size: 12px; font-weight: 600; }
.signin__or::before, .signin__or::after { content: ''; flex: 1; height: 1px; background: var(--grey-warm); }
.signin__oauth { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 13px; border: 1.5px solid var(--grey-warm); border-radius: 12px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--navy); background: #fff; cursor: pointer; transition: border-color 0.2s, background 0.2s, transform 0.2s; margin-bottom: 12px; }
.signin__oauth:hover { border-color: var(--navy); background: var(--cream-light); transform: translateY(-1px); }
.signin__oauth svg { width: 18px; height: 18px; }
.signin__fine { font-size: 12.5px; color: var(--grey-slate); margin-top: 16px; line-height: 1.55; }
.signin__fine a { color: var(--fci-maroon); font-weight: 600; }

.signin__aside { position: relative; overflow: hidden; background: var(--gradient-fci); display: flex; flex-direction: column; justify-content: center; padding: clamp(40px,5vw,80px); color: #fff; }
.signin__aside::before { content: ''; position: absolute; inset: 0; background: radial-gradient(58% 58% at 82% 8%, rgba(255,255,255,0.20), transparent 60%); pointer-events: none; }
.signin__aside-in { position: relative; z-index: 1; max-width: 440px; }
.signin__hi { margin-bottom: 22px; }
.signin__hi span { width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,0.16); display: grid; place-items: center; }
.signin__hi svg { width: 24px; height: 24px; color: #fff; }
.signin__aside h3 { color: #fff; font-size: clamp(26px,2.6vw,38px); letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 15px; }
.signin__aside > .signin__aside-in > p { color: rgba(255,255,255,0.82); font-size: 15.5px; line-height: 1.6; margin-bottom: 26px; }
.signin__pts { display: flex; flex-direction: column; gap: 14px; }
.signin__pt { display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,0.92); }
.signin__pt svg { width: 20px; height: 20px; flex: 0 0 auto; color: #fff; opacity: 0.9; }
@media (max-width: 860px){
  .signin__dialog { grid-template-columns: 1fr; }
  .signin__aside { display: none; }
  .signin__close { color: var(--navy); background: var(--cream); border-color: var(--grey-warm); }
}

/* ===================================================== INTERIOR PAGE HERO */
.page-hero { position: relative; overflow: hidden; padding: clamp(40px, 5vw, 72px) 0 clamp(36px, 4vw, 52px); background: var(--cream); }
.page-hero::before { content: ''; position: absolute; top: -160px; right: -100px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(194,55,100,0.12), transparent 70%); filter: blur(80px); pointer-events: none; }
.page-hero__inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero h1 { margin: 6px 0 18px; }
.page-hero__lede { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.6; color: var(--grey-axis); max-width: 660px; }

/* =============================================================== PROSE */
.prose { max-width: 760px; font-size: 16.5px; line-height: 1.75; color: var(--grey-axis); }
.prose > * + * { margin-top: 18px; }
.prose h2 { font-size: clamp(22px, 2.4vw, 28px); color: var(--navy); margin-top: 44px; margin-bottom: 4px; letter-spacing: -0.02em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; color: var(--navy); margin-top: 28px; }
.prose p { color: var(--grey-axis); }
.prose strong { color: var(--navy); }
.prose a { color: var(--fci-maroon); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-top: 9px; }
.prose ul li { list-style: none; position: relative; }
.prose ul li::before { content: ''; position: absolute; left: -18px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--gradient-fci-h); }
.prose hr { border: none; border-top: 1px solid var(--grey-warm); margin: 36px 0; }
.prose .muted-note { font-size: 13.5px; color: var(--grey-slate); }

/* document-control box (policies) */
.doc-control { background: var(--cream-light); border: 1px solid var(--grey-warm-soft); border-radius: 14px; padding: 22px 26px; margin-bottom: 40px; }
.doc-control dl { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px 28px; }
.doc-control dt { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-slate); margin-bottom: 2px; }
.doc-control dd { font-size: 14.5px; color: var(--navy); font-weight: 600; }

/* related policy links */
.related-policies { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--grey-warm); }
.related-policies h4 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-slate); margin-bottom: 16px; }
.related-policies__list { display: flex; flex-wrap: wrap; gap: 10px; }
.related-policies__list a { font-size: 14px; font-weight: 600; color: var(--navy); background: var(--white); border: 1px solid var(--grey-warm); border-radius: 999px; padding: 9px 16px; transition: border-color 0.2s, color 0.2s; }
.related-policies__list a:hover { border-color: var(--fci-maroon); color: var(--fci-maroon); }

@media (max-width: 640px) { .doc-control dl { grid-template-columns: 1fr; } }

/* ============================================================== CONTACT */
.contact-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 48px; align-items: start; }
.contact-form { background: var(--white); border: 1px solid var(--grey-warm-soft); border-radius: var(--radius-lg); padding: clamp(28px, 3.5vw, 44px); box-shadow: var(--shadow-card); }
.contact-form .field { margin-bottom: 20px; }
.contact-form label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--navy);
  background: var(--cream-light); border: 1px solid var(--grey-warm); border-radius: 12px;
  padding: 13px 15px; transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--fci-maroon); box-shadow: 0 0 0 3px rgba(194,55,100,0.12); }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form .btn { width: 100%; margin-top: 6px; }
.contact-form__note { font-size: 12.5px; color: var(--grey-slate); margin-top: 14px; text-align: center; }

.contact-cards { display: grid; gap: 16px; }
.contact-card { background: var(--white); border: 1px solid var(--grey-warm-soft); border-radius: 16px; padding: 24px; display: flex; gap: 16px; }
.contact-card__ico { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center; background: var(--gradient-fci); color: #fff; }
.contact-card__ico svg { width: 21px; height: 21px; }
.contact-card h3 { font-size: 16px; margin-bottom: 5px; }
.contact-card p, .contact-card a { font-size: 14.5px; color: var(--grey-axis); line-height: 1.5; }
.contact-card a:hover { color: var(--fci-maroon); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 480px) { .contact-form .field-row { grid-template-columns: 1fr; } }

/* ===================================================== REUSABLE: INSIGHT CARDS */
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight-card { display: flex; flex-direction: column; height: 100%; background: var(--white); border: 1px solid var(--grey-warm-soft); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.insight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.insight-card__media { height: 168px; position: relative; overflow: hidden; background: var(--gradient-ink); }
.insight-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.insight-card:hover .insight-card__media img { transform: scale(1.05); }
.insight-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.insight-card__tag { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fci-maroon); margin-bottom: 12px; }
.insight-card__body h3 { font-size: 18px; line-height: 1.24; margin-bottom: 16px; }
.insight-card__body .link-arrow { margin-top: auto; }

/* ===================================================== REUSABLE: FEATURE SPLIT */
.feature-split { display: grid; grid-template-columns: 1.02fr 0.98fr; background: var(--white); border: 1px solid var(--grey-warm-soft); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.feature-split--reverse .feature-split__media { order: 2; }
.feature-split__media { position: relative; min-height: 360px; background: var(--gradient-ink); }
.feature-split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-split__body { padding: clamp(30px, 4vw, 56px); align-self: center; }
.feature-split__body .insight-card__tag { display: inline-block; }
.feature-split__body h2 { font-size: clamp(24px, 2.6vw, 34px); margin-bottom: 14px; }
.feature-split__body h3 { font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 14px; }
.feature-split__body p { font-size: 16px; color: var(--grey-axis); margin-bottom: 22px; }
@media (max-width: 880px) { .feature-split { grid-template-columns: 1fr; } .feature-split--reverse .feature-split__media { order: 0; } .feature-split__media { min-height: 240px; } }

/* ===================================================== REUSABLE: CHIPS */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.chip { font-size: 13px; font-weight: 600; color: var(--navy); background: var(--white); border: 1px solid var(--grey-warm); border-radius: 999px; padding: 9px 17px; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.chip:hover { border-color: var(--fci-maroon); color: var(--fci-maroon); }
.chip.is-active { background: var(--gradient-fci-h); color: #fff; border-color: transparent; }

/* ===================================================== REUSABLE: MEDIA HERO (interior pages with a photo) */
.media-hero { position: relative; overflow: hidden; }
.media-hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: start; padding: clamp(40px,5vw,76px) 0; }
.media-hero__copy { max-width: 600px; }
.media-hero__copy h1 { margin: 8px 0 18px; font-size: clamp(36px, 4.2vw, 56px); letter-spacing: -0.035em; line-height: 1.06; }
/* force uniform breadcrumb position in every media-hero, regardless of per-page overrides */
.media-hero__copy .breadcrumb { max-width: none; margin: 0; padding: 0 0 16px; position: static; }
.media-hero__lede { font-size: clamp(17px,1.6vw,20px); line-height: 1.6; color: var(--grey-axis); margin-bottom: 28px; }
.media-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.media-hero__visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-pop); aspect-ratio: 5/4.2; background: var(--gradient-ink); }
.media-hero__visual img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1000px) { .media-hero__inner { grid-template-columns: 1fr; gap: 36px; } .media-hero__visual { max-width: 560px; } }

/* generic band with image (story / split content) */
.imgband { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.imgband--reverse .imgband__media { order: 2; }
.imgband__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); aspect-ratio: 4/3; }
.imgband__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .imgband { grid-template-columns: 1fr; gap: 32px; } .imgband--reverse .imgband__media { order: 0; } }

/* ===================================================== SHARED PARTNER HERO (2-col template, used by all partner pages) */
.hero-grid { max-width: var(--max-wide); margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
/* top-align all partner heroes so the title sits at the same height on every page (beats inline align-items) */
.hero .hero-grid { align-items: start; }
.hero-text .eyebrow-pill { margin-bottom: 22px; }
/* one canonical partner-hero title size — beats every per-page override by specificity */
.hero-grid .hero-text h1 { font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.035em; line-height: 1.06; }
.hero-body { font-size: 17px; color: var(--grey-axis); line-height: 1.6; margin-bottom: 28px; max-width: 460px; }
.hero-body strong { color: var(--navy); font-weight: 600; }
.partner-lockup { position: relative; width: 100%; padding: clamp(44px, 6vw, 80px) clamp(24px, 4vw, 48px); border-radius: 28px; background: linear-gradient(150deg, #FFFFFF 0%, var(--cream) 60%, #FFF1ED 100%); border: 1px solid var(--grey-warm); box-shadow: 0 24px 64px rgba(30,38,113,0.10), 0 4px 12px rgba(30,38,113,0.04); display: flex; align-items: center; justify-content: center; overflow: hidden; isolation: isolate; }
.partner-lockup::before, .partner-lockup::after { content: ''; position: absolute; pointer-events: none; filter: blur(8px); z-index: -1; }
.partner-lockup::before { top: -120px; right: -100px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(194,55,100,0.20), transparent 70%); }
.partner-lockup::after { bottom: -100px; left: -100px; width: 280px; height: 280px; background: radial-gradient(circle, rgba(30,38,113,0.12), transparent 70%); }
.partner-lockup-inner { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 3.5vw, 48px); }
.partner-lockup-brand { height: clamp(42px, 5.5vw, 68px); width: auto; max-width: 34%; object-fit: contain; }
.partner-lockup-brand--fci { height: clamp(46px, 6vw, 74px); }
.partner-lockup-x { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 30px); font-weight: 800; color: var(--grey-slate); letter-spacing: -0.04em; flex-shrink: 0; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 600px) { .partner-lockup { aspect-ratio: auto; } .partner-lockup-inner { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 3.5vw, 48px); } .partner-lockup-logo,   .partner-lockup-x { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 30px); font-weight: 800; color: var(--grey-slate); letter-spacing: -0.04em; flex-shrink: 0; } }

/* ===================================================== REUSABLE: FULL-WIDTH CAPABILITY PHOTO BAND */
.cap-band { position: relative; min-height: 440px; overflow: hidden; background: var(--navy-deep); display: flex; }
.cap-band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.cap-band__scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(17,22,74,0.92) 0%, rgba(17,22,74,0.66) 42%, rgba(17,22,74,0.18) 80%, rgba(17,22,74,0.05) 100%); }
.cap-band__inner { position: relative; z-index: 2; max-width: var(--max-wide); width: 100%; margin: 0 auto; padding: 56px 32px;
  display: flex; flex-direction: column; justify-content: center; }
.cap-band__eyebrow { font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fci-maroon-2); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.cap-band__eyebrow::before { content: ''; width: 34px; height: 2px; background: var(--fci-maroon); display: inline-block; }
.cap-band__title { color: #fff; font-size: clamp(24px, 3vw, 38px); line-height: 1.12; font-weight: 700; letter-spacing: -0.01em; max-width: 640px; margin: 0; }
.cap-band__sub { color: rgba(255,255,255,0.82); font-size: clamp(15px, 1.4vw, 17px); line-height: 1.6; max-width: 540px; margin: 16px 0 0; }
@media (max-width: 720px) { .cap-band { min-height: 360px; }
  .cap-band__scrim { background: linear-gradient(180deg, rgba(17,22,74,0.55) 0%, rgba(17,22,74,0.82) 100%); }
  .cap-band__inner { padding: 44px 22px; } }
/* statement variant: heavy navy wash so an abstract image reads as on-brand texture, not a photo */
.cap-band--statement { min-height: 320px; }
.cap-band--statement .cap-band__scrim {
  background: linear-gradient(112deg, rgba(17,22,74,0.95) 0%, rgba(30,38,113,0.88) 48%, rgba(194,55,100,0.55) 100%); }
.cap-band--statement .cap-band__title { max-width: 760px; }
.cap-band--statement .cap-band__sub { max-width: 620px; }

/* fill the navy "scenarios" squares with a brand-tinted image */
.scenarios-visual img.scenarios-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.scenarios-visual .scenarios-tint { position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(160deg, rgba(17,22,74,0.30) 0%, rgba(17,22,74,0.05) 48%, rgba(194,55,100,0.34) 100%); }

/* ===================================================== REUSABLE: FAQ ACCORDION */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--grey-warm); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 24px 4px; font-family: var(--font-display); font-weight: 700; font-size: clamp(16px,1.6vw,19px); color: var(--navy); cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 26px; line-height: 1; color: var(--fci-maroon); font-weight: 300; flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item[open] summary { color: var(--fci-maroon); }
.faq-body { padding: 0 4px 26px; max-width: 760px; }
.faq-body p, .faq-body li { color: var(--grey-axis); font-size: 15.5px; line-height: 1.7; }
.faq-body p + p { margin-top: 12px; }
.faq-body ul { padding-left: 20px; margin-top: 12px; }
.faq-body li { margin-top: 8px; }
.faq-body strong { color: var(--navy); }

/* ============================================== CASE-STUDY CAROUSEL (angled, image-forward) */
.cs-carousel { position: relative; }
.cs-viewport { overflow: hidden; padding: 16px 0 8px; }
.cs-track { display: flex; transition: transform 0.6s var(--ease); will-change: transform; }
.cs-slide { flex: 0 0 86%; margin-right: 2%; }
@media (min-width: 1200px) { .cs-slide { flex-basis: 70%; } }
.cs-slide__inner {
  display: grid; grid-template-columns: 1.04fr 0.96fr; min-height: 480px;
  border-radius: var(--radius-lg); overflow: hidden; background: var(--cream-light);
  box-shadow: var(--shadow-card); transform: skewX(-4deg);
  transition: box-shadow 0.35s var(--ease), opacity 0.35s var(--ease);
}
.cs-slide:not(.is-active) .cs-slide__inner { opacity: 0.5; }
.cs-slide.is-active .cs-slide__inner { box-shadow: var(--shadow-pop); }
.cs-slide__media { position: relative; overflow: hidden; background: var(--gradient-ink); }
.cs-slide__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: skewX(4deg) scale(1.14); }
.cs-slide__panel { padding: clamp(28px, 3.4vw, 52px); align-self: center; transform: skewX(4deg); }
.cs-slide__eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fci-maroon); margin-bottom: 16px; }
.cs-slide__panel h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.12; margin-bottom: 14px; }
.cs-slide__panel p { font-size: 15.5px; line-height: 1.65; color: var(--grey-axis); margin-bottom: 24px; }
.cs-slide__foot { display: flex; align-items: center; gap: 16px; }
.cs-slide__mark { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--white); border: 1px solid var(--grey-warm); flex-shrink: 0; }
.cs-slide__mark img { max-width: 26px; max-height: 22px; object-fit: contain; }
.cs-slide__mark svg { width: 20px; height: 20px; color: var(--fci-maroon); }

.cs-arrows { display: flex; gap: 12px; }
.cs-arrow {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gradient-fci-h); color: #fff; box-shadow: 0 6px 18px rgba(194,55,100,0.28);
  transition: transform 0.2s var(--ease), opacity 0.2s;
}
.cs-arrow:hover { transform: translateY(-2px); }
.cs-arrow:disabled { opacity: 0.35; cursor: default; transform: none; }
.cs-arrow svg { width: 22px; height: 22px; }
.cs-controls { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 22px; }
.cs-dots { display: flex; gap: 9px; }
.cs-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--grey-warm); transition: background 0.2s, transform 0.2s; }
.cs-dot.is-active { background: var(--gradient-fci-h); transform: scale(1.25); }

@media (max-width: 760px) {
  .cs-slide__inner { grid-template-columns: 1fr; transform: none; min-height: 0; }
  .cs-slide__media { min-height: 220px; }
  .cs-slide__media img, .cs-slide__panel { transform: none; }
  .cs-slide { flex-basis: 90%; }
}

/* ============================================== DYNAMIC STORY TIMELINE (scattered photos, year nav) */
.story-tl { position: relative; overflow: hidden; background: linear-gradient(155deg, #2C357F 0%, #20287A 48%, #181E5C 100%); color: #fff; padding: clamp(56px,7vw,104px) 0; }
.story-tl::before { content:''; position:absolute; top:-160px; right:-120px; width:600px; height:600px; background:radial-gradient(circle,rgba(224,79,126,0.32),transparent 64%); filter:blur(56px); pointer-events:none; }
.story-tl::after { content:''; position:absolute; bottom:-200px; left:-140px; width:560px; height:560px; background:radial-gradient(circle,rgba(70,86,196,0.5),transparent 66%); filter:blur(64px); pointer-events:none; }
.story-tl .container { position: relative; z-index: 2; }
.story-tl__head { margin-bottom: 30px; }
.story-tl__head .eyebrow { color: var(--fci-maroon-2); }
.story-tl__head h2 { color: #fff; }
.story-tl__top { display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-bottom:30px; }
.story-tl__years { display:flex; gap:8px; flex-wrap:wrap; }
.tl-year { font-family:var(--font-display); font-weight:700; font-size:15px; color:rgba(255,255,255,0.62); padding:9px 17px; border:1px solid rgba(255,255,255,0.18); border-radius:10px; transition:color .2s, background .2s, border-color .2s; }
.tl-year:hover { color:#fff; border-color:rgba(255,255,255,0.5); }
.tl-year.is-active { color:#fff; background:var(--gradient-fci-h); border-color:transparent; }
.story-tl__nav { display:flex; gap:10px; }
.tl-navbtn { width:48px; height:48px; border-radius:50%; display:grid; place-items:center; border:1px solid rgba(255,255,255,0.25); color:#fff; transition:background .2s, opacity .2s; }
.tl-navbtn:hover { background:rgba(255,255,255,0.1); }
.tl-navbtn:disabled { opacity:0.3; cursor:default; }
.tl-navbtn svg { width:20px; height:20px; }
.story-tl__stage { position:relative; }
.tl-panel { position:absolute; inset:0; opacity:0; visibility:hidden; transition:opacity .45s var(--ease); display:grid; grid-template-columns:0.7fr 1.3fr; gap:24px; align-items:center; }
.tl-panel.is-active { position:relative; opacity:1; visibility:visible; }
.tl-panel__card { background:#fff; color:var(--navy); border-radius:18px; padding:clamp(26px,3vw,36px); max-width:400px; box-shadow:var(--shadow-pop); }
.tl-panel__year { font-family:var(--font-display); font-weight:800; font-size:clamp(34px,4vw,46px); letter-spacing:-0.04em; line-height:1; margin-bottom:12px; background:var(--gradient-fci-h); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.tl-panel__card h3 { color:var(--navy); font-size:21px; margin-bottom:10px; }
.tl-panel__card p { color:var(--grey-axis); font-size:14.5px; line-height:1.6; }
.tl-panel__card .tag { display:inline-block; margin-top:16px; font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--fci-maroon); }
.tl-panel__photos { position:relative; height:520px; }
.tl-panel__photos img { position:absolute; border-radius:16px; object-fit:cover; box-shadow:0 22px 50px rgba(0,0,0,0.42); }
.tl-panel__photos .a { width:264px; height:192px; top:0; left:0; transform:rotate(-5deg); z-index:3; }
.tl-panel__photos .b { width:188px; height:236px; top:34px; right:18px; transform:rotate(5deg); z-index:2; }
.tl-panel__photos .c { width:178px; height:134px; bottom:48px; left:120px; transform:rotate(4deg); z-index:4; }
.tl-panel__photos .d { width:152px; height:152px; top:214px; left:338px; transform:rotate(-3deg); z-index:1; }
.tl-panel__photos .e { width:160px; height:202px; bottom:0; right:156px; transform:rotate(-7deg); z-index:2; }
@media (max-width:1100px){ .tl-panel__photos .d{ display:none; } }
@media (max-width:900px){ .tl-panel{ grid-template-columns:1fr; gap:28px; } .tl-panel__photos{ height:340px; } .tl-panel__photos .d,.tl-panel__photos .e{ display:none; } }
@media (max-width:560px){ .tl-panel__photos .b,.tl-panel__photos .c{ display:none; } .tl-panel__photos .a{ left:0; width:78%; height:210px; } }

/* ============================================ FCI BRAND-VEIL (clickable content images)
   Navy→maroon duotone over clickable photo cards site-wide; lifts on hover. */
.insight-card__media, .ins-card__media, .cs-slide__media, .feature-split__media,
.prod-card__media, .spot-item__thumb, .cap-card__media { position: relative; }
.insight-card__media::after, .ins-card__media::after, .cs-slide__media::after, .feature-split__media::after,
.prod-card__media::after, .spot-item__thumb::after, .cap-card__media::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(150deg, rgba(30,38,113,0.58) 0%, rgba(194,55,100,0.46) 100%);
  mix-blend-mode: multiply; opacity: 0.58; transition: opacity 0.45s var(--ease);
}
.insight-card:hover .insight-card__media::after,
.ins-card:hover .ins-card__media::after,
.cs-slide__inner:hover .cs-slide__media::after,
.feature-split:hover .feature-split__media::after,
.prod-card:hover .prod-card__media::after,
.spot-item:hover .spot-item__thumb::after,
.cap-card:hover .cap-card__media::after { opacity: 0.12; }
@media (prefers-reduced-motion: reduce) {
  .insight-card__media::after, .ins-card__media::after, .cs-slide__media::after, .feature-split__media::after,
  .prod-card__media::after, .spot-item__thumb::after, .cap-card__media::after { transition: none; }
}

/* ===== Drifting FCI-mark field — shared; shell.js injects a .lead-canvas into any [data-fci-field] ===== */
[data-fci-field] { position: relative; }
.lead-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
[data-fci-field] > .container { position: relative; z-index: 1; }

/* Stack the governance-hero action buttons on small phones (CoC / Economic Opportunity) */
@media (max-width: 560px){
  .coc-hero__actions, .eo-hero__actions { flex-direction: column; align-items: stretch; }
  .coc-hero__actions .btn, .eo-hero__actions .btn { width: 100%; justify-content: center; }
}

/* Mobile fix: media-hero image must not balloon — aspect-ratio + img height:100%
   can blow up to a huge portrait on single-column layouts. Pin an explicit,
   capped height on small screens and let object-fit crop cleanly. */
@media (max-width: 1000px){
  .media-hero__inner { grid-template-columns: 1fr !important; }
  .media-hero__visual { aspect-ratio: auto !important; height: clamp(220px, 56vw, 340px) !important; max-width: 100% !important; }
  .media-hero__visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
}

/* Safari-safe cap for square 'scenarios' visuals on the capability pages.
   aspect-ratio:1 + max-width can be ignored by Safari in single-column grids,
   ballooning the image. Pin natural height + a hard max-width instead. */
@media (max-width: 1000px){
  .scenarios-visual { aspect-ratio: auto !important; height: auto !important; max-width: 360px !important; margin-left: auto !important; margin-right: auto !important; }
  .scenarios-img { position: static !important; width: 100% !important; height: auto !important; display: block !important; }
}

/* Wide interactive product mockups (Lattice demo on Data Analytics, the Lattice
   app-window on Products) are desktop-width and would clip on phones. Make them
   horizontally swipeable on mobile instead of cut off. */
@media (max-width: 1000px){
  .hero-grid { grid-template-columns: 1fr !important; }
  .lattice-screen { max-width: 100% !important; overflow-x: auto !important; -webkit-overflow-scrolling: touch; }
  .lx-app { width: 100% !important; max-width: 100% !important; overflow-x: auto !important; -webkit-overflow-scrolling: touch; }
}

/* ===== Mobile/a11y hygiene (full-audit pass) ===== */
/* notched phones: keep the drawer + header clear of the safe areas */
.mobile-nav { padding-left: max(var(--gutter), env(safe-area-inset-left)); padding-right: max(var(--gutter), env(safe-area-inset-right)); padding-bottom: max(40px, env(safe-area-inset-bottom)); }
/* visible focus on the sign-in inputs (outline was removed) */
.signin__inrow input:focus-visible { outline: 2px solid var(--fci-maroon); outline-offset: 2px; }
/* motion-sensitive users: stop the remaining animated surfaces */
@media (prefers-reduced-motion: reduce){
  .cs-track { transition: none !important; }
  .cs-slide__media img { transition: none !important; transform: none !important; }
  .logowall img { transition: none !important; }
  .oem-track { animation: none !important; }
}

/* footer contact CTA */
.site-footer__cta { margin-top: 16px; align-self: flex-start; }

/* keyboard users: first Tab reveals a jump-to-content link */
.skip-link { position: fixed; top: -60px; left: 16px; z-index: 4000; background: var(--navy); color: #fff; font-weight: 700; font-size: 14px; padding: 12px 20px; border-radius: 0 0 12px 12px; transition: top 0.2s; }
.skip-link:focus-visible { top: 0; outline: 2px solid #fff; outline-offset: -4px; }
