/* ========================================================================
   Challenger Research — Production styles
   Built from design.md tokens. Used by index.html + why-challenger.html.
   ======================================================================== */

:root {
  /* Ink + Paper */
  --ink:        #0A0E1A;
  --ink-2:      #1C2333;
  --ink-3:      #4A5468;
  --paper:      #FFFFFF;
  --paper-warm: #F7F5F0;
  --paper-cool: #F4F5F7;

  /* Signal */
  --signal:       #C2362A;
  --signal-hover: #9E2A20;
  --signal-tint:  #FBE7E4;
  --signal-ink:   #7A1F17;

  /* Slate */
  --slate-50:  #F8F9FB;
  --slate-100: #F1F3F6;
  --slate-200: #E5E8EE;
  --slate-300: #D2D7E0;
  --slate-400: #A5ADBC;
  --slate-500: #6B7384;
  --slate-600: #4A5468;
  --slate-700: #2F3645;

  /* Ink surface */
  --ink-surface:   #0A0E1A;
  --ink-surface-2: #141A2A;
  --ink-line:      #222B3E;
  --ink-text:      #E8EBF2;
  --ink-text-2:    #9AA4B8;

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px;  --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-7: 32px;  --s-8: 40px;
  --s-9: 56px; --s-10: 80px; --s-11: 120px; --s-12: 160px;

  /* Radius */
  --r-xs: 4px;  --r-sm: 6px;  --r-md: 8px;
  --r-lg: 12px; --r-xl: 16px; --r-2xl: 20px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(10,14,26,.04);
  --shadow-sm: 0 1px 3px rgba(10,14,26,.06), 0 1px 2px rgba(10,14,26,.04);
  --shadow-md: 0 4px 8px -2px rgba(10,14,26,.08), 0 2px 4px -2px rgba(10,14,26,.04);
  --shadow-lg: 0 12px 24px -6px rgba(10,14,26,.10), 0 4px 8px -2px rgba(10,14,26,.04);
  --ring-focus:  0 0 0 4px rgba(10,14,26,.10);
  --ring-signal: 0 0 0 4px rgba(194,54,42,.24);

  /* Type */
  --font-display: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Layout */
  --container: 1440px;
  --gutter: 80px;
}

/* Scroll-reveal: section heads fade up as they enter the viewport */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22, .61, .36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px; /* keep anchor targets clear of the 76px sticky topbar */
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* Accessibility utilities */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s-4);
  z-index: 1000;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: top .15s ease;
}
.skip-link:focus {
  top: var(--s-4);
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 26px;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

::selection { background: var(--signal-tint); color: var(--signal-ink); }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ========================================================================
   Type
   ======================================================================== */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.eyebrow .num {
  color: var(--slate-500);
  font-weight: 500;
  margin-right: 4px;
}

.display-2xl,
.display-xl,
.display-lg,
.display-md,
.h1, .h2, .h3, .h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.display-2xl {
  font-size: clamp(2rem, 1.5rem + 2.65vw, 60px); /* fluid; reaches the 60px ceiling at ~1360px */
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.display-xl {
  font-size: clamp(2.25rem, 1.4rem + 3.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.display-lg {
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.display-md {
  font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.h1 { font-size: 36px; line-height: 42px; letter-spacing: -0.02em; }
.h2 { font-size: 28px; line-height: 36px; letter-spacing: -0.015em; }
.h3 { font-size: 22px; line-height: 30px; letter-spacing: -0.01em; }
.h4 { font-size: 18px; line-height: 26px; letter-spacing: -0.005em; }

.body-lg { font-size: 17px; line-height: 30px; color: var(--ink-3); }
.body    { font-size: 16px; line-height: 26px; color: var(--ink-3); }
.body-sm { font-size: 14px; line-height: 22px; color: var(--ink-3); }
.mono-sm { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate-500); }

/* ========================================================================
   Top nav
   ======================================================================== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Own compositing layer, isolated from the transformed/overflow:hidden cards
     further down the page (e.g. .hero-stack on why-challenger.html) — without
     this, WebKit/mobile browsers can visually clip a sticky header when other
     transformed elements are painted on the same page during scroll. */
  transform: translateZ(0);
  /* Applied Compute treatment: a flat, solid bar — paper over light sections,
     ink over dark — separated from the content by a single bottom hairline. */
  background: var(--paper);
  border-bottom: 1px solid var(--slate-200);
  transition: background .25s ease, border-color .25s ease;
}
/* No background/blur/shadow change on scroll — the bar stays flat and
   transparent; only the hairline firms up slightly. */
.topbar.is-scrolled {
  border-bottom-color: var(--slate-300);
}
/* Dark-mode transform: when the bar sits over a dark section, it flips to
   light-on-dark. Toggled by scripts.js via background-luminance detection. */
.topbar.on-dark { background: var(--ink-surface); border-bottom-color: var(--ink-line); }
.topbar.on-dark .brand-logo { filter: invert(1) brightness(1.6) contrast(0.95); }
.topbar.on-dark .nav-link { color: var(--ink-text-2); }
.topbar.on-dark .nav-link:hover { color: var(--ink-text); background: rgba(255, 255, 255, .10); }
.topbar.on-dark .nav-link.active { color: var(--ink-text); }
.topbar.on-dark .nav-caret { color: var(--ink-text-2); }
.topbar.on-dark .menu-toggle span { background: var(--ink-text); }
.topbar-inner {
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s-7);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 1024px) {
  .topbar-inner { padding: 0 var(--s-7); }
}
@media (max-width: 720px) {
  .topbar-inner { padding: 0 var(--s-5); }
}
.topbar-right {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: var(--s-7);
}
.brand {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  line-height: 0;
}
.brand-logo {
  height: 32px;
  width: auto;
  display: block;
  transition: filter .25s ease;
}
/* Inverted brand for dark surfaces (footer, ink CTA) */
.brand-on-ink .brand-logo { filter: invert(1) brightness(1.6) contrast(0.95); }
.nav-links {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: var(--s-1);
}
.nav-link {
  display: inline-flex;
  align-items: center;
  height: 32px;                  /* aligned with the 32px logo + CTA */
  font-size: 14px;
  font-weight: 400;              /* AC: understated links at regular weight */
  color: var(--ink-3);
  padding: 0 12px;
  border-radius: var(--r-full);  /* AC: pill-shaped hover target */
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover {
  color: var(--ink);
  background: var(--paper-cool);
}
.nav-link.active {
  color: var(--ink);
  font-weight: 500;
}
.nav-cta { display: flex; gap: var(--s-2); margin-left: auto; }
/* Navbar CTA takes AC's full-pill shape (scoped to the nav — site buttons
   keep their default radius). */
.nav-cta .btn { height: 32px; padding: 0 14px; } /* aligned with the 32px logo + links */

/* Nav dropdown ("What We Do") */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}
.nav-caret {
  display: inline-flex;
  align-items: center;
  color: var(--slate-400);
  transition: transform .2s ease, color .2s ease;
}
.nav-caret svg {
  display: block;
  width: 14px;
  height: 14px;
}
.nav-dropdown:hover .nav-caret,
.nav-dropdown.is-open .nav-caret { transform: rotate(180deg); color: var(--ink-3); }

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 340px;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: var(--s-3);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
/* Invisible bridge across the gap so the pointer can travel from the trigger
   to the panel without dropping :hover and closing the menu. */
.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-3);
  border-radius: var(--r-md);
  color: var(--ink);
}
.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible { background: var(--slate-50); }
.nav-dropdown-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-400);
  padding-top: 2px;
}
.nav-dropdown-title { display: block; font-size: 14px; font-weight: 500; color: var(--ink); }
.nav-dropdown-desc { display: block; font-size: 13px; line-height: 18px; color: var(--ink-3); margin-top: 2px; }

/* Mobile hamburger + panel */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  /* Viewport-unit height rather than `bottom: 0` — this panel is a descendant
     of .topbar, which now has `transform: translateZ(0)` (for the sticky-
     clipping fix), and a transformed ancestor becomes this fixed element's
     containing block. `bottom: 0` would then mean the bottom of the ~76px
     topbar, not the viewport, collapsing the panel to near-zero height. */
  height: calc(100vh - 76px);
  background: var(--paper);
  overflow-y: auto;
  z-index: 49;
}
.mobile-menu.is-open { display: block; }
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: var(--s-6) var(--s-5) var(--s-9);
  max-width: var(--container);
  margin: 0 auto;
}
.mobile-menu-links > a {
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--slate-200);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.mobile-menu-group {
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--slate-200);
}
.mobile-menu-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate-500);
  margin-bottom: var(--s-3);
}
.mobile-menu-group a {
  display: block;
  padding: var(--s-2) 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-3);
}
.mobile-menu-cta { margin-top: var(--s-6); width: 100%; border-bottom: none !important; }
.mobile-menu-links > a.mobile-menu-cta { color: #fff; }

/* ========================================================================
   Buttons
   ======================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 8px 16px;
  border-radius: var(--r-full); /* all buttons are full-pill, like the nav CTA */
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  border: 1px solid transparent;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--ink-2); }

.btn-signal { background: var(--signal); color: #fff; }
.btn-signal:hover { background: var(--signal-hover); }

.btn-secondary {
  background: var(--paper); color: var(--ink); border-color: var(--slate-300);
}
.btn-secondary:hover { background: var(--slate-50); }

.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--slate-100); }

.btn-on-ink-ghost {
  background: transparent;
  color: var(--ink-text);
  border-color: var(--ink-line);
}
.btn-on-ink-ghost:hover {
  background: var(--ink-surface-2);
  color: var(--paper);
}

.btn:focus-visible { outline: none; box-shadow: var(--ring-focus); }
.btn-signal:focus-visible { box-shadow: var(--ring-signal); }
.btn-on-ink-ghost:focus-visible { box-shadow: 0 0 0 4px rgba(232,235,242,.35); }

.btn-sm { padding: 5px 14px; font-size: 13px; }
.btn-md { padding: 8px 16px; }
.btn-lg { padding: 9px 20px; font-size: 15px; }
.btn-xl { padding: 10px 24px; font-size: 16px; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform .15s ease;
}
.btn-arrow svg {
  display: block;
  width: 16px;
  height: 16px;
}
.btn:hover .btn-arrow { transform: translateX(2px); }
.btn-arrow.is-down { width: 16px; height: 16px; }
.btn:hover .btn-arrow.is-down { transform: translateY(2px); }

/* Touch target sizing — bump tap height to ~44px on touch/mobile without changing desktop */
@media (max-width: 1024px) {
  .btn, .btn-sm, .btn-md, .btn-lg, .btn-xl { padding-top: 11px; padding-bottom: 11px; }
}

/* ========================================================================
   Hero
   ======================================================================== */

.hero {
  padding: 0;                       /* section padding lives on the left only (below) */
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;   /* 40 / 60 */
  gap: var(--s-10);
  align-items: stretch;             /* let the video fill the full row height */
  max-width: none;                  /* override .container cap so the video bleeds right */
  margin: 0;
  /* Left padding only — matched to the nav's inset so the copy lines up with the
     logo (which follows the centered 1440px container on wide screens). */
  padding: 0 0 0 max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter)));
}
/* Copy keeps its own vertical breathing room; the video (stretched) still
   bleeds to the top and bottom edges of the section. */
.hero-copy { max-width: 620px; padding-block: 100px; }
/* Keep the copy aligned with the nav logo when the nav's gutter shrinks. */
@media (max-width: 1024px) {
  .hero-grid { padding-left: var(--s-7); }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--signal-ink);
  background: var(--signal-tint);
  padding: 4px 10px;             /* design.md badge: pill, ~22px tall, 12/16 mono */
  border-radius: var(--r-full);
  margin-bottom: var(--s-6);
}
.hero-eyebrow .pulse {
  width: 6px; height: 6px;
  border-radius: var(--r-full);
  background: var(--signal);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.hero h1 {
  margin: 0 0 var(--s-6);
  max-width: 16ch;
}
.hero-sub {
  /* type comes from .body-lg on the element; this only handles hero spacing */
  margin: 0 0 var(--s-8);
  max-width: 52ch;
}
.hero-note {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin: var(--s-8) 0 0;   /* now sits below the primary button */
  padding: 0;
  max-width: 44ch;
}
.hero-note li {
  position: relative;
  padding-left: var(--s-5);
  font-size: 15px;
  line-height: 22px;
  color: var(--slate-500);
}
.hero-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: var(--r-full);
  background: var(--signal);
}
.hero-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

/* ========================================================================
   Hero video — the right-side hero visual
   ======================================================================== */

.hero-video {
  position: relative;
  height: 100%;                    /* full height of the hero row */
  overflow: hidden;
  width: 100%;                     /* fills the 60% column, bleeding to the right edge */
  background: var(--ink-surface);
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(10,14,26,.22) 100%);
  pointer-events: none;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Challenging Geopolitics — feed card placeholder cover (podcast episodes often have no artwork) */
.bulletin-cover.is-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #16223b 0%, var(--ink-surface) 100%);
  border-bottom-color: transparent;
}
.bulletin-cover.is-placeholder svg {
  width: 38px;
  height: 38px;
  fill: rgba(255, 255, 255, 0.92);
}
.bulletin-cover-ph-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}


.hero-copy > .hero-eyebrow,
.hero-copy > h1,
.hero-copy > .hero-sub,
.hero-copy > .hero-actions,
.hero-copy > .hero-note,
.page-hero > .container > .eyebrow,
.page-hero > .container > h1,
.page-hero > .container > p,
.about-hero-grid > div:first-child > h1,
.about-hero-grid > div:first-child > .about-hero-sub {
  opacity: 0;
  animation: hero-rise .7s cubic-bezier(.2, .7, .2, 1) forwards;
}
.hero-copy > .hero-eyebrow                            { animation-delay: 0s; }
.hero-copy > h1                                       { animation-delay: .08s; }
.hero-copy > .hero-sub                                { animation-delay: .20s; }
.hero-copy > .hero-actions                            { animation-delay: .32s; }
.hero-copy > .hero-note                               { animation-delay: .44s; }
.page-hero > .container > .eyebrow                    { animation-delay: .05s; }
.page-hero > .container > h1                          { animation-delay: .15s; }
.page-hero > .container > p                           { animation-delay: .28s; }
.about-hero-grid > div:first-child > h1               { animation-delay: .08s; }
.about-hero-grid > div:first-child > .about-hero-sub  { animation-delay: .22s; }

@media (prefers-reduced-motion: reduce) {
  .hero-copy > .hero-eyebrow,
  .hero-copy > h1,
  .hero-copy > .hero-sub,
  .hero-copy > .hero-actions,
  .hero-copy > .hero-note,
  .page-hero > .container > .eyebrow,
  .page-hero > .container > h1,
  .page-hero > .container > p,
  .about-hero-grid > div:first-child > h1,
  .about-hero-grid > div:first-child > .about-hero-sub {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

/* Scroll-driven parallax + zoom. Graceful: older browsers see static video. */
@supports (animation-timeline: scroll()) {
  .hero-video {
    animation: hero-card-parallax linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 90vh;
    will-change: transform;
  }
  .hero-video video {
    animation: hero-video-zoom linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 90vh;
    transform-origin: center 55%;
    will-change: transform;
  }
}
@keyframes hero-card-parallax {
  from { transform: translateY(0); }
  to   { transform: translateY(72px); }
}
@keyframes hero-video-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.18); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video, .hero-video video {
    animation: none !important;
  }
}
/* Stack the hero on narrow screens: the video drops below the copy and takes a
   defined aspect ratio (there's no longer a sibling column to set its height). */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-8); padding: 0 var(--s-5); }
  .hero-copy { padding-block: 0; }
  .hero-video { height: auto; aspect-ratio: 16 / 9; }
}

/* ========================================================================
   Hero stack — stacked rotating cards (legacy — kept for fallback only)
   ======================================================================== */

.hero-stack {
  position: relative;
  aspect-ratio: 5 / 6;
  max-width: 520px;
  margin-left: auto;
  width: 100%;
}
.hero-stack-card {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(10,14,26,.30), 0 4px 8px -2px rgba(10,14,26,.08);
  background: var(--ink-surface);
  transform-origin: center 80%;
  transition:
    transform .95s cubic-bezier(.22,.61,.36,1),
    opacity .65s ease;
}
.hero-stack-card.active {
  transform: rotate(0deg) translate(0, 0) scale(1);
  opacity: 1;
  z-index: 3;
}
.hero-stack-card.next {
  transform: rotate(-3.5deg) translate(-22px, 22px) scale(0.96);
  opacity: 0.85;
  z-index: 2;
}
.hero-stack-card.next2 {
  transform: rotate(4deg) translate(22px, 42px) scale(0.92);
  opacity: 0.7;
  z-index: 1;
}
.hero-stack-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-stack-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,14,26,.7) 100%);
  pointer-events: none;
}
.hero-stack-card-meta {
  position: absolute;
  bottom: var(--s-5);
  left: var(--s-5);
  right: var(--s-5);
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,.92);
  z-index: 1;
}
.hero-stack-progress {
  position: absolute;
  bottom: -32px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.hero-stack-dot {
  width: 22px;
  height: 2px;
  background: var(--slate-300);
  border-radius: 2px;
  transition: background .3s ease, width .3s ease;
}
.hero-stack-dot.is-active { background: var(--ink); width: 32px; }

.hero-stack-pause {
  position: absolute;
  bottom: var(--s-4);
  right: var(--s-4);
  z-index: 10;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,14,26,.55);
  border: none;
  border-radius: var(--r-full);
  color: var(--paper);
  cursor: pointer;
  transition: background .15s ease;
}
.hero-stack-pause:hover { background: rgba(10,14,26,.75); }
.hero-stack-pause:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(232,235,242,.5); }
.hero-stack-pause svg { width: 16px; height: 16px; fill: currentColor; }

@media (prefers-reduced-motion: reduce) {
  .hero-stack-card { transition: opacity .25s ease; }
  .hero-stack-card.next, .hero-stack-card.next2 { transform: none; opacity: 0; }
}

/* Legacy exhibit (kept for design-system preview only) */
.exhibit {
  background: var(--ink-surface);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  color: var(--ink-text);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-mono);
  position: relative;
  overflow: hidden;
}
.exhibit::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, transparent 60%, rgba(194,54,42,.06) 100%),
    repeating-linear-gradient(0deg, transparent 0px, transparent 23px, rgba(255,255,255,.015) 23px, rgba(255,255,255,.015) 24px);
  pointer-events: none;
}
.exhibit > * { position: relative; z-index: 1; }
.exhibit-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--ink-line);
  margin-bottom: var(--s-4);
}
.exhibit-meta {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-text-2);
}
.live-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: rgba(194,54,42,.18);
  color: #FFB4AB;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.live-pill .pulse {
  width: 6px; height: 6px;
  border-radius: var(--r-full);
  background: var(--signal);
  animation: pulse 1.6s ease-in-out infinite;
}
.exhibit-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink-text);
  margin: 0 0 var(--s-2);
}
.exhibit-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-text-2);
  line-height: 1.55;
  margin-bottom: var(--s-6);
}
.exhibit-rows {
  display: flex;
  flex-direction: column;
}
.exhibit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: var(--s-3) 0;
  border-bottom: 1px dashed var(--ink-line);
  font-size: 11px;
  color: var(--ink-text-2);
  letter-spacing: 0.04em;
}
.exhibit-row:last-child { border-bottom: none; }
.exhibit-row strong {
  color: var(--ink-text);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.exhibit-footer {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--ink-line);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-text-2);
}

/* ========================================================================
   Sections
   ======================================================================== */

.section {
  padding: var(--s-11) 0;
  border-top: 1px solid var(--slate-200);
}
.section.section-warm { background: var(--paper-warm); }
.section.section-cool { background: var(--paper-cool); }
.section.section-ink {
  background: var(--ink-surface);
  color: var(--ink-text);
  border-top-color: var(--ink-line);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-9);
  margin-bottom: var(--s-9);
  flex-wrap: wrap;
}
.section-head-copy { max-width: 720px; }
/* Our Purpose — dark two-column: heading left, prose right, faint grid at base */
#why-exists { position: relative; overflow: hidden; }
#why-exists .container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--s-9);
  align-items: start;
  position: relative;
  z-index: 1;
}
#why-exists .section-head { margin-bottom: 0; }
#why-exists .eyebrow { color: #F4A89E; }
#why-exists .section-prose > p { color: var(--ink-text-2); }
#why-exists .section-prose > p:first-child { color: var(--ink-text); }
#why-exists::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 150px;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to top, #000, transparent);
  mask-image: linear-gradient(to top, #000, transparent);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 860px) {
  #why-exists .container { grid-template-columns: 1fr; gap: var(--s-6); }
}
#practices { border-top: none; }
#practices .section-head { margin-bottom: var(--s-6); }
#practices .section-head .eyebrow { color: var(--signal); }
#practices .capability .num { color: var(--signal); }
#practices .capability { padding: 30px; }
#practices .capability-cta {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--signal);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
#practices .capability-cta:hover {
  background: transparent;
  color: var(--signal);
}
.section-head .eyebrow { margin-bottom: var(--s-4); }
.section-head h2 { margin: 0 0 var(--s-4); }
.section-head .body-lg { margin: 0; }
.section-head-action { padding-bottom: 8px; }

/* Narrative prose block — constrained reading column for editorial sections */
.section-prose { max-width: 720px; }
.section-prose > p { margin: 0 0 var(--s-5); }
.section-prose > p:last-child { margin: 0; }
.section-prose > .lead-emphasis { color: var(--ink); font-weight: 500; }

/* ========================================================================
   Partner logos — horizontal infinite carousel
   ======================================================================== */

.partners {
  padding: var(--s-10) 0;
  background: var(--paper);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  overflow: hidden;
}
.partners-head {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--slate-600);
  margin-bottom: var(--s-7);
}
.partners-track {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* Fade aligns with the content rails: solid inside the container, transparent in the outer gutter.
     max(--gutter, …) handles both wide desktops (container is centered, gutter is real)
     and narrow viewports (container fills the screen, fade collapses to just the page gutter). */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    black max(var(--gutter), calc((100vw - 1280px) / 2)),
    black calc(100% - max(var(--gutter), calc((100vw - 1280px) / 2))),
    transparent 100%
  );
          mask-image: linear-gradient(
    90deg,
    transparent 0,
    black max(var(--gutter), calc((100vw - 1280px) / 2)),
    black calc(100% - max(var(--gutter), calc((100vw - 1280px) / 2))),
    transparent 100%
  );
}
.partners-row {
  display: flex;
  align-items: center;
  gap: var(--s-10);
  width: max-content;
  animation: partners-scroll 45s linear infinite;
}
.partners-row img {
  /* Uniform 160x52 visual cell — logo contained inside.
     Wide logos render shorter, tall logos render narrower, all in the same footprint. */
  width: 160px;
  height: 52px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter .25s ease, opacity .25s ease;
  flex-shrink: 0;
}
.partners-row img:hover {
  filter: grayscale(0);
  opacity: 1;
}
/* TWA is a very wide, visually heavy wordmark — dial it down to match the others. */
.partners-row img[src*="twa"] { width: 120px; height: 44px; }
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .partners-row { animation: none; flex-wrap: wrap; justify-content: center; }
}

/* ========================================================================
   Representative engagements — anonymized, law-firm style
   ======================================================================== */

.engagements-strip {
  padding: var(--s-10) 0;
  background: var(--paper);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.engagements-head {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate-500);
  margin-bottom: var(--s-8);
}
.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--s-9);
  row-gap: var(--s-7);
  max-width: 1000px;
  margin: 0 auto;
}
.engagement {
  border-top: 1px solid var(--slate-200);
  padding-top: var(--s-4);
}
.engagement-arch {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 6px;
}
.engagement-work {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 20px;
  color: var(--ink-3);
  margin: 0;
}

/* ========================================================================
   Capability cards
   ======================================================================== */

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.capability-grid.is-four {
  grid-template-columns: repeat(2, 1fr);
}
.capability-grid.is-two {
  grid-template-columns: repeat(2, 1fr);
}
.capability {
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.capability:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(10,14,26,.20);
}
.capability .eyebrow { margin-bottom: 0; }
.capability h3 { margin: 0; }
.capability p { margin: 0; color: var(--ink-3); }
.capability-cta { margin-top: auto; align-self: flex-start; }
.capability-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: var(--s-4);
}

/* ========================================================================
   Badges — status/live pills (see design_system.html "Badges & tags")
   ======================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-neutral { background: var(--slate-100); color: var(--slate-700); }
.badge-signal  { background: var(--signal-tint); color: var(--signal-ink); }
.badge-live    { background: var(--signal-tint); color: var(--signal-ink); }
.badge-live .dot {
  width: 6px; height: 6px;
  border-radius: var(--r-full);
  background: var(--signal);
  animation: pulse 1.6s ease-in-out infinite;
}
.badge-success { background: #E6F5EE; color: var(--success); }
.badge-warning { background: #FFF4E5; color: var(--warning); }

.tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: var(--r-xs);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate-600);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
}

/* ========================================================================
   Policy fields grid
   ======================================================================== */

.fields-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.field-cell {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  background: var(--ink-surface);
  transition: transform .25s ease, box-shadow .25s ease;
}
.field-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(10,14,26,.20);
}
.field-cell-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .35s ease;
}
.field-cell:hover .field-cell-img { transform: scale(1.04); }
.field-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,.15) 0%, rgba(10,14,26,.55) 60%, rgba(10,14,26,.85) 100%);
  pointer-events: none;
}
.field-cell-content {
  position: absolute;
  inset: 0;
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink-text);
  z-index: 1;
}
.field-index {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,.85);
}
.field-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -0.015em;
  color: #fff;
}
/* Bespoke card — different treatment, no image */
.field-cell.is-bespoke {
  background: var(--paper-warm);
  border-color: var(--slate-200);
  border-style: dashed;
}
.field-cell.is-bespoke::after { display: none; }
.field-cell.is-bespoke .field-cell-content { color: var(--ink); }
.field-cell.is-bespoke .field-index { color: var(--signal-ink); }
.field-cell.is-bespoke .field-title { color: var(--ink); }

/* ========================================================================
   Recent projects — alternating left/right cards
   ======================================================================== */

.projects-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}
.project-card {
  display: flex;
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
  height: 420px;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(10,14,26,.20);
}
.project-card:nth-child(even) { flex-direction: row-reverse; }

.project-cover {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  background: var(--paper-warm);
}
.project-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}
.project-card:hover .project-cover img {
  transform: scale(1.04);
}
@media (prefers-reduced-motion: reduce) {
  .project-card:hover .project-cover img { transform: none; }
}
.project-body {
  flex: 1;
  padding: var(--s-8) var(--s-9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s-4);
}
.project-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.project-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.project-summary {
  font-size: 15px;
  line-height: 24px;
  color: var(--ink-3);
  margin: 0;
}
.project-ref {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-500);
}
.project-link {
  margin-top: var(--s-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--signal-ink);
  align-self: flex-start;
}
.project-card:hover .project-link { color: var(--signal); }
.project-card:hover .project-link .btn-arrow { transform: translateX(3px); }
.project-link .btn-arrow { transition: transform .15s ease; }

.projects-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--s-10);
}

/* Recent publications (home) — compact index rows, real photos, dividing rules */
#publications .projects-list { gap: 0; }
#publications .project-card {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: var(--s-6);
  height: auto;
  padding: var(--s-7) 0;
  background: transparent;
  border: none;
  border-top: 1px solid var(--slate-200);
  border-radius: 0;
  overflow: visible;
}
#publications .project-card:last-child { border-bottom: 1px solid var(--slate-200); }
#publications .project-card:hover { transform: none; box-shadow: none; }
#publications .project-cover {
  flex: none;
  width: 180px;
  aspect-ratio: 3 / 2;
  border-radius: var(--r-sm);
  background: var(--ink);
}
#publications .project-card:hover .project-cover img { transform: none; }
#publications .project-body {
  padding: 0;
  gap: var(--s-2);
}
#publications .project-summary { display: none; }
#publications .project-title {
  font-size: 20px;
  line-height: 28px;
}
#publications .project-ref { color: var(--signal); }
#publications .project-link {
  margin-top: 0;
  align-self: center;
  white-space: nowrap;
  color: var(--ink);
}
#publications .projects-cta {
  justify-content: flex-start;
  margin-top: var(--s-8);
}
#publications .projects-cta .btn {
  height: 38px;
  padding: 8px 16px;
}
@media (max-width: 1024px) {
  #publications .projects-cta .btn { height: 44px; }
  /* Let the thumbnail's height follow the (often multi-line) title instead of
     staying pinned to a fixed aspect ratio, so it doesn't float in empty space
     next to taller wrapped text. */
  #publications .project-card { align-items: stretch; }
  #publications .project-cover { aspect-ratio: auto; }
}
@media (max-width: 720px) {
  #publications .project-card { grid-template-columns: 120px 1fr; }
  #publications .project-cover { width: 120px; }
  #publications .project-link { display: none; }
  #publications .project-title { font-size: 18px; line-height: 26px; }
}

/* Publications filter row — tag pills that show/hide matching cards below */
.pub-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-8);
}
.pub-filter {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--slate-300);
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.pub-filter:hover { border-color: var(--signal); color: var(--signal); }
.pub-filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.projects-grid .project-card.is-hidden { display: none; }

/* 2-column variant used on the dedicated projects page */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
.projects-grid .project-link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--signal);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.projects-grid .project-card:hover .project-link { color: var(--signal); }
.projects-grid .project-card,
.projects-grid .project-card:nth-child(even) {
  flex-direction: column;
  height: auto;
  min-height: 0;
}
.projects-grid .project-cover {
  flex: 0 0 auto;
  aspect-ratio: 16 / 10;
}
.projects-grid .project-body {
  padding: var(--s-7);
}
.projects-grid .project-title {
  font-size: 22px;
  line-height: 28px;
}
@media (max-width: 720px) {
  .projects-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .project-card,
  .project-card:nth-child(even) { flex-direction: column; height: auto; min-height: 0; }
  .project-cover { flex: 0 0 auto; aspect-ratio: 16/10; }
  .project-body { padding: var(--s-7); }
  .project-title { font-size: 24px; line-height: 30px; }
}

/* ========================================================================
   Legal pages — long-form prose
   ======================================================================== */

.legal-page {
  padding: var(--s-11) 0 var(--s-12);
}
.legal-page-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-page .legal-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-500);
  margin-bottom: var(--s-3);
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.35rem + 1.6vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 var(--s-7);
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--ink);
  margin: var(--s-9) 0 var(--s-3);
}
.legal-page h2:first-of-type { margin-top: var(--s-7); }
.legal-page h3 {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: var(--s-6) 0 var(--s-2);
}
.legal-page p,
.legal-page li {
  font-size: 16px;
  line-height: 28px;
  color: var(--ink-2);
  margin: 0 0 var(--s-4);
}
.legal-page ul {
  margin: 0 0 var(--s-4);
  padding-left: var(--s-5);
}
.legal-page li {
  margin-bottom: var(--s-2);
}
.legal-page a {
  color: var(--signal-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.legal-page a:hover { color: var(--signal); }
.legal-page strong { color: var(--ink); font-weight: 600; }
.legal-page .legal-intro {
  font-size: 18px;
  line-height: 30px;
  color: var(--ink-3);
  margin-bottom: var(--s-7);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--slate-200);
}

/* Legal-links row in footer-bottom */
.footer-legal {
  display: flex;
  gap: var(--s-5);
  flex-wrap: wrap;
}
.footer-legal a {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-text-2);
  transition: color .15s ease;
}
.footer-legal a:hover { color: var(--signal); }

/* ========================================================================
   Next event banner — single-line "soonest upcoming" strip
   ======================================================================== */

.next-event {
  background: var(--ink-surface);
  border-bottom: 1px solid var(--ink-line);
  transition: background .15s ease;
}
.next-event:hover { background: var(--ink-surface-2); }
.next-event.is-dismissed { display: none; }
.next-event-row {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.next-event-link {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  text-decoration: none;
  color: inherit;
  padding: var(--s-2) 0;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}
.next-event-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: transparent;
  border: none;
  border-radius: var(--r-full);
  color: var(--ink-text-2);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.next-event-close svg { width: 13px; height: 13px; display: block; }
.next-event-close:hover { background: var(--ink-line); color: var(--paper); }
.next-event-link .badge { flex-shrink: 0; }
.next-event-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: var(--ink-text);
}
.next-event-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-text-2);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .next-event-link { gap: var(--s-3); padding: var(--s-2) 0; flex-wrap: nowrap; }
  .next-event-title {
    font-size: 13px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .next-event-location { display: none; }
  .next-event-close { width: 40px; height: 40px; }
}

/* ========================================================================
   Bulletin — Substack posts row
   ======================================================================== */

/* Membership — benefits list */
.member-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6) var(--s-8);
}
.member-item {
  padding-top: var(--s-4);
  border-top: 2px solid var(--ink);
}
.member-item h3 { margin: 0 0 var(--s-2); }
.member-item p { margin: 0; color: var(--ink-3); font-size: 15px; line-height: 24px; }
.member-cta { margin-top: var(--s-9); }
@media (max-width: 720px) { .member-list { grid-template-columns: 1fr; } }

/* Challenging Geopolitics — right-aligned channel links */
.cg-head { align-items: flex-end; }
.cg-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-auto-flow: column;
  gap: var(--s-3);
  min-width: 320px;
}
.cg-links .btn { justify-content: space-between; }

/* Feed carousel — scrollable track with prev/next arrows */
.bulletin-carousel { position: relative; }
.bulletin-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * var(--s-4)) / 3);
  gap: var(--s-4);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.bulletin-grid::-webkit-scrollbar { display: none; }
.bulletin-grid > .bulletin-card { scroll-snap-align: start; }
.bulletin-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: var(--r-full);
  border: 1px solid var(--slate-300);
  background: var(--paper);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  padding-bottom: 3px;
  cursor: pointer;
  box-shadow: 0 8px 22px -8px rgba(10,14,26,.30);
  transition: background .15s ease, border-color .15s ease, opacity .15s ease;
}
.bulletin-arrow:hover { background: var(--slate-50); border-color: var(--slate-400); }
.bulletin-arrow--prev { left: -14px; }
.bulletin-arrow--next { right: -14px; }
.bulletin-arrow[hidden] { display: none; }
.bulletin-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-7);
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, transform .2s ease;
}
.bulletin-cover {
  margin: calc(var(--s-7) * -1) calc(var(--s-7) * -1) 0;
  aspect-ratio: 16 / 10;
  background: var(--paper-warm);
  overflow: hidden;
  border-bottom: 1px solid var(--slate-200);
}
.bulletin-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bulletin-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.bulletin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(10,14,26,.20);
}
.bulletin-meta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate-500);
}
.bulletin-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border-radius: var(--r-full);
  font-size: 10px;
  letter-spacing: 0.16em;
  background: var(--signal-tint);
  color: var(--signal-ink);
}
.bulletin-type.is-podcast { background: var(--slate-100); color: var(--slate-700); }
.bulletin-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.bulletin-summary {
  font-size: 14px;
  line-height: 22px;
  color: var(--ink-3);
  margin: 0;
}
.bulletin-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  padding-top: var(--s-4);
  border-top: 1px solid var(--slate-200);
}
.bulletin-card:hover .bulletin-cta { color: var(--signal-ink); }

/* Where we think in public — plain Signal type label, date pushed right */
/* Vertical room so the hover lift + shadow aren't clipped by the scroll track
   (overflow-x:auto forces overflow-y to compute to auto). */
#challenging-geopolitics .bulletin-grid {
  padding-top: 12px;
  padding-bottom: 44px;
  margin-top: -12px;
  margin-bottom: -28px;
}
#challenging-geopolitics .bulletin-card { padding: 18px; }
#challenging-geopolitics .bulletin-cover { margin: -18px -18px 0; }
#challenging-geopolitics .bulletin-meta { justify-content: space-between; }
#challenging-geopolitics .bulletin-type,
#challenging-geopolitics .bulletin-type.is-podcast {
  padding: 0;
  border-radius: 0;
  background: none;
  color: var(--signal);
  font-size: 11px;
}

@media (max-width: 1024px) { .bulletin-grid { grid-auto-columns: calc((100% - var(--s-4)) / 2); } }
@media (max-width: 720px)  { .bulletin-grid { grid-auto-columns: 86%; } }

/* ========================================================================
   Individual report page
   ======================================================================== */

.report-hero {
  padding: 100px 0;
  background: var(--paper);
}
.report-hero .report-tags {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--s-5);
}
.report-hero h1 { max-width: 24ch; margin: 0 0 var(--s-5); }
.report-hero-sub {
  font-size: 17px;
  line-height: 30px;
  color: var(--ink-3);
  max-width: 66ch;
  margin: 0 0 var(--s-7);
}
.report-hero-meta {
  display: flex;
  gap: var(--s-7);
  flex-wrap: wrap;
  margin-bottom: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--slate-200);
}
.report-hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.report-hero-meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--slate-500);
}
.report-hero-meta-value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.report-hero-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

.report-overview {
  padding: var(--s-11) 0;
  background: var(--paper-warm);
}
.report-overview + .section { border-top: none; }
.report-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-9);
  align-items: start;
}
.report-cover {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--paper);
  border: 1px solid var(--slate-200);
}
.report-cover img {
  display: block;
  width: 100%;
  height: auto;
}
.report-overview-body { display: flex; flex-direction: column; gap: var(--s-5); }
.report-overview-body h2 {
  margin: 0 0 var(--s-2);
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
}
.report-overview-body p {
  font-size: 16px;
  line-height: 28px;
  color: var(--ink-3);
  margin: 0;
}
.report-keyfacts {
  margin-top: var(--s-4);
  padding-top: var(--s-6);
  border-top: 1px solid var(--slate-300);
  display: flex;
  flex-direction: column;
}
.report-keyfact {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--slate-200);
}
.report-keyfact:last-child { border-bottom: none; }
.report-keyfact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate-500);
  padding-top: 2px;
}
.report-keyfact-value {
  color: var(--ink);
  font-size: 15px;
  line-height: 22px;
}
.report-keyfact-value strong {
  font-family: var(--font-display);
  font-weight: 600;
}

.report-dims {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.report-dim {
  padding: var(--s-6);
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-lg);
  transition: transform .25s ease, box-shadow .25s ease;
}
.report-dim:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(10,14,26,.20);
}
.report-dim-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: var(--s-2);
}
.report-dim h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0 0 var(--s-2);
  color: var(--ink);
}
.report-dim p {
  font-size: 13px;
  line-height: 20px;
  color: var(--ink-3);
  margin: 0;
}

@media (max-width: 1024px) {
  .report-overview-grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .report-dims { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .report-dims { grid-template-columns: 1fr; }
}

/* ========================================================================
   Page hero — used by contact / events
   ======================================================================== */

.page-hero {
  padding: 100px 0;
  background: var(--paper);
}
.page-hero h1 { max-width: 66.6667%; margin: var(--s-5) 0 var(--s-5); }
.page-hero p { font-size: 17px; line-height: 30px; color: var(--ink-3); max-width: 66.6667%; margin: 0; }
@media (max-width: 720px) {
  .page-hero h1, .page-hero p { max-width: 100%; }
}

/* ========================================================================
   Events grid
   ======================================================================== */

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.event-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-7);
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, transform .2s ease;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(10,14,26,.20);
}
.event-card.is-hosted { border-color: var(--signal-tint); background: linear-gradient(180deg, #FEF7F4 0%, var(--paper) 60%); }

.event-date {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate-500);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--slate-200);
}
.event-date-day {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.event-date-meta { display: flex; flex-direction: row; gap: 4px; }
.event-date-month { color: var(--ink); font-weight: 500; }
.event-date-year { color: var(--slate-500); }

.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--signal-ink);
  background: var(--signal-tint);
  padding: 4px 10px;
  border-radius: var(--r-full);
  align-self: flex-start;
}
.event-tag.is-external {
  color: var(--slate-700);
  background: var(--slate-100);
}

.event-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.event-meta {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-500);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: var(--s-4);
  border-top: 1px solid var(--slate-200);
}
.event-meta strong { color: var(--ink); font-weight: 500; }
.event-cta {
  margin-top: var(--s-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.event-card:hover .event-cta { color: var(--signal-ink); }

@media (max-width: 1024px) {
  .events-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .events-grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   Featured next event — larger lead card above the events grid
   ======================================================================== */

.event-featured {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-7);
  padding: var(--s-8);
  margin-bottom: var(--s-7);
  background: var(--ink-surface);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-xl);
}
.event-featured-info {
  display: flex;
  align-items: center;
  gap: var(--s-7);
  flex: 1;
  min-width: 0;
}
.event-featured-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  background: var(--ink-surface-2);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-text-2);
}
.event-featured-date-day {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-text);
  line-height: 1.1;
}
.event-featured-date-month { font-size: 11px; color: var(--ink-text); font-weight: 500; }
.event-featured-body { flex: 1; min-width: 0; }
.event-featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--signal-ink);
  background: var(--signal-tint);
  padding: 4px 10px;
  border-radius: var(--r-full);
  margin-bottom: var(--s-3);
}
.event-featured-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.015em;
  color: var(--ink-text);
  margin: 0 0 var(--s-2);
}
.event-featured-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-text-2);
  margin: 0 0 var(--s-3);
}
.event-featured-desc {
  font-size: 14px;
  line-height: 22px;
  color: var(--ink-text-2);
  max-width: 70ch;
  margin: 0;
}
.event-featured-cta { flex-shrink: 0; }

@media (max-width: 900px) {
  .event-featured { flex-direction: column; align-items: flex-start; gap: var(--s-6); }
  .event-featured-info { flex-direction: column; align-items: flex-start; gap: var(--s-5); }
}

/* ========================================================================
   Contact page layout
   ======================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-10);
  align-items: start;
}
.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  padding: var(--s-8);
}
.contact-form-card h2 {
  margin: 0 0 var(--s-3);
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.015em;
}
.contact-form-card .body {
  margin: 0 0 var(--s-6);
  font-size: 15px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
/* Inputs — base */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 360px;
}
.input-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-700);
  letter-spacing: -0.005em;
}
.input {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  width: 100%;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-md);
  padding: 14px 16px;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.input:hover {
  background: var(--paper);
  border-color: var(--slate-300);
}
.input:focus-within {
  background: var(--paper);
  border-color: var(--ink);
  box-shadow: var(--ring-focus);
}
.input input,
.input textarea {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  line-height: 24px;
  resize: vertical;
  padding: 0;
  min-height: 24px;
}
.input textarea { min-height: 120px; line-height: 26px; resize: none; }
.input input::placeholder,
.input textarea::placeholder { color: var(--slate-400); }
.input-icon { color: var(--slate-400); display: inline-flex; flex-shrink: 0; }
.input-hint { font-size: 13px; color: var(--slate-500); line-height: 18px; }

.contact-form .input-group { max-width: none; }
.contact-form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-2);
  flex-wrap: wrap;
}
.contact-form-hint { font-family: var(--font-mono); font-size: 11px; color: var(--slate-500); text-transform: uppercase; letter-spacing: 0.1em; }

.contact-side {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.contact-info-card {
  background: var(--ink-surface);
  color: var(--ink-text);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.contact-info-card .eyebrow { color: #F4A89E; margin: 0; }
.contact-info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: var(--s-4);
  border-top: 1px solid var(--ink-line);
}
.contact-info-row:first-of-type { border-top: none; padding-top: 0; }
.contact-info-row-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-text-2);
}
.contact-info-row-value {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-text);
}
.contact-info-row-value a { color: inherit; text-decoration: none; }
.contact-info-row-value a:hover { color: var(--signal); }
.contact-info-row-sub {
  font-size: 13px;
  color: var(--ink-text-2);
  line-height: 20px;
}
.contact-socials {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
}
.contact-socials a {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-text);
  border: 1px solid var(--ink-line);
  padding: 6px 12px;
  border-radius: var(--r-full);
  transition: background .15s ease, border-color .15s ease;
}
.contact-socials a:hover { background: var(--ink-surface-2); border-color: var(--signal); color: var(--signal); }

/* ========================================================================
   Substack subscribe card
   ======================================================================== */

.substack-embed {
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-md);
  overflow: hidden;
}
.substack-embed iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 80px;
  background: transparent;
}
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ========================================================================
   Insight feed
   ======================================================================== */

.insight {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: var(--s-8);
  padding: var(--s-8) 0;
  border-top: 1px solid var(--slate-200);
  align-items: start;
  transition: background .15s ease;
}
.insight:last-child { border-bottom: 1px solid var(--slate-200); }
.insight:hover { background: var(--paper-warm); margin: 0 calc(var(--s-6) * -1); padding-left: var(--s-6); padding-right: var(--s-6); }
.insight:hover .insight-title { color: var(--signal-ink); }
.insight-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: var(--s-2); }
.insight-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.insight-title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 var(--s-3);
  transition: color .15s ease;
}
.insight-summary {
  font-size: 15px;
  line-height: 24px;
  color: var(--ink-3);
  margin: 0;
}
.insight-author {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: right;
}
.insight-author strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  margin-bottom: 2px;
}

/* ========================================================================
   Pull-quote
   ======================================================================== */

.pull-quote {
  border-left: 3px solid var(--signal);
  padding-left: var(--s-6);
  margin: 0;
  max-width: 820px;
}
.pull-quote-body {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--s-4);
}
.pull-quote-attr {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
}

/* ========================================================================
   Engage CTA band
   ======================================================================== */

.cta-band {
  background: var(--ink-surface);
  color: var(--ink-text);
  padding: var(--s-12) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 80% 10%, rgba(194,54,42,.10) 0%, transparent 50%),
    radial-gradient(600px 400px at 10% 90%, rgba(194,54,42,.06) 0%, transparent 50%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at center, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, black 30%, transparent 100%);
}
.cta-band-sub {
  position: relative;
  font-size: 15px;
  line-height: 24px;
  color: var(--ink-text-2);
  max-width: 48ch;
  margin: calc(var(--s-8) * -1 + var(--s-4)) auto var(--s-7);
}
.cta-band-inner {
  position: relative;
  text-align: center;
}
.cta-band .eyebrow {
  color: #F4A89E;
  margin-bottom: var(--s-5);
  justify-content: center;
}
.cta-band h2 {
  color: var(--ink-text);
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 auto var(--s-8);
  max-width: 22ch;
}
.cta-band-actions {
  display: inline-flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  justify-content: center;
}
.cta-band-actions .btn { padding-top: 9px; padding-bottom: 9px; }
@media (max-width: 1024px) {
  .cta-band-actions .btn { padding-top: 11px; padding-bottom: 11px; }
}

/* ========================================================================
   Footer
   ======================================================================== */

.footer {
  background: var(--paper);
  color: var(--ink-3);
  padding: var(--s-10) 0 var(--s-7);
  border-top: 1px solid var(--slate-200);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-9);
}
.footer-brand {
  color: var(--ink);
}
.footer-brand .brand-mark {
  background: var(--ink);
  color: var(--paper);
}
.footer-brand-blurb {
  font-size: 14px;
  line-height: 22px;
  color: var(--ink-3);
  margin: var(--s-4) 0 0;
  max-width: 36ch;
}
.footer-brand-email {
  display: inline-block;
  margin-top: var(--s-4);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--slate-300);
  padding-bottom: 3px;
  transition: color .15s ease, border-color .15s ease;
}
.footer-brand-email:hover {
  color: var(--signal);
  border-color: var(--signal);
}
.footer-col-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate-500);
  margin: 0 0 var(--s-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-3); }
.footer-col a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: var(--ink);
  transition: color .2s ease;
}
.footer-col a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .35s cubic-bezier(.22, .61, .36, 1);
}
.footer-col a:hover { color: var(--signal); }
.footer-col a:hover::after { width: 100%; }
@media (prefers-reduced-motion: reduce) {
  .footer-col a::after { transition: none; }
}
.footer-bottom {
  padding-top: var(--s-6);
  border-top: 1px solid var(--slate-200);
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-500);
}

/* ========================================================================
   About page – team
   ======================================================================== */

.about-hero {
  padding: 100px 0;
  background: var(--paper);
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-10);
  align-items: center;
}
.about-hero h1 { max-width: 18ch; margin: var(--s-6) 0 var(--s-5); }
.about-hero-lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1.1vw, 1.9rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 0 var(--s-5);
}
.about-hero-sub { font-size: 17px; line-height: 30px; color: var(--ink-3); max-width: 56ch; margin: 0 0 var(--s-4); }
.about-hero-sub:last-child { margin-bottom: 0; }
/* ========================================================================
   Editorial image break — full-bleed photographic moment
   ======================================================================== */

.editorial-break {
  position: relative;
  min-height: 580px;
  background: var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.editorial-break-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.72) contrast(1.05) saturate(0.85);
}
.editorial-break-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(10,14,26,.94) 0%, rgba(10,14,26,.82) 50%, rgba(10,14,26,.4) 100%);
}
.editorial-break-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(115deg, black 0%, black 50%, transparent 90%);
  -webkit-mask-image: linear-gradient(115deg, black 0%, black 50%, transparent 90%);
}
.editorial-break-inner {
  position: relative;
  max-width: 720px;
  padding: var(--s-11) 0;
  color: var(--ink-text);
}
.editorial-break .eyebrow {
  color: #F4A89E;
  margin-bottom: var(--s-4);
}
.editorial-break h2 {
  color: var(--ink-text);
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.3rem + 2.8vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 var(--s-6);
}
.editorial-break-sub {
  font-size: 18px;
  line-height: 30px;
  color: var(--ink-text-2);
  max-width: 56ch;
  margin: 0;
}
.editorial-break-sub + .editorial-break-sub { margin-top: var(--s-4); }
.editorial-break-sub.is-emphasis { color: var(--ink-text); font-weight: 500; }
.editorial-break-coords {
  position: absolute;
  top: var(--s-7);
  right: var(--gutter);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-text-2);
  opacity: 0.75;
  text-align: right;
  line-height: 1.6;
}
.editorial-break-coords span { display: block; }

/* Light variant — near-white panel with a faint grid (see "The World Has Changed") */
.editorial-break--light {
  background: var(--paper-warm);
  border-top: none;
  border-bottom: none;
}
.editorial-break--light .editorial-break-inner {
  color: var(--ink);
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-11) var(--gutter);
}
.editorial-break--light .eyebrow { color: var(--signal); }
.editorial-break--light h2 { color: var(--ink); max-width: 66.6667%; }
.editorial-break--light .editorial-break-sub { color: var(--ink-3); max-width: 66.6667%; }
.editorial-break--light .editorial-break-sub.is-emphasis {
  color: var(--signal);
  font-weight: 600;
}
@media (max-width: 720px) {
  .editorial-break--light h2,
  .editorial-break--light .editorial-break-sub { max-width: 100%; }
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.principle {
  padding: var(--s-7);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.principle .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--signal-ink);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.principle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  border: 1px solid var(--slate-200);
  background: var(--paper-warm);
  color: var(--ink);
  margin-bottom: var(--s-1);
}
.principle-icon svg { width: 20px; height: 20px; display: block; }
.principle h3 { margin: 0; }
.principle p { margin: 0; color: var(--ink-3); font-size: 15px; line-height: 24px; }

.section-ink .eyebrow { color: #F4A89E; }
.section-ink h2 { color: var(--ink-text); }
.section-ink .principle {
  border-color: var(--ink-line);
  background: var(--ink-surface-2);
}
.section-ink .principle-icon {
  border-color: var(--ink-line);
  background: var(--ink-surface);
  color: var(--ink-text);
}
.section-ink .principle h3 { color: var(--ink-text); }
.section-ink .principle p { color: var(--ink-text-2); }

/* Flat top-ruled columns with large Signal numbers — "Why Clients Choose Challenger" (home) & "How we help" (service pages) */
#why-challenger-choose,
#policy-how { border-top: none; }
#why-challenger-choose .principles,
#policy-how .principles { gap: var(--s-9); }
#why-challenger-choose .eyebrow,
#policy-how .eyebrow { color: var(--signal); }
#why-challenger-choose .principle,
#policy-how .principle {
  padding: var(--s-6) 0 0;
  border: none;
  border-top: 1px solid var(--slate-300);
  border-radius: 0;
  background: transparent;
  gap: var(--s-3);
}
#why-challenger-choose .principle:hover,
#policy-how .principle:hover {
  transform: none;
  box-shadow: none;
}
#why-challenger-choose .principle .num,
#policy-how .principle .num {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--signal);
  margin-bottom: var(--s-3);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4) var(--s-4);
}
.team-card {
  padding: var(--s-7);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  background: var(--paper);
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(10,14,26,.20);
}
.team-portrait {
  width: 100%;
  aspect-ratio: 1;
  background: var(--paper-warm);
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
  position: relative;
  overflow: hidden;
}
.team-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
  transition: transform .35s ease, filter .35s ease;
}
.team-card:hover .team-portrait img {
  transform: scale(1.02);
  filter: grayscale(0);
}
.team-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 4px;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--signal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--s-3);
}
.team-bio {
  font-size: 14px;
  line-height: 22px;
  color: var(--ink-3);
  margin: 0;
}

.team-card-engage {
  background: var(--ink-surface);
  border-color: var(--ink-line);
}
.team-card-engage:hover { box-shadow: 0 20px 40px -12px rgba(0,0,0,.5); }
/* Service pages — focus tag row + Signal numerals on "How we help" */
.tag-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* Question ledger — full-width editorial rows: number | question | answer */
.ledger { border-top: 1px solid var(--slate-200); }
.ledger-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1.05fr) minmax(0, 1.35fr);
  gap: var(--s-5) var(--s-8);
  align-items: start;
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--slate-200);
}
.ledger-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--signal);
  padding-top: 5px;
}
.ledger-q {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.ledger-a {
  font-size: 16px;
  line-height: 26px;
  color: var(--ink-3);
  margin: 0;
}
@media (max-width: 860px) {
  .ledger-row { grid-template-columns: auto 1fr; gap: var(--s-2) var(--s-5); }
  .ledger-a { grid-column: 1 / -1; }
}
/* Areas of focus — larger, emphasised chips (not tiny mono tags) */
.tag-row .tag {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: none;
  padding: 14px 22px;
  border-radius: var(--r-full);
  border: 1px solid var(--slate-300);
  background: var(--paper);
  color: var(--ink);
  transition: border-color .15s ease, color .15s ease;
}
.tag-row .tag:hover { border-color: var(--signal); color: var(--signal); }

/* "Why … matters" — tighter title→text gap, 2/3 prose, prominent Signal pull-line */
#policy-why .section-head,
#inv-why .section-head { margin-bottom: var(--s-5); }
#policy-why .section-prose,
#inv-why .section-prose { max-width: 66.6667%; }
#policy-why .section-prose > .lead-emphasis,
#inv-why .section-prose > .lead-emphasis {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--signal);
  margin: var(--s-3) 0 var(--s-5);
}
@media (max-width: 720px) {
  #policy-why .section-prose,
  #inv-why .section-prose { max-width: 100%; }
}

/* How We Investigate — 3-step process with arrow separators */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-9);
  align-items: start;
}
.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-top: var(--s-6);
  border-top: 1px solid var(--slate-300);
}
.process-num {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--signal);
}
.process-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.process-desc { font-size: 16px; line-height: 26px; color: var(--ink-3); margin: 0; }
@media (max-width: 860px) {
  .process { grid-template-columns: 1fr; gap: var(--s-8); }
}
.page-hero .hero-actions .btn { padding-top: 9px; padding-bottom: 9px; }
@media (max-width: 1024px) {
  .page-hero .hero-actions .btn { padding-top: 11px; padding-bottom: 11px; }
}
/* Hero lead / tagline — Signal, bold, given prominence above the intro body */
.page-hero .page-hero-lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.1rem + 1.1vw, 1.9rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--signal);
  margin: 0 0 var(--s-5);
}

/* Our People — shorter header button, tighter body text */
#people .section-head-action .btn { padding-top: 8px; padding-bottom: 8px; }
@media (max-width: 1024px) {
  #people .section-head-action .btn { padding-top: 11px; padding-bottom: 11px; }
}
#people .section-head .body-lg { font-size: 16px; line-height: 26px; }

/* Full-bleed cover images, like the Challenging Geopolitics cards */
#people .team-card { overflow: hidden; padding: 18px; }
#people .team-portrait {
  width: auto;
  margin: -18px -18px var(--s-5);
  aspect-ratio: 4 / 3;
  border-radius: 0;
  border-bottom: 1px solid var(--slate-200);
}

.team-card-engage .team-role { color: #F4A89E; }
.team-card-engage .h3 { color: var(--ink-text); }
.team-card-engage .team-bio { color: var(--ink-text-2); }

.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.location {
  padding: var(--s-7);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.location .city {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--s-2);
}
.location .role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--signal-ink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--s-3);
}
.location .addr {
  font-size: 14px;
  line-height: 22px;
  color: var(--ink-3);
  margin: 0;
}

/* ========================================================================
   Individual report — related projects strip
   ======================================================================== */

.report-related {
  background: var(--paper);
  padding: var(--s-11) 0;
  border-top: 1px solid var(--slate-200);
}
.report-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-7);
}
.report-related-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.report-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(10,14,26,.20);
}
.report-related-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-warm);
}
.report-related-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.report-related-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: var(--s-5) var(--s-5) var(--s-2);
}
.report-related-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  padding: 0 var(--s-5) var(--s-5);
}
.report-related-card:hover .report-related-title { color: var(--signal-ink); }

@media (max-width: 720px) {
  .report-related-grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   Responsive
   ======================================================================== */

@media (max-width: 1024px) {
  :root { --gutter: 32px; }
  .topbar-inner { display: flex; justify-content: space-between; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-9); }
  .hero-image-frame { margin-left: 0; max-width: 600px; aspect-ratio: 16/12; }
  .hero-stack { margin-left: 0; max-width: 100%; aspect-ratio: 4/5; }
  .hero-video { margin-left: 0; max-width: 100%; }
  .engagements-grid { grid-template-columns: 1fr 1fr; column-gap: var(--s-7); }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .fields-grid { grid-template-columns: repeat(2, 1fr); }
  .field-cell:nth-child(4n) { border-right: 1px solid var(--slate-200); }
  .field-cell:nth-child(2n) { border-right: none; }
  .field-cell:nth-last-child(-n+4) { border-bottom: 1px solid var(--slate-200); }
  .field-cell:nth-last-child(-n+2) { border-bottom: none; }
  .insight { grid-template-columns: 1fr; gap: var(--s-3); }
  .insight-author { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .principles { grid-template-columns: repeat(2, 1fr); }
  .locations { grid-template-columns: 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .editorial-break { min-height: 460px; }
}

@media (max-width: 600px) {
  .topbar-right .nav-cta { display: none; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .section { padding: 70px 0; }
  .partners { padding: 40px 0; }
  .hero, .about-hero, .page-hero, .report-hero { padding: 70px 0; }
  .engagements-strip { padding: 70px 0; }
  .report-overview { padding: 70px 0; }
  .report-related { padding: 70px 0; }
  .legal-page { padding: 70px 0; }
  .editorial-break-inner { padding: 70px 0; }
  .editorial-break--light .editorial-break-inner { padding: 70px var(--gutter); }
  .cta-band { padding: 70px 0; }
  .nav-cta .btn-ghost { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; gap: var(--s-5); }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid.is-four { grid-template-columns: 1fr; }
  .engagements-grid { grid-template-columns: 1fr; column-gap: 0; }
  .fields-grid { grid-template-columns: 1fr; }
  .field-cell { border-right: none !important; border-bottom: 1px solid var(--slate-200) !important; }
  .field-cell:last-child { border-bottom: none !important; }
  .team-grid { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
