/* MCA — MultiChain Advisors */

:root {
  --bg: #FFFFFF;
  --ink: #000000;
  --deep: #1A3B4D;
  --teal: #00A5A1;
  --muted: #5F6B73;
  --surface: #F6F8F9;
  --border: #E3E8EA;
  --hairline: #ECEFF1;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --maxw: 1240px;
  --textw: 760px;

  --font-head: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
html { background: #000; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

::selection { background: var(--deep); color: #fff; }

/* ---------- Type ---------- */
.h1, .h2, .h3, .h4, h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.h1 { font-size: clamp(42px, 5.4vw, 64px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 500; }
.h2 { font-size: clamp(34px, 3.8vw, 48px); line-height: 1.1; font-weight: 500; }
.h3 { font-size: clamp(26px, 2.6vw, 32px); line-height: 1.2; font-weight: 500; }
.h4 { font-size: clamp(20px, 1.8vw, 22px); line-height: 1.3; font-weight: 600; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 640px;
}
.small { font-size: 14px; color: var(--muted); }

a { color: inherit; text-decoration: none; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
}
.section { padding: 128px 0; position: relative; }
.section--tight { padding: 96px 0; }
.section--lg { padding: 160px 0 128px; }
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section--tight { padding: 56px 0; }
  .section--lg { padding: 96px 0 72px; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .section--tight { padding: 48px 0; }
  .section--lg { padding: 72px 0 56px; }
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 40px; }
}
.section-head__left { max-width: 760px; }
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head .lede { margin-top: 20px; }

.divider { height: 1px; background: var(--border); width: 100%; }
.hairline { border-top: 1px solid var(--hairline); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 150ms ease-out, background 150ms ease-out, color 150ms ease-out, border-color 150ms ease-out, box-shadow 150ms ease-out;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.012); }
.btn:active { transform: scale(0.99); }
.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover { background: var(--deep); }
.btn--secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn--secondary:hover { background: var(--surface); border-color: var(--ink); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
}
.btn--ghost:hover { color: var(--teal); }
.btn--teal {
  background: var(--teal);
  color: #fff;
}
.btn--teal:hover { filter: brightness(1.05); }
.btn--lg { padding: 17px 28px; font-size: 16px; }

.btn-arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
  transition: transform 150ms ease-out;
}
.btn:hover .btn-arrow { transform: translateX(3px); }

.linklike {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
  transition: border-color 150ms, color 150ms;
}
.linklike:hover { border-color: var(--ink); color: var(--teal); }
.linklike svg { transition: transform 150ms ease-out; }
.linklike:hover svg { transform: translateX(2px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  border: 0;
  outline: 0;
  box-shadow: none;
  transition: background 220ms ease-out, box-shadow 220ms ease-out, backdrop-filter 220ms ease-out;
}
.nav--scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 0 var(--hairline), 0 8px 24px -16px rgba(26,59,77,0.08);
}
/* Nav over full-bleed hero video — fully transparent, no chrome */
.nav--over-hero { color: #fff; background: transparent; box-shadow: none; }
.nav--over-hero .nav__link { color: #fff; }
.nav--over-hero .nav__link:hover { background: rgba(255,255,255,0.10); }
.nav--over-hero .nav__link--active { color: var(--teal); }
.nav--over-hero .nav__hamburger { color: #fff; }
.nav--over-hero .btn--primary {
  background: rgba(255,255,255,0.95);
  color: var(--ink);
}
.nav--over-hero .btn--primary:hover {
  background: #fff;
  color: var(--ink);
}

/* ---------- Unified dark nav (applied across all pages) ---------- */
.nav--dark {
  color: #fff;
  background: #000;
  box-shadow: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav--dark-scrolled {
  background: rgba(0,0,0,0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.06),
              0 8px 24px -16px rgba(0,0,0,0.6);
}
.nav--dark .nav__link { color: #fff; }
.nav--dark .nav__link:hover { background: rgba(255,255,255,0.08); }
.nav--dark .nav__link--active { color: var(--teal); }
.nav--dark .nav__hamburger {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}
.nav--dark .nav__dropdown {
  background: #0F1620;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.6);
}
.nav--dark .nav__dd-item:hover { background: rgba(255,255,255,0.04); }
.nav--dark .nav__dd-title { color: #fff; }
.nav--dark .nav__dd-desc { color: rgba(255,255,255,0.6); }
.nav--dark .btn--primary {
  background: #fff;
  color: #0A0F14;
}
.nav--dark .btn--primary:hover {
  background: var(--teal);
  color: #fff;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 600px) {
  .nav__inner { padding: 4px 20px; gap: 12px; }
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 17px;
}
.nav__logo--img img {
  height: 96px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .nav__logo--img img { height: 68px; }
}
.nav__logo-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--deep), var(--teal), var(--deep));
  position: relative;
}
.nav__logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
}
.nav__link {
  padding: 10px 14px;
  border-radius: var(--r-pill);
  color: var(--ink);
  position: relative;
  cursor: pointer;
}
.nav__link:hover { background: var(--surface); }
.nav__link--active { color: var(--teal); }
.nav__cta { display: flex; align-items: center; gap: 8px; }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 12px;
  min-width: 320px;
  box-shadow: 0 12px 40px -12px rgba(26,59,77,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms, transform 150ms;
}
.nav__link-wrap:hover .nav__dropdown,
.nav__link-wrap:focus-within .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dd-item {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
}
.nav__dd-item:hover { background: var(--surface); }
.nav__dd-title {
  font-size: 14px; font-weight: 600;
}
.nav__dd-desc {
  font-size: 12px; color: var(--muted);
  margin-top: 2px;
}

.nav__hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: #fff;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: inline-flex; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 48;
  padding: calc(var(--nav-h, 84px) + env(safe-area-inset-top, 0px) + 20px)
           clamp(20px, 6vw, 32px)
           calc(env(safe-area-inset-bottom, 0px) + 40px);
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: transform 280ms ease, visibility 0s linear 280ms;
  display: flex; flex-direction: column;
  gap: 4px;
}
.mobile-menu--open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 280ms ease, visibility 0s linear 0s;
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}
/* Hide the floating chat launcher while the mobile menu is open */
body.menu-open .atlas { display: none !important; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
}

/* ---------- Hero video (full-bleed) ---------- */
.hero-video {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: #000;
  margin-top: calc(-1 * var(--nav-offset, 0px));
}
.hero-video__el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-video__scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease;
  animation: hero-scroll-bob 2.4s ease-in-out infinite;
}
.hero-video__scroll:hover {
  background: rgba(0,0,0,0.32);
  border-color: rgba(255,255,255,0.6);
}
.hero-video__scroll-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #fff;
}
@keyframes hero-scroll-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video__scroll { animation: none; }
}
.hero-video--ended .hero-video__scroll {
  /* keep it visible after video ends */
}

/* ---------- Hero (legacy split layout — kept for any other usage) ---------- */
.hero {
  padding: 152px 0 96px;
  position: relative;
}
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: end;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero__title em {
  font-style: italic;
  font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  font-weight: 400;
  color: var(--deep);
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 460px;
  margin: 24px 0 32px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 96px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.hero__meta-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--surface), #fff);
  border: 1px solid var(--hairline);
}
.hero__visual-inner {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(0,165,161,0.10), transparent 60%),
    radial-gradient(80% 60% at 0% 100%, rgba(26,59,77,0.10), transparent 60%);
}

/* ---------- Video placeholder ---------- */
.video-slot {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg, #fff 0 14px, #F6F8F9 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.video-slot__label {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  padding: 8px 14px;
}
.video-slot--dark {
  background:
    repeating-linear-gradient(135deg, #142b38 0 14px, #1A3B4D 14px 28px);
  color: rgba(255,255,255,0.7);
}

/* ---------- Services ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: #fff;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background 200ms ease, transform 200ms ease;
  cursor: pointer;
}
.svc-card:hover { background: var(--surface); }
.svc-card--static { cursor: default; }
.svc-card--static:hover { background: #fff; }
body.home-dark .svc-card--static:hover { background: #0F1620; }
.svc-card--static > .svc-card__desc { padding-bottom: 32px; }
@media (max-width: 600px) { .svc-card--static > .svc-card__desc { padding-bottom: 28px; } }
.svc-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0E1D26;
  overflow: hidden;
}
.svc-card__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-card__media .svc-card__num {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.92);
  padding: 6px 10px;
  border-radius: var(--r-pill);
  z-index: 1;
}
.svc-card > .svc-card__title { padding: 0 32px; margin-top: 8px; }
.svc-card > .svc-card__desc { padding: 0 32px; }
.svc-card > .svc-card__cta { padding: 0 32px 32px; }
.svc-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.svc-card__title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.svc-card__desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}
.svc-card__cta svg { transition: transform 150ms ease-out; }
.svc-card:hover .svc-card__cta svg { transform: translateX(3px); }
.svc-card:hover .svc-card__cta { color: var(--teal); }
.svc-card__icon {
  width: 56px; height: 56px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--deep);
}

/* ---------- Results section (Metrics + Trusted By, merged) ---------- */
.results-section {
  background: #000000;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.results-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 100% 0%, rgba(0,165,161,0.10), transparent 60%),
    radial-gradient(50% 35% at 0% 100%, rgba(0,165,161,0.06), transparent 60%);
  pointer-events: none;
}
.results-section .container { position: relative; }

/* ---------- Metrics ---------- */
.metrics {
  background: var(--deep);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.metrics--flush {
  background: transparent;
  padding: 0;
  border-radius: 0;
  overflow: visible;
}
@media (max-width: 768px) { .metrics { padding: 56px 28px; } .metrics--flush { padding: 0; } }
.metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 100% 0%, rgba(0,165,161,0.18), transparent 60%);
  pointer-events: none;
}
.metrics--flush::before { display: none; }
.metrics__head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 64px;
}
.metrics__title { color: #fff; max-width: 600px; }
.metrics__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
@media (max-width: 900px) { .metrics__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .metrics__grid { grid-template-columns: 1fr; } }
.metric {
  background: var(--deep);
  padding: 36px 32px;
}
.metrics--flush .metric {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 250ms ease, transform 250ms ease;
}
.metrics--flush .metric::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.025), rgba(255,255,255,0) 55%);
  pointer-events: none;
}
.metrics--flush .metric::after {
  content: "";
  position: absolute;
  left: 32px; right: 32px; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}
.metrics--flush .metric:hover {
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.metrics--flush .metric:hover::after { opacity: 0.55; }

/* ---------- Rolling digits ---------- */
.metric__num-anim {
  display: inline-flex;
  align-items: baseline;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 1;
}
.metric__pre,
.metric__unit,
.metric__sep,
.metric__num-anim em {
  display: inline-block;
}
.metric__num-anim em {
  color: var(--teal);
  font-style: normal;
}
.metric__digits {
  display: inline-flex;
  align-items: baseline;
}
.rolldigit {
  display: inline-block;
  height: 1em;
  line-height: 1;
  overflow: hidden;
  vertical-align: baseline;
  /* keep digit slot tight to the glyph width */
  min-width: 0.6em;
  text-align: center;
}
.rolldigit__col {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  will-change: transform;
}
.rolldigit__col > span {
  display: block;
  height: 1em;
  line-height: 1;
}

/* ---------- Trusted by (smooth RAF marquee, inside results-section) ---------- */
.trusted {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 768px) { .trusted { margin-top: 40px; padding-top: 28px; } }
.trusted--about { margin-top: 72px; padding-top: 48px; }
@media (max-width: 768px) { .trusted--about { margin-top: 48px; padding-top: 32px; } }
.trusted__head {
  text-align: center;
  margin-bottom: 24px;
}
.trusted__title {
  color: #fff;
  margin-top: 14px;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.01em;
  font-weight: 500;
}

.logo-wall {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.logo-row {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 2px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.logo-row__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation: logo-marquee 60s linear infinite;
}
.logo-row__track--reverse {
  animation: logo-marquee-reverse 60s linear infinite;
}
.logo-row:hover .logo-row__track {
  animation-play-state: paused;
}
@keyframes logo-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@keyframes logo-marquee-reverse {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}
.logo-row__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 64px;
  margin-right: 20px;
  flex-shrink: 0;
  user-select: none;
}
.logo-row__item img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: transform 220ms ease;
  -webkit-user-drag: none;
}
.logo-row__item:hover img {
  transform: scale(1.06);
}
@media (max-width: 768px) {
  .logo-row__item { width: 168px; height: 52px; margin-right: 14px; }
  .logo-row { padding: 4px 0; }
}
@media (max-width: 480px) {
  .logo-row__item { width: 132px; height: 42px; margin-right: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .logo-row__track { animation: none !important; }
}
.metric__num {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 60px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: #00A5A1;
  text-shadow:
    0 0 1px rgba(0, 165, 161, 0.35),
    0 2px 24px rgba(0, 165, 161, 0.22),
    0 1px 0 rgba(0, 0, 0, 0.35);
}
.metric__num em {
  color: var(--teal);
  font-style: normal;
}
.metric__label {
  margin-top: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.4;
  max-width: 220px;
}

/* ---------- Logo grid ---------- */
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 900px) { .logos { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .logos { grid-template-columns: repeat(2, 1fr); } }
.logo-cell {
  background: #fff;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0.6;
  transition: opacity 200ms, color 200ms;
  cursor: default;
}
.logo-cell:hover { opacity: 1; color: var(--ink); }

/* ---------- Case studies ---------- */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .cs-grid { grid-template-columns: 1fr; } }
.cs-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
}
.cs-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: 0 18px 40px -22px rgba(26,59,77,0.18);
}
.cs-card__media {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}
.cs-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,59,77,0.20));
}
.cs-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.cs-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--teal);
  text-transform: uppercase;
}
.cs-card__title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.cs-card__desc { color: var(--muted); font-size: 15px; flex: 1; }
.cs-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}
.cs-card__metric {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Case studies — 5-column elegant row ---------- */
.cs-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1200px) { .cs-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .cs-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .cs-row { grid-template-columns: 1fr; } }

.cs-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 280ms ease,
              box-shadow 280ms ease;
}
.cs-tile::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--accent, var(--teal));
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: opacity 280ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}
.cs-tile:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 24px 50px -28px rgba(26,59,77,0.25);
}
.cs-tile:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.cs-tile__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0E1D26;
}
.cs-tile__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 280ms ease;
}
.cs-tile:hover .cs-tile__media img {
  transform: scale(1.06);
  filter: saturate(1.08);
}
.cs-tile__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.20));
  pointer-events: none;
}
.cs-tile__number {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #fff;
  padding: 5px 9px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cs-tile__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.cs-tile__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, var(--teal));
}
.cs-tile__title {
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.cs-tile__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cs-tile__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  gap: 8px;
}
.cs-tile__metric {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
  flex: 1;
}
.cs-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: color 200ms ease, gap 200ms ease;
}
.cs-tile__cta svg { transition: transform 200ms ease; }
.cs-tile:hover .cs-tile__cta { color: var(--accent, var(--teal)); gap: 9px; }
.cs-tile:hover .cs-tile__cta svg { transform: translate(2px, -2px); }

/* ---------- Insights marquee (homepage) ---------- */
.insights-sec {
  background: #0B1116;
  color: #fff;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}
.insights-sec .eyebrow { color: rgba(255,255,255,0.55); }
.insights-sec .h2 { color: #fff; max-width: 720px; }
.insights-sec .section-head { margin-bottom: 56px; }
.insights-sec .btn--secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.insights-sec .btn--secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.04);
}

/* ---------- Insights marquee — Reports page variant ---------- */
.insights-sec--reports {
  background: #0A0F14;
  padding-top: 64px;
  padding-bottom: 72px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.insights-sec--reports .insights-marquee__track {
  padding-top: 0;
  padding-bottom: 0;
}
.insights-sec--reports .ins-card {
  flex: 0 0 360px;
  gap: 16px;
}
.insights-sec--reports .ins-card__media {
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    0 24px 48px -28px rgba(0,0,0,0.7);
}
.insights-sec--reports .ins-card__media::before {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.insights-sec--reports .ins-card__meta {
  color: var(--teal);
  letter-spacing: 0.2em;
}
.insights-sec--reports .ins-card__title {
  font-size: 17px;
  color: #fff;
}
.insights-sec--reports .ins-card__metric {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}
.insights-sec--reports .ins-card__cta {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.insights-sec--reports .ins-card:hover .ins-card__cta { color: var(--teal); }
@media (max-width: 768px) {
  .insights-sec--reports { padding-top: 48px; padding-bottom: 56px; }
  .insights-sec--reports .ins-card { flex: 0 0 280px; }
}

.insights-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.insights-marquee__track {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 8px 40px;
  will-change: transform;
}
.ins-card {
  flex: 0 0 340px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 350ms cubic-bezier(.2,.7,.2,1);
}
.ins-card:hover { transform: translateY(-4px); }
.ins-card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  background: #0E1418;
  position: relative;
  box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset, 0 30px 60px -30px rgba(0,0,0,0.6);
}
.ins-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  pointer-events: none;
  z-index: 2;
}
.ins-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
  z-index: 1;
}
.ins-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1), filter 700ms;
  filter: saturate(0.92) contrast(1.02);
}
.ins-card:hover .ins-card__media img { transform: scale(1.04); }

.ins-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 2px;
}
.ins-card__meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, rgba(255,255,255,0.55));
}
.ins-card__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  text-wrap: pretty;
}
.ins-card__metric {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.ins-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: gap 250ms, color 250ms;
}
.ins-card:hover .ins-card__cta { gap: 14px; color: #fff; }
.ins-card__cta svg { transition: transform 250ms; }
.ins-card:hover .ins-card__cta svg { transform: translateX(2px); }

@media (max-width: 600px) {
  .ins-card { flex-basis: 280px; }
  .ins-card__title { font-size: 16px; }
}

/* ---------- Insights (legacy grid - kept for other pages) ---------- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .insights-grid { grid-template-columns: 1fr; } }
.article {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 28px;
  transition: border-color 200ms, transform 200ms;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
}
.article:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.article__cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.article__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  flex: 1;
  color: var(--ink);
}
.article__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.team-grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) {
  .team-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .team-grid, .team-grid--5 { grid-template-columns: repeat(2, 1fr); } }

.team-leadership {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
@media (max-width: 700px) { .team-leadership { grid-template-columns: 1fr; } }
.member--lead { padding: 36px; }
.member--lead .member__photo {
  font-size: 44px;
}

/* Full-bleed team video — breaks out of container width */
.team-video {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  margin-top: 64px;
  overflow: hidden;
  background: #000;
}
.team-video video {
  width: 100%;
  height: auto;
  display: block;
}
.member {
  background: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 200ms;
}
.member:hover { background: var(--surface); }
.member__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex: 1;
}
.member__socials {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.member__social {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
}
.member__social:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: transparent;
}
.member__social--li:hover { background: #0A66C2; }
.member__social--x:hover { background: var(--ink); }
.member--lead .member__social {
  width: 34px;
  height: 34px;
}
.member__photo {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  background:
    repeating-linear-gradient(135deg, #fff 0 10px, #F6F8F9 10px 20px);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 32px;
  color: var(--deep);
  letter-spacing: -0.02em;
  overflow: hidden;
  position: relative;
}
.member__photo--img {
  background: var(--surface);
}
.member__photo--img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--photo-pos, center 18%);
  display: block;
}
.member__name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
}
.member__role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* ---------- Team — Life at MCA (TL) ---------- */
.tl {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  margin-top: 96px;
  padding: 112px 0 120px;
  background: #000000;
  color: #FFFFFF;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tl::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 0% 0%, rgba(0,165,161,0.10), transparent 60%),
    radial-gradient(40% 30% at 100% 100%, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}
.tl__grid {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1100px) {
  .tl__grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .tl__copy, .tl__card { min-width: 0; max-width: 100%; }
  .tl__prev { max-width: 100%; }
  .tl { padding: 72px 0 88px; }
}
.tl__copy { color: #fff; }
.tl__eyebrow { color: rgba(255,255,255,0.55); }
.tl__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin-top: 22px;
  text-wrap: balance;
}
.tl__title em {
  font-style: normal;
  color: var(--teal);
  font-family: inherit;
  font-weight: inherit;
}
.tl__title em span { color: #fff !important; }
.tl__lede {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}

/* Previous experience — rolling logos in left column */
.tl__prev {
  margin-top: 40px;
  max-width: 640px;
}
.tl__prev-eyebrow { color: rgba(255,255,255,0.55); display: block; margin-bottom: 20px; }
.tl__prev-stage {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.tl__prev-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
}
.tl__prev-card {
  flex-shrink: 0;
  width: 340px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  user-select: none;
}
.tl__prev-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
  filter: saturate(1.05) contrast(1.02);
  transition: opacity 250ms ease, transform 250ms ease;
}
.tl__prev-card:hover img { opacity: 1; transform: scale(1.04); }
@media (max-width: 768px) {
  .tl__prev-card { width: 260px; height: 88px; padding: 0 16px; }
  .tl__prev-stage { padding: 14px 0; }
}
@media (max-width: 480px) {
  .tl__prev-card { width: 220px; height: 76px; padding: 0 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .tl__prev-track { transform: none !important; }
}

/* Rolling logo strip below the grid */
.tl__logos-wrap {
  position: relative;
  z-index: 1;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--hairline);
}
.tl__logos {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.tl__logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tl-logos-scroll 60s linear infinite;
  will-change: transform;
}
.tl__logos:hover .tl__logos-track { animation-play-state: paused; }
.tl__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 90px;
  margin-right: 56px;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 200ms ease, opacity 200ms ease, transform 200ms ease;
}
.tl__logo img {
  max-width: 80%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.tl__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}

/* Card */
.tl__card {
  border-radius: 20px;
  overflow: hidden;
  background: #0B1418;
  border: 1px solid var(--hairline);
  box-shadow: 0 30px 80px -30px rgba(26,59,77,0.18);
}
.tl__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #0B1418;
}
.tl__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
  transform: scale(1.02);
}
.tl__img--active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 900ms ease, transform 6000ms ease-out;
}
.tl__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0) 26%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.tl__chip {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 12px;
  border-radius: 10px;
  background: rgba(8, 14, 18, 0.7);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.tl__play {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(8, 14, 18, 0.7);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background 150ms ease;
}
.tl__play:hover { background: rgba(8,14,18,0.9); }

.tl__cap {
  padding: 24px 28px 22px;
  color: #fff;
  background: #0B1418;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.tl__cap-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.tl__cap-sub {
  margin-top: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.55;
  max-width: 560px;
}
.tl__cap-foot {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.tl__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.tl__dot {
  width: 22px;
  height: 3px;
  border-radius: 2px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}
.tl__dot--active {
  width: 36px;
  background: #fff;
}
.tl__count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
}

/* ---------- Team — Life at MCA carousel ---------- */
.team-life {
  margin-top: 96px;
  padding: 64px;
  border-radius: var(--r-lg);
  background: #0E1D26;
  color: #fff;
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.team-life::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 0% 0%, rgba(0,165,161,0.18), transparent 60%),
    radial-gradient(40% 30% at 100% 100%, rgba(0,165,161,0.10), transparent 60%);
  pointer-events: none;
}
@media (max-width: 980px) {
  .team-life { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
}
.team-life__intro { position: relative; z-index: 1; max-width: 480px; }
.team-life__intro .eyebrow { color: rgba(255,255,255,0.6); }
.team-life__title {
  color: #fff;
  margin-top: 16px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.team-life__title em {
  font-style: italic;
  font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  font-weight: 400;
  color: var(--teal);
}
.team-life__copy {
  margin-top: 20px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.6;
}
.team-life__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.team-life__chip {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
}

.team-life__media {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.team-life__row {
  overflow: hidden;
  width: 100%;
}
.team-life__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: team-life-scroll 60s linear infinite;
  will-change: transform;
}
.team-life__row--reverse .team-life__track { animation-direction: reverse; }
.team-life__row:hover .team-life__track { animation-play-state: paused; }

.team-life__card {
  position: relative;
  flex-shrink: 0;
  margin: 0 12px 0 0;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.team-life__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.team-life__card:hover img { transform: scale(1.04); }
.team-life__card--lg { width: 320px; height: 200px; }
.team-life__card--sm { width: 260px; height: 170px; }

@media (max-width: 980px) {
  .team-life__card--lg { width: 240px; height: 160px; }
  .team-life__card--sm { width: 200px; height: 130px; }
}
@media (max-width: 600px) {
  .team-life__card--lg { width: 200px; height: 130px; }
  .team-life__card--sm { width: 170px; height: 110px; }
}
@keyframes team-life-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .team-life__track { animation: none; }
}

.experience-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.experience-strip span {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- Testimonials marquee ---------- */
.t-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.t-marquee__track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 8px 24px;
  will-change: transform;
}
.t-card {
  flex: 0 0 380px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 280px;
}
.t-card__quote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.t-card__head {
  display: none;
}
.t-card__logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.t-card__company {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.t-card__author { display: flex; align-items: center; gap: 12px; }
.t-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep), var(--teal));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 600; font-size: 13px;
}
.t-card__name { font-weight: 600; font-size: 14px; color: var(--ink); }
.t-card__title { font-size: 12px; color: var(--muted); margin-top: 2px; }
.testimonials-wrap { position: relative; }
.testimonial {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  border: 1px solid var(--hairline);
}
@media (max-width: 768px) {
  .testimonial { padding: 32px; grid-template-columns: 1fr; gap: 24px; }
}
.testimonial__mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 96px;
  line-height: 0.5;
  color: var(--teal);
  margin-top: 32px;
}
.testimonial__quote {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.testimonial__author {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep), var(--teal));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
}
.testimonial__name { font-weight: 600; font-size: 15px; }
.testimonial__title { font-size: 13px; color: var(--muted); margin-top: 2px; }

.t-controls {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  align-items: center;
  justify-content: space-between;
}
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 28px; height: 4px;
  border-radius: 2px;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 150ms;
}
.t-dot--active { background: var(--ink); }
.t-arrows { display: flex; gap: 8px; }
.t-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms, border-color 150ms;
}
.t-arrow:hover { background: var(--surface); border-color: var(--ink); }

/* ---------- FAQ ---------- */
.faq {
  border-top: 1px solid var(--hairline);
}
.faq__item {
  border-bottom: 1px solid var(--hairline);
}
.faq__btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.faq__plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 150ms, border-color 150ms;
}
.faq__btn:hover .faq__plus { background: var(--surface); border-color: var(--ink); }
.faq__icon {
  position: relative;
  width: 12px; height: 12px;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 200ms;
}
.faq__icon::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq__item--open .faq__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms ease, padding 250ms ease;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 0;
}
.faq__item--open .faq__answer {
  max-height: 400px;
  padding-bottom: 28px;
}
.faq__answer-inner { max-width: 640px; }

/* ---------- CTA block ---------- */
.cta-block {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 96px 64px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) { .cta-block { padding: 56px 32px; } }
.cta-block::before {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,165,161,0.25), transparent 60%);
  pointer-events: none;
}
.cta-block__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 768px) { .cta-block__inner { grid-template-columns: 1fr; } }
.cta-block__title {
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-family: var(--font-head);
  font-weight: 500;
}
.cta-block__sub {
  color: rgba(255,255,255,0.7);
  margin-top: 20px;
  max-width: 480px;
}

/* ---------- Footer ---------- */
.footer {
  background: #0E1D26;
  color: rgba(255,255,255,0.7);
  padding: 96px 0 32px;
  margin-top: 64px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
.footer__brand-name {
  font-family: var(--font-head);
  font-weight: 600;
  color: #fff;
  font-size: 22px;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.footer__brand-desc {
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
}
.footer__col-title {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---------- Misc ---------- */
.section-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

.fade-in { animation: fadeIn 220ms ease-out both; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- Pages (interior) ---------- */
.page-hero {
  padding: 152px 0 64px;
  border-bottom: 1px solid var(--hairline);
}
.page-hero__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
}
.page-hero__crumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(42px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  max-width: 880px;
}
.page-hero__sub {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 640px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ----- About (centered single column) ----- */
.about-centered {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.about-centered__title {
  font-family: var(--font-head);
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
}
.about-centered__sub {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 680px;
  margin: 24px auto 0;
  text-wrap: pretty;
}
.two-col__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: sticky;
  top: 120px;
}

.bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--hairline);
}
.bullets li {
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: baseline;
}
.bullets__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.bullets__title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.bullets__desc {
  color: var(--muted);
  font-size: 15px;
  margin-top: 6px;
}

/* ---------- Form ---------- */
.form-wrap {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 48px;
}
@media (max-width: 600px) { .form-wrap { padding: 28px; } }
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.field__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.field__input,
.field__select,
.field__textarea {
  width: 100%;
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color 150ms, box-shadow 150ms;
}
.field__input:focus,
.field__select:focus,
.field__textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(0,165,161,0.15);
}
.field__textarea { min-height: 140px; resize: vertical; }
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.form-success {
  background: #F0F8F7;
  border: 1px solid #C7E5E3;
  color: var(--deep);
  padding: 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
  display: flex; align-items: flex-start; gap: 12px;
}
.form-error {
  background: #FBEFEF;
  border: 1px solid #ECCDCD;
  color: #8C2A2A;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-size: 14px;
}

/* ---------- Locations ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .loc-grid { grid-template-columns: repeat(2, 1fr); } }
.loc {
  background: #fff;
  padding: 32px;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 16px;
}
.loc__region {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--teal);
  text-transform: uppercase;
}
.loc__city {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.loc__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

/* ---------- Reports ---------- */
.report {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
@media (max-width: 768px) { .report { grid-template-columns: 1fr; } }
.report:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(26,59,77,0.18);
}
.report__cover {
  aspect-ratio: 5/4;
  background:
    linear-gradient(180deg, var(--deep), #0E1D26);
  position: relative;
  color: #fff;
  padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.report__body { padding: 32px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Blog (CMS) ---------- */
.blog-hero {
  padding: 152px 0 80px;
  border-bottom: 1px solid var(--hairline);
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(0,165,161,0.07), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(26,59,77,0.05), transparent 60%);
}
.blog-hero__title {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  max-width: 1000px;
}
.blog-hero__title em {
  font-style: italic;
  font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  font-weight: 400;
  color: var(--deep);
  letter-spacing: -0.02em;
}
.blog-hero__sub {
  margin-top: 24px;
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
}
.blog-search {
  margin-top: 40px;
  max-width: 520px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 14px 18px;
  transition: border-color 150ms, box-shadow 150ms;
  color: var(--muted);
}
.blog-search:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(0,165,161,0.15);
}
.blog-search input {
  border: 0;
  outline: 0;
  background: transparent;
  flex: 1;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
}
.blog-search input::placeholder { color: var(--muted); }
.blog-search__clear {
  appearance: none;
  border: 0;
  background: var(--surface);
  width: 22px; height: 22px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 11px;
  color: var(--muted);
  display: inline-flex; align-items: center; justify-content: center;
}
.blog-search__clear:hover { background: var(--border); color: var(--ink); }

.blog-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.blog-meta__dot { opacity: 0.5; }

/* Featured */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -28px rgba(26,59,77,0.22);
  border-color: var(--border);
}
@media (max-width: 900px) { .blog-featured { grid-template-columns: 1fr; } }
.blog-featured__media {
  position: relative;
  min-height: 460px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
}
@media (max-width: 900px) { .blog-featured__media { min-height: 280px; } }
.blog-featured__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.45));
  pointer-events: none;
}
.blog-featured__media-tag {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  margin-bottom: auto;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--r-pill);
  align-self: flex-start;
}
.blog-featured__media-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 80%;
  opacity: 0.96;
}
.blog-featured__body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 600px) { .blog-featured__body { padding: 32px; } }
.blog-featured__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.blog-featured__excerpt {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Filter chips */
.blog-listing-head { margin-bottom: 24px; }
.blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--hairline);
}
.blog-chip {
  appearance: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font: inherit;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 150ms, border-color 150ms, color 150ms;
}
.blog-chip:hover { background: var(--surface); border-color: var(--ink); }
.blog-chip--active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* Card grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 200ms ease, border-color 200ms, box-shadow 200ms;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: 0 18px 40px -22px rgba(26,59,77,0.18);
}
.blog-card__cover {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  overflow: hidden;
}
.blog-card__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.35));
  pointer-events: none;
}
.blog-card__cat {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(2px);
}
.blog-card__cover-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  opacity: 0.95;
  max-width: 90%;
}
.blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-card__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.blog-card__excerpt {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}
.blog-card__foot {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}

.blog-empty {
  border: 1px dashed var(--border);
  border-radius: var(--r-lg);
  padding: 80px 32px;
  text-align: center;
}
.blog-empty__title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
}
.blog-empty__sub { color: var(--muted); margin-top: 8px; }

/* Post detail */
.post-hero {
  padding: 152px 0 80px;
  position: relative;
  color: #fff;
}
.post-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(0,0,0,0.0), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
  pointer-events: none;
}
.post-hero > .container { position: relative; z-index: 1; }
.post-hero__back {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-pill);
  transition: background 150ms, border-color 150ms;
}
.post-hero__back:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.post-hero__cat {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
}
.post-hero__title {
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 500;
  max-width: 900px;
}
.post-hero__meta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  flex-wrap: wrap;
}

.post-body {
  max-width: 740px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
}
.post-body__lede {
  font-size: 22px;
  line-height: 1.5;
  color: var(--deep);
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: -0.015em;
  border-left: 2px solid var(--teal);
  padding-left: 24px;
  margin: 0 0 48px;
}
.post-body h2 {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 48px 0 16px;
}
.post-body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 32px 0 12px;
}
.post-body p { margin: 0 0 24px; }
.post-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.post-body ul li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
}
.post-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 1.5px;
  background: var(--teal);
}
.post-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 2px solid var(--teal);
  background: var(--surface);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--deep);
}
.post-callout {
  margin: 32px 0;
  padding: 20px 24px;
  background: var(--surface);
  border-radius: var(--r-md);
  font-size: 16px;
  color: var(--ink);
}
.post-share {
  margin: 64px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.post-share__row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.post-share__row a {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  transition: background 150ms, border-color 150ms;
}
.post-share__row a:hover { background: var(--surface); border-color: var(--ink); }

/* Kill the white footer-margin gap when the preceding page is dark */
main:has(.rpt-section) + .footer { margin-top: 0; }
.rpt-hero {
  position: relative;
  background: #07090C;
  color: #fff;
  overflow: hidden;
  padding: 200px 0 132px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  isolation: isolate;
}

/* ---- Moving background layers ---- */
.rpt-hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.rpt-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
  mix-blend-mode: screen;
}
.rpt-hero__orb--1 {
  width: 720px; height: 720px;
  left: 50%; top: 50%;
  margin-left: -360px; margin-top: -360px;
  background: radial-gradient(circle, rgba(0,165,161,0.55) 0%, rgba(0,165,161,0) 65%);
  animation: rpt-drift-1 22s ease-in-out infinite alternate;
}
.rpt-hero__orb--2 {
  width: 560px; height: 560px;
  left: 20%; top: 10%;
  background: radial-gradient(circle, rgba(26,59,77,0.85) 0%, rgba(26,59,77,0) 65%);
  animation: rpt-drift-2 28s ease-in-out infinite alternate;
}
.rpt-hero__orb--3 {
  width: 480px; height: 480px;
  right: 12%; bottom: 8%;
  background: radial-gradient(circle, rgba(120,80,200,0.40) 0%, rgba(120,80,200,0) 65%);
  animation: rpt-drift-3 32s ease-in-out infinite alternate;
}
@keyframes rpt-drift-1 {
  0%   { transform: translate3d(-120px, -40px, 0) scale(1); }
  50%  { transform: translate3d(80px, 60px, 0) scale(1.08); }
  100% { transform: translate3d(140px, -80px, 0) scale(0.96); }
}
@keyframes rpt-drift-2 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(180px, 120px, 0) scale(1.12); }
  100% { transform: translate3d(-60px, 80px, 0) scale(0.94); }
}
@keyframes rpt-drift-3 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-160px, -100px, 0) scale(1.05); }
  100% { transform: translate3d(60px, -40px, 0) scale(1.12); }
}

.rpt-hero__grid {
  position: absolute; inset: -1px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(60% 55% at 50% 50%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(60% 55% at 50% 50%, #000 25%, transparent 80%);
  animation: rpt-grid-pan 40s linear infinite;
}
@keyframes rpt-grid-pan {
  from { background-position: 0 0; }
  to   { background-position: 56px 56px; }
}
.rpt-hero__noise {
  position: absolute; inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.rpt-hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 50%, transparent 40%, rgba(7,9,12,0.55) 85%, rgba(7,9,12,1) 100%),
    linear-gradient(to bottom, transparent 60%, rgba(7,9,12,0.6) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .rpt-hero__orb, .rpt-hero__grid { animation: none; }
}

/* ---- Centered content ---- */
.rpt-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  text-align: left;
}

/* Centered hero variant (Reports) */
.rpt-hero--centered {
  min-height: 88vh;
  display: flex;
  align-items: center;
}
.rpt-hero--centered .rpt-hero__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rpt-hero--centered .rpt-hero__sub {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .rpt-hero--centered { min-height: auto; }
}

.rpt-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
}
.rpt-hero__chip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,165,161,0.18);
  animation: rpt-pulse 2.4s ease-in-out infinite;
}
@keyframes rpt-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0,165,161,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(0,165,161,0.06); }
}
.rpt-hero__chip-sep { color: rgba(255,255,255,0.25); }
.rpt-hero__chip-count { color: rgba(255,255,255,0.45); }

.rpt-hero__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(42px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.rpt-hero__accent {
  color: var(--teal);
  background: linear-gradient(180deg, #2EE0DC 0%, #00A5A1 65%, #007D7A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rpt-hero__title em,
.rpt-hero__accent em {
  font-family: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  padding: 0 0.04em;
}

.rpt-hero__sub {
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
  max-width: 640px;
}
.rpt-hero__meta {
  margin: 44px auto 0;
  display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.rpt-hero__dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  display: inline-block;
}

.rpt-section {
  background: #0A0F14;
  color: #fff;
  padding: 96px 0 128px;
  position: relative;
}
.rpt-section::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
}

.rpt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1080px) { .rpt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .rpt-grid { grid-template-columns: 1fr; } }

.rpt-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  cursor: pointer;
  position: relative;
}
.rpt-card::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 20px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(0,165,161,0.05) 100%);
  opacity: 0;
  transition: opacity 240ms ease;
}
.rpt-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,165,161,0.45);
  box-shadow:
    0 30px 60px -28px rgba(0,0,0,0.6),
    0 0 0 1px rgba(0,165,161,0.08);
}
.rpt-card:hover::after { opacity: 1; }

.rpt-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #0B1116;
}
.rpt-cover__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
  filter: saturate(0.95) brightness(0.92);
}
.rpt-card:hover .rpt-cover__img {
  transform: scale(1.04);
}
.rpt-cover__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,20,0) 40%, rgba(10,15,20,0.55) 100%),
    linear-gradient(180deg, rgba(10,15,20,0.35) 0%, rgba(10,15,20,0) 50%);
  pointer-events: none;
}
.rpt-cover__num {
  position: absolute;
  right: 20px; bottom: 14px;
  font-family: var(--font-mono);
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.04em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.55);
  pointer-events: none;
}
.rpt-cover__cat {
  position: absolute;
  left: 18px; top: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  background: rgba(10,15,20,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 7px 11px;
  border-radius: 999px;
}

.rpt-card__body {
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.rpt-card__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.rpt-card__cat { color: var(--teal); }
.rpt-card__read { color: rgba(255,255,255,0.5); }
.rpt-card__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
  text-wrap: pretty;
}
.rpt-card__preview {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.62);
  margin: 0;
  flex: 1;
  text-wrap: pretty;
}
.rpt-card__foot {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: flex-end;
}
.rpt-card__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.rpt-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  transition: all 200ms ease;
}
.rpt-card__cta svg { transition: transform 200ms ease; }
.rpt-card:hover .rpt-card__cta {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.rpt-card:hover .rpt-card__cta svg {
  transform: translate(2px, -2px);
}

.rpt-cta {
  margin-top: 96px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 48px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(0,165,161,0.06), rgba(255,255,255,0.015)),
    #0E141A;
  position: relative;
  overflow: hidden;
}
.rpt-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 100% 0%, rgba(0,165,161,0.18), transparent 60%);
  pointer-events: none;
}
@media (max-width: 800px) {
  .rpt-cta { grid-template-columns: 1fr; padding: 36px; }
}
.rpt-cta__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.rpt-cta__title {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 12px;
  max-width: 640px;
  text-wrap: balance;
}
.rpt-cta__desc {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.55;
  max-width: 640px;
  margin: 0;
}
.rpt-cta .btn--primary {
  background: #fff;
  color: #0A0F14;
}
.rpt-cta .btn--primary:hover { background: var(--teal); color: #fff; }

/* ============================================================
   Homepage — dark mode
   Scoped via body.home-dark, toggled by the router on route "/".
   Flips background + ink tokens and overrides the few hard-coded
   white surfaces / borders that live in homepage components.
   ============================================================ */
body.home-dark {
  --bg: #0A0F14;
  --ink: #FFFFFF;
  --surface: #131C28;
  --border: rgba(255,255,255,0.10);
  --hairline: rgba(255,255,255,0.06);
  --muted: rgba(255,255,255,0.62);
  background: var(--bg);
  color: var(--ink);
}
body.home-dark ::selection { background: #FFFFFF; color: #0A0F14; }

/* Buttons + final CTA — restore contrast after --ink flips white */
body.home-dark .btn--primary { background: #FFFFFF; color: #0A0F14; }
body.home-dark .btn--primary:hover { background: var(--teal); color: #fff; }
body.home-dark .btn--secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}
body.home-dark .btn--secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: #fff;
}
body.home-dark .btn--ghost { color: #fff; }
body.home-dark .linklike { color: #fff; border-bottom-color: rgba(255,255,255,0.18); }
body.home-dark .linklike:hover { border-bottom-color: #fff; color: var(--teal); }

body.home-dark .cta-block { background: #0E141A; border: 1px solid rgba(255,255,255,0.06); }
body.home-dark .cta-block::before {
  background: radial-gradient(circle, rgba(0,165,161,0.30), transparent 60%);
}

/* Nav — scrolled state on dark page */
body.home-dark .nav--scrolled {
  background: rgba(10,15,20,0.78);
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.06),
              0 8px 24px -16px rgba(0,0,0,0.6);
}
body.home-dark .nav__link { color: #fff; }
body.home-dark .nav__link:hover { background: rgba(255,255,255,0.06); }
body.home-dark .nav__hamburger {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}
body.home-dark .nav__dropdown {
  background: #0F1620;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.6);
}
body.home-dark .nav__dd-item:hover { background: rgba(255,255,255,0.04); }
body.home-dark .nav__dd-title { color: #fff; }
body.home-dark .mobile-menu { background: #0A0F14; }
body.home-dark .mobile-menu a { color: #fff; border-bottom-color: rgba(255,255,255,0.08); }

/* Services grid */
body.home-dark .svc-grid {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.08);
}
body.home-dark .svc-card { background: #0F1620; }
body.home-dark .svc-card:hover { background: #131C28; }
body.home-dark .svc-card__title { color: #fff; }
body.home-dark .svc-card__num {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
}
body.home-dark .svc-card__icon {
  border-color: rgba(255,255,255,0.10);
  color: #fff;
}

/* Insights / Case-study tiles */
body.home-dark .cs-tile {
  background: #0F1620;
  border-color: rgba(255,255,255,0.08);
}
body.home-dark .cs-tile:hover {
  box-shadow: 0 24px 50px -28px rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.16);
}
body.home-dark .cs-tile__title { color: #fff; }
body.home-dark .cs-tile__foot { border-top-color: rgba(255,255,255,0.08); }
body.home-dark .cs-tile__cta { color: #fff; }

/* Team grids + member cards */
body.home-dark .team-leadership,
body.home-dark .team-grid {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.08);
}
body.home-dark .member { background: #0F1620; }
body.home-dark .member:hover { background: #131C28; }
body.home-dark .member__name { color: #fff; }
body.home-dark .member__photo {
  background: repeating-linear-gradient(135deg, #0F1620 0 10px, #131C28 10px 20px);
  border-color: rgba(255,255,255,0.06);
  color: #fff;
}
body.home-dark .member__photo--img { background: #0F1620; }
body.home-dark .member__social {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}
body.home-dark .member__social:hover { color: #fff; }

/* Testimonials marquee cards */
body.home-dark .t-card {
  background: #0F1620;
  border-color: rgba(255,255,255,0.08);
}
body.home-dark .t-card__quote,
body.home-dark .t-card__company,
body.home-dark .t-card__name { color: #fff; }
body.home-dark .t-card__title { color: rgba(255,255,255,0.6); }

/* FAQ */
body.home-dark .faq { border-top-color: rgba(255,255,255,0.08); }
body.home-dark .faq__item { border-bottom-color: rgba(255,255,255,0.08); }
body.home-dark .faq__btn { color: #fff; }
body.home-dark .faq__plus {
  border-color: rgba(255,255,255,0.16);
}
body.home-dark .faq__btn:hover .faq__plus {
  background: rgba(255,255,255,0.06);
  border-color: #fff;
}
body.home-dark .faq__icon::before,
body.home-dark .faq__icon::after { background: #fff; }
body.home-dark .faq__answer { color: rgba(255,255,255,0.62); }

/* FAQ on About Us (team) page — mirror the home-dark dark treatment */
body.team-dark-page #faq .h2 { color: #fff; }
body.team-dark-page #faq .eyebrow { color: rgba(255,255,255,0.5); }
body.team-dark-page .faq { border-top-color: rgba(255,255,255,0.08); }
body.team-dark-page .faq__item { border-bottom-color: rgba(255,255,255,0.08); }
body.team-dark-page .faq__btn { color: #fff; }
body.team-dark-page .faq__plus { border-color: rgba(255,255,255,0.16); }
body.team-dark-page .faq__btn:hover .faq__plus {
  background: rgba(255,255,255,0.06);
  border-color: #fff;
}
body.team-dark-page .faq__icon::before,
body.team-dark-page .faq__icon::after { background: #fff; }
body.team-dark-page .faq__answer { color: rgba(255,255,255,0.62); }

/* Section dividers / hairlines that were drawn as light gray */
body.home-dark .divider { background: rgba(255,255,255,0.10); }
body.home-dark .hairline { border-top-color: rgba(255,255,255,0.06); }

/* ============================================================
   Blog — dark mode (scoped via body.blog-dark)
   ============================================================ */
body.blog-dark {
  --bg: #07090C;
  --ink: #F4F1EA;
  --muted: rgba(244,241,234,0.58);
  --surface: #0E1218;
  --border: rgba(255,255,255,0.10);
  --hairline: rgba(255,255,255,0.06);
  background: var(--bg);
  color: var(--ink);
}
body.blog-dark ::selection { background: var(--teal); color: #07090C; }

/* Nav + buttons + linklikes — same dark treatment as home */
body.blog-dark .nav--scrolled {
  background: rgba(7,9,12,0.80);
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.06),
              0 8px 24px -16px rgba(0,0,0,0.6);
}
body.blog-dark .nav__link { color: #fff; }
body.blog-dark .nav__link:hover { background: rgba(255,255,255,0.06); }
body.blog-dark .nav__hamburger {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.16);
  color: #fff;
}
body.blog-dark .nav__dropdown {
  background: #0F1620;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.6);
}
body.blog-dark .nav__dd-item:hover { background: rgba(255,255,255,0.04); }
body.blog-dark .nav__dd-title { color: #fff; }
body.blog-dark .mobile-menu { background: #07090C; }
body.blog-dark .mobile-menu a { color: #fff; border-bottom-color: rgba(255,255,255,0.08); }

body.blog-dark .btn--primary { background: #F4F1EA; color: #07090C; }
body.blog-dark .btn--primary:hover { background: var(--teal); color: #fff; }
body.blog-dark .btn--secondary { color: #fff; border-color: rgba(255,255,255,0.18); }
body.blog-dark .btn--secondary:hover { background: rgba(255,255,255,0.06); border-color: #fff; }
body.blog-dark .btn--ghost { color: #fff; }
body.blog-dark .linklike { color: #fff; border-bottom-color: rgba(255,255,255,0.18); }
body.blog-dark .linklike:hover { border-bottom-color: #fff; color: var(--teal); }

body.blog-dark .cta-block { background: #0E141A; border: 1px solid rgba(255,255,255,0.06); }
body.blog-dark .cta-block::before {
  background: radial-gradient(circle, rgba(0,165,161,0.30), transparent 60%);
}

/* ---------- Blog hero (centered, editorial) ---------- */
body.blog-dark .blog-hero {
  position: relative;
  overflow: hidden;
  padding: 200px 0 132px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: #07090C;
  isolation: isolate;
  color: #fff;
}
body.blog-dark .blog-hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
body.blog-dark .blog-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
  mix-blend-mode: screen;
}
body.blog-dark .blog-hero__orb--1 {
  width: 720px; height: 720px;
  left: 50%; top: 50%;
  margin-left: -360px; margin-top: -360px;
  background: radial-gradient(circle, rgba(0,165,161,0.55) 0%, rgba(0,165,161,0) 65%);
  animation: rpt-drift-1 22s ease-in-out infinite alternate;
}
body.blog-dark .blog-hero__orb--2 {
  width: 560px; height: 560px;
  left: 20%; top: 10%;
  background: radial-gradient(circle, rgba(26,59,77,0.85) 0%, rgba(26,59,77,0) 65%);
  animation: rpt-drift-2 28s ease-in-out infinite alternate;
}
body.blog-dark .blog-hero__orb--3 {
  width: 480px; height: 480px;
  right: 12%; bottom: 8%;
  background: radial-gradient(circle, rgba(120,80,200,0.40) 0%, rgba(120,80,200,0) 65%);
  animation: rpt-drift-3 32s ease-in-out infinite alternate;
}
body.blog-dark .blog-hero__grid {
  position: absolute; inset: -1px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(60% 55% at 50% 50%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(60% 55% at 50% 50%, #000 25%, transparent 80%);
  animation: rpt-grid-pan 40s linear infinite;
}
body.blog-dark .blog-hero__noise {
  position: absolute; inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
body.blog-dark .blog-hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 50%, transparent 40%, rgba(7,9,12,0.55) 85%, rgba(7,9,12,1) 100%),
    linear-gradient(to bottom, transparent 60%, rgba(7,9,12,0.6) 100%);
}

body.blog-dark .blog-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  text-align: left;
}

body.blog-dark .blog-hero__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(42px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
body.blog-dark .blog-hero__title-accent {
  color: var(--teal);
  background: linear-gradient(180deg, #2EE0DC 0%, #00A5A1 65%, #007D7A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.blog-dark .blog-hero__sub {
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
  max-width: 640px;
  text-wrap: pretty;
}

/* ---------- Featured article ---------- */
body.blog-dark .section-num,
body.blog-dark .eyebrow { color: rgba(244,241,234,0.50); }
body.blog-dark .h2 { color: #F4F1EA; }

body.blog-dark .blog-featured {
  background: linear-gradient(180deg, #0D1218 0%, #0A0E13 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
body.blog-dark .blog-featured:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 30px 60px -28px rgba(0,0,0,0.6);
}
body.blog-dark .blog-featured__title { color: #F4F1EA; }
body.blog-dark .blog-featured__excerpt { color: rgba(244,241,234,0.60); }
body.blog-dark .blog-meta { color: rgba(244,241,234,0.50); }

/* ---------- Listing head centered ---------- */
.blog-listing-head--centered { text-align: center; margin-bottom: 36px; }
.blog-listing-head--centered .section-num { display: block; }

/* ---------- Filters ---------- */
.blog-filters--centered {
  justify-content: center;
  padding-bottom: 0;
  border-bottom: 0;
  margin-bottom: 48px;
}
body.blog-dark .blog-filters {
  border-bottom-color: rgba(255,255,255,0.06);
}
body.blog-dark .blog-chip {
  background: rgba(255,255,255,0.025);
  border-color: rgba(255,255,255,0.10);
  color: rgba(244,241,234,0.82);
}
body.blog-dark .blog-chip:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.30);
  color: #fff;
}
body.blog-dark .blog-chip--active {
  background: #F4F1EA;
  border-color: #F4F1EA;
  color: #07090C;
}

/* ---------- Card grid ---------- */
body.blog-dark .blog-card {
  background: #0D1218;
  border: 1px solid rgba(255,255,255,0.07);
}
body.blog-dark .blog-card:hover {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 22px 50px -28px rgba(0,0,0,0.7);
}
body.blog-dark .blog-card__title { color: #F4F1EA; }
body.blog-dark .blog-card__excerpt { color: rgba(244,241,234,0.58); }

body.blog-dark .blog-empty {
  border-color: rgba(255,255,255,0.10);
  color: rgba(244,241,234,0.62);
}
body.blog-dark .blog-empty__title { color: #F4F1EA; }
body.blog-dark .blog-empty__sub { color: rgba(244,241,234,0.55); }

/* ---------- Post detail (dark) ---------- */
body.blog-dark .section { background: transparent; }
body.blog-dark .section--tight { background: transparent !important; }
body.blog-dark .post-hero { color: #fff; }
body.blog-dark .post-body { color: rgba(244,241,234,0.82); }
body.blog-dark .post-body__lede { color: #F4F1EA; }
body.blog-dark .post-body h2,
body.blog-dark .post-body h3 { color: #F4F1EA; }
body.blog-dark .post-body blockquote {
  border-left-color: var(--teal);
  color: rgba(244,241,234,0.88);
}
body.blog-dark .post-callout {
  background: rgba(0,165,161,0.08);
  border-color: rgba(0,165,161,0.30);
  color: #F4F1EA;
}
body.blog-dark .post-share { border-top-color: rgba(255,255,255,0.08); }
body.blog-dark .post-share a {
  color: rgba(244,241,234,0.75);
  border-bottom-color: rgba(255,255,255,0.18);
}
body.blog-dark .post-share a:hover { color: #fff; border-bottom-color: #fff; }
body.blog-dark .post-hero__back { color: rgba(255,255,255,0.85); }

body.blog-dark .divider { background: rgba(255,255,255,0.10); }
body.blog-dark .hairline { border-top-color: rgba(255,255,255,0.06); }

@media (max-width: 700px) {
  .blog-hero__rule { gap: 12px; }
  .blog-hero__rule-label { font-size: 10px; letter-spacing: 0.22em; }
}


/* ============================================================
   TEAM SECTION — Dark scoped theme + Globe header
   ============================================================ */
.section--team-dark {
  background: #07090C;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--team-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 20% 0%, rgba(0,165,161,0.08), transparent 60%),
    radial-gradient(50% 40% at 90% 20%, rgba(26,59,77,0.35), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.section--team-dark > .container { position: relative; z-index: 1; }

.section--team-dark .eyebrow { color: rgba(255,255,255,0.55); }
.section--team-dark .h2 { color: #fff; }
.section--team-dark .lede { color: rgba(255,255,255,0.7); }

.section--team-dark .team-leadership,
.section--team-dark .team-grid {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.06);
}
.section--team-dark .member {
  background: #0E141A;
}
.section--team-dark .member:hover { background: #131C28; }
.section--team-dark .member__name { color: #fff; }
.section--team-dark .member__role { color: rgba(255,255,255,0.55); }
.section--team-dark .member__photo--img { background: #0F1620; }
.section--team-dark .member__photo {
  background: repeating-linear-gradient(135deg, #0F1620 0 10px, #131C28 10px 20px);
  border-color: rgba(255,255,255,0.06);
  color: #fff;
}
.section--team-dark .member__social {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}
.section--team-dark .member__social:hover { color: #fff; }

.section--team-dark .btn--secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.22);
  background: transparent;
}
.section--team-dark .btn--secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: #fff;
}

/* ---------- Globe header ---------- */
.globe-header {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0 72px;
  margin-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 980px) {
  .globe-header {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0 56px;
  }
}
.globe-header__copy { max-width: 560px; }
.globe-header__title {
  font-family: var(--font-head);
  font-size: clamp(42px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: #fff;
  margin: 18px 0 0;
  text-wrap: balance;
}
.globe-header__title em {
  font-style: normal;
  color: var(--teal);
}
.globe-header__sub {
  margin-top: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 19px;
  line-height: 1.6;
  max-width: 560px;
}
.globe-header__cities {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
}
.globe-header__cities li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.globe-header__cities li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(0,165,161,0.55);
}

/* ---------- Globe ---------- */
.globe-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.globe-stage__halo {
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(0,165,161,0.18), rgba(0,165,161,0.05) 38%, transparent 62%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}
.globe-stage__svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.globe-meridian {
  fill: none;
  stroke: rgba(180,225,222,0.55);
  stroke-width: 0.65;
  vector-effect: non-scaling-stroke;
}
.globe-latitude {
  fill: none;
  stroke: rgba(255,255,255,0.16);
  stroke-width: 0.6;
  vector-effect: non-scaling-stroke;
}
.globe-equator {
  stroke: rgba(0,165,161,0.7);
  stroke-width: 0.7;
  stroke-dasharray: 2 3;
  vector-effect: non-scaling-stroke;
}
.globe-pin {
  fill: var(--teal);
  filter: drop-shadow(0 0 4px rgba(0,165,161,0.9));
}
.globe-pin-pulse {
  fill: var(--teal);
  opacity: 0.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: globePinPulse 2.8s ease-out infinite;
}
@keyframes globePinPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  80%  { transform: scale(4);   opacity: 0; }
  100% { transform: scale(4);   opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .globe-meridian animate { animation-play-state: paused; }
  .globe-pin-pulse { animation: none; opacity: 0; }
}

/* Page-level globe header (TeamPage) — no border, more vertical room */
.globe-header--page {
  padding: 24px 0 48px;
  margin-bottom: 56px;
  border-bottom: 0;
}
.section--team-dark-hero { padding-bottom: 24px; }
.section--team-dark-hero + .section--team-dark { padding-top: 0; }

/* Experience strip on dark */
.section--team-dark .experience-strip span {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.12);
}

/* FinalCTA inside dark section — give the card subtle elevation */
.section--team-dark .cta-block {
  background: #0E141A;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.6);
}
.section--team-dark .cta-block::before {
  background: radial-gradient(circle, rgba(0,165,161,0.30), transparent 60%);
}

/* Team (About Us) page — paint body dark so the gap between the last
   section and the footer doesn't flash white. */
body.team-dark-page { background: #07090C; }

/* =====================================================================
   MOBILE OPTIMISATION  — comprehensive responsive polish
   Scoped to <= 900px / <= 600px / <= 400px breakpoints.
   Goals: tighter hero tops, no horizontal overflow, readable type,
   stacked layouts where needed, smaller chrome, comfortable tap targets.
   ===================================================================== */

/* ----- Contact grid (inline-styled element from pages.jsx) ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ----- Globally cap container width to prevent overflow ----- */
@media (max-width: 600px) {
  body { font-size: 16px; }
}

/* ----- Nav tighten ----- */
@media (max-width: 600px) {
  .nav__logo--img img { height: 56px; }
  .nav__inner { padding: 4px 16px; gap: 8px; }
  .nav__hamburger { width: 36px; height: 36px; }
}

/* ----- Mobile menu ----- */
@media (max-width: 600px) {
  .mobile-menu { padding: 88px 20px 32px; }
  .mobile-menu a { font-size: 22px; padding: 14px 0; }
}

/* ----- Page heroes (interior pages) — tame the top spacing ----- */
@media (max-width: 768px) {
  .page-hero { padding: 112px 0 48px; }
  .page-hero__title { font-size: clamp(34px, 8vw, 48px); }
  .page-hero__sub { font-size: 16px; margin-top: 18px; }
  .page-hero__inner { padding: 0 20px; }
}
@media (max-width: 480px) {
  .page-hero { padding: 96px 0 40px; }
}

/* ----- Reports hero ----- */
@media (max-width: 768px) {
  .rpt-hero { padding: 140px 0 88px; }
  .rpt-hero__inner { padding: 0 20px; }
  .rpt-hero__chip { font-size: 10px; margin-bottom: 28px; padding: 7px 14px 7px 10px; }
  .rpt-hero__sub { font-size: 16px; margin-top: 24px; }
  .rpt-hero__meta { margin-top: 32px; gap: 12px; font-size: 10px; letter-spacing: 0.18em; }
  .rpt-hero__orb--1 { width: 480px; height: 480px; margin-left: -240px; margin-top: -240px; }
  .rpt-hero__orb--2, .rpt-hero__orb--3 { width: 360px; height: 360px; }
  .rpt-section { padding: 64px 0 88px; }
}
@media (max-width: 480px) {
  .rpt-hero { padding: 104px 0 56px; }
}

/* ----- Blog hero ----- */
@media (max-width: 768px) {
  body.blog-dark .blog-hero { padding: 140px 0 88px; }
  body.blog-dark .blog-hero__inner { padding: 0 20px; }
  body.blog-dark .blog-hero__sub { font-size: 16px; margin-top: 24px; }
  body.blog-dark .blog-hero__orb--1 { width: 480px; height: 480px; margin-left: -240px; margin-top: -240px; }
  body.blog-dark .blog-hero__orb--2,
  body.blog-dark .blog-hero__orb--3 { width: 360px; height: 360px; }
}
@media (max-width: 480px) {
  body.blog-dark .blog-hero { padding: 120px 0 72px; }
}

/* ----- Post hero ----- */
@media (max-width: 768px) {
  .post-hero { padding: 112px 0 56px; }
  .post-hero__title { font-size: clamp(28px, 7vw, 40px); }
  .post-hero__cat { margin-top: 28px; }
  .post-body { font-size: 16px; line-height: 1.65; }
  .post-body__lede { font-size: 18px; padding-left: 18px; margin-bottom: 32px; }
  .post-body h2 { font-size: 24px; margin: 36px 0 12px; }
  .post-body h3 { font-size: 19px; }
  .post-body blockquote { font-size: 18px; padding: 18px 20px; margin: 24px 0; }
}

/* ----- Hero video — keep readable scroll button ----- */
@media (max-width: 600px) {
  .hero-video { min-height: 480px; }
  .hero-video__scroll { bottom: 24px; width: 40px; height: 40px; }
}

/* ----- About / two-col — un-stick the title on mobile ----- */
@media (max-width: 900px) {
  .two-col__title { position: static; top: auto; }
  .two-col { gap: 24px; }
}

/* ----- Section heads — let lede + button stack cleanly ----- */
@media (max-width: 600px) {
  .section-head { gap: 20px; margin-bottom: 32px; }
  .section-head__left { max-width: 100%; }
}

/* ----- Services svc-card — tighter mobile padding ----- */
@media (max-width: 600px) {
  .svc-card > .svc-card__title,
  .svc-card > .svc-card__desc { padding: 0 24px; }
  .svc-card > .svc-card__cta { padding: 0 24px 28px; }
  .svc-card__title { font-size: 22px; }
}

/* ----- Metrics head — stack on mobile ----- */
@media (max-width: 768px) {
  .metrics__head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 16px;
  }
}

/* ----- Globe — fits on mobile ----- */
@media (max-width: 980px) {
  .globe-stage { max-width: 320px; }
}
@media (max-width: 600px) {
  .globe-stage { max-width: 260px; }
  .globe-header { gap: 32px; padding: 24px 0 40px; margin-bottom: 40px; }
  .globe-header--page { padding: 8px 0 32px; margin-bottom: 32px; }
  .globe-header__title { font-size: clamp(30px, 8vw, 44px); }
  .globe-header__sub { font-size: 15px; margin-top: 18px; }
  .globe-header__cities { gap: 10px 18px; margin-top: 24px; }
  .globe-header__cities li { font-size: 10px; letter-spacing: 0.16em; }
}

/* ----- Testimonials marquee cards — narrower on mobile ----- */
@media (max-width: 600px) {
  .t-marquee__track { gap: 16px; padding: 8px 16px; }
  .t-card {
    flex-basis: 280px;
    padding: 24px;
    min-height: 240px;
    gap: 18px;
  }
  .t-card__quote { font-size: 14.5px; line-height: 1.55; }
}

/* ----- Insights / cs-row marquee track ----- */
@media (max-width: 600px) {
  .insights-marquee__track { gap: 20px; padding: 8px 20px; }
  .ins-card { flex-basis: 260px; }
  .ins-card__title { font-size: 15px; }
}

/* ----- Insights section padding ----- */
@media (max-width: 768px) {
  .insights-sec { padding-top: 64px; padding-bottom: 64px; }
  .insights-sec .section-head { margin-bottom: 36px; }
}

/* ----- TeamLife (.tl) — left-column previous-experience card ----- */
@media (max-width: 600px) {
  .tl__prev-card { width: 200px; height: 70px; padding: 0 12px; }
  .tl__prev-stage { padding: 12px 0; }
  .tl__title { font-size: clamp(28px, 7vw, 40px); margin-top: 16px; }
  .tl__lede { font-size: 15px; margin-top: 20px; }
  .tl__cap { padding: 20px 22px 18px; }
  .tl__cap-title { font-size: 17px; }
  .tl__cap-sub { font-size: 13px; }
  .tl__chip { font-size: 10px; padding: 5px 10px; top: 12px; left: 12px; }
}

/* ----- FAQ — smaller question type on mobile ----- */
@media (max-width: 600px) {
  .faq__btn { font-size: 16px; padding: 22px 0; gap: 16px; }
  .faq__plus { width: 28px; height: 28px; }
  .faq__answer { font-size: 14.5px; }
  .faq__item--open .faq__answer { padding-bottom: 22px; }
}

/* ----- CTA block — better stack ----- */
@media (max-width: 600px) {
  .cta-block { padding: 48px 24px; border-radius: var(--r-md); }
  .cta-block__inner { gap: 28px; }
  .cta-block__title { font-size: clamp(28px, 7vw, 40px); }
  .cta-block__sub { margin-top: 14px; font-size: 15px; }
  .cta-block__inner > div:last-child { justify-content: flex-start !important; }
}

/* ----- Footer ----- */
@media (max-width: 600px) {
  .footer { padding: 64px 0 28px; }
  .footer__top { gap: 28px 24px; padding-bottom: 40px; }
  .footer__brand-name img { height: 88px !important; }
  .footer__brand-desc { font-size: 13.5px; }
  .footer__col-title { margin-bottom: 12px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ----- Buttons — full-width feel for hero CTA rows when wrapped ----- */
@media (max-width: 480px) {
  .btn { padding: 13px 18px; font-size: 14px; }
  .btn--lg { padding: 15px 22px; font-size: 15px; }
}

/* ----- Form padding ----- */
@media (max-width: 480px) {
  .form-wrap { padding: 22px; border-radius: var(--r-md); }
  .field__input, .field__select, .field__textarea { padding: 12px 14px; font-size: 15px; }
}

/* ----- Service interior page bullets ----- */
@media (max-width: 600px) {
  .bullets li { grid-template-columns: 40px 1fr; gap: 16px; padding: 18px 0; }
  .bullets__title { font-size: 18px; }
  .bullets__desc { font-size: 14px; }
}

/* ----- Reports CTA on small screens ----- */
@media (max-width: 600px) {
  .rpt-cta { padding: 32px 24px; margin-top: 64px; gap: 24px; border-radius: 18px; }
  .rpt-cta__title { font-size: clamp(22px, 6vw, 28px); }
  .rpt-cta__desc { font-size: 14px; }
  .rpt-card__body { padding: 22px 22px 20px; gap: 12px; }
  .rpt-card__title { font-size: 19px; }
  .rpt-card__preview { font-size: 14px; }
}

/* ----- Blog featured + cards ----- */
@media (max-width: 600px) {
  .blog-featured__media { min-height: 220px; padding: 24px; }
  .blog-featured__body { padding: 28px 22px; gap: 12px; }
  .blog-featured__title { font-size: clamp(22px, 6.5vw, 28px); }
  .blog-featured__excerpt { font-size: 14px; }
  .blog-card__cover { padding: 18px; }
  .blog-card__body { padding: 20px; gap: 10px; }
  .blog-card__title { font-size: 18px; }
  .blog-card__excerpt { font-size: 13.5px; }
}

/* ----- Team member cards ----- */
@media (max-width: 600px) {
  .member { padding: 20px; gap: 12px; }
  .member--lead { padding: 24px; }
  .member__name { font-size: 15px; }
  .member__role { font-size: 12px; }
}
@media (max-width: 420px) {
  .team-grid, .team-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .member { padding: 16px; }
  .member__photo { font-size: 24px; }
}

/* ----- Section spacing reduction on very small screens ----- */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .section--tight { padding: 44px 0; }
  .section--lg { padding: 64px 0 48px; }
}

/* ----- Logos (homepage trusted marquee) — keep readable ----- */
@media (max-width: 360px) {
  .logo-row__item { width: 112px; height: 38px; margin-right: 8px; }
}

/* =====================================================================
   AI Solutions page mobile
   ===================================================================== */
@media (max-width: 768px) {
  .ai-hero { padding: 112px 0 72px; min-height: auto; }
  .ai-hero__title { font-size: clamp(34px, 8.5vw, 64px); line-height: 1; }
  .ai-hero__sub { margin-top: 24px; font-size: 15.5px; }
  .ai-hero__ctas { margin-top: 28px; }
  .ai-hero__pills { gap: 8px; margin-bottom: 24px; }
  .ai-hero__pill, .ai-hero__crumb { font-size: 10px; padding: 6px 11px; letter-spacing: 0.18em; }
}
@media (max-width: 600px) {
  .ai-shift__head, .ai-systems__head,
  .ai-ops__head, .ai-partner__head, .ai-how__head, .ai-ind__head { margin-bottom: 36px; }
  .ai-shift__title, .ai-systems__title, .ai-ops__title,
  .ai-partner__title, .ai-how__title, .ai-why__title, .ai-ind__title {
    font-size: clamp(28px, 7.5vw, 42px);
  }
  .ai-shift__card { padding: 32px 22px 36px; }
  .ai-shift__cardTitle { font-size: 22px; }
  .ai-shift__cardDesc { font-size: 14.5px; }
  .ai-shift__tag { margin-bottom: 24px; }

  .ai-bento { gap: 10px; }
  .ai-bento__card { padding: 24px; border-radius: 16px; }
  .ai-bento__title { font-size: 20px; }
  .ai-bento__card--lg .ai-bento__title { font-size: 24px; }
  .ai-bento__desc { font-size: 13.5px; }

  .ai-ops__pillar { padding: 28px 22px; }
  .ai-ops__pTitle { font-size: 22px; }
  .ai-ops__pDesc { font-size: 14px; }

  .ai-partner__card { padding: 32px 24px 28px; border-radius: 18px; }
  .ai-partner__cTitle { font-size: 22px; }
  .ai-partner__cDesc { font-size: 14.5px; }
  .ai-partner__list li { font-size: 14px; padding: 12px 0; }

  .ai-why__inner { gap: 36px; }
  .ai-why__title { font-size: clamp(28px, 7.5vw, 42px); }
  .ai-why__p { font-size: 15.5px; }
  .ai-why__codeBody { font-size: 11.5px; padding: 16px 12px; }
  .ai-why__codeRow { gap: 12px; }
  .ai-why__codeNo { width: 22px; }
  .ai-why__codeFoot { padding: 12px 14px; font-size: 11px; }
  .ai-why__file { font-size: 11px; }

  .ai-ind__cell { padding: 20px; font-size: 15.5px; }
  .ai-ind__caps { padding: 24px 20px; border-radius: 16px; }
  .ai-ind__capsList li { padding: 12px 0; font-size: 15px; }

  .ai-final__block { padding: 72px 24px; }
  .ai-final__title { font-size: clamp(32px, 9vw, 56px); }
  .ai-final__sub { font-size: 15.5px; margin-top: 18px; }
}
@media (max-width: 420px) {
  .ai-hero__title { font-size: 34px; }
  .ai-final__block { padding: 60px 20px; }
}

/* =====================================================================
   Growth & Scale page mobile
   ===================================================================== */
@media (max-width: 768px) {
  .gs-hero { padding: 112px 0 72px; min-height: auto; }
  .gs-hero__title { font-size: clamp(40px, 10vw, 84px); line-height: 0.96; }
  .gs-hero__sub { margin-top: 24px; font-size: 15.5px; }
  .gs-hero__ctas { margin-top: 28px; }
  .gs-hero__pills { gap: 8px; margin-bottom: 24px; }
  .gs-hero__pill, .gs-hero__crumb { font-size: 10px; padding: 6px 11px; letter-spacing: 0.18em; }
  .gs-hero__stats { margin-top: 48px; }
}
@media (max-width: 600px) {
  .gs-mandate__head, .gs-system__head,
  .gs-ops__head, .gs-engage__head, .gs-method__head,
  .gs-why__inner, .gs-eco__head { margin-bottom: 36px; }
  .gs-mandate__title, .gs-system__title, .gs-ops__title,
  .gs-engage__title, .gs-method__title, .gs-why__title, .gs-eco__title {
    font-size: clamp(28px, 7.5vw, 42px);
  }
  .gs-mandate__card { padding: 32px 22px 36px; }
  .gs-mandate__cardTitle { font-size: 22px; }
  .gs-mandate__cardDesc { font-size: 14.5px; }
  .gs-mandate__tag { margin-bottom: 24px; }

  .gs-bento { gap: 10px; }
  .gs-bento__card { padding: 24px; border-radius: 16px; }
  .gs-bento__title { font-size: 20px; }
  .gs-bento__card--lg .gs-bento__title { font-size: 24px; }
  .gs-bento__desc { font-size: 13.5px; }

  .gs-ops__pillar { padding: 28px 22px; }
  .gs-ops__pTitle { font-size: 22px; }
  .gs-ops__pDesc { font-size: 14px; }

  .gs-engage__card { padding: 32px 24px 28px; border-radius: 18px; }
  .gs-engage__cTitle { font-size: 22px; }
  .gs-engage__cDesc { font-size: 14.5px; }
  .gs-engage__list li { font-size: 14px; padding: 12px 0; }

  .gs-why__inner { gap: 36px; }
  .gs-why__title { font-size: clamp(28px, 7.5vw, 42px); }
  .gs-why__p { font-size: 15.5px; }

  .gs-dash__body { padding: 16px; }
  .gs-dash__row { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
  .gs-dash__cell { padding: 12px 14px; }
  .gs-dash__cellVal { font-size: 22px; }
  .gs-dash__chartHead { font-size: 9.5px; }
  .gs-dash__foot { padding: 12px 14px; font-size: 11px; margin: 16px -16px -16px; }

  .gs-eco__cell { padding: 22px; font-size: 16px; }

  .gs-final__block { padding: 72px 24px; }
  .gs-final__title { font-size: clamp(32px, 9vw, 56px); }
  .gs-final__sub { font-size: 15.5px; margin-top: 18px; }
}
@media (max-width: 420px) {
  .gs-hero__title { font-size: 40px; }
  .gs-final__block { padding: 60px 20px; }
}

/* ----- Catch-all: anything that overflows horizontally ----- */
@media (max-width: 600px) {
  .container { padding: 0 18px; }
}
