/* ============================================================
   Akizavo — holding / main brand page stylesheet  (v3 — production)
   Font: Momo Trust Sans (400/500/600/700/800)
   One continuous white canvas + slow light gradient aura (#D6A2B3 / #79C0FF).
   Consistent glass-morphism chips ("eyebrow" labels) across every section.
   A single bold black "What we do" anchor + dark footer sit above the aura.
   ============================================================ */

:root {
  --black: #0a0a0b;
  --ink: #16161a;
  --white: #ffffff;
  --cream: #f1efed;
  --cream-2: #f6f4f0;
  --muted: rgba(22,22,26,.60);
  --muted-2: rgba(22,22,26,.42);
  --line: rgba(22,22,26,.12);
  --line-strong: rgba(22,22,26,.22);
  --line-light: rgba(255,255,255,.16);
  --orange: var(--ink);
  --pink: #D6A2B3;
  --blue: #79C0FF;
  --maxw: 1280px;
  --gut: clamp(22px, 5vw, 84px);
  --radius: 20px;
  --radius-sm: 14px;
  --ease: cubic-bezier(.22,1,.36,1);
  --header-h: 72px;
  --font: 'Momo Trust Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  /* glass surfaces */
  --glass: rgba(255,255,255,.55);
  --glass-2: rgba(255,255,255,.4);
  --glass-brd: rgba(255,255,255,.7);
  --glass-blur: blur(14px) saturate(1.15);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); font-weight: 400;
    color: var(--ink); background: var(--white); line-height: 1.7;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}

/* ---- continuous animated light gradient aura (pink + blue) ---- */
body::before {
  content: ""; position: fixed; inset: -14%; z-index: 0; pointer-events: none;
  /* saturate(.95) is pre-baked into these colors — a filter here forces the
     compositor to keep a full-viewport filter surface alive every frame */
  background:
    radial-gradient(42% 38% at 12% 16%, rgba(212,163,179,.55), transparent 62%),
    radial-gradient(40% 38% at 88% 24%, rgba(124,191,251,.50), transparent 62%),
    radial-gradient(40% 40% at 80% 84%, rgba(212,163,179,.36), transparent 62%),
    radial-gradient(38% 38% at 16% 88%, rgba(124,191,251,.34), transparent 62%);
  background-repeat: no-repeat;
  opacity: 0;
  will-change: transform;
  transform: scale(1.12);
  animation: auraEntrance 2.8s var(--ease) forwards, auraDrift 32s var(--ease) infinite alternate 2.8s;
}
@keyframes auraEntrance {
  0% { opacity: 0; transform: scale(1.12); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes auraDrift {
  0%   { transform: translate3d(-3%,-2%,0) scale(1); }
  50%  { transform: translate3d(3%,3%,0) scale(1.08); }
  100% { transform: translate3d(1%,-2%,0) scale(1.03); }
}
main { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section-dark  { background: var(--black); color: var(--cream-2); }
.section-light { background: transparent; color: var(--ink); }

/* ============ Section label (frosted glass chip) ============ */
.section-label, .eyebrow, .chip {
  display: inline-flex; align-items: center; gap: .55em; margin: 0 0 1.4rem;
  padding: .52em 1.1em; border-radius: 100px;
  font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(22, 22, 26, 0.72); white-space: nowrap;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.38) 100%);
  -webkit-backdrop-filter: blur(16px) saturate(1.4); backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(22, 22, 26, 0.08);
  box-shadow: 
    0 6px 18px -4px rgba(22, 22, 26, 0.05),
    0 1px 2px rgba(22, 22, 26, 0.02),
    inset 0 1.5px 0.5px rgba(255, 255, 255, 0.95),
    inset 0 -1.5px 2px rgba(22, 22, 26, 0.03);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.section-label:hover, .eyebrow:hover, .chip:hover {
  transform: translateY(-1px);
  border-color: rgba(22, 22, 26, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 100%);
  box-shadow: 
    0 8px 24px -4px rgba(22, 22, 26, 0.08),
    0 2px 4px rgba(22, 22, 26, 0.03),
    inset 0 1.5px 0.5px rgba(255, 255, 255, 0.98),
    inset 0 -1.5px 2px rgba(22, 22, 26, 0.04);
}
.section-label::before, .eyebrow::before, .chip::before { content: none; }
.section-label--dark, .whatwedo-panel .section-label, .whatwedo-panel .eyebrow, .section-dark .eyebrow, .whatwedo-panel .chip, .section-dark .chip {
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.section-label--dark:hover, .whatwedo-panel .section-label:hover, .whatwedo-panel .eyebrow:hover, .section-dark .eyebrow:hover, .whatwedo-panel .chip:hover, .section-dark .chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.section-title { font-size: clamp(1.95rem, 4vw, 3rem); font-weight: 700; line-height: 1.167; letter-spacing: -.02em; margin: 0 0 1rem; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 1000; background: var(--ink); color: #fff; padding: .6rem 1rem; }
.skip-link:focus { left: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Buttons ---------- */
.btn-pill {
  display: inline-flex; align-items: center; gap: .55em; padding: .78em 1.7em;
  border: 1.5px solid var(--ink); border-radius: 100px; font-weight: 600; font-size: .92rem; letter-spacing: .01em; line-height: 1;
  color: var(--ink); background: transparent; transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn-pill:hover { background: var(--ink); color: var(--white); }
.btn-pill .arr { transition: transform .3s var(--ease); }
.btn-pill:hover .arr { transform: translateX(4px); }
.btn-solid { background: var(--ink); color: var(--white); }
.btn-solid:hover { background: var(--black); }
.btn-ghost-glass {
  display: inline-flex; align-items: center; gap: .5em; padding: .62em 1.25em;
  background: var(--glass); -webkit-backdrop-filter: var(--glass-blur); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-brd); border-radius: 100px; font-weight: 600; font-size: .9rem;
  color: var(--ink); box-shadow: 0 6px 22px rgba(22,22,26,.07); transition: transform .25s var(--ease), background .25s;
}
.btn-ghost-glass:hover { transform: translateY(-2px); background: rgba(255,255,255,.75); }
.section-dark .btn-pill { color: var(--white); border-color: rgba(255,255,255,.45); }
.section-dark .btn-pill:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.whatwedo-panel .btn-pill { color: var(--white); border-color: rgba(255,255,255,.45); }
.whatwedo-panel .btn-pill:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* ---------- Header ---------- */
/* Separate blur layer — lives outside the header's stacking context so
   backdrop-filter can sample through WebGL / GPU-composited layers. */
.header-blur-layer {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); z-index: 99;
  pointer-events: none; --hdr-blur: 4px;
  -webkit-backdrop-filter: blur(var(--hdr-blur)) saturate(1.3);
  backdrop-filter: blur(var(--hdr-blur)) saturate(1.3);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 100%);
  /* no will-change: backdrop-filter — it is not animatable via the compositor
     and the hint pushes Chrome onto a slower rendering path */
  transform: translateZ(0);
}
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-h); margin: 0;
  display: flex; align-items: center;
  background: transparent; color: var(--hdr-fg);
  --hdr-fg: #000000; --hdr-muted: var(--muted); --hdr-hover-bg: rgba(22,22,26,.08);
  transition: color .3s var(--ease), transform 1s var(--ease), opacity 1s var(--ease);
  transform: translateY(-20px); opacity: 0; will-change: transform, opacity;
}
.site-header.is-loaded {
  transform: translateY(0); opacity: 1;
}
/* dark sections behind the header → white content */
.site-header.is-dark { --hdr-fg: var(--white); --hdr-muted: rgba(255,255,255,.62); --hdr-hover-bg: rgba(255,255,255,.12); }
.header-inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; }
.brand svg { display: block; height: 17px; width: auto; overflow: visible; }
.brand svg path { fill: currentColor; }
.header-nav { display: none; gap: 2.2rem; align-items: center; position: relative; }
.header-nav a { font-size: .9rem; font-weight: 500; color: var(--hdr-muted); transition: color .2s; position: relative; }
.header-nav a::before { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px; background: var(--hdr-muted); opacity: 0.3; transition: background 0.3s var(--ease); }
.header-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px; background: var(--hdr-fg); transform: scaleX(var(--item-scroll-p, 0)); transform-origin: left; transition: background 0.3s var(--ease); }
.header-nav a:hover,
.header-nav a.is-active { color: var(--hdr-fg); }
.header-actions { display: flex; align-items: center; gap: .4rem; }
.icon-btn { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .2s var(--ease); color: var(--hdr-fg); }
.icon-btn:hover { background: var(--hdr-hover-bg); }
.burger { position: relative; width: 22px; height: 14px; display: block; }
.burger span { position: absolute; left: 0; right: 0; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 6px; }
.burger span:nth-child(3) { bottom: 0; }
body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Off-canvas menu */
.ocm { position: fixed; inset: 0; z-index: 200; background: var(--black); color: var(--cream-2); transform: translateX(100%); transition: transform .45s var(--ease); display: flex; }
.ocm.is-open { transform: translateX(0); }
.ocm-inner { width: 100%; height: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); position: relative; display: flex; align-items: center; }
.ocm-close { position: absolute; top: 28px; right: var(--gut); font-size: 2rem; line-height: 1; opacity: .8; }
.ocm-close:hover { opacity: 1; }
.ocm-nav { display: flex; flex-direction: column; gap: 1.1rem; }
.ocm-nav a { font-size: clamp(2rem, 7vw, 4rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; opacity: .9; transition: color .2s, transform .3s var(--ease); }
.ocm-nav a:hover { color: var(--white); transform: translateX(10px); }
body.menu-open { overflow: hidden; }

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(10, 10, 11, 0.82);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  color: #fff;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-inner {
  width: 100%;
  height: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(80px, 12vh, 160px);
}
.search-close { position: absolute; top: 28px; right: var(--gut); font-size: 2rem; line-height: 1; opacity: .8; transition: opacity .2s; cursor: pointer; }
.search-close:hover { opacity: 1; }
.search-form { width: 100%; max-width: 720px; position: relative; }
.search-input-wrapper { position: relative; display: flex; align-items: center; width: 100%; }
.search-form input { width: 100%; background: transparent; border: 0; border-bottom: 2px solid rgba(255,255,255,.3); color: #fff; font-family: var(--font); font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-weight: 600; padding: .6rem 0 .6rem 2.8rem; outline: none; transition: border-color .3s; }
.search-form input:focus { border-color: #fff; }
.search-form input::placeholder { color: rgba(255,255,255,.3); }
.search-input-icon { position: absolute; left: 0; color: rgba(255,255,255,.4); pointer-events: none; transition: color .3s; }
.search-form input:focus + .search-input-icon { color: #fff; }
.search-hint { margin-top: 1rem; color: rgba(255,255,255,.5); font-size: .85rem; }
.search-hint kbd { background: rgba(255,255,255,.15); padding: 2px 6px; border-radius: 4px; font-family: inherit; font-size: 0.8rem; border: 1px solid rgba(255,255,255,.1); margin-inline: 2px; }

/* Responsive utility toggles for search layout and info */
.desktop-only { display: block; }
.mobile-only { display: none; }
@media (max-width: 900px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
}

/* Instant Search Results Panel */
.search-results-wrapper {
  width: 100%;
  max-width: 720px;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  max-height: 48vh;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  animation: searchResultsEntrance 0.35s var(--ease) forwards;
}
@keyframes searchResultsEntrance {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.search-results-header {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
  padding-inline: 0.5rem;
}
.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
  padding-right: 4px;
}
.search-results-list::-webkit-scrollbar { width: 5px; }
.search-results-list::-webkit-scrollbar-track { background: transparent; }
.search-results-list::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 10px; }

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  transition: background .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
  cursor: pointer;
  outline: none;
}
.search-result-item:hover,
.search-result-item.is-selected {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}
.search-result-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
}
.search-result-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}
.search-result-title mark {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-radius: 2px;
  padding-inline: 2px;
}
.search-result-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}
.search-result-badge {
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.85);
  padding: 1px 7px;
  border-radius: 10px;
  font-size: 0.66rem;
  font-weight: 500;
}
.search-result-arrow {
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.search-result-item:hover .search-result-arrow,
.search-result-item.is-selected .search-result-arrow {
  color: #fff;
  transform: translateX(2px);
}
.search-result-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
}
body.search-open { overflow: hidden; }

/* ============ HERO — holding company (image + floating chips) ============ */
.hero {
  position: relative; isolation: isolate;
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + clamp(40px, 8vh, 100px)) 0 clamp(48px, 8vh, 100px);
  color: var(--ink);
  background: transparent;
}
/* backdrop layers */
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
/* two-column shell: copy on the left, visual panel on the right */
.hero-copy { min-width: 0; margin-top: -50px; }
.hero-visual {
  position: relative;
  min-height: clamp(480px, 72vh, 650px);
  margin-top: -30px;
}
/* the 3D scene wrapper (flat layout, no skew) */
.hero-3d-container {
  position: absolute;
  inset: 0;
  margin-top: -120px;
  display: grid;
  grid-template-columns: repeat(3, 220px);
  grid-template-rows: repeat(3, 80px);
  gap: 16px;
  justify-content: center;
  align-content: center;
  transform: scale(0.9) translateY(30px);
  will-change: transform;
  transition: transform 2.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero.is-loaded .hero-3d-container {
  transform: scale(1) translateY(0);
}

/* the ground contact shadow group (sharp contact + soft ambient) */
.hero-shadow-group {
  position: absolute;
  bottom: 45px;
  left: 2%;
  right: -10%;
  height: 50px;
  transform-style: preserve-3d;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: shadowIn 1.4s var(--ease) forwards;
  animation-delay: 0.25s;
}
.hero-shadow-contact {
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 6px;
  background: rgba(10, 12, 18, 0.85);
  border-radius: 50%;
  filter: blur(1.5px);
}
.hero-shadow-ambient {
  position: absolute;
  top: 3px;
  left: 5%;
  right: 5%;
  height: 28px;
  background: radial-gradient(ellipse at center, rgba(10, 12, 18, 0.55) 0%, transparent 80%);
  filter: blur(10px);
}
.hero-shadow-ambient::after {
  content: "";
  position: absolute;
  top: 6px;
  inset: -10% -20%;
  height: 44px;
  background: radial-gradient(ellipse at center, rgba(10, 12, 18, 0.35) 0%, transparent 85%);
  filter: blur(20px);
}

@keyframes shadowIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* the interactive WebGL globe container */
.hero-globe-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10vw;
  width: 75vw;
  overflow: visible;
  opacity: 0; transform: scale(1.05) translateZ(0);
  transition: opacity 1.8s var(--ease), transform 2.2s var(--ease);
  z-index: 1;
  pointer-events: none;
  
  /* Fade mask towards the left, edges, and bottom to integrate seamlessly */
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 95%), radial-gradient(ellipse at 65% 50%, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 80%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 95%), radial-gradient(ellipse at 65% 50%, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 80%);
  mask-composite: intersect;
}
.hero-globe-container.is-ready { opacity: 1; transform: scale(1) translateZ(0); }
.hero-globe {
  width: 100%;
  height: 100%;
  position: relative;
  outline: none;
}

/* grid chip wrappers */
.hero-stat-card-wrapper {
  position: relative;
  z-index: 3;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Dim empty outer chips to 50% opacity */
.hero-stat-card-wrapper--deco {
  opacity: 0.5;
}

/* Stagger rows horizontally to match the desired stair-step layout */
.hero-stat-card-wrapper:nth-child(n+4):nth-child(-n+6) {
  transform: translateX(45px); /* Row 2 shift */
}
.hero-stat-card-wrapper:nth-child(n+7):nth-child(-n+9) {
  transform: translateX(90px); /* Row 3 shift */
}

/* Gradually fade the outer ends of the left and right chips to 0 opacity */
.hero-stat-card-wrapper:nth-child(3n+1) .hero-stat-card {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60%);
  mask-image: linear-gradient(to right, transparent 0%, black 60%);
}
.hero-stat-card-wrapper:nth-child(3n+3) .hero-stat-card {
  -webkit-mask-image: linear-gradient(to left, transparent 0%, black 60%);
  mask-image: linear-gradient(to left, transparent 0%, black 60%);
}



/* floating glass stat cards — frosted cards with deep Z-depth hovering */
.hero-stat-card {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 4px;
  justify-content: center;
  padding: 12px 18px; border-radius: 16px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.2); backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
              0 1px 0 rgba(255, 255, 255, 0.8) inset, 
              0 -1px 0 rgba(255, 255, 255, 0.2) inset;
  opacity: 1;
  overflow: hidden;
}

.hero-stat-card-figure {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.stat-counter {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.hero-stat-card-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  line-height: 1.2;
  margin-bottom: 2px;
}

.hero-shell {
  position: relative; z-index: 2; max-width: var(--maxw);
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.hero-title {
  font-size: clamp(1.95rem, 4.4vw, 3rem); font-weight: 700;
  line-height: 1.167; letter-spacing: -.02em; color: var(--ink);
  margin: 0; max-width: 10.5em;
}
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.7rem); max-width: 46ch; color: var(--muted);
  font-weight: 400; line-height: 1.3; margin: clamp(1.1rem, 2.6vh, 1.7rem) 0 clamp(1.9rem, 4.2vh, 2.6rem);
  opacity: 0; transform: translateY(15px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
  will-change: transform, opacity;
}
.hero.is-loaded .hero-sub {
  opacity: 1; transform: translateY(0);
  transition-delay: .45s;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); } 70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }

/* split-heading word reveal with inner overflow mask */
.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.split-heading .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(115%) rotate(4deg);
  transform-origin: left bottom;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.split-heading.is-in .word {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* scroll cue */
.scroll-cue {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: .5rem;
  color: var(--muted);
  margin-top: clamp(4.5rem, 10vh, 7rem);
  margin-left: 35%;
  width: fit-content;
  opacity: 0; transform: translateY(15px);
  transition: color 0.25s var(--ease), opacity 1.2s var(--ease), transform 1.2s var(--ease);
  will-change: transform, opacity;
}
@media (max-width: 768px) {
  .scroll-cue {
    margin-left: 0;
  }
}
.hero.is-loaded .scroll-cue {
  opacity: 1; transform: translateY(var(--cue-y, 0px));
  transition-delay: .75s;
}

.scroll-cue:hover {
  color: var(--ink);
}
.scroll-cue-label { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; opacity: .7; }
.scroll-arrow { width: 24px; height: 40px; border: 1.5px solid currentColor; border-radius: 14px; position: relative; flex-shrink: 0; }
.scroll-arrow::after { content: ""; position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; background: currentColor; border-radius: 2px; transform: translateX(-50%); animation: scrollDot 1.6s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 14px); } }

/* ============ Philosophy (scroll-pinned, gradual word reveal) ============ */
.philosophy { height: 240vh; position: relative; }
.philosophy-pin { position: sticky; top: 0; height: 100svh; display: flex; align-items: center; }
.philosophy-content { max-width: 1000px; }
.philosophy-text { font-size: clamp(1.25rem, 3vw, 2rem); font-weight: 600; line-height: 1.5; letter-spacing: -.01em; color: var(--ink); margin: 0; }
.philosophy-text .word { display: inline-block; opacity: 0; transform: translateY(.3em); filter: blur(4px); will-change: opacity, transform, filter; }
.philosophy .section-label {
  opacity: var(--chip-opacity, 1);
  transform: translateY(var(--chip-y, 0px));
  will-change: opacity, transform;
  transition: transform 0.15s linear, opacity 0.15s linear, border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.philosophy .section-label:hover {
  transform: translateY(calc(var(--chip-y, 0px) - 1px));
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}




/* ============ What we do: single black anchor ============ */
.whatwedo-panel {
  --expand: 1; --panel-gutter: clamp(16px, 6vw, 96px);
  position: relative; z-index: 2; background: var(--black); color: var(--cream-2);
  margin-inline: calc(var(--panel-gutter) * (1 - var(--expand)));
  border-radius: calc(40px * (1 - var(--expand)));
}

/* creative depth: soft top glow + faint engineering dot-grid */
.whatwedo-panel::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% 0%, rgba(121,192,255,.16), transparent 70%),
    radial-gradient(55% 45% at 12% 100%, rgba(214,162,179,.14), transparent 72%);
  border-radius: inherit;
}
.whatwedo-panel::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1.4px);
  background-size: 26px 26px; background-position: 0 0;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 75%);
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 75%);
  border-radius: inherit;
}
.whatwedo-panel > * { position: relative; z-index: 1; }
/* editorial intro: two-column — chip+title on the left, body on the right (balanced).
   The .whatwedo-intro also carries the .container class, so it already gets the
   standard max-width: var(--maxw) + var(--gut) padding — identical to every other
   section. We deliberately do NOT widen it, so the intro lines up with the hero,
   philosophy and journal blocks instead of reading wider. */
.whatwedo-intro {
  position: relative; overflow: hidden;
  /* vertical rhythm only — keep the horizontal gutter from .container
     (padding-inline: var(--gut)) intact so this block lines up with every
     other section. Using padding-block instead of the `padding` shorthand
     avoids resetting the inline gutter to 0, which previously shoved the
     chip, title and body hard against the left edge of the max-width box. */
  padding-block: clamp(80px, 12vh, 150px) 0;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
.whatwedo-intro > * { position: relative; z-index: 1; min-width: 0; }
/* chip + title share one tight rhythm — the label's own margin-bottom is zeroed
   here so only the column gap controls the spacing (no double gap above the title). */
.whatwedo-intro-left { display: flex; flex-direction: column; gap: .85rem; align-items: flex-start; }
.whatwedo-intro-left .section-label { margin-bottom: 0; }
.whatwedo-intro-right { display: flex; flex-direction: column; justify-content: center; }
.whatwedo-intro .section-title { color: var(--white); margin: 0; }
.whatwedo-intro .section-body {
  font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.72); margin: 0;
  /* let the body fill its grid column (~60ch at --maxw, an ideal reading
     measure) so its right edge lines up with the rest of the page instead
     of leaving a wide gap on the right */
  max-width: none;
}

/* contained sticky stacking cards — improved progressive stacking */
.sticky-stack { position: relative; padding-bottom: 15vh; margin-top: -10vh; }
.discipline {
  position: sticky; top: 0; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(40px, 8vh, 90px) var(--gut);
  /* driven by JS: --card-p = 0 (card filling screen) → 1 (next card covering it) */
  --card-p: 0;
}
.discipline:nth-child(1) { z-index: 10; }
.discipline:nth-child(1) .discipline-card { --card-offset: 30px; }
.discipline:nth-child(2) { z-index: 20; }
.discipline:nth-child(2) .discipline-card { --card-offset: 70px; }
.discipline:nth-child(3) { z-index: 30; }
.discipline:nth-child(3) .discipline-card { --card-offset: 110px; }
/* the card being covered recedes: shrink + dim + flatten shadow for a layered, physical stack */
.discipline-card {
  position: relative; top: var(--card-offset, 0px); z-index: 1; width: 100%; max-width: 1080px; margin-inline: auto; display: flex; align-items: stretch;
  border-radius: var(--radius); overflow: hidden; min-height: clamp(420px, 70vh, 600px);
  background-color: #15151a; background-image: var(--discipline-bg, none); background-size: cover; background-position: right center;
  box-shadow: 0 40px 90px rgba(0,0,0,.5), 0 0 calc(var(--card-p) * 90px) rgba(0,0,0, calc(var(--card-p) * .5));
  transform: scale(calc(1 - var(--card-p) * .08)) translateY(calc(var(--card-p) * -4.5%));
  filter: brightness(calc(0.15 * var(--card-p) * var(--card-p) - 0.60 * var(--card-p) + 1)) saturate(calc(1 - var(--card-p) * .12)) blur(calc(var(--card-p) * 1px));
  opacity: calc(1 - var(--card-p) * .15);
  will-change: transform, filter, opacity;
  transition: transform .12s linear, filter .12s linear, opacity .12s linear;
}
/* sophisticated, subtle scrim: soft left fade + radial vignette (no heavy block) */
.discipline-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(90deg, rgba(10,10,11,.74) 0%, rgba(10,10,11,.42) 32%, rgba(10,10,11,.08) 58%, rgba(10,10,11,0) 100%),
    radial-gradient(120% 100% at 0% 50%, rgba(10,10,11,.35), transparent 60%);
}
.discipline-card::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  box-shadow: inset 0 0 120px 30px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
}
.discipline-copy { position: relative; z-index: 1; width: 52%; max-width: 34rem; padding: clamp(34px, 5vw, 60px); align-self: center; }

.discipline-title { font-size: clamp(1.7rem, 3.8vw, 3rem); font-weight: 700; line-height: 1.167; letter-spacing: -.02em; color: var(--white); margin: 0 0 1.1rem; }
.discipline-desc { font-size: clamp(.9375rem, 1.4vw, 1rem); line-height: 1.7; color: rgba(255,255,255,.8); margin: 0 0 1.8rem; }

/* ---------- Placeholder (brand aura gradient) ---------- */
.placeholder { width: 100%; height: 100%; min-height: 220px; background: linear-gradient(135deg, rgba(214,162,179,.9) 0%, rgba(121,192,255,.9) 100%); display: flex; align-items: center; justify-content: center; position: relative; }
.placeholder::after { content: ""; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.55); box-shadow: inset 0 0 0 2px rgba(255,255,255,.9); }

/* ============ Journal / News ============ */
.journal { padding: clamp(90px, 14vh, 180px) 0; overflow: hidden; }
.journal-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(40px, 6vw, 80px); }
.journal-head > div:first-child { display: flex; flex-direction: column; gap: 0.85rem; align-items: flex-start; }
.journal-head .section-label { margin-bottom: 0; }
.journal-head .section-title { margin: 0; }
.news-filters { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.news-filter { padding: 0 0 .25rem; border: none; border-bottom: 3px solid transparent; background: transparent; font-size: 1rem; font-weight: 600; color: var(--muted); cursor: pointer; transition: color .2s, border-color .2s; }
.news-filter:hover { color: var(--ink); }
.news-filter.is-active { color: var(--ink); border-color: var(--ink); background: transparent; }

/* --- News Theater (Dual-Panel Layout) --- */
.news-theater {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* Left Panel: Spotlight Card */
.news-spotlight {
  position: sticky;
  top: calc(var(--header-h) + 40px);
  width: 100%;
  aspect-ratio: 4 / 3.5;
  background: var(--glass);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-brd);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 
    0 25px 55px rgba(0, 0, 0, 0.12), 
    0 8px 20px rgba(0, 0, 0, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s var(--ease), opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-theater-observed .news-spotlight:not(.is-in) {
  opacity: 0;
  transform: translateY(100px) scale(0.92);
  pointer-events: none;
}
.news-spotlight:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 50px 90px rgba(0, 0, 0, 0.25), 
    0 15px 35px rgba(0, 0, 0, 0.12), 
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 50px rgba(0, 0, 0, 0.45);
}
.news-spotlight-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.news-spotlight-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  background-image: linear-gradient(135deg, #2c2c30 0%, #0c0c0d 100%);
  filter: brightness(0.85) contrast(1.02);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s var(--ease);
}
.news-spotlight-image.is-current {
  z-index: 1;
  opacity: 1;
}
.news-spotlight-image.is-next {
  z-index: 2;
  opacity: 0;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
}
.news-spotlight-image.is-next.has-wipe {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 0.55s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.55s ease;
}
.news-spotlight-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(22, 22, 26, 0.1) 0%, rgba(22, 22, 26, 0.5) 100%);
  z-index: 2;
}

.news-spotlight:hover .news-spotlight-image {
  transform: scale(1.06);
  filter: brightness(1.02) contrast(1);
}
.news-spotlight-action {
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.news-spotlight:hover .news-spotlight-action {
  opacity: 1;
  transform: scale(1);
}
.news-spotlight-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  background: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid var(--white);
  padding: 0.75em 1.6em;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(22, 22, 26, 0.15);
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
  width: fit-content;
}
.news-spotlight-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}
.news-spotlight-btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
}
.news-spotlight-btn:hover svg {
  transform: translateX(4px);
}

/* Spotlight Switch Transition States */
.news-spotlight.is-transitioning .news-spotlight-image {
  transform: scale(1.06);
  opacity: 0.3;
  filter: blur(4px);
}
.news-spotlight.is-transitioning .news-spotlight-action {
  opacity: 0;
  transform: scale(0.92);
}

/* Right Panel: Sleek Typography Rows */
.news-list-container {
  flex: 1;
}
.news-list {
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.news-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(24px, 3.5vh, 36px) 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, color 0.3s;
}
.news-theater-observed .news-row:not(.is-in) {
  opacity: 0;
  transform: translateY(60px);
  pointer-events: none;
}


.news-row-info {
  flex: 1;
  min-width: 0;
}
.news-row-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.news-row-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.08em;
  background: rgba(22, 22, 26, 0.06);
  padding: 0.25em 0.65em;
  border-radius: 4px;
}
.news-row-date {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}
.news-row-title {
  font-size: clamp(1.05rem, 1.8vw, 1.3125rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  transition: color 0.3s, transform 0.35s var(--ease), font-weight 0.35s var(--ease);
}
.news-row-arrow {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--muted);
  opacity: 0.55;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, color 0.3s, opacity 0.3s, transform 0.3s var(--ease);
}
.news-row-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}

/* Row Hover Highlights & Actions */

.news-row:hover .news-row-title {
  transform: translateX(8px);
  font-weight: 700;
}
.news-row:hover .news-row-arrow,
.news-row.is-active .news-row-arrow {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  opacity: 1;
  transform: scale(1.05);
}
.news-row:hover .news-row-arrow svg,
.news-row.is-active .news-row-arrow svg {
  animation: arrow-infinite-slide 0.4s var(--ease) forwards;
}

.news-row.is-active {
  /* Dividers remain visible, color doesn't vanish */
}
.news-row.is-active .news-row-title {
  color: var(--ink);
  font-weight: 800; /* Distinct active title */
}

@keyframes arrow-infinite-slide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  49% {
    transform: translateX(24px);
    opacity: 0;
  }
  50% {
    transform: translateX(-24px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Fluid Hover Pill Behind Rows */
.news-list-hover-bg {
  position: absolute;
  left: -18px;
  right: -18px;
  height: var(--hover-h, 0px);
  top: var(--hover-y, 0px);
  opacity: var(--hover-opacity, 0);
  background: rgba(22, 22, 26, 0.035);
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;
  transition: top 0.28s cubic-bezier(0.25, 1, 0.5, 1), height 0.28s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.2s ease;
}

.news-empty {
  text-align: center;
  color: var(--muted);
  padding: 3rem 0;
  font-weight: 500;
}



/* ============ Corporate Footer ============ */
.site-footer { position: relative; z-index: 2; background: #000000; color: #ffffff; padding: clamp(60px, 10vh, 100px) 0 30px; font-family: var(--font); }
.site-footer > .container { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 4vw, 48px); padding-bottom: clamp(50px, 8vh, 80px); }
.footer-col { display: flex; flex-direction: column; }
.footer-heading { font-size: .74rem; font-weight: 600; text-transform: uppercase; color: rgba(255,255,255,.46); margin: 0 0 1.3rem; }
.footer-email { font-size: 14px; color: #ffffff; text-decoration: none; transition: opacity 0.2s; font-weight: 500; }
.footer-email:hover { opacity: 0.8; }
.footer-socials { display: flex; align-items: center; gap: 18px; }
.footer-socials a { display: inline-flex; color: #ffffff; transition: opacity 0.2s; }
.footer-socials a:hover { opacity: 0.7; }
.footer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-list a { font-size: 14px; font-weight: 500; color: #ffffff; text-decoration: none; transition: opacity 0.2s; }
.footer-list a:hover { opacity: 0.8; }
.footer-text-muted { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.45); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.15); }
.footer-logo-wrapper { display: flex; align-items: center; }
.footer-logo-wrapper svg { display: block; height: 13px; width: auto; opacity: 0.7; overflow: visible; }
.footer-logo-wrapper svg path { fill: #ffffff; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.45); margin: 0; }

/* ---------- Single article ---------- */
.article { padding: calc(var(--header-h) + clamp(40px, 8vh, 90px)) 0 clamp(80px, 14vh, 160px); }
.article-narrow { max-width: 760px; }
.article-back { margin-bottom: 3rem; }
.back-link { display: inline-block; font-size: .9rem; font-weight: 600; opacity: .65; transition: opacity .2s, color .2s; }
.back-link:hover { opacity: 1; color: var(--orange); }
.article-title { font-size: clamp(1.75rem, 4vw, 2.625rem); font-weight: 700; line-height: 1.083; letter-spacing: -.02em; margin: 0 0 1.5rem; }
.article-meta { display: flex; align-items: center; justify-content: flex-start; gap: 2rem; padding: 1.2rem 0; margin: 0 0 2rem; border-top: 1px solid rgba(22,22,26,.1); border-bottom: 1px solid rgba(22,22,26,.1); font-size: 1.05rem; font-weight: 500; color: var(--muted); }
.meta-item { display: flex; align-items: baseline; gap: 0.4rem; }
@media (max-width: 640px) {
  .meta-item { flex-direction: column; align-items: flex-start; gap: 0.1rem; }
  .meta-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.7; }
}
.article-excerpt { font-size: clamp(1.25rem, 2.5vw, 1.625rem); font-weight: 500; line-height: 1.4; color: var(--muted); margin: 0 0 2rem; }
.article-media { border-radius: var(--radius); overflow: hidden; margin-bottom: 2.5rem; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--pink), var(--blue)); }
.article-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Legal pages ---------- */
.legal { padding: calc(var(--header-h) + clamp(40px, 8vh, 90px)) 0 clamp(80px, 14vh, 160px); }
.legal-narrow { max-width: 820px; }
.legal-title { font-size: clamp(1.75rem, 4vw, 2.625rem); font-weight: 700; letter-spacing: -.02em; margin: 0 0 .6rem; }
.legal-updated { color: var(--muted); font-size: .95rem; margin: 0 0 2.5rem; }

/* ---------- Shared prose ---------- */
.prose { font-size: 1rem; line-height: 1.7; color: rgba(22,22,26,.85); }
.prose h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -.01em; margin: 2.2rem 0 .8rem; }
.prose h3 { font-size: 1.25rem; font-weight: 700; margin: 1.8rem 0 .7rem; }
.prose p { margin: 0 0 1rem; }
.prose ul, .prose ol { margin: 0 0 1rem 1.4rem; }
.prose li { margin-bottom: .4rem; }
.prose a { color: var(--orange); text-decoration: underline; }
.prose strong { font-weight: 700; }

.article-body.prose { font-size: 1.25rem; }
.article-body.prose h2 { font-size: 1.8rem; }
.article-body.prose h3 { font-size: 1.5rem; }
.article-body.prose p { margin: 0 0 1.25rem; }
.article-body.prose ul, .article-body.prose ol { margin: 0 0 1.25rem 1.4rem; }
.article-body.prose li { margin-bottom: .5rem; }

/* ---------- 404 ---------- */
.notfound { min-height: 100svh; display: flex; align-items: center; text-align: center; padding-top: var(--header-h); }
.notfound-content { width: 100%; }
.notfound-title { font-size: clamp(5rem, 18vw, 12rem); font-weight: 800; line-height: 1; color: var(--white); margin: 0 0 1rem; }
.notfound-text { font-size: 1.2rem; color: var(--cream); margin: 0 0 2rem; }

/* ---------- Responsive ---------- */
@media (min-width: 901px) {
  .header-nav { display: flex; }
  .menu-toggle { display: none; }
}
@media (max-width: 1000px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
}
@media (max-width: 900px) {
  .discipline { padding: clamp(28px, 6vh, 56px) var(--gut); }
  .discipline-card { flex-direction: column; background-position: center top; }
  .discipline-card::before { background: linear-gradient(180deg, rgba(10,10,11,.9) 0%, rgba(10,10,11,.45) 45%, rgba(10,10,11,.82) 100%), radial-gradient(80% 60% at 50% 100%, rgba(10,10,11,.4), transparent 70%); }
  .discipline-card::after { display: none; }
  .discipline-copy { width: 100%; max-width: none; flex-grow: 1; display: flex; flex-direction: column; }
  .discipline-copy .btn-pill { margin-top: auto; align-self: flex-start; }
  .whatwedo-intro { grid-template-columns: 1fr; gap: clamp(20px, 4vw, 32px); padding-bottom: 0; }
  .sticky-stack { margin-top: -12vh; padding-bottom: 12vh; }
  .hero-shell { 
    grid-template-columns: 1fr; 
    gap: clamp(32px, 7vw, 56px); 
    padding-bottom: 100px; /* space for scroll cue */
    margin-top: 18vh;
  }
  .hero-copy { margin-top: 0; }
  .hero-visual { 
    display: block !important; /* Removes flexbox centering inherited from desktop */
    min-height: auto; 
    margin-top: 0; 
    min-width: 0; 
    max-width: 100vw;
  }
  
  .scroll-cue {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin-inline: auto;
    margin-top: 0;
    display: flex !important;
    z-index: 20;
  }
}
@media (max-width: 900px) {
  .news-theater {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .news-spotlight {
    display: none;
  }
  .news-row {
    padding: clamp(18px, 2.5vh, 26px) 0;
    gap: 16px;
  }
  .news-row-number {
    display: none;
  }
  .news-row:hover .news-row-title {
    transform: none;
  }
  .news-list-hover-bg {
    display: none;
  }
}

@media (max-width: 900px) {
  /* Globe as centered background */
  .hero-globe-container {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100% !important;
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 65%) !important;
    -webkit-mask-composite: source-over !important;
    mask-image: linear-gradient(to bottom, black 20%, transparent 65%) !important;
    mask-composite: add !important;
  }
  .hero-globe {
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
  }

  /* Hide decorative chips */
  .hero-stat-card-wrapper[class*="--deco-"] {
    display: none !important;
  }
  
  /* Horizontal scroll for chips */
  .hero-3d-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    transform: none !important;
    transform-style: flat;
    margin-top: 0 !important;
    width: auto;
    margin-inline: calc(var(--gut) * -1) !important;
    padding-inline: var(--gut) !important;
    padding-bottom: 60px; /* Space for the deep shadow to not be cut */
    position: relative !important;
    inset: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-3d-container::-webkit-scrollbar {
    display: none;
  }

  .hero-stat-card-wrapper {
    position: relative !important;
    transform: none !important;
    transition: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 260px !important;
    flex: 0 0 260px !important;
    scroll-snap-align: start;
    scroll-margin-left: var(--gut);
    margin: 0 !important;
  }

  /* Reset inner cards to be simple block wrappers */
  .hero-stat-card {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
    padding: 16px 20px;
    border-radius: 16px;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
  .hero-stat-card-figure {
    font-size: 1.15rem;
  }
  .hero-stat-card-label {
    font-size: 0.68rem;
    margin-bottom: 4px;
  }
}

@media (max-width: 640px) {
  :root { --header-h: 62px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .journal-head { flex-direction: column; align-items: flex-start; }
  .hero-visual { perspective: none; transform-style: flat; }
  .hero-3d-container { transform: none !important; transform-style: flat; }
  .hero-shadow-group { display: none !important; }

}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  body::before { animation: none; }
  .hero-globe-container { opacity: 1; transform: none; }
  .hero-stat-card { opacity: 1 !important; transform: none !important; }
  .split-heading .word { opacity: 1; transform: none; }
  [data-expand] { --expand: 1 !important; margin-inline: 0 !important; animation: none !important; }
  .discipline { position: relative; min-height: auto; --card-p: 0 !important; }
    .discipline-card { transform: none; filter: none; opacity: 1; }
  .philosophy { height: auto !important; }
  .philosophy-pin { position: relative !important; height: auto !important; min-height: 70vh; display: flex; align-items: center; }
  .philosophy-text .word { opacity: 1 !important; transform: none !important; filter: none !important; }
  .philosophy .section-label { opacity: 1 !important; transform: none !important; }
}

