/* ==========================================================================
   Kaya Development — Shared Design System
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy: #051c2c;
  --navy-2: #0a2b44;
  --navy-3: #122d44;
  --blue: #2251ff;
  --blue-dark: #1a3fcc;
  --blue-light: #afc8ff;
  --ink: #051c2c;
  --grey: #6b7a89;
  --grey-2: #51626f;
  --grey-3: #8ea4bf;
  --line: #e6e8eb;
  --line-soft: #f0f2f5;
  --line-dark: #1a3a5c;
  --bg: #ffffff;
  --bg-soft: #f6f8fa;
  --bg-cream: #f4eee1;
  --bg-mint: #e8f0ec;
  --font: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --max: 1440px;
  --pad: 40px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  background: var(--navy);
  color: #fff;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: height 0.25s var(--ease), background 0.25s var(--ease);
}
.site-header.shrink { height: 60px; box-shadow: 0 1px 0 var(--line-dark); }
.brand {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.3px;
  margin-right: 56px;
  white-space: nowrap;
  color: #fff;
}
.brand .and { font-weight: 300; font-style: italic; padding: 0 1px; }
.brand.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 54px;
}
.brand-logo img {
  display: block;
  width: auto;
  height: 46px;
}
.site-header.shrink .brand-logo img { height: 38px; }
.primary-nav { flex: 1; }
.primary-nav > ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}
.primary-nav > ul > li { position: relative; }
.primary-nav > ul > li > a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1px;
  padding: 30px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.primary-nav > ul > li > a:hover,
.primary-nav > ul > li.active > a { border-bottom-color: var(--blue); }
.primary-nav > ul > li.has-mega > a::after {
  content: "▾";
  font-size: 9px;
  opacity: 0.7;
}

/* Mega menu */
.mega {
  position: fixed;
  top: 80px;
  left: var(--mega-left, var(--pad));
  right: auto;
  width: var(--mega-width, calc(100vw - (var(--pad) + var(--pad))));
  max-width: 760px;
  max-height: calc(100vh - 96px);
  margin: 0;
  transform: translateY(-8px);
  background: #fff;
  color: var(--ink);
  padding: 36px 40px 32px;
  box-shadow: 0 24px 48px rgba(5,28,44,0.18);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 200;
}
.site-header.shrink .mega {
  top: 60px;
  max-height: calc(100vh - 76px);
}
.primary-nav > ul > li.has-mega:hover .mega,
.primary-nav > ul > li.has-mega:focus-within .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 48px;
}
.mega-grid a {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.15s;
}
.mega-grid a::after { content: "→"; opacity: 0; transition: opacity 0.15s, transform 0.15s; }
.mega-grid a:hover { color: var(--blue); }
.mega-grid a:hover::after { opacity: 1; transform: translateX(4px); }
.mega-feature {
  max-width: 1180px;
  padding: 0;
  overflow: hidden;
}
.mega-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  height: min(430px, calc(100vh - 96px));
  min-height: 0;
}
.site-header.shrink .mega-shell {
  height: min(430px, calc(100vh - 76px));
}
.mega-links {
  min-width: 0;
  padding: 34px 40px 32px;
  overflow-y: auto;
}
.mega-exclusive {
  position: relative;
  min-width: 0;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}
.mega-exclusive-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5,28,44,0.08) 15%, rgba(5,28,44,0.94) 100%);
  transition: background 0.2s ease;
}
.mega-exclusive:hover .mega-exclusive-scrim {
  background: linear-gradient(180deg, rgba(5,28,44,0.02) 8%, rgba(5,28,44,0.88) 100%);
}
.mega-exclusive-copy {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 32px;
}
.mega-exclusive-kicker {
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.mega-exclusive-copy strong {
  max-width: 270px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.mega-exclusive-cta {
  font-size: 13px;
  font-weight: 600;
}
.primary-nav > ul > li.has-mega > a::after { content: "\25BE"; }
.mega-grid a::after,
.arrow::after { content: "\2192"; }

.header-right { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.15s;
  color: #fff;
}
.icon-btn:hover { background: var(--navy-2); }
.signin {
  margin-left: 16px;
  padding: 9px 20px;
  border: 1px solid #2c4660;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  color: #fff;
}
.signin:hover { background: #fff; color: var(--navy); border-color: #fff; }
.mobile-toggle { display: none; }

/* ===================================================================
   HERO VARIANTS
   =================================================================== */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 24px;
}
.eyebrow.ink { color: var(--blue); }

.arrow {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid #fff;
  width: fit-content;
  transition: gap 0.25s var(--ease), color 0.15s, border-color 0.15s;
  letter-spacing: 0.1px;
}
.arrow::after { content: "→"; font-size: 16px; }
.arrow:hover { gap: 22px; color: var(--blue-light); border-color: var(--blue-light); }
.arrow::after { content: "\2192"; }
.arrow.dark { color: var(--ink); border-color: var(--ink); }
.arrow.dark:hover { color: var(--blue); border-color: var(--blue); }
.arrow.blue { color: var(--blue); border-color: var(--blue); }
.arrow.blue:hover { color: var(--blue-dark); border-color: var(--blue-dark); }

/* Split hero */
.hero-split {
  width: 100%;
  background: var(--navy);
  color: #fff;
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 620px;
  overflow: hidden;
}
.hero-text {
  padding: 100px 80px 100px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}
.hero-text h1 {
  font-size: 68px;
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -1.8px;
  margin-bottom: 32px;
  color: #fff;
}
.hero-text .deck {
  font-size: 17px;
  line-height: 1.55;
  color: #c4d2e2;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-image {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,28,44,0.85) 0%, rgba(5,28,44,0.15) 38%, rgba(5,28,44,0) 65%),
    linear-gradient(180deg, rgba(5,28,44,0) 55%, rgba(5,28,44,0.35) 100%);
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.arrow.ghost {
  color: #c4d2e2;
  border-color: rgba(196,210,226,0.35);
}
.arrow.ghost:hover { color: #fff; border-color: #fff; }

/* Premium homepage */
.home-hero {
  position: relative;
  color: #fff;
  min-height: calc(100vh - 120px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.home-hero::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5,28,44,0.96) 0%, rgba(5,28,44,0.76) 42%, rgba(5,28,44,0.2) 100%),
    linear-gradient(180deg, rgba(5,28,44,0.15) 0%, rgba(5,28,44,0.82) 100%);
}
.home-hero::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,28,44,0) 72%, rgba(5,28,44,0.92) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 92px);
  opacity: 0.85;
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 850px);
  align-items: center;
  padding-top: 104px;
  padding-bottom: 82px;
  width: 100%;
}
.home-hero-copy {
  max-width: 850px;
  animation: home-hero-rise 0.9s var(--ease) both;
}
.home-hero .eyebrow {
  color: var(--blue-light);
  margin-bottom: 22px;
}
.home-hero h1 {
  font-size: 72px;
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 28px;
}
.home-hero .deck {
  max-width: 650px;
  color: #d6e2f2;
  font-size: 19px;
  line-height: 1.58;
  margin-bottom: 36px;
}
.home-hero-actions,
.home-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.home-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  transition: transform 0.22s var(--ease), background 0.22s var(--ease), border-color 0.22s var(--ease), color 0.22s var(--ease);
}
.home-btn:hover {
  transform: translateY(-2px);
}
.home-btn:focus-visible,
.home-gateway-card:focus-visible,
.home-capability-card:focus-visible,
.home-industry-tile:focus-visible,
.home-knowledge-card:focus-visible,
.home-tool-card:focus-visible,
.home-office-card:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 3px;
}
.home-btn.primary {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.home-btn.primary:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
}
.home-btn.secondary {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.home-btn.secondary:hover {
  background: rgba(255,255,255,0.16);
  border-color: #fff;
}
.home-btn.secondary.light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.home-hero-panel {
  padding: 28px;
  border: 1px solid rgba(175,200,255,0.28);
  border-radius: 8px;
  background: rgba(5,28,44,0.66);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}
.home-panel-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.home-hero-panel h2 {
  color: #fff;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 300;
  letter-spacing: 0;
  margin-bottom: 24px;
}
.home-hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.home-metric {
  display: block;
  padding: 16px;
  min-height: 106px;
  border: 1px solid rgba(175,200,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  transition: transform 0.22s var(--ease), background 0.22s var(--ease), border-color 0.22s var(--ease);
}
.home-metric:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(175,200,255,0.45);
}
.home-metric strong {
  display: block;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 10px;
}
.home-metric span {
  display: block;
  color: #c8d8eb;
  font-size: 12px;
  line-height: 1.35;
}

/* Cinematic video homepage hero */
/* ---------- Featured insight hero (carousel) ---------- */
.home-feature-hero {
  position: relative;
  background: var(--navy);
  isolation: isolate;
  color: #fff;
  overflow: hidden;
}
.feature-hero-stage {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 600px;
  max-height: 840px;
  overflow: hidden;
  background: var(--navy);
}
.feature-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.feature-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s var(--ease), transform 8s linear;
  will-change: opacity, transform;
}
.feature-slide-bg.is-active {
  opacity: 1;
  transform: scale(1);
}
.home-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,28,44,0.96) 0%, rgba(5,28,44,0.76) 42%, rgba(5,28,44,0.2) 100%),
    linear-gradient(180deg, rgba(5,28,44,0.12) 0%, rgba(5,28,44,0.84) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 92px);
  opacity: 1;
}
.feature-hero-copy {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: home-hero-rise 0.9s var(--ease) both;
}
.feature-hero-track {
  position: relative;
  width: 100%;
  max-width: 900px;
  min-height: 400px;
}
.feature-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), visibility 0.6s;
  pointer-events: none;
}
.feature-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.feature-slide .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 20px;
}
.feature-slide h1 {
  font-size: 60px;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 22px;
  max-width: 860px;
}
.feature-slide h1 a { color: inherit; }
.feature-slide h1 a:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}
.feature-slide .deck {
  max-width: 600px;
  color: #d6e2f2;
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 28px;
}
.feature-read {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #fff;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--blue);
  transition: color 0.2s var(--ease);
}
.feature-read span { transition: transform 0.2s var(--ease); }
.feature-read:hover { color: var(--blue-light); }
.feature-read:hover span { transform: translateX(4px); }

.feature-hero-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
}
.feature-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.feature-arrow:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
}
.feature-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-dot {
  width: 38px;
  height: 3px;
  background: rgba(255,255,255,0.28);
  border-radius: 2px;
  transition: background 0.3s var(--ease);
}
.feature-dot.is-active { background: var(--blue); }
.feature-dot:hover { background: rgba(255,255,255,0.55); }

/* ---------- Home — Our latest thinking strip ---------- */
.home-latest { padding-top: 88px; }
.home-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.home-latest-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.home-latest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(5,28,44,0.12);
}
.home-latest-image {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.home-latest-body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-latest-body .cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.home-latest-body h3 {
  font-size: 22px;
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -0.2px;
  margin-bottom: 12px;
}
.home-latest-body p {
  color: var(--grey-2);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.home-latest-body .more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}
.home-latest-body .more span { transition: transform 0.2s var(--ease); }
.home-latest-card:hover .more span { transform: translateX(4px); }
.home-section {
  padding: 112px 0;
  scroll-margin-top: 92px;
}
.home-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}
.home-section-head .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.home-section-head h2 {
  font-size: 48px;
  line-height: 1.06;
  font-weight: 300;
  letter-spacing: 0;
  max-width: 860px;
}
.home-section-head p {
  color: var(--grey-2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 560px;
}
.home-section-head .all {
  justify-self: end;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
}
.home-section-head .all:hover {
  color: var(--blue-dark);
}
.home-section-head .all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.home-section-head .all::after {
  content: "\2192";
  transition: transform 0.2s var(--ease);
}
.home-section-head .all:hover::after {
  transform: translateX(3px);
}

.home-editorial-entry {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 56px;
  align-items: stretch;
}
.home-editorial-lead {
  display: grid;
  grid-template-columns: minmax(240px, 0.92fr) minmax(280px, 1fr);
  color: inherit;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 420px;
}
.home-editorial-image,
.home-knowledge-feature-image,
.home-tool-side-image,
.home-capability-visual {
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.home-editorial-copy {
  padding: 42px 0 42px 46px;
  align-self: end;
}
.home-editorial-copy span,
.home-knowledge-feature span,
.home-tool-side span,
.home-network-panel span {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.home-editorial-copy h3,
.home-knowledge-feature h3,
.home-tool-feature h3,
.home-tool-side h3,
.home-network-panel h3 {
  color: var(--ink);
  font-size: 34px;
  line-height: 1.12;
  font-weight: 300;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.home-editorial-copy p,
.home-editorial-link p,
.home-capability-row p,
.home-sector-directory p,
.home-knowledge-feature p,
.home-knowledge-list p,
.home-tool-feature p,
.home-tool-side p,
.home-network-panel p {
  color: var(--grey-2);
  font-size: 15px;
  line-height: 1.62;
}
.home-editorial-links {
  border-top: 1px solid var(--line);
}
.home-editorial-link {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px 24px;
  color: inherit;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.home-editorial-link span,
.home-capability-row span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
}
.home-editorial-link h3 {
  color: var(--ink);
  font-size: 25px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
}
.home-editorial-link p {
  grid-column: 2;
}
.home-editorial-link:hover h3,
.home-capability-row:hover strong,
.home-sector-directory a:hover span,
.home-knowledge-list a:hover span,
.home-footprint-list a:hover strong {
  color: var(--blue);
}
.home-capability-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 64px;
  align-items: stretch;
}
.home-capability-index {
  border-top: 1px solid var(--line);
}
.home-capability-row {
  display: grid;
  grid-template-columns: 52px minmax(180px, 0.42fr) 1fr;
  gap: 24px;
  align-items: start;
  color: inherit;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.home-capability-row strong {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
  transition: color 0.18s var(--ease);
}
.home-capability-visual {
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
.home-capability-visual::after,
.home-knowledge-feature-image::after,
.home-tool-side-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,28,44,0.02), rgba(5,28,44,0.36));
}
.home-sector-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.home-sector-directory a {
  color: inherit;
  min-height: 170px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.home-sector-directory span {
  display: block;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 400;
  margin-bottom: 16px;
  transition: color 0.18s var(--ease);
}
.home-sector-directory a:hover {
  background: #f9fbff;
}
.home-knowledge-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
}
.home-knowledge-feature {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  min-height: 430px;
  color: #fff;
  border-top: 1px solid rgba(175,200,255,0.24);
  border-bottom: 1px solid rgba(175,200,255,0.24);
}
.home-knowledge-feature-image {
  position: relative;
  min-height: 320px;
}
.home-knowledge-feature > div:last-child {
  align-self: end;
  padding: 40px 0 40px 40px;
}
.home-knowledge-feature span,
.home-knowledge-list span {
  color: var(--blue-light);
}
.home-knowledge-feature h3,
.home-knowledge-list span {
  color: #fff;
}
.home-knowledge-feature p,
.home-knowledge-list p {
  color: #c4d2e2;
}
.home-knowledge-list {
  border-top: 1px solid rgba(175,200,255,0.24);
}
.home-knowledge-list a {
  display: block;
  color: inherit;
  padding: 30px 0;
  border-bottom: 1px solid rgba(175,200,255,0.24);
}
.home-knowledge-list span {
  display: block;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 12px;
  transition: color 0.18s var(--ease);
}
.home-tool-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 32px;
}
.home-tool-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr);
  min-height: 430px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, #092f54 100%);
  border: 1px solid var(--line-dark);
  overflow: hidden;
}
.home-tool-feature .home-tool-copy {
  padding: 44px;
  align-self: end;
}
.home-tool-feature .tag {
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.home-tool-feature h3,
.home-tool-feature p {
  color: #fff;
}
.home-tool-feature p {
  color: #d6e2f2;
}
.home-tool-feature .home-ai-demo {
  margin: 28px 28px 28px 0;
}
.home-tool-side {
  display: block;
  color: inherit;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.home-tool-side-image {
  position: relative;
  min-height: 230px;
  margin-bottom: 32px;
}
.home-network-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 56px;
}
.home-network-panel {
  display: block;
  color: #fff;
  min-height: 430px;
  padding: 42px;
  background:
    linear-gradient(180deg, rgba(5,28,44,0.12), rgba(5,28,44,0.88)),
    url("assets/images/editorial/international-development-network.webp") center/cover;
}
.home-network-panel span {
  color: var(--blue-light);
}
.home-network-panel h3 {
  color: #fff;
  max-width: 760px;
}
.home-network-panel p {
  color: #d6e2f2;
  max-width: 620px;
}
.home-footprint-list {
  border-top: 1px solid var(--line);
}
.home-footprint-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  color: inherit;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.home-footprint-list strong {
  color: var(--ink);
  font-size: 25px;
  line-height: 1.15;
  font-weight: 400;
  transition: color 0.18s var(--ease);
}
.home-footprint-list span {
  color: var(--grey-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-align: right;
}

.home-gateway-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.home-gateway-card,
.home-capability-card,
.home-industry-tile,
.home-knowledge-card,
.home-office-card {
  display: block;
  color: inherit;
  border-radius: 8px;
  transition: transform 0.24s var(--ease), border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), background 0.24s var(--ease);
}
.home-gateway-card {
  min-height: 236px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  position: relative;
  overflow: hidden;
}
.home-gateway-card::before,
.home-capability-card::before,
.home-industry-tile::before,
.home-office-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  background: var(--blue);
  transition: width 0.28s var(--ease);
}
.home-gateway-card:hover,
.home-capability-card:hover,
.home-industry-tile:hover,
.home-office-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-light);
  box-shadow: 0 20px 48px rgba(5,28,44,0.1);
}
.home-gateway-card:hover::before,
.home-capability-card:hover::before,
.home-industry-tile:hover::before,
.home-office-card:hover::before {
  width: 100%;
}
.home-gateway-card span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 22px;
}
.home-card-image {
  height: 132px;
  margin: -28px -28px 24px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}
.home-gateway-card h3,
.home-capability-card h3,
.home-knowledge-card h3,
.home-tool-card h3 {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.home-gateway-card p,
.home-capability-card p,
.home-industry-tile p,
.home-knowledge-card p,
.home-tool-card p,
.home-office-card p {
  color: var(--grey-2);
  font-size: 14px;
  line-height: 1.6;
}
.home-capability-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
.home-capability-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 116px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,81,255,0.42), transparent);
  transform-origin: left;
  animation: home-path-draw 2.4s var(--ease) both;
}
.home-capability-card {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.home-capability-card .ph {
  height: 188px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.home-capability-card .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,28,44,0) 40%, rgba(5,28,44,0.28) 100%);
  opacity: 0.72;
}
.home-capability-card .tag {
  display: block;
  padding: 24px 22px 0;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.home-capability-card h3 {
  padding: 0 22px;
  margin-top: 10px;
}
.home-capability-card p {
  padding: 0 22px 26px;
}
.home-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.home-industry-tile {
  position: relative;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.home-industry-tile::after,
.home-office-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,28,44,0.22) 0%, rgba(5,28,44,0.9) 100%);
  pointer-events: none;
  transition: opacity 0.24s var(--ease);
}
.home-industry-tile:hover::after,
.home-office-card:hover::after {
  opacity: 0.82;
}
.home-industry-tile span {
  position: relative;
  z-index: 2;
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
  padding-top: 78px;
}
.home-industry-tile:hover span {
  color: #fff;
}
.home-industry-tile p {
  position: relative;
  z-index: 2;
  color: #dce8f5;
}
.home-knowledge {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.home-knowledge::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(34,81,255,0.18) 0%, transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 55%);
  pointer-events: none;
}
.home-knowledge .wrap {
  position: relative;
  z-index: 2;
}
.home-knowledge .home-section-head {
  border-top-color: var(--line-dark);
}
.home-knowledge .home-section-head .label {
  color: var(--blue-light);
}
.home-knowledge .home-section-head h2,
.home-knowledge .home-knowledge-card h3 {
  color: #fff;
}
.home-knowledge .home-section-head p,
.home-knowledge .home-knowledge-card p {
  color: #c4d2e2;
}
.home-knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.home-knowledge-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(175,200,255,0.22);
  background: rgba(255,255,255,0.055);
}
.home-knowledge-card:hover {
  transform: translateY(-4px);
  border-color: rgba(175,200,255,0.48);
  background: rgba(255,255,255,0.085);
}
.home-knowledge-card span {
  display: block;
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 54px;
}
.home-tools-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 24px;
}
.home-tool-card {
  display: grid;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), border-color 0.24s var(--ease);
}
.home-tool-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-light);
  box-shadow: 0 24px 56px rgba(5,28,44,0.12);
}
.home-ai-tool {
  grid-template-columns: 0.9fr 1fr;
  min-height: 390px;
  background: linear-gradient(135deg, var(--navy) 0%, #092f54 100%);
  color: #fff;
  align-items: center;
}
.home-ai-tool .home-tool-copy {
  padding: 42px;
}
.home-ai-tool h3,
.home-ai-tool p {
  color: #fff;
}
.home-ai-tool p {
  color: #d6e2f2;
}
.home-tool-card .tag {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.home-ai-tool .tag {
  color: var(--blue-light);
}
.home-brand-tool {
  grid-template-rows: 210px 1fr;
}
.home-brand-tool .home-tool-copy {
  padding: 30px;
}
.home-tool-visual {
  background-size: cover;
  background-position: center;
}
.home-ai-demo {
  position: relative;
  min-height: 304px;
  margin: 24px 24px 24px 0;
  border: 1px solid rgba(175,200,255,0.24);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(175,200,255,0.12), rgba(255,255,255,0.04)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 34px);
}
.home-ai-core {
  position: absolute;
  left: 28px;
  top: 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #ffffff 0%, #afc8ff 20%, #2251ff 54%, #061f39 100%);
  box-shadow: 0 0 42px rgba(34,81,255,0.7), inset 0 0 24px rgba(255,255,255,0.22);
  transform: translate(-50%, -50%);
  animation: home-ai-core 8s var(--ease) infinite;
}
.home-ai-panel {
  position: absolute;
  left: 52px;
  right: 24px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 1;
  transform: translateY(0);
}
.home-ai-message {
  max-width: 92%;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
  opacity: 1;
}
.home-ai-message.user {
  align-self: flex-end;
  background: rgba(34,81,255,0.82);
}
.home-ai-message.ai {
  align-self: flex-start;
  background: rgba(255,255,255,0.12);
}
.home-footprint-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.home-office-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.home-office-card strong {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 12px;
  color: #fff;
}
.home-office-card span {
  position: relative;
  z-index: 2;
  display: block;
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 82px;
}
.home-office-card p {
  position: relative;
  z-index: 2;
  color: #dce8f5;
}
.home-final-cta .wrap {
  display: grid;
  justify-items: center;
}
.home-final-cta .home-final-actions {
  justify-content: center;
}

@keyframes home-hero-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes home-path-draw {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}
@keyframes home-ai-core {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 34px rgba(34,81,255,0.62), inset 0 0 22px rgba(255,255,255,0.2); }
  50% { transform: translate(-50%, -50%) scale(1.08); box-shadow: 0 0 48px rgba(34,81,255,0.82), inset 0 0 28px rgba(255,255,255,0.28); }
}
@keyframes home-ai-panel {
  0%, 24% { opacity: 0; transform: translateY(18px); }
  38%, 82% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(18px); }
}
@keyframes home-ai-message {
  0%, 15% { opacity: 0; transform: translateY(10px); }
  28%, 78% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}
@keyframes text-cycle-in {
  from { opacity: 0; transform: translateY(-20px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes text-cycle-out {
  from { opacity: 1; transform: translateY(0); filter: blur(0); }
  to { opacity: 0; transform: translateY(20px); filter: blur(8px); }
}

/* Full-bleed hero (sub-pages) */
.hero-full {
  width: 100%;
  min-height: 540px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,28,44,0.3) 0%, rgba(5,28,44,0.85) 100%);
}
.hero-full .wrap { position: relative; padding-top: 100px; padding-bottom: 80px; width: 100%; }
.hero-full h1 {
  font-size: 72px;
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -2px;
  max-width: 1000px;
  margin-bottom: 24px;
  color: #fff;
}
.hero-full .deck { font-size: 18px; line-height: 1.55; color: #d6e0ee; max-width: 640px; }

/* Compact hero (about/contact/forms) */
.hero-compact {
  background: var(--navy);
  color: #fff;
  padding: 100px 0 80px;
}
.hero-compact h1 {
  font-size: 56px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1.4px;
  max-width: 900px;
  margin-bottom: 20px;
}
.hero-compact .deck { font-size: 17px; max-width: 640px; color: #c4d2e2; line-height: 1.6; }

/* Breadcrumb */
.breadcrumb {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 32px;
  font-weight: 500;
}
.breadcrumb a { color: var(--blue-light); transition: color 0.15s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 10px; opacity: 0.5; }

/* ===================================================================
   SECTION HEADER
   =================================================================== */
.sec-head {
  padding-top: 96px;
  padding-bottom: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.sec-head .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.sec-head h2 {
  font-size: 44px;
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -1.2px;
  max-width: 760px;
}
.sec-head .all {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  padding-bottom: 8px;
}
.sec-head .all::after { content: "→"; transition: transform 0.2s; }
.sec-head .all:hover::after { transform: translateX(6px); }

.dark-section .sec-head { border-bottom-color: var(--line-dark); }
.dark-section .sec-head .label { color: var(--blue-light); }
.dark-section .sec-head h2 { color: #fff; }
.dark-section .sec-head .all { color: var(--blue-light); }

/* ===================================================================
   CARDS
   =================================================================== */
.card { cursor: pointer; display: block; color: inherit; }
.card .ph {
  width: 100%;
  background-size: cover;
  background-position: center;
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
}
.card .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5,28,44,0);
  transition: background 0.3s;
}
.card:hover .ph::after { background: rgba(5,28,44,0.06); }
.card .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.card h3 {
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-bottom: 14px;
  transition: color 0.2s;
}
.card .deck {
  font-size: 15px;
  color: var(--grey-2);
  line-height: 1.55;
  margin-bottom: 14px;
  max-width: 620px;
}
.card .meta {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.2px;
}
.card:hover h3 { color: var(--blue); }

.card.lead .ph { height: 520px; margin-bottom: 28px; }
.card.lead h3 { font-size: 38px; font-weight: 300; letter-spacing: -1px; line-height: 1.1; }
.card.side .ph { height: 220px; margin-bottom: 18px; }
.card.side h3 { font-size: 22px; }
.card.med .ph { height: 280px; }
.card.med h3 { font-size: 22px; }

/* Grids */
.feat-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 48px;
  align-items: start;
}
.feat-side { display: flex; flex-direction: column; gap: 40px; }
.three-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.four-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

/* ===================================================================
   SPOTLIGHT (image + text split)
   =================================================================== */
.spotlight {
  padding: 110px 0;
}
.spotlight.cream { background: var(--bg-cream); }
.spotlight.mint { background: var(--bg-mint); }
.spotlight.soft { background: var(--bg-soft); }
.spotlight.dark { background: var(--navy); color: #fff; }
.spot-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.spot-grid.flip { grid-template-columns: 1fr 1.1fr; }
.spot-grid.flip .spot-img { order: 2; }
.spot-img {
  height: 520px;
  background-size: cover;
  background-position: center;
}
.spot-text .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}
.spotlight.dark .spot-text .label { color: var(--blue-light); }
.spot-text h2 {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin-bottom: 28px;
}
.spotlight.dark .spot-text h2 { color: #fff; }
.spot-text p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--grey-2);
  margin-bottom: 32px;
  max-width: 500px;
}
.spotlight.dark .spot-text p { color: #c4d2e2; }

/* ===================================================================
   DARK SECTION
   =================================================================== */
.dark-section {
  background: var(--navy);
  color: #fff;
  padding-bottom: 110px;
}
.dark-section.no-pad { padding-bottom: 0; }
.l-card {
  padding-top: 28px;
  border-top: 2px solid var(--blue);
  cursor: pointer;
}
.l-card .date {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue-light);
  margin-bottom: 18px;
}
.l-card h3 {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
  color: #fff;
  transition: color 0.2s;
}
.l-card:hover h3 { color: var(--blue-light); }
.l-card p { font-size: 14px; line-height: 1.6; color: #c4d2e2; }

/* ===================================================================
   SUBSCRIBE BAND
   =================================================================== */
.sub-band {
  background: var(--bg-soft);
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sub-grid h3 {
  font-size: 36px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.9px;
  margin-bottom: 12px;
}
.sub-grid p { font-size: 15px; color: var(--grey-2); }
.sub-form { display: flex; }
.sub-form input {
  flex: 1;
  padding: 18px 20px;
  font-size: 15px;
  border: 1px solid #cdd5dd;
  border-right: none;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}
.sub-form input:focus { border-color: var(--navy); }
.sub-form button {
  padding: 18px 32px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.15s;
}
.sub-form button:hover { background: var(--blue); }

/* ===================================================================
   BROWSE GRID (hairline industries grid)
   =================================================================== */
.browse-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.b-item {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 28px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  min-height: 96px;
  color: var(--ink);
}
.b-item::after {
  content: "→";
  color: var(--blue);
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
}
.b-item:hover { background: var(--bg-soft); color: var(--blue); }
.b-item:hover::after { opacity: 1; transform: translateX(4px); }

/* ===================================================================
   CAPABILITY / CARD GRIDS
   =================================================================== */
.c-card { cursor: pointer; }
.c-card .ph {
  height: 220px;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  transition: opacity 0.2s;
}
.c-card:hover .ph { opacity: 0.92; }
.c-card .tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.c-card h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.c-card:hover h4 { color: var(--blue); }
.c-card p { font-size: 14px; color: var(--grey-2); line-height: 1.55; }

/* Alternating capability rows */
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.alt-row:last-child { border-bottom: none; }
.alt-row.flip > .alt-img { order: 2; }
.alt-img {
  height: 460px;
  background-size: cover;
  background-position: center;
}
.alt-text .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.alt-text h2 {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 22px;
}
.alt-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-2);
  margin-bottom: 18px;
  max-width: 520px;
}

/* ===================================================================
   OFFICES / LOCATIONS
   =================================================================== */
.off-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.off {
  background: #fff;
  padding: 36px 30px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}
.off .city {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
.off .stat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.off p { font-size: 14px; color: var(--grey-2); line-height: 1.55; }

/* Office card with photo */
.office-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.office-card .photo {
  aspect-ratio: 1 / 1;
  height: auto;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.office-card .photo.poster {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050816;
}
.office-card .photo.poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.office-card .body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.office-card.text-only {
  min-height: 300px;
  border-top: 4px solid var(--blue);
}
.office-card.text-only .body { padding: 36px 30px; }
.office-card h4 { font-size: 26px; font-weight: 400; letter-spacing: -0.4px; margin-bottom: 6px; }
.office-card .stat {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 16px;
}
.office-card address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey-2);
  margin-bottom: 18px;
  flex: 1;
}

/* ===================================================================
   CTA BAND
   =================================================================== */
.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0 auto 24px;
  max-width: 860px;
  color: #fff;
}
.cta-band p {
  font-size: 17px;
  color: #c4d2e2;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.cta-band .arrow { margin: 0 auto; }

/* ===================================================================
   STATS ROW
   =================================================================== */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat .num {
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--navy);
  margin-bottom: 12px;
}
.stat .lbl {
  font-size: 13px;
  color: var(--grey-2);
  letter-spacing: 0.5px;
  line-height: 1.5;
}
.dark-section .stat .num { color: #fff; }
.dark-section .stat .lbl { color: var(--blue-light); }

/* ===================================================================
   TEAM GRID
   =================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-card .photo {
  height: 360px;
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
  background-color: var(--line-soft);
}
.team-card .name { font-size: 20px; font-weight: 400; letter-spacing: -0.3px; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--blue); letter-spacing: 0.3px; font-weight: 500; }
.team-card .bio { font-size: 13px; color: var(--grey-2); line-height: 1.6; margin-top: 10px; }

/* ===================================================================
   TIMELINE
   =================================================================== */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}
.tl-item {
  position: relative;
  padding-bottom: 40px;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px #fff;
}
.tl-item .year {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 8px;
}
.tl-item h4 { font-size: 22px; font-weight: 400; letter-spacing: -0.3px; margin-bottom: 6px; }
.tl-item p { font-size: 14px; color: var(--grey-2); line-height: 1.6; max-width: 580px; }

/* ===================================================================
   VALUES / FEATURES (icon grid)
   =================================================================== */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.value .ico {
  width: 48px; height: 48px;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.value h4 { font-size: 20px; font-weight: 400; letter-spacing: -0.3px; margin-bottom: 10px; }
.value p { font-size: 14px; color: var(--grey-2); line-height: 1.6; }

/* ===================================================================
   FAQ ACCORDION
   =================================================================== */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  padding: 28px 0;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.2px;
  color: var(--ink);
  transition: color 0.15s;
}
.faq-q:hover { color: var(--blue); }
.faq-q .plus {
  font-size: 22px;
  font-weight: 300;
  color: var(--blue);
  transition: transform 0.25s;
  line-height: 1;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a p {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--grey-2);
  max-width: 760px;
}

/* ===================================================================
   FORMS
   =================================================================== */
.form-stack { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 600;
}
.field input,
.field textarea,
.field select {
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid var(--line);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--navy); }
.field textarea { min-height: 140px; resize: vertical; }
.country-field { position: relative; }
.country-field.is-enhanced .country-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.country-combo { position: relative; }
.country-trigger {
  width: 100%;
  min-height: 48px;
  padding: 13px 42px 13px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
}
.country-trigger::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--grey-2);
  border-bottom: 1px solid var(--grey-2);
  transform: translateY(-65%) rotate(45deg);
}
.country-trigger:focus,
.country-search:focus { border-color: var(--navy); outline: none; }
.country-flag {
  flex: 0 0 auto;
  width: 24px;
  height: 18px;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #f6f8fb;
}
.country-panel {
  position: absolute;
  z-index: 50;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(16, 32, 56, 0.16);
}
.country-search {
  width: calc(100% - 24px);
  margin: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  font: inherit;
  font-size: 14px;
}
.country-list {
  list-style: none;
  max-height: 260px;
  overflow: auto;
  padding: 6px;
  margin: 0;
}
.country-option,
.country-empty {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--ink);
}
.country-option { cursor: pointer; }
.country-option:hover,
.country-option.is-active,
.country-option[aria-selected="true"] { background: var(--bg-soft); }
.country-empty { color: var(--grey-2); }
.submit-btn {
  padding: 18px 36px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.15s;
  align-self: flex-start;
}
.submit-btn:hover { background: var(--blue); }

/* Consultant Network */
.network-kicker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.network-kicker {
  background: #fff;
  padding: 26px;
}
.network-kicker span,
.network-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.network-kicker h3 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}
.network-kicker p,
.network-note {
  font-size: 14px;
  line-height: 1.65;
  color: var(--grey-2);
}
.network-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.network-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
}
.network-model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.network-image-panel {
  min-height: 420px;
  background-size: cover;
  background-position: center;
}
.network-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.network-choice-group {
  border: 0;
  padding: 0;
  margin: 0;
}
.network-choice-group legend {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 600;
  margin-bottom: 10px;
}
.network-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.network-choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}
.network-choice input {
  margin-top: 2px;
  accent-color: var(--blue);
}
.network-choice:has(input:focus-visible) {
  border-color: var(--navy);
  box-shadow: 0 0 0 2px rgba(34, 81, 255, 0.14);
}
.network-success {
  border: 1px solid rgba(34, 81, 255, 0.26);
  background: rgba(34, 81, 255, 0.07);
  color: var(--navy);
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .network-kicker-grid,
  .network-split,
  .network-form-grid,
  .network-process,
  .network-model-grid {
    grid-template-columns: 1fr;
  }
  .network-image-panel { min-height: 300px; }
}

@media (max-width: 600px) {
  .network-choice-grid { grid-template-columns: 1fr; }
}

/* ===================================================================
   ARTICLE BODY (long-form)
   =================================================================== */
.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 0;
  font-size: 18px;
  line-height: 1.7;
  color: #1a2937;
}
.article-body > p:first-of-type::first-letter {
  font-size: 80px;
  font-weight: 300;
  float: left;
  line-height: 0.9;
  margin: 8px 12px 0 0;
  color: var(--navy);
}
.article-body p { margin-bottom: 24px; }
.article-body h2 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.6px;
  margin: 56px 0 20px;
  line-height: 1.15;
}
.article-body h3 {
  font-size: 22px;
  font-weight: 500;
  margin: 40px 0 14px;
  line-height: 1.25;
}
.article-body blockquote {
  border-left: 3px solid var(--blue);
  padding: 8px 0 8px 28px;
  margin: 36px 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4;
  color: var(--navy);
  letter-spacing: -0.4px;
}
.article-body figure { margin: 40px 0; }
.article-body figure img { width: 100%; }
.article-body figure figcaption {
  font-size: 13px;
  color: var(--grey);
  margin-top: 10px;
  font-style: italic;
}
.article-body ul, .article-body ol { margin: 0 0 24px 24px; }
.article-body li { margin-bottom: 8px; }
.callout {
  background: var(--bg-cream);
  padding: 32px 36px;
  margin: 40px 0;
  border-left: 4px solid var(--blue);
}
.callout p:first-child { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }

/* Author */
.author-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 48px 0;
}
.author-card .avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--line-soft);
}
.author-card .name { font-size: 16px; font-weight: 500; margin-bottom: 2px; }
.author-card .role { font-size: 13px; color: var(--grey-2); }

/* ===================================================================
   MARQUEE (continuous ticker)
   =================================================================== */
.marquee {
  overflow: hidden;
  padding: 56px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-size: 24px;
  font-weight: 300;
  color: var(--grey-2);
  letter-spacing: -0.2px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 80px;
}
.marquee-item::after {
  content: "•";
  color: var(--blue);
  font-size: 14px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===================================================================
   PROCESS STEPS
   =================================================================== */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.step .num {
  font-size: 64px;
  font-weight: 300;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.step h4 { font-size: 22px; font-weight: 400; letter-spacing: -0.3px; margin-bottom: 10px; }
.step p { font-size: 15px; line-height: 1.6; color: var(--grey-2); max-width: 320px; }

/* Expert Inside Playbook (capabilities page) */
.playbook-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin: 8px 0 64px;
}
.playbook-intro .lead {
  font-size: 24px; font-weight: 300; line-height: 1.4; letter-spacing: -0.4px; color: var(--ink);
}
.playbook-situation {
  background: var(--navy); color: #fff; border-radius: 8px; padding: 36px 38px;
}
.playbook-situation .tag { color: var(--blue-light); }
.playbook-situation h3 { font-size: 21px; font-weight: 400; letter-spacing: -0.3px; margin: 12px 0 14px; color: #fff; }
.playbook-situation p { font-size: 15px; line-height: 1.65; color: #c4d2e2; margin: 0; }
.playbook-process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 36px; }
.playbook-process .num { font-size: 48px; margin-bottom: 12px; }
.playbook-process .step p { max-width: none; font-size: 14px; }
.playbook-cap {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
}
.playbook-outcome {
  margin-top: 56px; border-top: 1px solid var(--line); padding-top: 36px;
  display: flex; gap: 48px; flex-wrap: wrap;
}
.playbook-outcome .po { flex: 1; min-width: 180px; }
.playbook-outcome .po .big { font-size: 44px; font-weight: 300; letter-spacing: -1.5px; color: var(--blue); line-height: 1; }
.playbook-outcome .po .lbl { font-size: 13px; color: var(--grey-2); line-height: 1.5; margin-top: 10px; }
@media (max-width: 1100px) {
  .playbook-intro { grid-template-columns: 1fr; gap: 32px; }
  .playbook-process { grid-template-columns: repeat(2, 1fr); gap: 32px 40px; }
}
@media (max-width: 640px) {
  .playbook-process { grid-template-columns: 1fr; }
}

/* Podcast page */
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.spotify-mark { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.spotify-mark svg { width: 26px; height: 26px; }
.spotify-mark span { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #1ed760; }
.podcast-grid h2 { font-size: 40px; font-weight: 300; letter-spacing: -1px; line-height: 1.08; margin-bottom: 20px; }
.podcast-grid p { font-size: 17px; line-height: 1.6; color: #c4d2e2; margin-bottom: 18px; }
.spotify-embed {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  min-height: 352px;
}
.spotify-embed iframe { display: block; border: 0; width: 100%; }
.btn-spotify {
  display: inline-flex; align-items: center; gap: 10px;
  background: #1DB954; color: #fff; padding: 14px 28px; border-radius: 500px;
  font-size: 15px; font-weight: 600; text-decoration: none; margin-top: 8px;
  transition: background 0.18s, transform 0.18s;
}
.btn-spotify svg { width: 20px; height: 20px; }
.btn-spotify:hover { background: #1ed760; transform: translateY(-1px); }
@media (max-width: 900px) {
  .podcast-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Industry / capability service cards */
.service-card {
  display: block; text-decoration: none; color: inherit;
  border: 1px solid var(--line); border-radius: 10px; padding: 26px 24px;
  background: #fff; position: relative; overflow: hidden;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--blue); transition: width .28s var(--ease);
}
.service-card:hover {
  transform: translateY(-3px); border-color: var(--blue-light);
  box-shadow: 0 18px 40px rgba(5,28,44,0.10);
}
.service-card:hover::before { width: 100%; }
.service-card .tag { color: var(--blue); }
.service-card h3 { font-size: 18px; font-weight: 500; letter-spacing: -0.2px; margin: 12px 0 10px; color: var(--ink); }
.service-card h3:after { content: none; }
.service-card p { font-size: 13px; color: var(--grey-2); line-height: 1.6; margin: 0; }

/* Related-industry gradient cards: gentle lift */
.card .ph[style*="linear-gradient"] { transition: filter .25s var(--ease); }
.card:hover .ph[style*="linear-gradient"] { filter: brightness(1.12) saturate(1.08); }

/* Sector cards (industries index) */
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sector-card {
  display: block; text-decoration: none; color: inherit; background: #fff;
  border: 1px solid var(--line); border-radius: 10px; padding: 28px 26px;
  position: relative; overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.sector-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: var(--blue); transition: width .28s var(--ease);
}
.sector-card:hover { transform: translateY(-3px); border-color: var(--blue-light); box-shadow: 0 18px 40px rgba(5,28,44,0.10); }
.sector-card:hover::before { width: 100%; }
.sector-card h3 { font-size: 19px; font-weight: 500; letter-spacing: -0.3px; margin: 0 0 8px; color: var(--ink); }
.sector-card:hover h3 { color: var(--blue); }
.sector-card p { font-size: 13.5px; color: var(--grey-2); line-height: 1.55; margin: 0; }
@media (max-width: 900px) { .sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sector-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   PRICING
   =================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  border: 1px solid var(--line);
  padding: 40px 32px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.price-card.featured { border-color: var(--navy); background: var(--navy); color: #fff; }
.price-card .tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.price-card.featured .tier { color: var(--blue-light); }
.price-card .amt {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -1.2px;
  line-height: 1;
  margin-bottom: 6px;
}
.price-card .per { font-size: 13px; color: var(--grey-2); margin-bottom: 28px; }
.price-card.featured .per { color: var(--blue-light); }
.price-card ul { list-style: none; margin-bottom: 28px; }
.price-card li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-card.featured li { border-bottom-color: var(--line-dark); }
.price-card li::before { content: "✓"; color: var(--blue); font-weight: 600; }
.price-card.featured li::before { color: var(--blue-light); }
.price-card .price-cta {
  padding: 14px 24px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  margin-top: auto;
  transition: background 0.15s;
}
.price-card.featured .price-cta { background: var(--blue); }
.price-card .price-cta:hover { background: var(--blue); }
.price-card.featured .price-cta:hover { background: #fff; color: var(--navy); }

/* ===================================================================
   FILTER CHIPS
   =================================================================== */
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.chip {
  padding: 10px 20px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
  color: var(--ink);
}
.chip:hover { border-color: var(--navy); }
.chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ===================================================================
   AI HELPER DEMO (Development AI hero animation)
   =================================================================== */
.ai-helper-demo {
  width: min(430px, 100%);
  min-height: 390px;
  position: relative;
  display: grid;
  place-items: center;
  margin: 0 auto;
}
.ai-helper-demo.compact {
  width: min(380px, 100%);
  min-height: 330px;
  margin-bottom: 44px;
}
.ai-helper-orb {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fff 0 4%, #78d4ff 12%, rgba(34,81,255,0.95) 46%, #071f42 78%),
    linear-gradient(135deg, rgba(255,255,255,0.45), rgba(255,255,255,0));
  box-shadow: 0 0 70px rgba(34,81,255,0.55), inset 0 0 50px rgba(255,255,255,0.18);
  animation: helper-orb-transform 9s ease-in-out infinite;
}
.ai-helper-orb::before,
.ai-helper-orb::after {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(175,200,255,0.38);
  animation: helper-ring 6s linear infinite;
}
.ai-helper-orb::after {
  inset: -44px;
  border-color: rgba(175,200,255,0.18);
  animation-duration: 9s;
  animation-direction: reverse;
}
.ai-helper-panel {
  width: 100%;
  border: 1px solid rgba(175,200,255,0.34);
  background: linear-gradient(145deg, rgba(7,25,52,0.92), rgba(12,47,82,0.9));
  box-shadow: 0 30px 90px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
  color: #fff;
  overflow: hidden;
  opacity: 0;
  transform: translateY(22px) scale(0.84);
  animation: helper-panel-reveal 9s ease-in-out infinite;
}
.ai-helper-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(175,200,255,0.16);
  font-size: 13px;
  letter-spacing: 0.4px;
  color: #dbe8ff;
}
.ai-helper-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #62d8ff;
  box-shadow: 0 0 18px rgba(98,216,255,0.8);
}
.ai-helper-thread {
  padding: 18px;
  display: grid;
  gap: 14px;
}
.ai-helper-bubble {
  width: fit-content;
  max-width: 88%;
  padding: 13px 15px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.45;
  overflow: hidden;
}
.ai-helper-bubble span {
  display: inline-block;
  white-space: normal;
  clip-path: inset(0 100% 0 0);
}
.ai-helper-bubble.user {
  justify-self: end;
  background: rgba(70,135,255,0.2);
  border: 1px solid rgba(116,165,255,0.34);
  opacity: 0;
  transform: translateY(10px);
  animation: helper-user-bubble 9s ease-in-out infinite;
}
.ai-helper-bubble.user span { animation: helper-type-user 9s steps(42, end) infinite; }
.ai-helper-bubble.ai {
  justify-self: start;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #d8e6f7;
  opacity: 0;
  transform: translateY(10px);
  animation: helper-ai-bubble 9s ease-in-out infinite;
}
.ai-helper-bubble.ai span { animation: helper-type-ai 9s steps(96, end) infinite; }
@keyframes helper-orb-transform {
  0%, 18% { opacity: 1; transform: translateY(0) scale(1); }
  32%, 76% { opacity: 0; transform: translateY(-28px) scale(0.28); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes helper-panel-reveal {
  0%, 20% { opacity: 0; transform: translateY(22px) scale(0.84); }
  34%, 82% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(16px) scale(0.92); }
}
@keyframes helper-user-bubble {
  0%, 36% { opacity: 0; transform: translateY(10px); }
  44%, 82% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8px); }
}
@keyframes helper-ai-bubble {
  0%, 50% { opacity: 0; transform: translateY(10px); }
  60%, 82% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8px); }
}
@keyframes helper-type-user {
  0%, 43% { clip-path: inset(0 100% 0 0); }
  53%, 82% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 100% 0 0); }
}
@keyframes helper-type-ai {
  0%, 59% { clip-path: inset(0 100% 0 0); }
  73%, 82% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 100% 0 0); }
}
@keyframes helper-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===================================================================
   WORLD MAP
   =================================================================== */
.map-wrap {
  position: relative;
  background: var(--bg-soft);
  padding: 60px;
  border: 1px solid var(--line);
}
.map-wrap svg { width: 100%; height: auto; display: block; }
.map-pin {
  position: absolute;
  width: 16px; height: 16px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34,81,255,0.2);
  animation: pin-pulse 2s ease-out infinite;
}
@keyframes pin-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,81,255,0.5); }
  100% { box-shadow: 0 0 0 14px rgba(34,81,255,0); }
}

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 72px 0 32px;
}
.f-top { margin-bottom: 56px; }
.f-top .brand-mark {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.4px;
  margin-bottom: 20px;
  color: #fff;
}
.f-top .brand-mark .and { font-weight: 300; font-style: italic; }
.f-top .brand-mark.brand-logo-footer {
  line-height: 0;
  margin-bottom: 20px;
}
@media (min-width: 1101px) {
  .stat-row.about-stats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
  }
}
.brand-story-panel {
  min-height: 520px;
  padding: clamp(40px, 6vw, 88px);
  background: #004c97;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-story-panel img {
  width: min(100%, 520px);
  height: auto;
}
.brand-logo-footer img {
  display: block;
  width: auto;
  height: 64px;
  max-width: 100%;
}
.f-top p {
  font-size: 15px;
  color: #c4d2e2;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 28px;
}
.f-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.f-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 20px;
}
.f-col ul { list-style: none; font-size: 14px; }
.f-col li { margin-bottom: 12px; }
.f-col a { color: #d8e1ec; transition: color 0.15s; }
.f-col a:hover { color: #fff; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #2c4660;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background 0.15s, border-color 0.15s;
  color: #fff;
}
.socials a:hover { background: var(--blue); border-color: var(--blue); }
.f-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--grey-3);
}
.f-bottom .links { display: flex; gap: 24px; flex-wrap: wrap; }
.f-bottom a:hover { color: #fff; }

/* ===================================================================
   ANIMATION UTILITIES
   =================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right.in { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s var(--ease), transform 1.6s var(--ease);
}
.reveal-scale.in { opacity: 1; transform: scale(1); }

.word { display: inline-block; opacity: 0; transform: translateY(40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.word.in { opacity: 1; transform: translateY(0); }

.tilt-card { transition: transform 0.4s var(--ease); transform-style: preserve-3d; }

.cursor-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,81,255,0.18) 0%, transparent 60%);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* ===================================================================
   UTILITIES
   =================================================================== */
.text-center { text-align: center; }
.pad-section { padding: 100px 0; }
.pad-section-sm { padding: 60px 0; }
.no-border { border: none !important; }
.bg-soft { background: var(--bg-soft); }
.bg-cream { background: var(--bg-cream); }
.bg-mint { background: var(--bg-mint); }
.divider { height: 1px; background: var(--line); margin: 0; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1100px) {
  .mega-feature { max-width: calc(100vw - 48px); }
  .mega-shell { grid-template-columns: minmax(0, 1fr) 280px; }
  .mega-links { padding: 28px 30px 26px; }
  .mega-exclusive-copy { padding: 26px; }
  .mega-exclusive-copy strong { font-size: 22px; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-image { min-height: 360px; order: -1; }
  .hero-text { padding: 80px var(--pad); }
  .feat-grid, .spot-grid, .spot-grid.flip, .three-grid, .four-grid,
  .sub-grid, .browse-grid, .off-grid, .team-grid, .value-grid,
  .process, .price-grid, .stat-row, .f-grid, .alt-row, .alt-row.flip {
    grid-template-columns: 1fr 1fr;
  }
  .alt-row.flip > .alt-img { order: -1; }
  .hero-text h1 { font-size: 52px; }
  .hero-full h1 { font-size: 52px; }
  .hero-compact h1 { font-size: 42px; }
  .sec-head h2 { font-size: 34px; }
  .card.lead .ph { height: 380px; }
  .card.lead h3 { font-size: 30px; }
  .cta-band h2 { font-size: 38px; }
}

@media (max-width: 700px) {
  :root { --pad: 20px; }
  .site-header { padding: 0 20px; height: 64px; }
  .primary-nav, .signin { display: none; }
  .mobile-toggle { display: inline-flex; }
  .brand { font-size: 18px; margin-right: 0; }
  .brand.brand-logo { height: 46px; }
  .brand-logo img { height: 39px; }
  .site-header.shrink .brand-logo img { height: 34px; }
  .brand-story-panel { min-height: 300px; padding: 44px 30px; }
  .brand-logo-footer img { height: 54px; }
  .feat-grid, .spot-grid, .spot-grid.flip, .three-grid, .four-grid,
  .sub-grid, .browse-grid, .off-grid, .team-grid, .value-grid,
  .process, .price-grid, .stat-row, .f-grid, .alt-row, .alt-row.flip {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-text h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-full h1, .hero-compact h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-text { padding: 60px 20px; }
  .ai-helper-demo { min-height: 330px; }
  .ai-helper-demo.compact { min-height: 300px; }
  .ai-helper-orb { width: 170px; height: 170px; }
  .ai-helper-bubble { max-width: 94%; font-size: 13px; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 16px; padding-top: 64px; padding-bottom: 32px; margin-bottom: 36px; }
  .sec-head h2 { font-size: 28px; letter-spacing: -0.6px; }
  .card.lead .ph { height: 280px; }
  .card.lead h3 { font-size: 26px; }
  .spot-img { height: 280px; }
  .spot-text h2 { font-size: 30px; }
  .cta-band h2 { font-size: 30px; }
  .cta-band { padding: 64px 0; }
  .article-body { padding: 40px 0; font-size: 16px; }
  .article-body > p:first-of-type::first-letter { font-size: 56px; }
  .stat .num { font-size: 44px; }
  .alt-row { padding: 50px 0; }
  .alt-text h2 { font-size: 30px; }
  .pad-section { padding: 60px 0; }
}

@media (max-width: 1180px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
  }
  .home-hero-panel {
    max-width: 620px;
  }
  .home-gateway-grid,
  .home-knowledge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-capability-grid,
  .home-footprint-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-tools-grid,
  .home-ai-tool {
    grid-template-columns: 1fr;
  }
  .home-editorial-entry,
  .home-capability-editorial-grid,
  .home-knowledge-layout,
  .home-tool-editorial-grid,
  .home-network-layout {
    grid-template-columns: 1fr;
  }
  .home-capability-visual {
    min-height: 420px;
  }
  .home-ai-demo {
    margin: 0 32px 32px;
  }
}

@media (max-width: 900px) {
  .home-hero h1,
  .home-video-copy h1,
  .feature-slide h1 {
    font-size: 50px;
  }
  .home-video-stage,
  .feature-hero-stage {
    min-height: 560px;
  }
  .feature-hero-track {
    min-height: 360px;
  }
  .home-latest-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .home-section {
    padding: 84px 0;
  }
  .home-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .home-section-head h2 {
    font-size: 38px;
  }
  .home-section-head .all {
    justify-self: start;
  }
  .home-capability-grid,
  .home-industry-grid,
  .home-footprint-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-editorial-lead,
  .home-knowledge-feature,
  .home-tool-feature {
    grid-template-columns: 1fr;
  }
  .home-editorial-copy,
  .home-knowledge-feature > div:last-child {
    padding: 32px 0;
  }
  .home-tool-feature .home-ai-demo {
    margin: 0 28px 28px;
  }
  .home-capability-row {
    grid-template-columns: 44px 1fr;
  }
  .home-capability-row p {
    grid-column: 2;
  }
  .home-sector-directory {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-capability-grid::before {
    display: none;
  }
}

@media (max-width: 620px) {
  .home-hero {
    min-height: calc(100vh - 112px);
    background-position: 58% center;
  }
  .home-video-hero {
    min-height: calc(100vh - 64px);
  }
  .home-video-stage {
    top: auto;
    height: calc(100vh - 64px);
    min-height: 680px;
  }
  .home-video-copy {
    align-items: flex-start;
    padding-top: 74px;
  }
  .feature-hero-stage {
    height: calc(100vh - 64px);
    min-height: 600px;
    max-height: none;
  }
  .feature-hero-copy {
    justify-content: flex-end;
    padding-bottom: 48px;
  }
  .feature-hero-track {
    min-height: 320px;
  }
  .feature-hero-controls {
    margin-top: 28px;
    gap: 14px;
  }
  .feature-arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .home-hero-inner {
    padding-top: 74px;
    padding-bottom: 62px;
  }
  .home-hero h1,
  .home-video-copy h1,
  .feature-slide h1 {
    font-size: 34px;
    line-height: 1.08;
  }
  .text-cycle {
    max-width: 100%;
  }
  .home-hero .deck,
  .home-video-copy .deck,
  .feature-slide .deck {
    font-size: 16px;
    line-height: 1.55;
  }
  .home-hero-actions,
  .home-final-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .home-btn {
    width: 100%;
  }
  .home-hero-panel {
    padding: 22px;
  }
  .home-hero-panel h2 {
    font-size: 22px;
  }
  .home-hero-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .home-metric {
    min-height: 92px;
    padding: 14px;
  }
  .home-metric strong {
    font-size: 34px;
  }
  .home-section {
    padding: 68px 0;
  }
  .home-section-head h2 {
    font-size: 31px;
  }
  .home-section-head p {
    font-size: 15px;
  }
  .home-gateway-grid,
  .home-capability-grid,
  .home-industry-grid,
  .home-knowledge-grid,
  .home-footprint-grid {
    grid-template-columns: 1fr;
  }
  .home-sector-directory {
    grid-template-columns: 1fr;
  }
  .home-sector-directory a {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
  }
  .home-sector-directory {
    border-left: 0;
  }
  .home-editorial-link {
    grid-template-columns: 40px 1fr;
  }
  .home-editorial-link p {
    grid-column: 1 / -1;
  }
  .home-capability-row {
    grid-template-columns: 40px 1fr;
    gap: 12px 18px;
  }
  .home-capability-row p {
    grid-column: 1 / -1;
  }
  .home-editorial-image,
  .home-knowledge-feature-image,
  .home-tool-side-image,
  .home-capability-visual {
    min-height: 260px;
  }
  .home-tool-feature .home-tool-copy,
  .home-network-panel {
    padding: 28px;
  }
  .home-footprint-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .home-footprint-list span {
    text-align: left;
  }
  .home-gateway-card,
  .home-knowledge-card {
    min-height: 0;
  }
  .home-gateway-card span,
  .home-knowledge-card span {
    margin-bottom: 28px;
  }
  .home-ai-tool .home-tool-copy,
  .home-brand-tool .home-tool-copy {
    padding: 26px;
  }
  .home-ai-demo {
    min-height: 280px;
    margin: 0 20px 24px;
  }
  .home-ai-panel {
    left: 18px;
    right: 18px;
  }
  .home-ai-message {
    max-width: 100%;
  }
  .home-office-card {
    min-height: 0;
  }
}

/* ===================================================================
   EXHIBITS (McKinsey-style numbered data figures)
   =================================================================== */
.exhibit {
  margin: 56px 0;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.exhibit-head {
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.exhibit-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
  display: block;
}
.exhibit-title {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: var(--navy);
  margin-bottom: 4px;
}
.exhibit-sub {
  font-size: 13px;
  color: var(--grey-2);
  line-height: 1.5;
}
.exhibit-body { padding: 32px 28px; }
.exhibit-svg { width: 100%; height: auto; display: block; }
.exhibit-foot {
  padding: 14px 28px 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.2px;
}
.exhibit-foot strong { color: var(--ink); font-weight: 500; }

/* Bar chart (horizontal) */
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-row { display: grid; grid-template-columns: 180px 1fr 56px; align-items: center; gap: 14px; }
.bar-row .bar-label { font-size: 13px; color: var(--ink); letter-spacing: -0.1px; }
.bar-row .bar-track { background: var(--line-soft); height: 22px; position: relative; overflow: hidden; }
.bar-row .bar {
  position: absolute; inset: 0 auto 0 0;
  background: var(--blue);
  width: 0;
  transition: width 1.1s cubic-bezier(0.22,0.61,0.36,1);
}
.bar-row .bar.alt { background: var(--blue-light); }
.bar-row .bar.dark { background: var(--navy); }
.bar-row .bar-val { font-size: 13px; color: var(--navy); font-weight: 500; text-align: right; font-variant-numeric: tabular-nums; }

/* Line chart */
.line-chart-svg { width: 100%; height: auto; }
.line-chart-svg .grid-line { stroke: var(--line-soft); stroke-width: 1; }
.line-chart-svg .axis-text { font-size: 11px; fill: var(--grey); font-family: var(--font); }
.line-chart-svg .data-line { fill: none; stroke: var(--blue); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.line-chart-svg .data-line.alt { stroke: var(--navy); stroke-dasharray: 0; }
.line-chart-svg .data-line.draw { stroke-dasharray: var(--len); stroke-dashoffset: var(--len); transition: stroke-dashoffset 1.6s var(--ease); }
.line-chart-svg .data-line.draw.in { stroke-dashoffset: 0; }
.line-chart-svg .data-dot { fill: var(--blue); r: 4; }
.line-chart-svg .area { fill: rgba(34,81,255,0.07); }

/* Donut */
.donut-wrap { display: grid; grid-template-columns: 240px 1fr; gap: 36px; align-items: center; }
.donut-svg { width: 240px; height: 240px; }
.donut-svg circle.track { fill: none; stroke: var(--line-soft); stroke-width: 28; }
.donut-svg circle.fill {
  fill: none; stroke-width: 28; stroke-linecap: butt;
  transform: rotate(-90deg); transform-origin: center;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.donut-legend { display: flex; flex-direction: column; gap: 14px; }
.donut-legend .row { display: grid; grid-template-columns: 14px 1fr 60px; align-items: center; gap: 12px; font-size: 13px; }
.donut-legend .row .sw { width: 14px; height: 14px; }
.donut-legend .row .v { text-align: right; font-variant-numeric: tabular-nums; color: var(--navy); font-weight: 500; }

/* Stacked bar (across categories) */
.stacked-list { display: flex; flex-direction: column; gap: 14px; }
.stacked-row { display: grid; grid-template-columns: 140px 1fr; align-items: center; gap: 14px; }
.stacked-row .lbl { font-size: 13px; color: var(--ink); }
.stacked-row .stack { display: flex; height: 26px; overflow: hidden; background: var(--line-soft); }
.stacked-row .seg { transition: width 1s var(--ease); width: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #fff; font-weight: 500; }
.stacked-legend { display: flex; flex-wrap: wrap; gap: 18px; padding-top: 18px; margin-top: 20px; border-top: 1px solid var(--line-soft); font-size: 12px; color: var(--grey-2); }
.stacked-legend .item { display: inline-flex; align-items: center; gap: 8px; }
.stacked-legend .sw { width: 12px; height: 12px; }

/* Matrix (2x2) */
.matrix-2x2 {
  position: relative;
  width: 100%;
  aspect-ratio: 1.4 / 1;
  border: 1px solid var(--line);
  background: linear-gradient(90deg, var(--bg-soft) 50%, #fff 50%),
              linear-gradient(0deg, var(--bg-soft) 50%, #fff 50%);
  background-blend-mode: multiply;
}
.matrix-2x2::before, .matrix-2x2::after {
  content: ""; position: absolute; background: var(--line);
}
.matrix-2x2::before { left: 50%; top: 0; bottom: 0; width: 1px; }
.matrix-2x2::after { top: 50%; left: 0; right: 0; height: 1px; }
.matrix-cell { position: absolute; padding: 18px 22px; font-size: 12px; color: var(--grey-2); line-height: 1.45; width: 50%; }
.matrix-cell strong { display: block; color: var(--navy); font-size: 14px; font-weight: 500; margin-bottom: 6px; letter-spacing: -0.2px; }
.matrix-cell.tl { top: 0; left: 0; }
.matrix-cell.tr { top: 0; right: 0; }
.matrix-cell.bl { bottom: 0; left: 0; }
.matrix-cell.br { bottom: 0; right: 0; }
.matrix-dot { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--blue); transform: translate(-50%,-50%); }
.matrix-dot.lite { background: var(--blue-light); }
.matrix-dot.ink { background: var(--navy); }
.matrix-axis {
  position: absolute; font-size: 11px; color: var(--grey); text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}
.matrix-axis.x { bottom: -28px; left: 50%; transform: translateX(-50%); }
.matrix-axis.y { left: -28px; top: 50%; transform: translateY(-50%) rotate(-90deg); transform-origin: center; white-space: nowrap; }

/* Funnel exhibit (stages narrowing) */
.funnel { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.funnel-row { display: grid; grid-template-columns: 1fr 240px; align-items: center; gap: 18px; width: 100%; }
.funnel-bar { background: var(--blue); height: 38px; margin-left: auto; transition: width 1s var(--ease); width: 0; display: flex; align-items: center; justify-content: flex-end; padding: 0 12px; color: #fff; font-size: 13px; font-weight: 500; }
.funnel-bar.s2 { background: #5a7fff; }
.funnel-bar.s3 { background: #8aa5ff; }
.funnel-bar.s4 { background: #b8c8ff; color: var(--navy); }
.funnel-bar.s5 { background: var(--blue-light); color: var(--navy); }
.funnel-label { font-size: 13px; color: var(--ink); }
.funnel-label .sub { font-size: 11px; color: var(--grey); display: block; margin-top: 2px; }

/* Key-figure exhibit (large pull number) */
.kfig {
  background: var(--navy); color: #fff;
  padding: 56px 48px; margin: 48px 0;
  display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center;
}
.kfig .big {
  font-size: 110px; font-weight: 300; line-height: 0.9; letter-spacing: -3px;
  color: var(--blue-light);
}
.kfig .big sup { font-size: 36px; vertical-align: super; letter-spacing: 0; margin-left: -8px; }
.kfig .txt { font-size: 18px; line-height: 1.55; color: #d6e0ee; max-width: 480px; }

/* ===================================================================
   PODCAST UI (development-talks hub)
   =================================================================== */
.podcast-hero {
  background: var(--navy); color: #fff;
  padding: 100px 0 80px;
}
.podcast-hero h1 {
  font-size: 64px; font-weight: 300; line-height: 1.04; letter-spacing: -1.6px; max-width: 900px; margin-bottom: 24px;
}
.podcast-hero .deck { font-size: 18px; color: #c4d2e2; max-width: 640px; line-height: 1.6; margin-bottom: 40px; }
.podcast-player {
  background: #0a2b44;
  border: 1px solid #1a3a5c;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
}
.podcast-player .pp-thumb {
  width: 96px; height: 96px;
  background-size: cover; background-position: center;
  background-color: #0e3556;
}
.podcast-player .pp-meta .ep { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-light); margin-bottom: 8px; }
.podcast-player .pp-meta .tt { font-size: 22px; font-weight: 400; line-height: 1.25; letter-spacing: -0.3px; color: #fff; margin-bottom: 14px; }
.podcast-player .pp-bar { height: 4px; background: #1a3a5c; position: relative; overflow: hidden; }
.podcast-player .pp-bar > i {
  position: absolute; inset: 0 auto 0 0; width: 36%;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  transition: width 0.2s linear;
}
.podcast-player .pp-times { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11px; color: #8ea4bf; font-variant-numeric: tabular-nums; }
.podcast-player .pp-ctrls { display: flex; align-items: center; gap: 8px; }
.pp-btn {
  width: 44px; height: 44px; border-radius: 50%; background: transparent;
  border: 1px solid #2c4660; color: #fff; font-size: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.pp-btn:hover { background: #1a3a5c; }
.pp-btn.play { width: 56px; height: 56px; background: var(--blue); border-color: var(--blue); font-size: 18px; }
.pp-btn.play:hover { background: var(--blue-dark); }
.pp-btn.play.playing::before { content: "❚❚"; letter-spacing: 1px; }
.pp-btn.play::before { content: "▶"; padding-left: 3px; }
.pp-btn.play.playing::before { content: "❚❚"; padding-left: 0; }

.episode-list { border-top: 1px solid var(--line); }
.episode-row {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
  cursor: pointer;
}
.episode-row:hover { background: var(--bg-soft); }
.ep-thumb { width: 100px; height: 100px; background-size: cover; background-position: center; background-color: var(--line-soft); }
.ep-meta .ep-num { font-size: 11px; color: var(--blue); letter-spacing: 2px; font-weight: 600; text-transform: uppercase; margin-bottom: 6px; }
.ep-meta .ep-title { font-size: 19px; font-weight: 500; color: var(--navy); letter-spacing: -0.3px; line-height: 1.3; margin-bottom: 6px; }
.ep-meta .ep-guest { font-size: 13px; color: var(--grey-2); }
.ep-duration { font-size: 13px; color: var(--grey-2); font-variant-numeric: tabular-nums; }
.ep-play {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-soft); color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
  border: 1px solid var(--line);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.episode-row:hover .ep-play { background: var(--blue); color: #fff; border-color: var(--blue); }
.ep-play::before { content: "▶"; padding-left: 3px; }

.listen-on { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.listen-on a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border: 1px solid #2c4660;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  transition: background 0.15s, border-color 0.15s;
}
.listen-on a:hover { background: #1a3a5c; border-color: var(--blue-light); }
.listen-on a .ico { width: 16px; height: 16px; display: inline-block; }

.host-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.host-card { display: grid; grid-template-columns: 140px 1fr; gap: 24px; align-items: start; }
.host-card .face { width: 140px; height: 140px; border-radius: 50%; background-size: cover; background-position: center; background-color: var(--line-soft); }
.host-card .h-name { font-size: 22px; font-weight: 400; letter-spacing: -0.3px; margin-bottom: 4px; color: var(--navy); }
.host-card .h-role { font-size: 13px; color: var(--blue); letter-spacing: 1.6px; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.host-card .h-bio { font-size: 14px; color: var(--grey-2); line-height: 1.65; }

/* ===================================================================
   EMAIL-GATE FORM (brand-check-up)
   =================================================================== */
.gate-form {
  display: grid; gap: 14px; max-width: 520px;
}
.gate-form label { font-size: 12px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--grey-2); }
.gate-form input {
  padding: 16px 18px;
  font-size: 15px;
  border: 1px solid #cdd5dd;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}
.gate-form input:focus { border-color: var(--navy); }
.gate-form .gate-cta {
  padding: 16px 28px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: background 0.15s;
  cursor: pointer;
  border: none;
  width: fit-content;
}
.gate-form .gate-cta:hover { background: var(--blue); }
.gate-fineprint { font-size: 12px; color: var(--grey); line-height: 1.55; max-width: 480px; margin-top: 6px; }
.gate-success {
  background: var(--bg-mint);
  padding: 32px 32px;
  border-left: 4px solid #2c8a5a;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}
.gate-success strong { display: block; font-weight: 500; margin-bottom: 4px; color: #1f5e3d; }

/* ===================================================================
   SAMPLE REPORT MOCK (brand-check-up)
   =================================================================== */
.report-mock {
  position: relative;
  width: 100%;
  aspect-ratio: 1.4 / 1;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr 1fr;
  gap: 16px;
  overflow: hidden;
}
.report-mock .rm-head {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.report-mock .rm-head .ttl { font-size: 16px; font-weight: 500; color: var(--navy); }
.report-mock .rm-head .lbl { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); font-weight: 600; }
.report-mock .rm-card {
  background: #fff; border: 1px solid var(--line); padding: 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.report-mock .rm-tag { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey); font-weight: 600; }
.report-mock .rm-num { font-size: 36px; font-weight: 300; color: var(--navy); letter-spacing: -1px; line-height: 1; }
.report-mock .rm-mini-bars { display: flex; gap: 4px; align-items: flex-end; height: 36px; margin-top: auto; }
.report-mock .rm-mini-bars span { flex: 1; background: var(--blue); opacity: 0.85; }
.report-mock .rm-mini-bars span.lo { background: var(--blue-light); }

/* ===================================================================
   CHAT MOCKUP (development-ai sample conversation)
   =================================================================== */
.chat-mock {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.chat-bubble {
  padding: 16px 20px;
  max-width: 86%;
  font-size: 14px;
  line-height: 1.55;
}
.chat-bubble.user {
  background: var(--navy);
  color: #fff;
  align-self: flex-end;
  border: 1px solid var(--navy);
}
.chat-bubble.ai {
  background: #fff;
  color: var(--ink);
  align-self: flex-start;
  border: 1px solid var(--line);
}
.chat-bubble strong { color: var(--blue); font-weight: 500; }
.chat-bubble .src { font-size: 11px; color: var(--grey); margin-top: 10px; padding-top: 8px; border-top: 1px solid var(--line-soft); letter-spacing: 0.3px; }
.chat-bubble.ai strong { color: var(--blue); }
.chat-bubble.user strong { color: var(--blue-light); }

/* ===================================================================
   Q&A INTERVIEW BLOCKS
   =================================================================== */
.qa { margin: 48px 0; }
.qa .q {
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: -0.3px;
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}
.qa .q::before {
  content: "Q.";
  position: absolute; left: 0; top: 0;
  color: var(--blue);
  font-weight: 600;
}
.qa .a {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.7;
  padding-left: 32px;
  position: relative;
}
.qa .a::before {
  content: "A.";
  position: absolute; left: 0; top: 0;
  color: var(--grey);
  font-weight: 600;
}
.qa + .qa { padding-top: 32px; border-top: 1px solid var(--line-soft); }

/* ===================================================================
   REPORT TOC / SECTION JUMP
   =================================================================== */
.report-toc {
  background: var(--bg-soft);
  padding: 28px 32px;
  margin: 48px 0;
  border-left: 4px solid var(--blue);
}
.report-toc .lbl { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
.report-toc ol { margin: 0; padding-left: 22px; }
.report-toc li { font-size: 15px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.report-toc li:last-child { border-bottom: none; }
.report-toc a { color: var(--ink); transition: color 0.15s; }
.report-toc a:hover { color: var(--blue); }

/* ===================================================================
   DOWNLOAD PILL (report PDF)
   =================================================================== */
.dl-pill {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 26px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background 0.15s;
}
.dl-pill:hover { background: var(--blue); }
.dl-pill::before {
  content: "↓";
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid currentColor; border-radius: 50%;
  font-size: 13px;
}

/* ===================================================================
   RESPONSIVE — new components
   =================================================================== */
@media (max-width: 1100px) {
  .donut-wrap, .host-grid { grid-template-columns: 1fr; }
  .podcast-player { grid-template-columns: 1fr; text-align: left; }
  .podcast-player .pp-thumb { width: 100%; height: 200px; }
  .kfig { grid-template-columns: 1fr; padding: 40px 32px; gap: 24px; }
  .kfig .big { font-size: 84px; }
  .episode-row { grid-template-columns: 80px 1fr auto; }
  .episode-row .ep-duration { display: none; }
  .bar-row { grid-template-columns: 130px 1fr 50px; }
  .funnel-row { grid-template-columns: 1fr 180px; }
}

@media (max-width: 700px) {
  .exhibit-body { padding: 22px 18px; }
  .exhibit-head { padding: 18px 18px 14px; }
  .bar-row { grid-template-columns: 100px 1fr 44px; gap: 10px; }
  .bar-row .bar-label { font-size: 12px; }
  .funnel-row { grid-template-columns: 1fr 140px; gap: 10px; }
  .matrix-2x2 { aspect-ratio: 1 / 1; }
  .matrix-cell { font-size: 11px; padding: 12px; }
  .podcast-hero h1 { font-size: 36px; letter-spacing: -1px; }
  .podcast-player { padding: 22px; gap: 16px; }
  .episode-row { grid-template-columns: 72px 1fr 44px; gap: 14px; padding: 16px 0; }
  .ep-thumb { width: 72px; height: 72px; }
  .ep-meta .ep-title { font-size: 15px; }
  .kfig .big { font-size: 64px; letter-spacing: -2px; }
  .host-card { grid-template-columns: 100px 1fr; gap: 16px; }
  .host-card .face { width: 100px; height: 100px; }
  .stacked-row { grid-template-columns: 100px 1fr; gap: 10px; }
  .chat-mock { padding: 20px; }
}

/* ===================================================================
   DATA-WB BADGE (World Bank Data360 live exhibits)
   =================================================================== */
.exhibit[data-wb] {
  width: min(100%, 980px);
  margin: 44px auto;
}
.exhibit[data-wb] .exhibit-body {
  padding: 24px 24px 18px;
}
.exhibit[data-wb] .line-chart-svg {
  display: block;
  width: 100%;
  height: 260px;
}
.exhibit[data-wb] .line-chart-svg .grid-line {
  stroke: #e8edf3;
  stroke-width: 0.75;
  vector-effect: non-scaling-stroke;
}
.exhibit[data-wb] .line-chart-svg .axis-text {
  font-size: 10.5px;
  fill: #6f7d8a;
}
.exhibit[data-wb] .line-chart-svg .data-line {
  stroke-width: 1.75;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  opacity: 1;
  transition: none;
  vector-effect: non-scaling-stroke;
}
.exhibit[data-wb] .line-chart-svg .data-line-secondary {
  stroke-width: 1.25;
  stroke-dasharray: 5 4;
}
.exhibit[data-wb] .line-chart-svg .data-dot,
.exhibit[data-wb] .line-chart-svg .wb-hover-dot,
.exhibit[data-wb] .line-chart-svg .wb-hover-guide {
  vector-effect: non-scaling-stroke;
}
.exhibit[data-wb] .line-chart-svg .area { display: none; }
.exhibit[data-wb] .exhibit-num::after {
  content: " · LIVE DATA";
  color: var(--blue);
  margin-left: 4px;
  font-size: 9px;
  letter-spacing: 2px;
}
.exhibit[data-wb] .exhibit-head {
  background: linear-gradient(90deg, var(--bg-soft) 0%, #eef3ff 100%);
  border-bottom: 1px solid #d8e2ff;
}
.exhibit[data-wb] .exhibit-foot {
  background: var(--bg-soft);
}
.exhibit[data-wb] .exhibit-foot strong { color: var(--blue); }
.wb-coverage {
  float: right;
  color: var(--grey-2);
  font-variant-numeric: tabular-nums;
}
.exhibit-loading {
  position: relative;
  min-height: 240px;
}
.exhibit-loading::before {
  content: "";
  position: absolute;
  inset: 50% 0 0 50%;
  width: 32px; height: 32px;
  margin: -16px 0 0 -16px;
  border: 2px solid var(--line);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: wb-spin 0.9s linear infinite;
}
@keyframes wb-spin { to { transform: rotate(360deg); } }
.exhibit-stale {
  font-size: 10px;
  color: var(--grey);
  margin-left: 8px;
  letter-spacing: 0.3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .word { opacity: 1; transform: none; }
  .bar-row .bar, .funnel-bar, .stacked-row .seg { transition: none !important; }
  .line-chart-svg .data-line.draw { stroke-dashoffset: 0 !important; }
  .home-hero-copy,
  .home-video-copy .home-hero-copy,
  .home-capability-grid::before,
  .home-ai-core,
  .home-ai-panel,
  .home-ai-message {
    animation: none !important;
  }
  .home-video-hero {
    min-height: auto;
  }
  .home-video-stage {
    position: relative;
    top: auto;
    height: min(760px, calc(100vh - 64px));
    min-height: 560px;
  }
  .home-video-media {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  .home-video-media video {
    display: none;
  }
  .home-video-copy {
    opacity: 1;
    transform: none;
  }
  .home-video-overlay {
    opacity: 1;
  }
  .home-capability-grid::before {
    transform: scaleX(1);
    opacity: 1;
  }
  .home-ai-core {
    width: 36px;
    height: 36px;
    left: 28px;
    top: 36px;
  }
  .home-ai-panel,
  .home-ai-message {
    opacity: 1;
    transform: none;
  }
  .ai-helper-orb { display: none; }
  .ai-helper-panel,
  .ai-helper-bubble.user,
  .ai-helper-bubble.ai {
    opacity: 1;
    transform: none;
  }
  .ai-helper-bubble span { clip-path: inset(0 0 0 0); }
}

/* ===================================================================
   SOCIAL ICONS — disabled placeholder state (no real handles yet)
   =================================================================== */
.socials .social-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
  cursor: default;
  user-select: none;
  margin-right: 8px;
}

/* ===================================================================
   WORLD BANK COUNTRY PICKER (data-wb exhibits)
   =================================================================== */
.wb-picker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 8px;
  font-size: 12px;
  color: var(--grey-2);
  letter-spacing: 0.4px;
}
.wb-picker label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 10px;
  font-weight: 600;
  color: var(--grey);
}
.wb-picker select {
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px 28px 6px 12px;
  font-family: inherit;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23404952' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.wb-picker select:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}
.exhibit-stale {
  font-size: 11px;
  color: var(--grey);
}
.exhibit-loading {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 13px;
  position: relative;
}
.exhibit-loading::before {
  content: "Loading from World Bank…";
  position: relative;
  z-index: 2;
}

/* Skeleton shimmer while loading */
.wb-skeleton {
  background: linear-gradient(
    90deg,
    rgba(230, 235, 245, 0) 0%,
    rgba(230, 235, 245, 0.7) 50%,
    rgba(230, 235, 245, 0) 100%
  );
  background-size: 200% 100%;
  animation: wb-skeleton-shimmer 1.4s linear infinite;
}
@keyframes wb-skeleton-shimmer {
  0%   { background-position: -150% 0; }
  100% { background-position: 150% 0; }
}

/* Pulsing live indicator dot */
.wb-live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1fa463;
  vertical-align: 1px;
  margin-left: 6px;
  box-shadow: 0 0 0 0 rgba(31, 164, 99, 0.6);
  animation: wb-live-pulse 1.6s ease-out infinite;
  cursor: help;
}
@keyframes wb-live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(31, 164, 99, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(31, 164, 99, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 164, 99, 0); }
}

/* Custom hover tooltip + guide line */
.wb-tooltip {
  position: absolute;
  pointer-events: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  min-width: 180px;
  max-width: 240px;
  box-shadow: 0 6px 24px rgba(15, 25, 50, 0.12);
  font-size: 13px;
  color: var(--ink);
  opacity: 0;
  transition: opacity 120ms ease;
  z-index: 10;
}
.wb-tooltip .wb-tt-year {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 600;
  margin-bottom: 8px;
}
.wb-tooltip .wb-tt-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.wb-tooltip .wb-tt-row:last-child { margin-bottom: 0; }
.wb-tooltip .wb-tt-swatch {
  display: inline-block;
  width: 14px;
  height: 3px;
  border-radius: 1px;
  flex-shrink: 0;
}
.wb-tooltip .wb-tt-label {
  flex: 1;
  color: var(--grey-2);
  font-size: 12px;
}
.wb-tooltip .wb-tt-val {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.wb-hover-overlay { fill: transparent; }
.wb-hover-guide { transition: opacity 100ms ease; }
.wb-hover-dot { transition: opacity 100ms ease, cx 120ms ease, cy 120ms ease; }

/* Legend under chart (multi-series) */
.wb-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  font-size: 13px;
}
.wb-legend-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.wb-legend-swatch {
  display: inline-block;
  width: 18px;
  height: 3px;
  border-radius: 1px;
  background: var(--blue);
}

/* Ranking visualisation */
.wb-rank {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 32px;
  margin-top: 16px;
}
.wb-rank-loading,
.wb-rank-empty {
  color: var(--grey);
  font-size: 13px;
  padding: 24px 0;
  text-align: center;
}
.wb-rank-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.wb-rank-indicator {
  font-size: 13px;
  color: var(--grey-2);
  letter-spacing: 0.4px;
}
.wb-rank-stat-big {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.wb-rank-stat-big .wb-rank-num {
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -2px;
  color: var(--blue);
  line-height: 1;
}
.wb-rank-stat-big .wb-rank-of {
  font-size: 18px;
  color: var(--grey-2);
}
.wb-rank-stat-big .wb-rank-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ink);
  font-weight: 600;
  margin-left: 4px;
}
.wb-rank-stat-sub {
  font-size: 13px;
  color: var(--grey-2);
  flex-basis: 100%;
}
.wb-rank-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wb-rank-row {
  display: grid;
  grid-template-columns: 36px 1fr 2fr 90px;
  gap: 14px;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}
.wb-rank-row .wb-rank-rank {
  color: var(--grey-2);
  font-size: 12px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.wb-rank-row .wb-rank-label {
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.wb-rank-row .wb-rank-chip {
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(36, 99, 235, 0.08);
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
}
.wb-rank-row .wb-rank-track {
  height: 12px;
  background: rgba(200, 210, 220, 0.35);
  border-radius: 6px;
  overflow: hidden;
}
.wb-rank-row .wb-rank-bar {
  height: 100%;
  background: #c9d3df;
  border-radius: 6px;
}
.wb-rank-row .wb-rank-val {
  color: var(--ink);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.wb-rank-row.is-oecd .wb-rank-bar {
  background: #8aa2bf;
}
.wb-rank-row.is-anchor {
  background: rgba(36, 99, 235, 0.06);
  border-radius: 4px;
  padding: 10px 8px;
  margin: 2px -8px;
}
.wb-rank-row.is-anchor .wb-rank-label {
  font-weight: 600;
}
.wb-rank-row.is-anchor .wb-rank-bar {
  background: var(--blue);
}
.wb-rank-row.is-anchor .wb-rank-val {
  font-weight: 600;
  color: var(--blue);
}

@media (prefers-reduced-motion: reduce) {
  .wb-skeleton { animation: none; background: rgba(230, 235, 245, 0.4); }
  .wb-live-dot { animation: none; }
  .wb-rank-row .wb-rank-bar { transition: none !important; }
}

@media (max-width: 720px) {
  .wb-rank-row { grid-template-columns: 28px 1fr 1fr 70px; gap: 10px; font-size: 13px; }
  .wb-rank-stat-big .wb-rank-num { font-size: 40px; }
}

/* ===================================================================
   HOME — McKinsey.com-style homepage (mck-*)
   Dark-dominant: deep-blue bento hero, electric-blue bands,
   white only for Careers and the closing CTA.
   =================================================================== */

.home {
  --deep: #051c2c;
  --electric: #2251ff;
  --deep-grad: radial-gradient(ellipse 90% 70% at 88% 0%, rgba(34,81,255,0.30) 0%, rgba(5,28,44,0) 62%);
}

/* Header sits on the dark hero as one continuous field */
.home .site-header { border-bottom: none; }
.header-subscribe {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  padding: 9px 18px;
  border: 1px solid #2c4660;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.header-subscribe:hover { background: var(--electric); border-color: var(--electric); }

.eyebrow.center { display: block; text-align: center; }

/* ---------- Shared primitives ---------- */
.mck-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 12px;
}
.chev { color: inherit; font-weight: 300; display: inline-block; transition: transform 0.2s var(--ease); }
.home a:hover .chev { transform: translateX(4px); }

/* Centered small-caps section title, McKinsey's signature */
.mck-section-title {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 44px;
}
.mck-section-dek {
  text-align: center;
  font-size: 40px;
  line-height: 1.16;
  font-weight: 300;
  letter-spacing: -0.6px;
  max-width: 820px;
  margin: -18px auto 54px;
}

/* Buttons */
.mck-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--electric);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  transition: background 0.2s;
  white-space: nowrap;
}
.mck-btn-solid:hover { background: #1a3fcc; }
.mck-btn-solid span { transition: transform 0.2s var(--ease); }
.mck-btn-solid:hover span { transform: translateX(4px); }

.mck-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,0.5);
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.mck-btn-outline:hover { background: rgba(255,255,255,0.14); border-color: #fff; }
.mck-btn-outline span { transition: transform 0.2s var(--ease); }
.mck-btn-outline:hover span { transform: translateX(4px); }
.mck-btn-outline.dark { color: var(--deep); border-color: rgba(5,28,44,0.3); }
.mck-btn-outline.dark:hover { background: rgba(5,28,44,0.06); border-color: var(--deep); }

/* ---------- BENTO HERO ---------- */
.mck-bento-section {
  background-color: var(--deep);
  background-image: var(--deep-grad);
  color: #fff;
  padding: 36px 0 72px;
}
.mck-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(0, auto);
  gap: 16px;
}

@media (max-width: 700px) {
  .exhibit[data-wb] {
    margin: 32px auto;
  }
  .exhibit[data-wb] .exhibit-head {
    padding: 18px 18px 15px;
  }
  .exhibit[data-wb] .exhibit-body {
    padding: 18px 14px 12px;
  }
  .exhibit[data-wb] .line-chart-svg {
    height: 220px;
  }
  .wb-coverage {
    float: none;
    display: block;
    margin-top: 5px;
  }
}
.home .mck-bento {
  animation: home-bento-rise 850ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes home-bento-rise {
  from {
    opacity: 0;
    transform: translateY(42px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mck-bento-intro { grid-column: 1 / 3; grid-row: 1; padding: 18px 8px 26px 0; }
.mck-bento-c2       { grid-column: 1; grid-row: 2; }
.mck-bento-c3       { grid-column: 2; grid-row: 2; }
.mck-bento-featured { grid-column: 3; grid-row: 1 / 3; }
.mck-bento-c4       { grid-column: 1; grid-row: 3; }
.mck-bento-c5       { grid-column: 2; grid-row: 3; }
.mck-bento-promo    { grid-column: 3; grid-row: 3; }

.mck-bento-intro h1 {
  font-size: 52px;
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: -1.4px;
  margin-bottom: 20px;
}
.mck-bento-intro p {
  font-size: 17px;
  line-height: 1.58;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 26px;
}
.mck-bento-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.2s, border-color 0.2s;
}
.mck-bento-arrow:hover { background: var(--electric); border-color: var(--electric); }

.mck-bento-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background-size: cover;
  background-position: center;
  background-color: #0a2b44;
  min-height: 230px;
}
.mck-bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.mck-bento-card:hover::before { transform: scale(1.05); }
.mck-bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,28,44,0) 28%, rgba(5,28,44,0.93) 100%);
  transition: background 0.35s var(--ease);
}
.mck-bento-card:hover::after {
  background: linear-gradient(180deg, rgba(5,28,44,0.2) 8%, rgba(5,28,44,0.97) 100%);
}
.mck-bento-card-body { position: relative; z-index: 1; padding: 24px; width: 100%; }
.mck-bento-card h3 { font-size: 17px; line-height: 1.32; font-weight: 500; color: #fff; }
.mck-bento-card:hover h3 { text-decoration: underline; text-underline-offset: 4px; }

.mck-bento-featured { min-height: 430px; }
.mck-bento-featured h2 {
  font-size: 30px;
  line-height: 1.16;
  font-weight: 400;
  color: #fff;
  margin-bottom: 22px;
}
.mck-bento-featured .mck-bento-card-body { padding: 30px; }

.mck-bento-promo {
  background: #0c2337;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.mck-bento-promo h5 {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}
.mck-bento-form { display: flex; border: 1px solid rgba(255,255,255,0.35); }
.mck-bento-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}
.mck-bento-form input::placeholder { color: rgba(255,255,255,0.5); }
.mck-bento-form button {
  background: var(--electric);
  color: #fff;
  width: 50px;
  font-size: 17px;
  transition: background 0.2s;
}
.mck-bento-form button:hover { background: #1a3fcc; }
.mck-bento-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.mck-bento-rule::before,
.mck-bento-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.18);
}
.mck-bento-alt { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mck-bento-alt a {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 9px 4px;
  font-size: 12px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.mck-bento-alt a:hover { background: rgba(255,255,255,0.14); border-color: #fff; }

/* ---------- KAYA EXCLUSIVE ---------- */
.mck-exclusive {
  background-color: var(--deep);
  background-image: var(--deep-grad);
  color: #fff;
  padding: 78px 0;
}
.mck-exclusive-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: center;
}
.mck-exclusive-cover {
  display: block;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-color: #0b1f2c;
  transition: transform 0.4s var(--ease);
}
.mck-exclusive-cover:hover { transform: translateY(-6px); }
.mck-exclusive-copy h3 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}
.mck-exclusive-copy h3 a { color: #fff; }
.mck-exclusive-copy h3 a:hover { text-decoration: underline; text-underline-offset: 6px; }
.mck-exclusive-copy .deck {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
  margin-bottom: 26px;
}
.mck-exclusive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  margin-bottom: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.mck-exclusive-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #fff;
}
.mck-exclusive-stat span { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ---------- FEATURED NEWSLETTER ---------- */
.mck-newsletter {
  background-color: var(--deep);
  color: #fff;
  padding: 26px 0 0;
}
.mck-newsletter-band {
  position: relative;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.mck-newsletter-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(5,28,44,0.96) 0%, rgba(5,28,44,0.72) 46%, rgba(5,28,44,0.15) 100%);
}
.mck-newsletter-inner { position: relative; z-index: 1; padding: 86px var(--pad); }
.mck-newsletter h3 {
  font-size: 46px;
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -1px;
  max-width: 520px;
  margin-bottom: 18px;
}
.mck-newsletter h3 a { color: #fff; }
.mck-newsletter h3 a:hover { text-decoration: underline; text-underline-offset: 6px; }
.mck-newsletter p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.84);
  max-width: 470px;
  margin-bottom: 26px;
}
.mck-news-form { display: flex; max-width: 430px; }
.mck-news-form input {
  flex: 1;
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  outline: none;
}
.mck-news-form input::placeholder { color: rgba(255,255,255,0.55); }
.mck-news-form input:focus { border-color: #fff; }
.mck-news-form button {
  background: #fff;
  color: var(--deep);
  padding: 0 26px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.mck-news-form button:hover { background: var(--electric); color: #fff; }

/* ---------- PODCAST (electric blue gradient) ---------- */
.mck-podcast {
  background: #0d1f6b;
  background-image: radial-gradient(ellipse 100% 90% at 46% 38%, #3059ff 0%, #1e3fd8 34%, #12227f 68%, #0a1444 100%);
  color: #fff;
  padding: 84px 0;
}
.mck-podcast-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 42px;
}
.mck-podcast-head h2 {
  font-size: 42px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}
.mck-podcast-head p {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.62;
  color: rgba(255,255,255,0.88);
  margin-bottom: 22px;
}
.mck-podcast-platforms { display: flex; gap: 10px; }
.mck-plat {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.45);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
}
.mck-podcast-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mck-episode-card {
  background: #fff;
  color: var(--deep);
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mck-date {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #6b7a89;
  margin-bottom: 14px;
}
.mck-episode-card h4 {
  font-size: 27px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 14px;
}
.mck-episode-card:hover h4 { text-decoration: underline; text-underline-offset: 5px; }
.mck-episode-card p { color: #51626f; font-size: 15px; line-height: 1.6; }
.mck-podcast-player {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mck-podcast-player::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5,20,68,0.42);
}
.mck-play {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--electric);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding-left: 4px;
  transition: transform 0.2s var(--ease);
}
.mck-podcast-player:hover .mck-play { transform: scale(1.08); }
.mck-player-bar {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 3px;
  background: rgba(255,255,255,0.35);
}
.mck-player-progress { display: block; width: 38%; height: 100%; background: #fff; }
.mck-podcast-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.mck-podcast-tabs a {
  padding-top: 14px;
  border-top: 2px solid rgba(255,255,255,0.35);
  font-size: 13px;
  line-height: 1.42;
  color: rgba(255,255,255,0.86);
  transition: color 0.2s, border-color 0.2s;
}
.mck-podcast-tabs a.is-active { border-top-color: #fff; color: #fff; font-weight: 500; }
.mck-podcast-tabs a:hover { color: #fff; border-top-color: #fff; }

/* ---------- HOW WE HELP CLIENTS ---------- */
.mck-promos {
  background-color: var(--deep);
  background-image: var(--deep-grad);
  color: #fff;
  padding: 84px 0;
}
.mck-promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.mck-promo-image,
.mck-impact-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: #0a2b44;
  margin-bottom: 22px;
}
.mck-promo-image::before,
.mck-impact-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.mck-promo:hover .mck-promo-image::before,
.mck-impact-card:hover .mck-impact-image::before { transform: scale(1.05); }
.mck-promo h4 { font-size: 22px; font-weight: 400; margin-bottom: 12px; color: #fff; }
.mck-promo:hover h4 { text-decoration: underline; text-underline-offset: 4px; }
.mck-promo p { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.62; }

/* ---------- CAREERS (white) ---------- */
.mck-careers { background: #fff; color: var(--deep); padding: 88px 0; }
.mck-careers .mck-section-title { color: #6b7a89; }
.mck-careers-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.mck-careers-copy h3 {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: var(--electric);
  margin-bottom: 18px;
}
.mck-careers-copy p {
  color: #51626f;
  font-size: 16px;
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 28px;
}
.mck-careers-media-wrap { position: relative; }
/* McKinsey brand lines: offset blue bracket at the top-right */
.mck-brand-lines {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 46%;
  height: 58%;
  border-top: 7px solid var(--electric);
  border-right: 7px solid var(--electric);
  pointer-events: none;
}
.mck-careers-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: #e8ecef;
}

/* ---------- SOCIETAL IMPACT (electric blue) ---------- */
.mck-impact { background: var(--electric); color: #fff; padding: 84px 0; }
.mck-impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.mck-impact-card h4 { font-size: 22px; font-weight: 400; margin-bottom: 12px; color: #fff; }
.mck-impact-card:hover h4 { text-decoration: underline; text-underline-offset: 4px; }
.mck-impact-card p { font-size: 15px; line-height: 1.62; color: rgba(255,255,255,0.9); }

/* ---------- CLOSING CTA (white) ---------- */
.mck-cta { background: #fff; color: var(--deep); padding: 96px 0; text-align: center; }
.mck-cta h2 {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -0.8px;
  max-width: 800px;
  margin: 0 auto 34px;
}
.mck-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .mck-bento { grid-template-columns: 1fr 1fr; }
  .mck-bento-intro    { grid-column: 1 / 3; grid-row: 1; }
  .mck-bento-featured { grid-column: 1 / 3; grid-row: 2; min-height: 380px; }
  .mck-bento-c2       { grid-column: 1; grid-row: 3; }
  .mck-bento-c3       { grid-column: 2; grid-row: 3; }
  .mck-bento-c4       { grid-column: 1; grid-row: 4; }
  .mck-bento-c5       { grid-column: 2; grid-row: 4; }
  .mck-bento-promo    { grid-column: 1 / 3; grid-row: 5; }
  .mck-bento-intro h1 { font-size: 42px; }
  .mck-section-dek { font-size: 32px; }
}
@media (max-width: 900px) {
  .header-subscribe { display: none; }
  .mck-podcast-head { grid-template-columns: 1fr; gap: 24px; }
  .mck-podcast-feature { grid-template-columns: 1fr; }
  .mck-exclusive-grid,
  .mck-careers-grid { grid-template-columns: 1fr; gap: 40px; }
  .mck-exclusive-cover { max-width: 330px; }
  .mck-promo-grid,
  .mck-impact-grid,
  .mck-podcast-tabs { grid-template-columns: 1fr 1fr; }
  .mck-newsletter h3,
  .mck-podcast-head h2,
  .mck-exclusive-copy h3,
  .mck-careers-copy h3,
  .mck-cta h2 { font-size: 30px; }
  .mck-section-dek { font-size: 27px; }
  .mck-newsletter-overlay { background: linear-gradient(180deg, rgba(5,28,44,0.82) 0%, rgba(5,28,44,0.94) 100%); }
}
@media (max-width: 620px) {
  .mck-bento { grid-template-columns: 1fr; gap: 14px; }
  .mck-bento-intro,
  .mck-bento-featured,
  .mck-bento-c2, .mck-bento-c3, .mck-bento-c4, .mck-bento-c5,
  .mck-bento-promo { grid-column: 1; grid-row: auto; }
  .mck-bento-intro h1 { font-size: 34px; letter-spacing: -1px; }
  .mck-bento-section { padding: 20px 0 48px; }
  .mck-bento-featured { min-height: 320px; }
  .mck-bento-featured h2 { font-size: 24px; }
  .mck-promo-grid,
  .mck-impact-grid,
  .mck-podcast-tabs { grid-template-columns: 1fr; }
  .mck-exclusive, .mck-promos, .mck-podcast, .mck-impact { padding: 52px 0; }
  .mck-careers, .mck-cta { padding: 56px 0; }
  .mck-section-title { margin-bottom: 30px; }
  .mck-section-dek { font-size: 24px; margin-bottom: 36px; }
  .mck-newsletter-inner { padding: 56px var(--pad); }
  .mck-news-form, .mck-bento-form { flex-direction: column; gap: 10px; border: none; }
  .mck-bento-form input, .mck-news-form input { border: 1px solid rgba(255,255,255,0.4); }
  .mck-news-form button, .mck-bento-form button { padding: 14px; width: 100%; }
  .mck-episode-card { padding: 28px; }
  .mck-episode-card h4 { font-size: 23px; }
  .mck-exclusive-meta { gap: 26px; }
  .mck-brand-lines { top: -12px; right: -12px; border-width: 5px; }
  .mck-cta-actions { flex-direction: column; align-items: stretch; }
  .mck-cta-actions a { justify-content: center; }
}

/* ---------- Mobile navigation panel (site-wide fix) ----------
   .mobile-toggle adds .open to .primary-nav; without this the panel
   had no styles and could never appear below 700px. */
@media (max-width: 700px) {
  .primary-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid var(--line-dark);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    padding: 4px 20px 20px;
  }
  .primary-nav.open > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav.open > ul > li { width: 100%; }
  .primary-nav.open > ul > li > a {
    display: flex;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    border-top: none;
  }
  .primary-nav.open .mega { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .home .mck-bento {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ===================================================================
   ARTICLE — Kaya Exclusive cover hero (magazine layout)
   =================================================================== */
.exclusive-hero { background: var(--navy); color: #fff; padding: 64px 0 72px; overflow: hidden; }
.exclusive-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.exclusive-hero .breadcrumb { color: var(--grey-3); font-size: 13px; margin-bottom: 24px; }
.exclusive-hero .breadcrumb a { color: var(--blue-light); }
.exclusive-hero .breadcrumb span { margin: 0 8px; opacity: 0.5; }
.exclusive-hero .tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 8px 14px;
  margin-bottom: 22px;
}
.exclusive-hero h1 { font-size: 56px; line-height: 1.04; font-weight: 300; letter-spacing: -1px; margin-bottom: 22px; }
.exclusive-hero .deck { font-size: 19px; line-height: 1.6; color: #d6e2f2; max-width: 620px; margin-bottom: 26px; }
.exclusive-hero .byline { font-size: 13px; color: var(--grey-3); }
.exclusive-hero-cover {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  background-color: #0b1f2c;
  box-shadow: 0 36px 90px rgba(0,0,0,0.55);
}

/* ===================================================================
   EXHIBIT — data table + case study (article components)
   =================================================================== */
.ex-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ex-table th, .ex-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.ex-table thead th {
  background: var(--bg-soft);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 700;
}
.ex-table td.num, .ex-table th.num { text-align: right; font-variant-numeric: tabular-nums; }
.ex-table tbody tr:last-child td { border-bottom: none; }
.ex-table .total td { font-weight: 700; border-top: 2px solid var(--line); background: var(--bg-soft); }
.ex-table .q { width: 42%; font-weight: 600; color: var(--ink); }

.case-study { border-left: 3px solid var(--blue); background: var(--bg-soft); padding: 26px 30px; margin: 32px 0; }
.case-study .case-flag { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); font-weight: 700; margin-bottom: 10px; }
.case-study h3 { font-size: 23px; line-height: 1.22; margin-bottom: 14px; }
.case-study p { margin-bottom: 12px; }
.case-study .lesson { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 15px; }
.case-study .lesson strong { color: var(--blue); }

@media (max-width: 900px) {
  .exclusive-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .exclusive-hero-cover { max-width: 380px; order: -1; }
  .exclusive-hero h1 { font-size: 40px; }
}
.kaya-form-notice {
  width: 100%;
  margin: 16px 0 0;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  background: #f4f7fa;
  color: var(--ink);
  text-align: left;
  box-sizing: border-box;
}

.sub-form .kaya-form-notice,
.mck-bento-form .kaya-form-notice,
.mck-news-form .kaya-form-notice {
  flex-basis: 100%;
  grid-column: 1 / -1;
}

.kaya-form-notice__mark {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.kaya-form-notice__copy {
  display: grid;
  gap: 3px;
  font-size: 14px;
  line-height: 1.5;
}

.kaya-form-notice__copy strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.kaya-form-notice[data-state="error"] {
  border-left-color: #a12622;
  background: #fbf3f2;
}

.kaya-form-notice[data-state="error"] .kaya-form-notice__mark {
  background: #a12622;
}

.kaya-form-notice[data-state="pending"] {
  display: none;
}

form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.65;
}

/* ===================================================================
   OUR WORK — selected engagement index and case-study pages
   =================================================================== */
.mega-work { max-width: 1040px; }
.mega-work .mega-shell {
  grid-template-columns: minmax(0, 1fr) 360px;
  height: min(360px, calc(100vh - 96px));
}
.mega-work .mega-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mega-menu-label {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.mega-work .mega-grid { grid-template-columns: 1fr; }
.mega-work .mega-grid a { font-size: 15px; }
.work-editorial-image {
  background-image: url('assets/images/editorial/ifc-unhcr-joint-initiative-v2.png');
  background-color: #070943;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mega-events-image { background-image: url('assets/images/insights/mega-events-glory-burden.png'); }

.work-index-hero {
  background: var(--navy);
  color: #fff;
  padding: 86px 0 92px;
}
.work-index-hero .breadcrumb,
.work-case-hero .breadcrumb { margin-bottom: 52px; }
.work-index-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: end;
}
.work-index-intro h1 {
  max-width: 760px;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -3px;
}
.work-index-intro .deck {
  max-width: 720px;
  margin-top: 30px;
  color: #c9d7e7;
  font-size: 21px;
  line-height: 1.55;
}
.work-disclosure {
  border-top: 2px solid var(--blue);
  padding-top: 22px;
  color: #c9d7e7;
  font-size: 14px;
  line-height: 1.65;
}
.work-disclosure strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 11px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.work-list { padding: 92px 0 108px; }
.work-list-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  margin-bottom: 34px;
}
.work-list-head h2 {
  max-width: 700px;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -1.4px;
}
.work-list-head p {
  max-width: 430px;
  color: var(--grey-2);
  font-size: 15px;
  line-height: 1.65;
}
.work-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, 0.78fr);
  min-height: 590px;
  background: var(--bg-soft);
  color: var(--ink);
  overflow: hidden;
}
.work-feature-media {
  min-height: 520px;
  background-position: center;
  background-size: cover;
  transition: transform 0.65s var(--ease);
}
.work-feature-card:hover .work-feature-media { transform: scale(1.018); }
.work-feature-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 76px);
  background: var(--bg-soft);
}
.work-kicker,
.work-role {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.work-feature-copy h3 {
  margin: 22px 0 24px;
  font-size: clamp(31px, 3.2vw, 47px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -1.1px;
}
.work-feature-copy p {
  color: var(--grey-2);
  font-size: 17px;
  line-height: 1.68;
}
.work-feature-copy .work-role { margin-top: 26px; color: var(--ink); }
.work-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
}
.work-arrow span { transition: transform 0.2s var(--ease); }
.work-feature-card:hover .work-arrow span { transform: translateX(5px); }

.work-case-hero {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.work-case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  min-height: 670px;
}
.work-case-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px clamp(40px, 5vw, 80px) 74px max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
}
.work-case-hero-copy .eyebrow { color: var(--blue-light); }
.work-case-hero h1 {
  max-width: 720px;
  margin: 16px 0 26px;
  font-size: clamp(44px, 5.3vw, 76px);
  font-weight: 300;
  line-height: 0.99;
  letter-spacing: -2.6px;
}
.work-case-hero .deck {
  max-width: 660px;
  color: #c9d7e7;
  font-size: 20px;
  line-height: 1.56;
}
.work-case-hero-media {
  min-height: 670px;
  background-position: center;
  background-size: cover;
}
.work-feature-media.work-editorial-image,
.work-case-hero-media.work-editorial-image,
.mega-exclusive.work-editorial-image {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}
.work-facts {
  margin-top: -1px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.work-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.work-fact {
  min-height: 138px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}
.work-fact:first-child { border-left: 1px solid var(--line); }
.work-fact span {
  display: block;
  margin-bottom: 12px;
  color: var(--grey);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.work-fact strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}
.joint-initiative-section {
  padding: 94px 0 98px;
  background: #eef3ff;
  border-bottom: 1px solid #dce5ff;
}
.joint-initiative-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(54px, 9vw, 136px);
  align-items: start;
}
.joint-initiative-title h2 {
  max-width: 590px;
  margin: 16px 0 18px;
  font-size: clamp(38px, 4.7vw, 62px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -1.8px;
}
.joint-initiative-title p {
  max-width: 480px;
  color: var(--grey-2);
  font-size: 20px;
  line-height: 1.5;
}
.joint-initiative-copy {
  padding-top: 30px;
  border-top: 2px solid var(--blue);
}
.joint-initiative-copy p {
  color: var(--grey-2);
  font-size: 17px;
  line-height: 1.75;
}
.joint-initiative-copy p + p { margin-top: 22px; }
.joint-initiative-copy a:not(.joint-initiative-link) {
  color: var(--blue-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.joint-initiative-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 14px 20px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.joint-initiative-link:hover { background: var(--blue-dark); transform: translateY(-2px); }
.work-case-content { padding: 102px 0 116px; }
.work-story-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(56px, 9vw, 140px);
  align-items: start;
}
.work-story-aside {
  position: sticky;
  top: 100px;
  border-top: 2px solid var(--blue);
  padding-top: 20px;
}
.work-story-aside p {
  color: var(--grey-2);
  font-size: 14px;
  line-height: 1.7;
}
.work-story-aside strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.work-story-main section {
  padding: 0 0 58px;
  margin-bottom: 58px;
  border-bottom: 1px solid var(--line);
}
.work-story-main section:last-child { margin-bottom: 0; }
.work-story-main h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1.1px;
}
.work-story-main > section > p {
  max-width: 830px;
  color: var(--grey-2);
  font-size: 18px;
  line-height: 1.75;
}
.work-streams {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}
.work-stream {
  min-height: 230px;
  padding: 32px;
  background: #fff;
}
.work-stream-num {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
.work-stream h3 {
  margin: 38px 0 12px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.work-stream p {
  color: var(--grey-2);
  font-size: 14px;
  line-height: 1.65;
}
.work-confidential-note {
  margin-top: 34px;
  padding: 28px 30px;
  background: var(--bg-soft);
  border-left: 3px solid var(--blue);
  color: var(--grey-2);
  font-size: 14px;
  line-height: 1.7;
}
.work-confidential-note strong { color: var(--ink); }

@media (max-width: 1320px) and (min-width: 1181px) {
  .site-header { padding-left: 30px; padding-right: 30px; }
  .brand { margin-right: 28px; }
  .primary-nav > ul { gap: 16px; }
  .primary-nav > ul > li > a { font-size: 13px; }
  .header-subscribe { display: none; }
}

@media (max-width: 1180px) and (min-width: 701px) {
  .primary-nav { display: none; }
  .mobile-toggle { display: inline-flex; }
  .brand { margin-right: 0; }
  .primary-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid var(--line-dark);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 4px var(--pad) 20px;
  }
  .primary-nav.open > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav.open > ul > li { width: 100%; }
  .primary-nav.open > ul > li > a {
    display: flex;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
    border-top: none;
  }
  .primary-nav.open .mega { display: none; }
}

@media (max-width: 1100px) {
  .mega-work .mega-shell { grid-template-columns: minmax(0, 1fr) 300px; }
  .work-index-intro { grid-template-columns: 1fr; gap: 48px; }
  .work-list-head { display: grid; }
  .work-feature-card { grid-template-columns: 1fr; }
  .work-feature-media { min-height: 520px; }
  .work-case-hero-grid { grid-template-columns: 1fr; }
  .work-case-hero-copy { padding-left: var(--pad); }
  .work-case-hero-media { min-height: 520px; }
  .work-facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .joint-initiative-grid { grid-template-columns: 1fr; gap: 44px; }
  .joint-initiative-copy { padding-top: 26px; }
  .work-fact:nth-child(3) { border-left: 1px solid var(--line); }
  .work-fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 700px) {
  .work-index-hero { padding: 54px 0 64px; }
  .work-index-hero .breadcrumb,
  .work-case-hero .breadcrumb { margin-bottom: 38px; }
  .work-index-intro h1 { font-size: 48px; letter-spacing: -1.5px; }
  .work-index-intro .deck { font-size: 18px; }
  .work-list { padding: 62px 0 72px; }
  .work-feature-card { min-height: 0; }
  .work-feature-media { min-height: 300px; }
  .work-feature-copy { padding: 36px 28px 42px; }
  .work-case-hero-copy { padding: 44px 20px 54px; }
  .work-case-hero h1 { font-size: 42px; letter-spacing: -1.5px; }
  .work-case-hero .deck { font-size: 17px; }
  .work-case-hero-media { min-height: 310px; }
  .work-facts-grid { grid-template-columns: 1fr; }
  .work-fact,
  .work-fact:first-child,
  .work-fact:nth-child(3) { border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .joint-initiative-section { padding: 64px 0 68px; }
  .joint-initiative-title p { font-size: 18px; }
  .joint-initiative-copy p { font-size: 16px; }
  .work-case-content { padding: 68px 0 78px; }
  .work-story-grid { grid-template-columns: 1fr; gap: 52px; }
  .work-story-aside { position: static; }
  .work-story-main section { padding-bottom: 42px; margin-bottom: 42px; }
  .work-story-main > section > p { font-size: 16px; }
  .work-streams { grid-template-columns: 1fr; }
  .work-stream { min-height: 0; }
}

