:root {
  --bg: #05070b;
  --bg-soft: #090d14;
  --panel: #0d131d;
  --panel-soft: #111927;
  --text: #f2efe8;
  --muted: #a9b0bb;
  --quiet: #747e8d;
  --line: rgba(224, 229, 236, 0.13);
  --line-strong: rgba(224, 229, 236, 0.24);
  --accent: #9fb5cf;
  --accent-soft: rgba(159, 181, 207, 0.14);
  --warm: #c5b28c;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% -10%, rgba(159, 181, 207, 0.12), transparent 34rem),
    linear-gradient(180deg, var(--bg), #060911 48%, #04060a);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.78), transparent 84%);
}

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

button, input, textarea { font: inherit; }

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.narrow { max-width: 760px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 11, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.03em;
  font-weight: 650;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--accent);
}

.brand-text { font-size: 1rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255,255,255,0.055);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-muted { background: rgba(255,255,255,0.025); border-block: 1px solid var(--line); }

.hero {
  padding: 104px 0 78px;
}

.page-hero {
  padding: 86px 0 64px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3 {
  color: var(--text);
  letter-spacing: -0.055em;
  line-height: 1;
  font-weight: 560;
}

h1 { font-size: clamp(3.2rem, 8vw, 7rem); max-width: 980px; margin-bottom: 24px; }
h2 { font-size: clamp(2.1rem, 4.5vw, 4.2rem); max-width: 820px; margin-bottom: 22px; }
h3 { font-size: clamp(1.16rem, 2vw, 1.45rem); letter-spacing: -0.035em; margin-bottom: 10px; }
h4 { margin-bottom: 6px; font-size: 0.95rem; }

.lead {
  max-width: 720px;
  color: #d6d8dc;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.55;
}

.copy { color: var(--muted); max-width: 680px; }
.copy p { margin-bottom: 14px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  gap: 56px;
  align-items: end;
}

.hero-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17,25,39,0.88), rgba(8,12,18,0.88));
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.panel-row:first-child { padding-top: 0; }
.panel-row:last-child { border-bottom: 0; padding-bottom: 0; }
.panel-row strong { color: var(--text); font-weight: 560; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(255,255,255,0.04);
  font-size: 0.92rem;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-1px); background: rgba(255,255,255,0.075); border-color: rgba(255,255,255,0.32); }
.button-primary { background: var(--text); color: #07090d; border-color: var(--text); }
.button-primary:hover { background: #ffffff; }
.button-quiet { color: var(--muted); }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading p { color: var(--muted); max-width: 560px; }

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 58px;
}

.card {
  border: 1px solid var(--line);
  background: rgba(13,19,29,0.74);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 100%;
}

.card:hover { border-color: var(--line-strong); }

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--quiet);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card p { color: var(--muted); margin-bottom: 18px; }

.card-link {
  color: var(--accent);
  font-size: 0.92rem;
}

.kicker-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kicker-list li {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255,255,255,0.025);
}

.kicker-list strong { display: block; color: var(--text); margin-bottom: 4px; }

.path-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  background: var(--accent-soft);
  color: var(--text);
  border-color: rgba(159,181,207,0.38);
}

.research-card[hidden] { display: none; }

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--quiet);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.team-card .role {
  color: var(--accent);
  margin-bottom: 8px;
}

.team-card p { margin-bottom: 0; }

.detail-shell {
  max-width: 860px;
  margin-inline: auto;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.detail-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.document-frame {
  margin-top: 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255,255,255,0.025);
}

.placeholder-note {
  color: var(--quiet);
  font-size: 0.92rem;
}


.research-dispatch-section {
  padding: clamp(82px, 10vw, 138px) 0 clamp(86px, 10vw, 142px);
  background: #070707;
  border-top: 1px solid rgba(242, 239, 232, 0.08);
  border-bottom: 1px solid rgba(242, 239, 232, 0.10);
}

.research-dispatch-inner {
  max-width: 980px;
}

.research-dispatch-label {
  margin: 0 0 20px;
  color: #777;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.research-dispatch-section h2 {
  margin: 0;
  max-width: 760px;
  color: #efefef;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.2vw, 6.15rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.072em;
}

.research-dispatch-copy {
  margin: clamp(24px, 3vw, 34px) 0 0;
  max-width: 620px;
  color: #b9b9b9;
  font-size: 16px;
  line-height: 1.82;
}

.research-dispatch-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 30px);
  margin-top: clamp(30px, 4vw, 44px);
}

.research-dispatch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid rgba(242, 239, 232, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.015);
  color: #efefef;
  font-size: 0.92rem;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.research-dispatch-button:hover,
.research-dispatch-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 239, 232, 0.46);
  background: rgba(255, 255, 255, 0.045);
}


.site-footer {
  border-top: 1px solid var(--line);
  padding: 46px 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.footer-brand { color: var(--text); font-weight: 650; margin-bottom: 8px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 18px; justify-content: end; }
.footer-links a { color: var(--muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--text); }
.legal { margin-top: 18px; color: var(--quiet); font-size: 0.82rem; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: fixed;
    inset: 76px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(8, 12, 18, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  body.nav-open .site-nav { display: flex; }
  .site-nav a { padding: 13px 14px; }
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .footer-links { justify-content: start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 64px 0; }
  .hero { padding: 76px 0 58px; }
  h1 { font-size: clamp(2.75rem, 15vw, 4.8rem); }
  .button { width: 100%; }
}


/* Methodology page */
.architecture-hero .lead {
  max-width: 820px;
}

.architecture-block h2 {
  max-width: 760px;
}

.architecture-intro {
  align-items: start;
  margin-bottom: 32px;
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.architecture-card {
  position: relative;
  min-height: 126px;
  padding: 22px 22px 22px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13,19,29,0.62);
}

.architecture-card::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.74;
}

.architecture-card p {
  margin: 0;
  color: #d7dbe0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.architecture-note {
  margin-top: 32px;
  max-width: 780px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.025);
  color: var(--muted);
}

.architecture-note p {
  margin-bottom: 12px;
}

.architecture-note p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .architecture-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .architecture-grid {
    grid-template-columns: 1fr;
  }

  .architecture-card {
    min-height: auto;
  }
}

/* Methodology page — revised with image-supported section layouts */
.architecture-section {
  overflow: clip;
}

.architecture-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.architecture-layout-reverse .architecture-media {
  order: 2;
}

.architecture-layout-reverse .architecture-content {
  order: 1;
}

.architecture-content h2 {
  max-width: 760px;
}

.architecture-copy {
  max-width: 760px;
  margin-bottom: 28px;
}

.architecture-media {
  position: sticky;
  top: 106px;
}

.architecture-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.architecture-card {
  position: relative;
  min-height: 112px;
  padding: 20px 20px 20px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13,19,29,0.62);
}

.architecture-card::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.74;
}

.architecture-card p {
  margin: 0;
  color: #d7dbe0;
  font-size: 0.98rem;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .architecture-layout,
  .architecture-layout-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .architecture-layout-reverse .architecture-media,
  .architecture-layout-reverse .architecture-content {
    order: initial;
  }

  .architecture-media {
    position: static;
  }
}

@media (max-width: 700px) {
  .architecture-grid {
    grid-template-columns: 1fr;
  }

  .architecture-card {
    min-height: auto;
  }
}

/* Methodology page — minimal linear version */
.research-architecture-simple .architecture-title-only {
  padding: 92px 0 54px;
}

.research-architecture-simple .architecture-title-only h1 {
  margin-bottom: 0;
}

.research-architecture-simple .architecture-simple-section {
  padding: 74px 0 82px;
  border-bottom: 1px solid var(--line);
}

.research-architecture-simple .architecture-simple-section:last-child {
  border-bottom: 0;
}

.research-architecture-simple h2 {
  max-width: 960px;
  margin-bottom: 22px;
  font-size: clamp(1.65rem, 3vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.research-architecture-simple .architecture-banner {
  margin: 0 0 28px;
  width: 100%;
}

.research-architecture-simple .architecture-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
}

.research-architecture-simple .architecture-text {
  max-width: 790px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.7;
}

.research-architecture-simple .architecture-text p {
  margin-bottom: 18px;
}

.research-architecture-simple .architecture-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .research-architecture-simple .architecture-title-only {
    padding: 72px 0 42px;
  }

  .research-architecture-simple .architecture-simple-section {
    padding: 56px 0 62px;
  }

  .research-architecture-simple .architecture-banner img {
    aspect-ratio: 2.2 / 1;
  }
}



/* Archive video hero */
.archive-video-hero {
  position: relative;
  min-height: clamp(300px, 42vw, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: #05070b;
}

.archive-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  filter: saturate(0.94) contrast(1.02) brightness(0.88);
}

.archive-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,11,0.44), rgba(5,7,11,0.14) 48%, rgba(5,7,11,0.38)),
    linear-gradient(180deg, rgba(5,7,11,0.24), rgba(5,7,11,0.08) 42%, rgba(5,7,11,0.46));
}

.archive-hero-content {
  position: relative;
  z-index: 1;
}

.archive-video-hero h1 {
  margin-bottom: 0;
  text-shadow: 0 18px 62px rgba(0,0,0,0.62);
}

.archive-library {
  padding-top: 34px;
}

@media (max-width: 720px) {
  .archive-video-hero {
    min-height: 320px;
  }

  .archive-hero-video {
    opacity: 0.74;
  }
}


/* Team page — minimal institutional layout */
.team-page {
  border-top: 1px solid rgba(224, 229, 236, 0.06);
}

.team-section {
  padding-top: 86px;
}

.team-heading {
  margin-bottom: 34px;
}

.team-heading h1 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5.6vw, 5.4rem);
}

.premium-team-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 0;
  max-width: 940px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(17,25,39,0.86), rgba(8,12,18,0.9)),
    rgba(13,19,29,0.74);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.premium-team-card + .premium-team-card {
  margin-top: 28px;
}

.premium-team-image {
  min-height: 430px;
  border-right: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
}

.premium-team-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.premium-team-body {
  padding: clamp(28px, 4vw, 50px);
  align-self: center;
}

.team-card-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.premium-team-body h2 {
  margin-bottom: 18px;
  max-width: 620px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.team-role {
  margin-bottom: 8px;
  color: #f2efe8;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.45;
}

.team-education {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.98rem;
}

.team-focus {
  margin: 0;
  max-width: 640px;
  color: #d7dbe0;
  font-size: 0.98rem;
  line-height: 1.7;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.research-roles-section {
  padding: clamp(78px, 9vw, 126px) 0;
  background: #050505;
  border-top: 1px solid rgba(242, 239, 232, 0.10);
  border-bottom: 1px solid rgba(242, 239, 232, 0.10);
}

.research-roles-inner {
  display: grid;
  gap: clamp(42px, 6vw, 74px);
}

.research-roles-topline {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.research-roles-label {
  margin: 0 0 18px;
  color: #858585;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.research-roles-topline h2 {
  margin: 0;
  max-width: 760px;
  color: #efefef;
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.8vw, 5.8rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.074em;
}

.research-roles-copy {
  margin: 38px 0 0;
  max-width: 620px;
  color: #b9b9b9;
  font-size: 16px;
  line-height: 1.82;
}

.research-roles-tracks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3.6vw, 34px);
}

.research-role-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 46px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(242, 239, 232, 0.15);
  background: rgba(14, 14, 14, 0.82);
}

.research-role-card h3 {
  margin: 0 0 22px;
  color: #efefef;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.064em;
}

.research-role-card > div:first-child > p {
  margin: 0;
  max-width: 480px;
  color: #bdbdbd;
  font-size: 15px;
  line-height: 1.78;
}

.research-role-openings {
  padding-top: 24px;
  border-top: 1px solid rgba(242, 239, 232, 0.14);
}

.research-role-openings p {
  margin: 0 0 18px;
  color: #858585;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.research-role-openings ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.research-role-openings li {
  color: #d8d8d8;
  font-size: 0.98rem;
  line-height: 1.55;
}

.research-roles-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 50px);
  padding-top: clamp(4px, 1vw, 12px);
}

.research-roles-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid rgba(242, 239, 232, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.015);
  color: #efefef;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.research-roles-button:hover,
.research-roles-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 239, 232, 0.46);
  background: rgba(255, 255, 255, 0.045);
}

.research-roles-footer p {
  margin: 0;
  max-width: 560px;
  color: #858585;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .premium-team-card,
  .research-roles-topline,
  .research-roles-tracks {
    grid-template-columns: 1fr;
  }

  .research-roles-copy {
    margin-top: 0;
    max-width: none;
  }

  .research-roles-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .premium-team-image {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .premium-team-image img {
    min-height: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 560px) {
  .team-section {
    padding-top: 64px;
  }

  .premium-team-body {
    padding: 26px;
  }

  .research-roles-section {
    padding: 68px 0 76px;
  }

  .research-roles-topline h2 {
    font-size: clamp(2.25rem, 11vw, 3.55rem);
  }

  .research-role-card {
    min-height: 330px;
  }

  .research-roles-button {
    width: 100%;
  }
}


/* Team page final tweaks */
.team-heading .eyebrow {
  display: none;
}

.team-name-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.team-name-row h2 {
  margin-bottom: 0;
}

.linkedin-icon-button {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,0.045);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.linkedin-icon-button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.32);
}

.linkedin-icon-button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

@media (max-width: 560px) {
  .team-name-row {
    align-items: flex-start;
  }

  .linkedin-icon-button {
    width: 40px;
    height: 40px;
    margin-top: 3px;
  }
}



/* Footer social icon buttons */
.footer-icon-links {
  align-items: center;
  gap: 10px;
}

.footer-icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.035);
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.footer-icon-button:hover {
  transform: translateY(-1px);
  color: var(--text);
  background: rgba(255,255,255,0.075);
  border-color: rgba(255,255,255,0.28);
}

.footer-icon-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-icon-button[aria-label*="Instagram"] svg {
  width: 19px;
  height: 19px;
}

.footer-icon-button[aria-label*="GitHub"] svg {
  width: 19px;
  height: 19px;
}






/* Editorial serif heading refinement */
:root {
  --font-serif: "Times New Roman", Times, Georgia, serif;
}

h1,
h2,
h3,
.landing-minimal-content h1,
.landing-feature-card h2,
.landing-path-card span,
.research-architecture-simple .architecture-visual-overlay h2,
.premium-team-body h2,
.team-heading h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.065em;
}

h1,
.landing-minimal-content h1 {
  letter-spacing: -0.075em;
}

h2,
.landing-feature-card h2,
.research-architecture-simple .architecture-visual-overlay h2 {
  letter-spacing: -0.055em;
}

h3 {
  letter-spacing: -0.045em;
}


/* Always-collapsed hamburger navigation */
.nav-wrap {
  position: relative;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.025);
  color: var(--text);
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.065);
  border-color: rgba(255,255,255,0.26);
  transform: translateY(-1px);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  top: 88px;
  right: max(20px, calc((100vw - var(--max)) / 2));
  left: auto;
  width: min(360px, calc(100vw - 40px));
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid rgba(242, 239, 232, 0.14);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

body.nav-open .site-nav {
  display: flex;
}

.site-nav a {
  padding: 15px 16px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.96rem;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255,255,255,0.065);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    inset: auto;
    top: 88px;
    right: 20px;
    left: 20px;
    width: auto;
  }
}


/* Research page single hero image refinement */
.research-title-hero {
  position: relative;
  min-height: clamp(340px, 42vw, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: #05070b;
}

.research-title-hero-media {
  position: absolute;
  inset: 0;
}

.research-title-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.86) saturate(0.96) contrast(1.02);
}

.research-title-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,11,0.40), rgba(5,7,11,0.12) 48%, rgba(5,7,11,0.34)),
    linear-gradient(180deg, rgba(5,7,11,0.18), rgba(5,7,11,0.06) 44%, rgba(5,7,11,0.42));
}

.research-title-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(38px, 5vw, 64px);
}

.research-title-hero-content h1 {
  margin: 0;
  color: #ffffff;
  text-shadow: 0 16px 48px rgba(0,0,0,0.55);
}

.research-architecture-simple .architecture-block {
  margin-bottom: 56px;
}

.research-architecture-simple .architecture-block:last-child {
  margin-bottom: 0;
}

.research-architecture-simple .architecture-text {
  max-width: 900px;
}

.research-architecture-simple .architecture-text p {
  color: var(--text);
  font-size: clamp(1.08rem, 1.35vw, 1.24rem);
  line-height: 1.72;
  margin-bottom: 18px;
}

.research-architecture-simple .architecture-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .research-title-hero {
    min-height: 290px;
  }

  .research-title-hero-content {
    padding-bottom: 34px;
  }

  .research-architecture-simple .architecture-block {
    margin-bottom: 42px;
  }

  .research-architecture-simple .architecture-text p {
    font-size: 1.05rem;
    line-height: 1.68;
  }
}


/* Landing page wireframe refinement */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.landing-hero-v2 {
  position: relative;
  min-height: 60vh;
  width: 100%;
  overflow: hidden;
  background: #080808 url("../images/landing/landing-hero-poster.webp") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.landing-hero-v2__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: grayscale(1) brightness(0.82) saturate(0.75) contrast(1.02);
}

.landing-hero-v2__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.36), rgba(0,0,0,0.14) 48%, rgba(0,0,0,0.34)),
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.06) 42%, rgba(0,0,0,0.46));
}

.landing-hero-v2__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  text-align: left;
  padding: 0 0 clamp(18px, 2.4vw, 28px);
}

.landing-hero-v2 h1 {
  margin: 0;
  max-width: 880px;
  color: #efefef;
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.07em;
  text-shadow: 0 18px 56px rgba(0,0,0,0.62);
}

.landing-hero-v2__label,
.landing-hero-v2__subtitle,
.landing-hero-v2__cta {
  display: none;
}

.landing-principles-section {
  width: 100%;
  padding: clamp(54px, 7vw, 92px) 0;
  background: transparent;
}

.editorial-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3.5vw, 34px);
}

.editorial-card {
  display: block;
  min-width: 0;
  color: inherit;
}

.editorial-card__inner {
  min-height: clamp(360px, 34vw, 430px);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 42px);
  border: 1px solid rgba(242, 239, 232, 0.16);
  background: rgba(14, 14, 14, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.editorial-card:hover .editorial-card__inner,
.editorial-card:focus-visible .editorial-card__inner {
  transform: translateY(-3px);
  border-color: rgba(242, 239, 232, 0.28);
  background: rgba(20, 20, 20, 0.9);
}

.editorial-card__label {
  margin: 0 0 24px;
  color: #888;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-card__inner h3 {
  margin: 0;
  max-width: 8ch;
  color: #efefef;
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 3.6vw, 3.85rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.editorial-card__body {
  margin: auto 0 0;
  max-width: 33ch;
  color: #c8c8c8;
  font-size: 15px;
  line-height: 1.78;
}

.founding-section {
  padding: clamp(68px, 8vw, 104px) 0;
  background: rgba(18,18,18,0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.founding-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.founding-label {
  margin: 0 0 18px;
  color: #777;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founding-copy h2 {
  margin: 0 0 26px;
  color: #efefef;
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.founding-copy p:last-child {
  margin: 0;
  max-width: 680px;
  color: #d0d0d0;
  font-size: 16px;
  line-height: 1.82;
}

.founding-video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(242, 239, 232, 0.18);
  background: #141414;
  color: #d8d8d8;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-video,
.founding-video-overlay,
.founding-video-shell span {
  grid-area: 1 / 1;
}

.founder-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  filter: brightness(0.86) saturate(0.88) contrast(1.02);
}

.founding-video-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.42));
  pointer-events: none;
}

.founding-video-shell span {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  border: 1px solid rgba(242, 239, 232, 0.20);
  background: rgba(0,0,0,0.30);
  backdrop-filter: blur(10px);
}


.operating-reality-section {
  padding: clamp(82px, 10vw, 142px) 0 clamp(88px, 11vw, 154px);
  background: #050505;
  border-bottom: 1px solid rgba(242, 239, 232, 0.10);
}

.operating-reality-inner {
  display: grid;
  gap: clamp(58px, 7vw, 92px);
}

.operating-reality-topline {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.operating-reality-label {
  margin: 0 0 18px;
  color: #777;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.operating-reality-heading-block h2 {
  margin: 0;
  max-width: 820px;
  color: #efefef;
  font-family: var(--font-serif);
  font-size: clamp(2.55rem, 5.5vw, 5.6rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.072em;
}

.operating-reality-copy {
  margin: 0;
  padding-top: 37px;
  max-width: 520px;
  color: #b9b9b9;
  font-size: 16px;
  line-height: 1.82;
}

.operating-reality-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 5vw, 66px);
  margin: 0;
}

.operating-reality-metric {
  min-width: 0;
  padding-top: clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(242, 239, 232, 0.18);
}

.operating-reality-metric dt,
.operating-reality-metric dd {
  margin: 0;
}

.operating-reality-value {
  display: block;
  margin-bottom: clamp(18px, 2.6vw, 30px);
  color: #aeb4c1;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(4rem, 7.4vw, 7.4rem);
  font-weight: 200;
  line-height: 0.82;
  letter-spacing: -0.075em;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}

.operating-reality-metric-label {
  display: block;
  margin-bottom: 16px;
  max-width: 280px;
  color: #dcdcdc;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.operating-reality-metric dd {
  max-width: 360px;
  color: #8e8e8e;
  font-size: 14px;
  line-height: 1.72;
}

.operating-reality-asof {
  margin: calc(-1 * clamp(28px, 4vw, 54px)) 0 0;
  color: #c8c8c8;
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
}

.site-footer {
  background: #121212;
  color: #777;
  font-size: 12px;
}

.site-footer p,
.site-footer a,
.legal {
  color: #777;
  font-size: 12px;
}

.footer-brand {
  color: #d0d0d0;
}

.footer-icon-button {
  min-width: 42px;
  min-height: 42px;
}

@media (max-width: 768px) {
  .landing-hero-v2 {
    min-height: 58vh;
  }

  .landing-hero-v2__media {
    display: none;
  }

  .landing-hero-v2__content {
    padding: 0 0 18px;
  }

  .landing-hero-v2 h1 {
    font-size: 32px;
    letter-spacing: -0.045em;
  }

  .editorial-cards {
    grid-template-columns: 1fr;
  }

  .editorial-card__inner {
    min-height: 320px;
  }

  .editorial-card__body {
    max-width: none;
    font-size: 14px;
  }

  .founding-grid {
    grid-template-columns: 1fr;
  }

  .founding-copy h2 {
    font-size: clamp(2rem, 10vw, 3.35rem);
  }

  .founding-copy p:last-child {
    font-size: 14px;
  }


  .research-dispatch-section {
    padding: 72px 0 82px;
  }

  .research-dispatch-section h2 {
    font-size: clamp(2.55rem, 12vw, 4.35rem);
  }

  .research-dispatch-copy {
    font-size: 14px;
  }

  .research-dispatch-actions {
    align-items: flex-start;
    flex-direction: column;
  }


  .operating-reality-section {
    padding: 72px 0 82px;
  }

  .operating-reality-inner {
    gap: 48px;
  }

  .operating-reality-topline,
  .operating-reality-metrics {
    grid-template-columns: 1fr;
  }

  .operating-reality-heading-block h2 {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
  }

  .operating-reality-copy {
    max-width: none;
    padding-top: 0;
    font-size: 14px;
  }

  .operating-reality-metrics {
    gap: 38px;
  }

  .operating-reality-value {
    font-size: clamp(4rem, 20vw, 5.6rem);
  }

  .operating-reality-asof {
    margin-top: -16px;
    text-align: left;
    font-size: 13px;
  }

  .operating-reality-metric-label,
  .operating-reality-metric dd {
    max-width: none;
  }

}


/* Header compact debug fix */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid rgba(242, 239, 232, 0.10);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.brand-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  max-height: 44px;
  overflow: visible;
}

.brand-logo {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
  object-fit: cover;
  border-radius: 7px;
  display: block;
}

.brand-with-logo .brand-text,
.brand-text {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 560;
}

.nav-toggle {
  display: inline-flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  padding: 0;
  border: 1px solid rgba(242, 239, 232, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.nav-toggle span {
  width: 16px;
  height: 1px;
  margin: 0;
  background: currentColor;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.site-nav {
  top: 76px;
  right: max(20px, calc((100vw - var(--max)) / 2));
  width: min(340px, calc(100vw - 40px));
}

@media (max-width: 900px) {
  .site-header {
    height: 62px;
  }

  .nav-wrap {
    min-height: 62px;
    height: 62px;
  }

  .site-nav {
    top: 74px;
    right: 20px;
    left: 20px;
    width: auto;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px;
    max-width: 30px;
    min-height: 30px;
    max-height: 30px;
    border-radius: 7px;
  }

  .brand-with-logo .brand-text,
  .brand-text {
    font-size: 0.94rem;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }
}


/* Team page three-card black layout */
body[data-page="team"],
body[data-page="collective"] {
  background: #050505;
}

body[data-page="team"]::before,
body[data-page="collective"]::before {
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.42;
}

.team-page {
  background: #050505;
  border-top: 1px solid rgba(242, 239, 232, 0.08);
}

.team-section {
  padding: clamp(72px, 8vw, 108px) 0 clamp(70px, 8vw, 104px);
  background: #050505;
}

.team-heading {
  margin-bottom: clamp(30px, 4.2vw, 48px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  align-items: stretch;
}

.premium-team-card {
  display: flex;
  flex-direction: column;
  max-width: none;
  min-width: 0;
  height: 100%;
  border: 1px solid rgba(242, 239, 232, 0.14);
  border-radius: 0;
  background: rgba(13, 13, 13, 0.92);
  box-shadow: none;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.premium-team-card:hover,
.premium-team-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(242, 239, 232, 0.24);
  background: rgba(18, 18, 18, 0.94);
}

.premium-team-card + .premium-team-card {
  margin-top: 0;
}

.premium-team-image {
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-right: 0;
  border-bottom: 1px solid rgba(242, 239, 232, 0.12);
  background: #0b0b0b;
}

.premium-team-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) brightness(0.96) contrast(1.04);
}

.premium-team-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: clamp(22px, 2.6vw, 30px);
}

.team-card-kicker {
  margin: 0 0 14px;
  color: #858585;
  font-size: 10px;
  letter-spacing: 0.17em;
}

.team-name-row {
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}

.premium-team-body h2,
.team-name-row h2 {
  margin: 0;
  color: #efefef;
  font-size: clamp(1.55rem, 2.2vw, 2.12rem);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.team-role {
  margin: 0 0 10px;
  color: #e6e6e6;
  font-size: 0.96rem;
  line-height: 1.45;
}

.team-education {
  margin: 0 0 22px;
  color: #a9a9a9;
  font-size: 0.88rem;
  line-height: 1.62;
}

.team-focus {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 239, 232, 0.12);
  color: #bdbdbd;
  font-size: 0.86rem;
  line-height: 1.68;
}

.linkedin-icon-button {
  width: 34px;
  height: 34px;
  border-color: rgba(242, 239, 232, 0.16);
  background: rgba(255,255,255,0.025);
  color: #d8d8d8;
}

.linkedin-icon-button svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 980px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .premium-team-body {
    padding: 24px;
  }

  .premium-team-body h2,
  .team-name-row h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }
}

/* Navigation submenu: Research and The Firm */
.site-nav .nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav .nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-nav .nav-parent::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: -2px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.55;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  min-width: 176px;
  display: grid;
  gap: 3px;
  padding: 8px;
  border: 1px solid rgba(242, 239, 232, 0.12);
  background: rgba(8, 8, 8, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-nav .nav-group:hover .nav-dropdown,
.site-nav .nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  border-radius: 0;
  padding: 10px 12px;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  background: rgba(255,255,255,0.06);
}

@media (max-width: 900px) {
  .site-nav .nav-group {
    display: grid;
    align-items: stretch;
  }

  .site-nav .nav-parent {
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    display: grid;
    margin: -2px 0 6px 14px;
    padding: 0 0 0 12px;
    border: 0;
    border-left: 1px solid rgba(242, 239, 232, 0.12);
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown a {
    padding: 10px 12px;
    font-size: 0.86rem;
  }
}

/* Open Roles page */
body[data-page="careers"],
body[data-page="open-roles"] {
  background: #050505;
}

body[data-page="careers"]::before,
body[data-page="open-roles"]::before {
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.42;
}

.careers-page {
  background: #050505;
  border-top: 1px solid rgba(242, 239, 232, 0.08);
}

.careers-label,
.careers-card-kicker {
  margin: 0 0 18px;
  color: #858585;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.careers-hero {
  padding: clamp(96px, 12vw, 164px) 0 clamp(82px, 10vw, 132px);
  background:
    radial-gradient(circle at 72% 8%, rgba(159, 181, 207, 0.11), transparent 32rem),
    #050505;
  border-bottom: 1px solid rgba(242, 239, 232, 0.10);
}

.careers-hero-inner {
  max-width: 1040px;
}

.careers-hero h1 {
  margin: 0;
  max-width: 980px;
  color: #efefef;
  font-family: var(--font-serif);
  font-size: clamp(3.1rem, 7.6vw, 7.6rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.078em;
}

.careers-lead {
  margin: clamp(28px, 3.6vw, 42px) 0 0;
  max-width: 720px;
  color: #b9b9b9;
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.72;
}

.careers-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(30px, 4vw, 46px);
}

.careers-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid rgba(242, 239, 232, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.015);
  color: #efefef;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.careers-button:hover,
.careers-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(242, 239, 232, 0.46);
  background: rgba(255, 255, 255, 0.045);
}

.careers-button-primary {
  background: #efefef;
  border-color: #efefef;
  color: #050505;
}

.careers-button-primary:hover,
.careers-button-primary:focus-visible {
  background: #ffffff;
  color: #050505;
}

.careers-statement,
.careers-tracks-section,
.careers-roles-section,
.careers-criteria-section,
.careers-process-section {
  padding: clamp(78px, 9vw, 126px) 0;
  border-bottom: 1px solid rgba(242, 239, 232, 0.10);
}

.careers-statement-inner,
.careers-section-heading-split,
.careers-criteria-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.careers-statement h2,
.careers-section-heading h2,
.careers-criteria-inner h2 {
  margin: 0;
  max-width: 800px;
  color: #efefef;
  font-family: var(--font-serif);
  font-size: clamp(2.45rem, 5.4vw, 5.4rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.074em;
}

.careers-statement-copy {
  padding-top: 38px;
}

.careers-statement-copy p,
.careers-section-heading-split > p {
  margin: 0 0 18px;
  max-width: 620px;
  color: #b9b9b9;
  font-size: 16px;
  line-height: 1.82;
}

.careers-section-heading {
  margin-bottom: clamp(34px, 5vw, 58px);
}

.careers-track-grid,
.careers-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3.6vw, 34px);
}

.careers-track-card,
.careers-role-card,
.careers-criteria-grid article,
.careers-process-grid article {
  border: 1px solid rgba(242, 239, 232, 0.14);
  background: rgba(13, 13, 13, 0.92);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.careers-track-card:hover,
.careers-role-card:hover,
.careers-criteria-grid article:hover,
.careers-process-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 239, 232, 0.24);
  background: rgba(18, 18, 18, 0.94);
}

.careers-track-card {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: clamp(28px, 4vw, 42px);
}

.careers-track-card h3,
.careers-role-card h3,
.careers-criteria-grid h3,
.careers-process-grid h3 {
  margin: 0 0 18px;
  color: #efefef;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.064em;
}

.careers-track-card > div:first-child > p:not(.careers-card-kicker),
.careers-role-card > p,
.careers-criteria-grid p,
.careers-process-grid p {
  margin: 0;
  max-width: 560px;
  color: #bdbdbd;
  font-size: 15px;
  line-height: 1.78;
}

.careers-card-divider {
  height: 1px;
  margin-top: auto;
  background: rgba(242, 239, 232, 0.14);
}

.careers-list-block {
  display: grid;
  gap: 14px;
}

.careers-list-block p {
  margin: 0;
  color: #858585;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.careers-list-block ul,
.careers-role-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.careers-list-block li,
.careers-role-card li {
  position: relative;
  padding-left: 16px;
  color: #d8d8d8;
  font-size: 0.96rem;
  line-height: 1.58;
}

.careers-list-block li::before,
.careers-role-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.73em;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #8d95a1;
}

.careers-list-block.muted li {
  color: #979797;
}

.careers-role-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: clamp(28px, 4vw, 42px);
}

.careers-role-card-wide {
  grid-column: 1 / -1;
  min-height: 0;
}

.careers-criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.careers-criteria-grid article,
.careers-process-grid article {
  padding: clamp(24px, 3.2vw, 34px);
}

.careers-criteria-grid h3,
.careers-process-grid h3 {
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
}

.careers-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.careers-process-grid span {
  display: block;
  margin-bottom: 28px;
  color: #aeb4c1;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  font-weight: 200;
  line-height: 0.82;
  letter-spacing: -0.075em;
  font-variant-numeric: lining-nums tabular-nums;
}

.careers-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 4vw, 50px);
  margin-top: clamp(34px, 5vw, 58px);
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid rgba(242, 239, 232, 0.14);
}

.careers-final-cta p {
  margin: 0;
  max-width: 580px;
  color: #d8d8d8;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .careers-statement-inner,
  .careers-section-heading-split,
  .careers-criteria-inner,
  .careers-track-grid,
  .careers-role-grid,
  .careers-process-grid {
    grid-template-columns: 1fr;
  }

  .careers-statement-copy {
    padding-top: 0;
  }

  .careers-role-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .careers-hero {
    padding: 74px 0 78px;
  }

  .careers-hero h1,
  .careers-statement h2,
  .careers-section-heading h2,
  .careers-criteria-inner h2 {
    font-size: clamp(2.45rem, 12vw, 3.95rem);
  }

  .careers-lead,
  .careers-statement-copy p,
  .careers-section-heading-split > p {
    font-size: 14px;
  }

  .careers-actions,
  .careers-final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .careers-button {
    width: 100%;
  }

  .careers-track-card,
  .careers-role-card {
    min-height: 0;
    padding: 26px;
  }

  .careers-criteria-grid {
    grid-template-columns: 1fr;
  }
}


/* Final navigation system: fixed top labels with Research and The Firm dropdowns */
.nav-toggle {
  display: none !important;
}

.nav-wrap {
  position: relative;
}

.site-nav {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  width: auto !important;
  min-width: 0;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end;
  gap: 2px;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-nav > a,
.site-nav .nav-parent {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--muted);
  white-space: nowrap;
}

.site-nav > a:hover,
.site-nav > a.active,
.site-nav .nav-parent:hover,
.site-nav .nav-parent.active {
  color: var(--text);
  background: rgba(255,255,255,0.055);
}

.site-nav .nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav .nav-parent::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 2px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.55;
}

.nav-dropdown {
  position: absolute !important;
  top: calc(100% + 11px) !important;
  left: 0 !important;
  right: auto !important;
  z-index: 60;
  min-width: 210px;
  display: grid !important;
  gap: 3px;
  margin: 0 !important;
  padding: 8px !important;
  border: 1px solid rgba(242, 239, 232, 0.12) !important;
  border-radius: 0;
  background: rgba(7, 7, 7, 0.98) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42) !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-nav .nav-group:last-of-type .nav-dropdown {
  left: auto !important;
  right: 0 !important;
}

.site-nav .nav-group:hover .nav-dropdown,
.site-nav .nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  border-radius: 0;
  padding: 10px 12px;
  color: var(--muted);
  white-space: nowrap;
  font-size: 0.9rem;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.placeholder-hero {
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: center;
}

.legal a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.28);
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
  }

  .nav-wrap {
    height: auto;
    min-height: 62px;
    gap: 12px;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .site-nav {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav > a,
  .site-nav .nav-parent {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .nav-dropdown {
    min-width: 190px;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
    padding-block: 8px;
  }

  .site-nav {
    order: 2;
    width: 100% !important;
    justify-content: flex-start;
  }

  .nav-dropdown {
    top: calc(100% + 7px) !important;
  }
}

/* Mobile dropdown safety: keep submenus visible instead of clipping them inside the nav row */
@media (max-width: 900px) {
  .site-nav {
    overflow: visible;
  }
}

@media (max-width: 640px) {
  .site-nav {
    flex-wrap: wrap;
    row-gap: 4px;
    overflow: visible;
  }
}


/* Quantitative Research page — spacious institutional article layout */
.quantitative-research-page {
  background:
    radial-gradient(circle at 82% 10%, rgba(159, 181, 207, 0.08), transparent 34rem),
    linear-gradient(180deg, rgba(255,255,255,0.012), transparent 30rem);
}

.quant-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(110px, 15vw, 190px) 0 clamp(104px, 14vw, 180px);
  border-bottom: 1px solid var(--line);
}

.quant-hero-inner {
  max-width: 1040px;
}

.quant-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(4rem, 8.6vw, 8.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.quant-hero-lead {
  max-width: 760px;
  margin: 34px 0 0;
  color: #d6d8dc;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.quant-copy-section {
  padding: clamp(96px, 13vw, 176px) 0 clamp(120px, 16vw, 220px);
}

.quant-copy-wrap {
  max-width: 960px;
}

.quant-opening {
  max-width: 860px;
  padding-bottom: clamp(96px, 12vw, 164px);
}

.quant-text-block h2 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(2rem, 3.8vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.quant-opening p,
.quant-text-block p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.78;
}

.quant-text-block {
  max-width: 860px;
  padding: clamp(84px, 11vw, 152px) 0;
  border-top: 1px solid rgba(224, 229, 236, 0.11);
}

.quant-text-block:last-child {
  padding-bottom: 0;
}

.quant-section-label {
  margin: 0 0 28px;
  color: var(--quiet);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .quant-hero {
    min-height: auto;
    padding: 86px 0 82px;
  }

  .quant-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.4rem);
  }

  .quant-hero-lead {
    margin-top: 26px;
    font-size: 1.08rem;
  }

  .quant-copy-section {
    padding: 72px 0 110px;
  }

  .quant-opening {
    padding-bottom: 76px;
  }

  .quant-text-block {
    padding: 68px 0;
  }

  .quant-opening p,
  .quant-text-block p:last-child {
    font-size: 1.02rem;
    line-height: 1.72;
  }
}


/* Disclosure page — spacious legal information layout */
.disclosure-page {
  background:
    radial-gradient(circle at 76% 8%, rgba(159, 181, 207, 0.065), transparent 32rem),
    linear-gradient(180deg, rgba(255,255,255,0.01), transparent 32rem);
}

.disclosure-hero {
  min-height: calc(72vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(104px, 14vw, 172px) 0 clamp(92px, 12vw, 150px);
  border-bottom: 1px solid var(--line);
}

.disclosure-hero-inner {
  max-width: 1040px;
}

.disclosure-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(4rem, 8.2vw, 8.4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.disclosure-hero-lead {
  max-width: 720px;
  margin: 34px 0 0;
  color: #d6d8dc;
  font-size: clamp(1.08rem, 1.85vw, 1.34rem);
  line-height: 1.58;
}

.disclosure-copy-section {
  padding: clamp(88px, 12vw, 160px) 0 clamp(116px, 15vw, 208px);
}

.disclosure-copy-wrap {
  max-width: 900px;
}

.disclosure-text-block {
  max-width: 840px;
  padding: clamp(72px, 9vw, 126px) 0;
  border-top: 1px solid rgba(224, 229, 236, 0.11);
}

.disclosure-text-block:first-child {
  border-top: 0;
  padding-top: 0;
}

.disclosure-text-block:last-child {
  padding-bottom: 0;
}

.disclosure-text-block h2 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(1.85rem, 3.2vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.052em;
}

.disclosure-text-block p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.01rem, 1.18vw, 1.13rem);
  line-height: 1.82;
}

.disclosure-section-label {
  margin: 0 0 26px;
  color: var(--quiet);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .disclosure-hero {
    min-height: auto;
    padding: 86px 0 82px;
  }

  .disclosure-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.4rem);
  }

  .disclosure-hero-lead {
    margin-top: 26px;
    font-size: 1.06rem;
  }

  .disclosure-copy-section {
    padding: 70px 0 108px;
  }

  .disclosure-text-block {
    padding: 62px 0;
  }

  .disclosure-text-block h2 {
    margin-bottom: 20px;
  }

  .disclosure-text-block p:last-child {
    font-size: 1rem;
    line-height: 1.76;
  }
}

/* Global footer: fixed FVN Research structure */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #000;
  color: #8c8c8c;
  padding: clamp(64px, 8vw, 92px) 0 0;
  font-size: 16px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(180px, 0.34fr) minmax(180px, 0.28fr);
  gap: clamp(54px, 8vw, 126px);
  align-items: start;
}

.footer-about {
  max-width: 820px;
}

.footer-brand {
  margin: 0 0 26px;
  color: #f4f4f4;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.site-footer p,
.site-footer a,
.legal {
  font-size: inherit;
}

.footer-description {
  max-width: 910px;
  margin: 0;
  color: #d7d7d7;
  font-size: clamp(22px, 1.6vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.footer-disclaimer {
  max-width: 850px;
  margin: 30px 0 0;
  color: #8d8d8d;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.footer-sitemap {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.footer-sitemap a {
  color: #d0d0d0;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.footer-sitemap a:hover,
.footer-sitemap a:focus-visible {
  color: #fff;
}

.footer-social.footer-icon-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}

.footer-icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  color: #d0d0d0;
  background: rgba(255,255,255,0.035);
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.footer-icon-button:hover,
.footer-icon-button:focus-visible {
  transform: translateY(-1px);
  color: #fff;
  background: rgba(255,255,255,0.075);
  border-color: rgba(255,255,255,0.32);
}

.footer-icon-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-icon-button[aria-label*="Instagram"] svg,
.footer-icon-button[aria-label*="GitHub"] svg {
  width: 19px;
  height: 19px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(280px, 1.1fr);
  gap: 28px;
  margin-top: clamp(54px, 7vw, 82px);
  padding: 34px 0 42px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  margin: 0;
  color: #8c8c8c;
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom p:last-child {
  text-align: right;
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-sitemap {
    gap: 14px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding-top: 52px;
  }

  .footer-description {
    font-size: 20px;
  }

  .footer-disclaimer,
  .footer-sitemap a {
    font-size: 17px;
  }
}


/* Collective page — minimal research-area layout */
.collective-simple-page {
  background:
    radial-gradient(circle at 82% 10%, rgba(159, 181, 207, 0.06), transparent 34rem),
    linear-gradient(180deg, rgba(255,255,255,0.01), transparent 30rem);
}

.collective-hero {
  min-height: calc(72vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(104px, 14vw, 176px) 0 clamp(92px, 12vw, 148px);
  border-bottom: 1px solid var(--line);
}

.collective-hero-inner {
  max-width: 1040px;
}

.collective-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(4rem, 8.2vw, 8.4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.collective-hero-lead {
  max-width: 760px;
  margin: 34px 0 0;
  color: #d6d8dc;
  font-size: clamp(1.08rem, 1.9vw, 1.36rem);
  line-height: 1.58;
}

.collective-areas-section {
  padding: clamp(92px, 12vw, 168px) 0 clamp(124px, 16vw, 220px);
}

.collective-areas-wrap {
  max-width: 960px;
}

.collective-area-block {
  max-width: 860px;
  padding: clamp(82px, 10vw, 136px) 0;
  border-top: 1px solid rgba(224, 229, 236, 0.11);
}

.collective-area-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.collective-section-label {
  margin: 0 0 28px;
  color: var(--quiet);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.collective-area-block h2 {
  max-width: 760px;
  margin: 0 0 26px;
  font-size: clamp(2rem, 3.8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.collective-area-members {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.38vw, 1.22rem);
  line-height: 1.8;
}

@media (max-width: 720px) {
  .collective-hero {
    min-height: auto;
    padding: 86px 0 82px;
  }

  .collective-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.4rem);
  }

  .collective-hero-lead {
    margin-top: 26px;
    font-size: 1.06rem;
  }

  .collective-areas-section {
    padding: 72px 0 110px;
  }

  .collective-area-block {
    padding: 66px 0;
  }

  .collective-area-members {
    font-size: 1.02rem;
    line-height: 1.72;
  }
}


/* Collective page — text-first person cards */
.collective-person-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  margin-top: clamp(42px, 5vw, 70px);
}

.collective-person-card {
  min-height: 320px;
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(224, 229, 236, 0.11);
  background: rgba(255, 255, 255, 0.012);
}

.collective-person-kicker {
  margin: 0 0 42px;
  color: var(--quiet);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.collective-person-card h3 {
  max-width: 440px;
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(1.55rem, 2.2vw, 2.18rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.collective-person-role {
  margin: 0 0 28px;
  color: #d6d8dc;
  font-size: 1rem;
  line-height: 1.55;
}

.collective-person-education,
.collective-person-focus {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.collective-person-focus {
  margin-top: 22px;
  color: var(--quiet);
}

@media (max-width: 820px) {
  .collective-person-grid {
    grid-template-columns: 1fr;
  }

  .collective-person-card {
    min-height: auto;
  }
}


/* Collective page — portrait cards */
.collective-person-card {
  overflow: hidden;
  padding: 0;
}

.collective-person-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(224, 229, 236, 0.11);
}

.collective-person-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
}

.collective-person-body {
  padding: clamp(30px, 4vw, 44px);
}


/* Collective page — equal-height academic lines and aligned cards */
.collective-person-card {
  display: flex;
  flex-direction: column;
}

.collective-person-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.collective-person-education {
  min-height: calc(1.72em * 2);
}

.collective-placeholder-line {
  visibility: hidden;
}

@media (max-width: 1080px) {
  .collective-person-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Home redesign — dark editorial boutique landing page */
body[data-page="home"] {
  background: #050505;
}

body[data-page="home"] .site-header {
  background: rgba(5, 5, 5, 0.9);
  border-bottom-color: rgba(255,255,255,0.08);
}

.home-boutique {
  background: #050505;
  color: #f1f1f1;
}

.home-boutique section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.075);
}

.home-boutique-gridlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(16.666% - 1px),
    rgba(255,255,255,0.08) calc(16.666% - 1px),
    rgba(255,255,255,0.08) 16.666%
  );
  opacity: 0.82;
}

.home-boutique-hero {
  min-height: calc(100vh - 76px);
  background: #050505;
}

.home-boutique-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: grayscale(1) brightness(0.54) contrast(1.06);
}

.home-boutique-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.20) 35%, rgba(0,0,0,0.62)),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03), transparent 38rem);
}

.home-boutique-hero__inner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 76px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 110px 0 44px;
}

.home-boutique-hero__copy {
  padding-top: 10px;
}

.home-boutique-hero__eyebrow,
.home-boutique-section-label,
.home-boutique-card__label {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.62);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-boutique-hero h1 {
  max-width: 1020px;
  margin: 0;
  color: #f7f7f4;
  font-family: var(--font-serif);
  font-size: clamp(4.2rem, 10.5vw, 10rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-shadow: 0 24px 64px rgba(0,0,0,0.42);
}

.home-boutique-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
}

.home-boutique-metric {
  min-height: 142px;
  padding: 28px 22px 10px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.home-boutique-metric + .home-boutique-metric {
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.home-boutique-metric dt {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.home-boutique-metric dd {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.5;
}

.home-boutique-intro,
.home-boutique-pathways,
.home-boutique-foundation,
.home-boutique-dispatch {
  background: #050505;
}

.home-boutique-intro {
  padding: clamp(80px, 10vw, 140px) 0;
}

.home-boutique-intro__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(38px, 5vw, 88px);
  align-items: start;
}

.home-boutique-intro__copy h2,
.home-boutique-section-heading h2,
.home-boutique-foundation__title h2,
.home-boutique-dispatch h2 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #f5f5f3;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.home-boutique-intro__copy p,
.home-boutique-foundation__copy p,
.home-boutique-dispatch__copy,
.home-boutique-card p:last-child {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: clamp(1.04rem, 1.2vw, 1.18rem);
  line-height: 1.76;
}

.home-boutique-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fafafa;
  background: rgba(255,255,255,0.03);
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.home-boutique-button:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.32);
}

.home-boutique-intro__visual {
  position: relative;
  z-index: 1;
  min-height: 440px;
  align-self: stretch;
  border: 1px solid rgba(255,255,255,0.12);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 28%);
  overflow: hidden;
  background: rgba(255,255,255,0.02);
}

.home-boutique-intro__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.18));
}

.home-boutique-intro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) brightness(0.74) contrast(1.06);
}

.home-boutique-pathways {
  padding: clamp(80px, 10vw, 136px) 0;
}

.home-boutique-section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 46px;
  max-width: 820px;
}

.home-boutique-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-left: 1px solid rgba(255,255,255,0.08);
}

.home-boutique-card {
  padding: 30px 28px 34px;
  min-height: 260px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.015);
  transition: background 160ms ease;
}

.home-boutique-card:hover {
  background: rgba(255,255,255,0.03);
}

.home-boutique-card h3 {
  margin: 0 0 16px;
  color: #f3f3f0;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.home-boutique-foundation {
  padding: clamp(82px, 10vw, 140px) 0;
}

.home-boutique-foundation__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 96px);
}

.home-boutique-foundation__copy {
  display: grid;
  gap: 22px;
}

.home-boutique-dispatch {
  padding: clamp(72px, 9vw, 120px) 0 clamp(86px, 10vw, 130px);
}

.home-boutique-dispatch__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.8fr) auto;
  gap: 28px;
  align-items: end;
}

@media (max-width: 1080px) {
  .home-boutique-intro__grid,
  .home-boutique-foundation__grid,
  .home-boutique-dispatch__inner {
    grid-template-columns: 1fr;
  }

  .home-boutique-intro__visual {
    min-height: 360px;
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .home-boutique-gridlines {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(33.333% - 1px),
      rgba(255,255,255,0.07) calc(33.333% - 1px),
      rgba(255,255,255,0.07) 33.333%
    );
  }

  .home-boutique-hero,
  .home-boutique-hero__inner {
    min-height: calc(82vh - 76px);
  }

  .home-boutique-hero__inner {
    padding: 92px 0 28px;
  }

  .home-boutique-hero__eyebrow,
  .home-boutique-section-label,
  .home-boutique-card__label {
    margin-bottom: 14px;
    font-size: 0.7rem;
  }

  .home-boutique-hero h1 {
    font-size: clamp(3.3rem, 18vw, 5.8rem);
  }

  .home-boutique-metrics {
    grid-template-columns: 1fr;
  }

  .home-boutique-metric {
    min-height: auto;
    padding: 18px 0 18px;
  }

  .home-boutique-metric + .home-boutique-metric {
    padding-left: 0;
    border-left: 0;
  }

  .home-boutique-card-grid {
    grid-template-columns: 1fr;
  }

  .home-boutique-intro,
  .home-boutique-pathways,
  .home-boutique-foundation,
  .home-boutique-dispatch {
    padding-top: 66px;
    padding-bottom: 76px;
  }
}


/* Home hero refinement — Two Sigma inspired, dark static hero */
.home-boutique-hero--static {
  min-height: calc(100vh - 76px);
  background:
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.home-boutique-hero--static .home-boutique-gridlines {
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(14.285% - 1px),
    rgba(255,255,255,0.065) calc(14.285% - 1px),
    rgba(255,255,255,0.065) 14.285%
  );
  opacity: 0.9;
}

.home-boutique-hero--static .home-boutique-hero__inner {
  min-height: calc(100vh - 76px);
  justify-content: flex-end;
  padding: 110px 0 48px;
}

.home-boutique-hero--static .home-boutique-hero__copy {
  max-width: 1320px;
  margin-bottom: clamp(54px, 7vw, 88px);
}

.home-boutique-hero--static .home-boutique-hero__eyebrow {
  display: none;
}

.home-boutique-hero--static .home-boutique-hero__media,
.home-boutique-hero--static .home-boutique-hero__overlay {
  display: none;
}

.home-boutique-hero--static h1 {
  max-width: 1320px;
  margin: 0;
  color: #f6f6f3;
  font-family: var(--font-serif);
  font-size: clamp(4.4rem, 12vw, 9.4rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-wrap: balance;
  text-shadow: none;
}

.home-boutique-hero--static .home-boutique-metrics {
  max-width: 1040px;
  gap: 0;
}

.home-boutique-hero--static .home-boutique-metric {
  min-height: 124px;
  padding: 18px 24px 14px 0;
  border-top: 0;
}

.home-boutique-hero--static .home-boutique-metric + .home-boutique-metric {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.07);
}

.home-boutique-hero--static .home-boutique-metric dt {
  font-size: clamp(2.1rem, 3vw, 3.3rem);
  letter-spacing: -0.055em;
}

.home-boutique-hero--static .home-boutique-metric dd {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
}

@media (max-width: 720px) {
  .home-boutique-hero--static,
  .home-boutique-hero--static .home-boutique-hero__inner {
    min-height: calc(78vh - 76px);
  }

  .home-boutique-hero--static .home-boutique-gridlines {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(255,255,255,0.06) calc(25% - 1px),
      rgba(255,255,255,0.06) 25%
    );
  }

  .home-boutique-hero--static .home-boutique-hero__inner {
    padding: 88px 0 28px;
  }

  .home-boutique-hero--static .home-boutique-hero__copy {
    margin-bottom: 36px;
  }

  .home-boutique-hero--static h1 {
    font-size: clamp(3rem, 16vw, 5.2rem);
    line-height: 0.92;
  }

  .home-boutique-hero--static .home-boutique-metrics {
    max-width: none;
  }

  .home-boutique-hero--static .home-boutique-metric {
    padding: 16px 0;
  }

  .home-boutique-hero--static .home-boutique-metric + .home-boutique-metric {
    padding-left: 0;
    border-left: 0;
  }
}


/* Home theme refinement — light background with elegant black vertical lines */
body[data-page="home"] {
  background: #f6f5f2;
  color: #111111;
}

body[data-page="home"] .site-header {
  background: rgba(246, 245, 242, 0.92);
  border-bottom-color: rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}

body[data-page="home"] .brand-text,
body[data-page="home"] .site-nav > a,
body[data-page="home"] .nav-parent,
body[data-page="home"] .nav-dropdown a {
  color: #111111;
}

body[data-page="home"] .site-nav > a:hover,
body[data-page="home"] .nav-parent:hover,
body[data-page="home"] .nav-dropdown a:hover,
body[data-page="home"] .site-nav > a.is-active,
body[data-page="home"] .nav-dropdown a.is-active,
body[data-page="home"] .nav-group.is-open > .nav-parent {
  color: #000000;
}

body[data-page="home"] .nav-dropdown {
  background: rgba(250,249,246,0.98);
  border-color: rgba(0,0,0,0.1);
}

.home-boutique {
  background: #f6f5f2;
  color: #111111;
}

.home-boutique section {
  border-bottom: 1px solid rgba(0,0,0,0.075);
}

.home-boutique-gridlines,
.home-boutique-hero--static .home-boutique-gridlines {
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(14.285% - 1px),
    rgba(0,0,0,0.075) calc(14.285% - 1px),
    rgba(0,0,0,0.075) 14.285%
  );
  opacity: 1;
}

.home-boutique-hero--static {
  background: linear-gradient(180deg, #f8f7f4 0%, #f3f2ef 100%);
}

.home-boutique-hero--static h1,
.home-boutique-intro__copy h2,
.home-boutique-section-heading h2,
.home-boutique-foundation__title h2,
.home-boutique-dispatch h2,
.home-boutique-card h3 {
  color: #0f0f10;
}

.home-boutique-hero__eyebrow,
.home-boutique-section-label,
.home-boutique-card__label {
  color: rgba(0,0,0,0.56);
}

.home-boutique-hero--static .home-boutique-metric + .home-boutique-metric {
  border-left: 1px solid rgba(0,0,0,0.08);
}

.home-boutique-metric dt,
.home-boutique-hero--static .home-boutique-metric dt {
  color: #0d0d0e;
}

.home-boutique-metric dd,
.home-boutique-hero--static .home-boutique-metric dd,
.home-boutique-intro__copy p,
.home-boutique-foundation__copy p,
.home-boutique-dispatch__copy,
.home-boutique-card p:last-child {
  color: rgba(0,0,0,0.7);
}

.home-boutique-intro,
.home-boutique-pathways,
.home-boutique-foundation,
.home-boutique-dispatch {
  background: #f6f5f2;
}

.home-boutique-intro__visual {
  background: rgba(0,0,0,0.015);
  border: 1px solid rgba(0,0,0,0.12);
}

.home-boutique-intro__visual::after {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.06));
}

.home-boutique-intro__visual img {
  filter: grayscale(1) brightness(0.88) contrast(1.02);
}

.home-boutique-card-grid {
  border-top: 1px solid rgba(0,0,0,0.08);
  border-left: 1px solid rgba(0,0,0,0.08);
}

.home-boutique-card {
  background: rgba(0,0,0,0.012);
  border-right: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.home-boutique-card:hover {
  background: rgba(0,0,0,0.03);
}

.home-boutique-button {
  border: 1px solid rgba(0,0,0,0.14);
  color: #f7f7f4;
  background: #111111;
}

.home-boutique-button:hover {
  background: #1d1d1d;
  border-color: rgba(0,0,0,0.22);
}

@media (max-width: 720px) {
  .home-boutique-gridlines,
  .home-boutique-hero--static .home-boutique-gridlines {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(0,0,0,0.065) calc(25% - 1px),
      rgba(0,0,0,0.065) 25%
    );
  }
}


/* Home hero slogan — 3D kinetic data typography */
.home-boutique-hero--static .home-boutique-hero__copy {
  max-width: 1380px;
}

.home-boutique-hero__title-kinetic {
  display: inline-flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 16px);
  margin: 0;
}

.home-boutique-hero--static h1.home-boutique-hero__title-kinetic {
  max-width: 1380px;
  font-size: unset;
  line-height: 1;
  letter-spacing: 0;
}

.hero-title-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: clamp(14px, 1.8vw, 28px);
}

.hero-title-word {
  position: relative;
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(4.6rem, 11vw, 8.8rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.09em;
  color: #0f1011;
  transform-style: preserve-3d;
  text-shadow:
    1px 1px 0 rgba(255,255,255,0.55),
    2px 2px 0 rgba(14,14,16,0.10),
    3px 3px 0 rgba(14,14,16,0.09),
    4px 4px 0 rgba(14,14,16,0.08),
    5px 5px 0 rgba(14,14,16,0.07),
    6px 6px 0 rgba(14,14,16,0.06),
    16px 18px 30px rgba(14,14,16,0.16);
  animation: heroWordFloat 8s ease-in-out infinite;
}

.hero-title-word:nth-child(2) {
  animation-delay: 0.8s;
}

.hero-title-line:nth-child(2) .hero-title-word:first-child {
  animation-delay: 1.4s;
}

.hero-title-word--accent {
  animation-delay: 2s;
}

.hero-title-word::before,
.hero-title-word::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-title-word::before {
  z-index: 1;
  color: transparent;
  background-image:
    linear-gradient(120deg, rgba(18,18,20,1) 0%, rgba(34,34,40,0.96) 18%, rgba(37,99,235,0.92) 34%, rgba(15,15,17,1) 52%, rgba(17,24,39,0.98) 70%, rgba(15,15,17,1) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.13) 0 2px, transparent 2px 18px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 12px);
  background-size: 220% 100%, 100% 100%, 100% 100%;
  background-position: 0% 50%, 0 0, 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: multiply;
  animation: heroDataFlow 14s linear infinite;
}

.hero-title-word::after {
  z-index: 2;
  color: transparent;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.22), transparent 18%),
    radial-gradient(circle at 74% 36%, rgba(96,165,250,0.18), transparent 16%),
    linear-gradient(180deg, rgba(255,255,255,0.26), transparent 34%, transparent 70%, rgba(15,15,17,0.10));
  background-size: 160% 160%, 160% 160%, 100% 100%;
  background-position: 0% 0%, 100% 100%, 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.8;
  animation: heroPulseSheen 7.5s ease-in-out infinite;
}

@keyframes heroDataFlow {
  0% {
    background-position: 0% 50%, 0 0, 0 0;
  }
  100% {
    background-position: 220% 50%, 0 0, 0 0;
  }
}

@keyframes heroPulseSheen {
  0%, 100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.72;
  }
  50% {
    transform: translate3d(0, -1px, 0);
    opacity: 0.92;
  }
}

@keyframes heroWordFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-word,
  .hero-title-word::before,
  .hero-title-word::after {
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .hero-title-word {
    font-size: clamp(3.8rem, 14vw, 6.8rem);
  }
}

@media (max-width: 720px) {
  .home-boutique-hero--static .home-boutique-hero__copy {
    margin-bottom: 28px;
  }

  .hero-title-line {
    gap: 10px 14px;
  }

  .hero-title-word {
    font-size: clamp(2.9rem, 16vw, 4.9rem);
    letter-spacing: -0.075em;
    text-shadow:
      1px 1px 0 rgba(255,255,255,0.55),
      2px 2px 0 rgba(14,14,16,0.10),
      3px 3px 0 rgba(14,14,16,0.08),
      10px 12px 20px rgba(14,14,16,0.14);
  }
}


/* Home hero slogan refinement — single line with video inside letters */
.home-boutique-hero--static .home-boutique-hero__copy {
  max-width: none;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.home-boutique-hero__title-video {
  position: relative;
  display: inline-block;
  margin: 0;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: clamp(4.6rem, 10.8vw, 8.9rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.095em;
  color: transparent;
  background: url("../images/landing/hero-title-spectrum-lines.png") center center / cover no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 0 rgba(255,255,255,0.72)) drop-shadow(3px 3px 0 rgba(0,0,0,0.10)) drop-shadow(12px 14px 18px rgba(0,0,0,0.16));
}

.home-boutique-hero__title-video::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.48);
  text-shadow: 0 1px 0 rgba(255,255,255,0.52), 1px 1px 0 rgba(0,0,0,0.08);
  pointer-events: none;
}

.home-boutique-hero__title-video::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background:
    linear-gradient(90deg, transparent 0 15%, rgba(255,255,255,0.92) 15% 15.45%, transparent 15.45% 100%),
    linear-gradient(90deg, transparent 0 33.5%, rgba(255,255,255,0.86) 33.5% 33.9%, transparent 33.9% 100%),
    linear-gradient(90deg, transparent 0 57%, rgba(255,255,255,0.88) 57% 57.4%, transparent 57.4% 100%),
    linear-gradient(90deg, transparent 0 77.5%, rgba(255,255,255,0.92) 77.5% 77.9%, transparent 77.9% 100%),
    linear-gradient(0deg, transparent 0 49.5%, rgba(255,255,255,0.84) 49.5% 50.05%, transparent 50.05% 100%),
    linear-gradient(134deg, transparent 0 30%, rgba(255,255,255,0.92) 30% 30.45%, transparent 30.45% 100%),
    linear-gradient(46deg, transparent 0 72%, rgba(255,255,255,0.88) 72% 72.45%, transparent 72.45% 100%),
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.03) 38%, rgba(0,0,0,0.04) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.95;
  pointer-events: none;
}

.home-boutique-hero--static .home-boutique-metrics {
  max-width: 980px;
}

@media (max-width: 980px) {
  .home-boutique-hero__title-video {
    font-size: clamp(3.7rem, 11.2vw, 6.9rem);
  }
}

@media (max-width: 720px) {
  .home-boutique-hero--static .home-boutique-hero__copy {
    margin-bottom: 30px;
  }

  .home-boutique-hero__title-video {
    white-space: normal;
    font-size: clamp(3rem, 13vw, 5.1rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
    filter: drop-shadow(0 1px 0 rgba(255,255,255,0.72)) drop-shadow(3px 3px 0 rgba(0,0,0,0.10)) drop-shadow(10px 12px 16px rgba(0,0,0,0.12));
  }
}


/* Home refinement — no top bar, continuous vertical lines, no horizontal separators */
body[data-page="home"] {
  background-color: #f6f5f2;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(14.285% - 1px),
    rgba(0,0,0,0.075) calc(14.285% - 1px),
    rgba(0,0,0,0.075) 14.285%
  );
  color: #111111;
}

body[data-page="home"] .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body[data-page="home"] .home-boutique,
body[data-page="home"] .home-boutique section,
body[data-page="home"] .home-boutique-intro,
body[data-page="home"] .home-boutique-pathways,
body[data-page="home"] .home-boutique-foundation,
body[data-page="home"] .home-boutique-dispatch,
body[data-page="home"] .site-footer {
  background: transparent;
}

body[data-page="home"] .home-boutique section,
body[data-page="home"] .site-footer,
body[data-page="home"] .footer-bottom,
body[data-page="home"] .home-boutique-card-grid,
body[data-page="home"] .home-boutique-card,
body[data-page="home"] .home-boutique-metric,
body[data-page="home"] .home-boutique-metric + .home-boutique-metric,
body[data-page="home"] .home-boutique-intro__visual,
body[data-page="home"] .home-boutique-card-grid,
body[data-page="home"] .footer-icon-button {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

body[data-page="home"] .home-boutique-card,
body[data-page="home"] .home-boutique-card-grid,
body[data-page="home"] .footer-icon-button,
body[data-page="home"] .home-boutique-intro__visual,
body[data-page="home"] .home-boutique-metric + .home-boutique-metric {
  border-left-color: rgba(0,0,0,0.08);
  border-right-color: rgba(0,0,0,0.08);
}

body[data-page="home"] .home-boutique-gridlines {
  display: none;
}

body[data-page="home"] .home-boutique-hero--static,
body[data-page="home"] .home-boutique-hero--static .home-boutique-hero__inner {
  min-height: 100vh;
}

body[data-page="home"] .home-boutique-hero--static {
  background: transparent;
}

body[data-page="home"] .home-boutique-hero--static .home-boutique-hero__inner {
  padding-top: 124px;
}

body[data-page="home"] .home-boutique-intro__visual {
  background: rgba(0,0,0,0.012);
}

body[data-page="home"] .site-footer {
  padding-top: 48px;
}

body[data-page="home"] .footer-main,
body[data-page="home"] .footer-bottom {
  border-top: 0;
}

@media (max-width: 720px) {
  body[data-page="home"] {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(0,0,0,0.065) calc(25% - 1px),
      rgba(0,0,0,0.065) 25%
    );
  }

  body[data-page="home"] .home-boutique-hero--static,
  body[data-page="home"] .home-boutique-hero--static .home-boutique-hero__inner {
    min-height: 82vh;
  }

  body[data-page="home"] .home-boutique-hero--static .home-boutique-hero__inner {
    padding-top: 104px;
  }
}


/* Home refinement — first block under hero is dark research pathways */
body[data-page="home"] .home-boutique-pathways--dark {
  padding: clamp(82px, 10vw, 128px) 0;
  background: #060606;
  color: #f3f3f0;
}

body[data-page="home"] .home-boutique-pathways--dark .container {
  position: relative;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(14.285% - 1px),
    rgba(255,255,255,0.08) calc(14.285% - 1px),
    rgba(255,255,255,0.08) 14.285%
  );
}

body[data-page="home"] .home-boutique-section-heading--pathways-dark {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
  max-width: 760px;
}

body[data-page="home"] .home-boutique-pathways--dark .home-boutique-section-label {
  color: rgba(255,255,255,0.58);
}

body[data-page="home"] .home-boutique-pathways--dark h2 {
  color: #f6f6f3;
  margin-bottom: 0;
}

body[data-page="home"] .home-boutique-card-grid--pathways-dark {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  border: 0 !important;
}

body[data-page="home"] .home-boutique-card--pathways-dark {
  min-height: 260px;
  padding: 34px 32px 36px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.10) !important;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

body[data-page="home"] .home-boutique-card--pathways-dark:hover {
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.18) !important;
  transform: translateY(-1px);
}

body[data-page="home"] .home-boutique-card--pathways-dark h3 {
  color: #fafaf7;
  margin: 0 0 18px;
}

body[data-page="home"] .home-boutique-card--pathways-dark p {
  color: rgba(255,255,255,0.72);
}

@media (max-width: 720px) {
  body[data-page="home"] .home-boutique-pathways--dark .container {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(255,255,255,0.07) calc(25% - 1px),
      rgba(255,255,255,0.07) 25%
    );
  }

  body[data-page="home"] .home-boutique-card-grid--pathways-dark {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body[data-page="home"] .home-boutique-card--pathways-dark {
    min-height: auto;
    padding: 28px 24px 30px;
  }
}


/* Home refinement — open research approach block without image */
body[data-page="home"] .home-boutique-intro__grid--open {
  grid-template-columns: minmax(0, 0.98fr) minmax(220px, 0.82fr);
  gap: clamp(42px, 7vw, 120px);
}

body[data-page="home"] .home-boutique-intro__spacer {
  min-height: 100%;
}

body[data-page="home"] .home-boutique-intro__grid--open .home-boutique-intro__copy {
  max-width: 860px;
}

body[data-page="home"] .home-boutique-intro__grid--open .home-boutique-intro__copy h2 {
  max-width: 760px;
}

@media (max-width: 1080px) {
  body[data-page="home"] .home-boutique-intro__grid--open {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body[data-page="home"] .home-boutique-intro__spacer {
    display: none;
  }
}


/* Home refinement — operating reality block */
body[data-page="home"] .home-boutique-operating {
  padding: clamp(84px, 10vw, 132px) 0 clamp(76px, 9vw, 116px);
  background: #060606;
  color: #f3f3f0;
}

body[data-page="home"] .home-boutique-operating__inner {
  position: relative;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(14.285% - 1px),
    rgba(255,255,255,0.08) calc(14.285% - 1px),
    rgba(255,255,255,0.08) 14.285%
  );
}

body[data-page="home"] .home-boutique-operating__heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: clamp(56px, 7vw, 84px);
}

body[data-page="home"] .home-boutique-operating .home-boutique-section-label {
  color: rgba(255,255,255,0.58);
  margin-bottom: 18px;
}

body[data-page="home"] .home-boutique-operating__heading h2 {
  margin: 0;
  max-width: 920px;
  color: #f7f7f4;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

body[data-page="home"] .home-boutique-operating__metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 42px);
}

body[data-page="home"] .home-boutique-operating__metric {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

body[data-page="home"] .home-boutique-operating__value {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: clamp(4.4rem, 7vw, 6.8rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

body[data-page="home"] .home-boutique-operating__metric h3 {
  margin: 0 0 18px;
  color: #fafaf6;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

body[data-page="home"] .home-boutique-operating__metric p:last-child {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.72;
}

body[data-page="home"] .home-boutique-operating__note {
  position: relative;
  z-index: 1;
  margin: clamp(40px, 5vw, 56px) 0 0;
  color: rgba(255,255,255,0.82);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  text-align: center;
}

@media (max-width: 900px) {
  body[data-page="home"] .home-boutique-operating__metrics {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .home-boutique-operating__inner {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(255,255,255,0.07) calc(25% - 1px),
      rgba(255,255,255,0.07) 25%
    );
  }

  body[data-page="home"] .home-boutique-operating__heading h2 {
    font-size: clamp(2.4rem, 10vw, 4rem);
  }

  body[data-page="home"] .home-boutique-operating__value {
    font-size: clamp(3.7rem, 18vw, 5.2rem);
  }
}


/* Home refinement — founding statement feature with portrait */
body[data-page="home"] .home-boutique-foundation {
  padding: clamp(88px, 10vw, 136px) 0;
}

body[data-page="home"] .home-boutique-foundation__feature {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  gap: clamp(38px, 6vw, 96px);
  align-items: start;
}

body[data-page="home"] .home-boutique-foundation__content {
  max-width: 820px;
}

body[data-page="home"] .home-boutique-foundation__content .home-boutique-section-label {
  margin-bottom: 22px;
}

body[data-page="home"] .home-boutique-foundation__content h2 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 0 34px;
  color: #0f0f10;
  font-size: clamp(3.8rem, 7vw, 6.9rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
}

body[data-page="home"] .home-boutique-foundation__content h2 span {
  display: block;
}

body[data-page="home"] .home-boutique-foundation__content p {
  margin: 0;
  max-width: 820px;
  color: rgba(0,0,0,0.76);
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.82;
}

body[data-page="home"] .home-boutique-foundation__media {
  align-self: start;
}

body[data-page="home"] .home-boutique-foundation__media img {
  width: 100%;
  max-width: 620px;
  display: block;
  object-fit: cover;
  filter: grayscale(1);
}

@media (max-width: 1080px) {
  body[data-page="home"] .home-boutique-foundation__feature {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  body[data-page="home"] .home-boutique-foundation__media img {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .home-boutique-foundation__content h2 {
    font-size: clamp(2.8rem, 14vw, 4.9rem);
    margin-bottom: 24px;
  }
}


/* Home refinement — newsletter block bundled left */
body[data-page="home"] .home-boutique-dispatch__inner--left {
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.75fr);
  gap: clamp(42px, 7vw, 120px);
  align-items: start;
}

body[data-page="home"] .home-boutique-dispatch__cluster {
  max-width: 860px;
}

body[data-page="home"] .home-boutique-dispatch__cluster .home-boutique-section-label {
  margin-bottom: 18px;
}

body[data-page="home"] .home-boutique-dispatch__cluster h2 {
  margin-bottom: 22px;
}

body[data-page="home"] .home-boutique-dispatch__cluster .home-boutique-dispatch__copy {
  max-width: 760px;
}

body[data-page="home"] .home-boutique-dispatch__cluster .home-boutique-button {
  margin-top: 30px;
}

body[data-page="home"] .home-boutique-dispatch__spacer {
  min-height: 100%;
}

@media (max-width: 1080px) {
  body[data-page="home"] .home-boutique-dispatch__inner--left {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body[data-page="home"] .home-boutique-dispatch__spacer {
    display: none;
  }
}


/* Footer refinement — softer sitemap, vertical social icons, single-line bottom disclaimer */
.footer-sitemap a {
  color: #b8b8b8;
}

.footer-sitemap a:hover,
.footer-sitemap a:focus-visible {
  color: #e6e6e6;
}

.footer-social.footer-icon-links {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.footer-bottom {
  grid-template-columns: minmax(240px, 0.72fr) minmax(760px, 1.7fr);
  gap: 20px;
}

.footer-bottom p:last-child {
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .footer-bottom {
    grid-template-columns: minmax(220px, 0.8fr) minmax(540px, 1.4fr);
  }

  .footer-bottom p:last-child {
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .footer-social.footer-icon-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
}


/* Home fix — force true black backgrounds for dark sections */
body[data-page="home"] .home-boutique-pathways--dark,
body[data-page="home"] .home-boutique-operating {
  background: #000000 !important;
  color: #f5f5f2 !important;
}

body[data-page="home"] .home-boutique-pathways--dark .container,
body[data-page="home"] .home-boutique-operating__inner {
  background-color: #000000 !important;
}

body[data-page="home"] .home-boutique-pathways--dark h2,
body[data-page="home"] .home-boutique-operating__heading h2,
body[data-page="home"] .home-boutique-card--pathways-dark h3,
body[data-page="home"] .home-boutique-operating__value,
body[data-page="home"] .home-boutique-operating__metric h3 {
  color: #ffffff !important;
}

body[data-page="home"] .home-boutique-pathways--dark .home-boutique-section-label,
body[data-page="home"] .home-boutique-operating .home-boutique-section-label,
body[data-page="home"] .home-boutique-card--pathways-dark p,
body[data-page="home"] .home-boutique-operating__metric p:last-child,
body[data-page="home"] .home-boutique-operating__note {
  color: rgba(255,255,255,0.76) !important;
}


/* Home refinement — remove pathways, move research links into methodology actions */
body[data-page="home"] .home-boutique-hero__inner {
  padding-bottom: 42px;
}

body[data-page="home"] .home-boutique-hero--static .home-boutique-hero__copy {
  margin-bottom: 0;
}

body[data-page="home"] .home-boutique-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

body[data-page="home"] .home-boutique-intro__actions .home-boutique-button {
  margin-top: 0;
}

@media (max-width: 720px) {
  body[data-page="home"] .home-boutique-hero__inner {
    padding-bottom: 28px;
  }

  body[data-page="home"] .home-boutique-intro__actions {
    gap: 12px;
  }
}


/* Final refinement — hero title in black serif with white inner lines */
body[data-page="home"] .home-boutique-hero__title-video {
  color: #0a0a0b;
  -webkit-text-fill-color: #0a0a0b;
  background: none !important;
  font-weight: 900;
  font-size: clamp(4.8rem, 11vw, 9.2rem);
  letter-spacing: -0.102em;
  line-height: 0.9;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.82)) drop-shadow(4px 4px 0 rgba(0,0,0,0.10));
}

body[data-page="home"] .home-boutique-hero__title-video::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.34);
  text-shadow: 0 1px 0 rgba(255,255,255,0.48);
  pointer-events: none;
}

body[data-page="home"] .home-boutique-hero__title-video::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(255,255,255,0.97) 12% 12.35%, transparent 12.35% 100%),
    linear-gradient(90deg, transparent 0 27%, rgba(255,255,255,0.93) 27% 27.3%, transparent 27.3% 100%),
    linear-gradient(90deg, transparent 0 43.5%, rgba(255,255,255,0.92) 43.5% 43.8%, transparent 43.8% 100%),
    linear-gradient(90deg, transparent 0 61%, rgba(255,255,255,0.95) 61% 61.32%, transparent 61.32% 100%),
    linear-gradient(90deg, transparent 0 78%, rgba(255,255,255,0.94) 78% 78.3%, transparent 78.3% 100%),
    linear-gradient(90deg, transparent 0 91%, rgba(255,255,255,0.96) 91% 91.28%, transparent 91.28% 100%),
    linear-gradient(0deg, transparent 0 49.6%, rgba(255,255,255,0.84) 49.6% 49.95%, transparent 49.95% 100%),
    linear-gradient(132deg, transparent 0 23%, rgba(255,255,255,0.90) 23% 23.28%, transparent 23.28% 100%),
    linear-gradient(132deg, transparent 0 73%, rgba(255,255,255,0.90) 73% 73.28%, transparent 73.28% 100%),
    linear-gradient(48deg, transparent 0 37%, rgba(255,255,255,0.88) 37% 37.28%, transparent 37.28% 100%),
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.03) 42%, rgba(0,0,0,0.04) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  pointer-events: none;
}

/* Final refinement — operating reality gets white line motif on the right edge */
body[data-page="home"] .home-boutique-operating {
  overflow: hidden;
}

body[data-page="home"] .home-boutique-operating__inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(22vw, 320px);
  pointer-events: none;
  opacity: 0.92;
  background:
    linear-gradient(90deg, transparent 0 76%, rgba(255,255,255,0.75) 76% 76.45%, transparent 76.45% 100%),
    linear-gradient(90deg, transparent 0 88%, rgba(255,255,255,0.82) 88% 88.4%, transparent 88.4% 100%),
    linear-gradient(0deg, transparent 0 22%, rgba(255,255,255,0.24) 22% 22.32%, transparent 22.32% 100%),
    linear-gradient(0deg, transparent 0 61%, rgba(255,255,255,0.22) 61% 61.3%, transparent 61.3% 100%),
    linear-gradient(135deg, transparent 0 32%, rgba(255,255,255,0.7) 32% 32.35%, transparent 32.35% 100%),
    linear-gradient(135deg, transparent 0 68%, rgba(255,255,255,0.68) 68% 68.35%, transparent 68.35% 100%),
    linear-gradient(45deg, transparent 0 78%, rgba(255,255,255,0.64) 78% 78.32%, transparent 78.32% 100%);
}

@media (max-width: 980px) {
  body[data-page="home"] .home-boutique-hero__title-video {
    font-size: clamp(3.8rem, 11.6vw, 7rem);
  }

  body[data-page="home"] .home-boutique-operating__inner::after {
    width: min(28vw, 220px);
    opacity: 0.75;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .home-boutique-hero__title-video {
    font-size: clamp(3rem, 13.4vw, 5.2rem);
    letter-spacing: -0.086em;
  }

  body[data-page="home"] .home-boutique-operating__inner::after {
    width: 120px;
    opacity: 0.55;
  }
}


/* Final tweak — more elegant hero title */
body[data-page="home"] .home-boutique-hero__title-video {
  font-size: clamp(5.3rem, 12vw, 10.2rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.088em !important;
  line-height: 0.92 !important;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.8)) drop-shadow(3px 3px 0 rgba(0,0,0,0.08)) !important;
}

/* Final tweak — remove operating reality right-side line motif */
body[data-page="home"] .home-boutique-operating__inner::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 980px) {
  body[data-page="home"] .home-boutique-hero__title-video {
    font-size: clamp(4.3rem, 12.2vw, 7.8rem) !important;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .home-boutique-hero__title-video {
    font-size: clamp(3.3rem, 13.8vw, 5.8rem) !important;
    letter-spacing: -0.078em !important;
  }
}


/* Compact operating reality block */
body[data-page="home"] .home-boutique-operating--compact {
  padding: 56px 0 42px !important;
  background: #000 !important;
}

body[data-page="home"] .home-boutique-operating--compact .home-boutique-operating__inner {
  background-color: #000 !important;
}

body[data-page="home"] .home-boutique-operating__heading--compact {
  max-width: none;
  margin-bottom: 28px !important;
}

body[data-page="home"] .home-boutique-operating__heading--compact h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2.6rem, 4.6vw, 4.7rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.06em !important;
}

body[data-page="home"] .home-boutique-operating__metrics--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px !important;
  max-width: 820px;
}

body[data-page="home"] .home-boutique-operating__metric--compact {
  padding-top: 18px !important;
}

body[data-page="home"] .home-boutique-operating__metric--compact .home-boutique-operating__value {
  margin: 0 0 10px !important;
  font-size: clamp(3.8rem, 6vw, 5.6rem) !important;
}

body[data-page="home"] .home-boutique-operating__metric--compact h3 {
  margin: 0 !important;
  color: rgba(255,255,255,0.92) !important;
}

body[data-page="home"] .home-boutique-operating__metric--compact p:last-child {
  display: none !important;
}

body[data-page="home"] .home-boutique-operating--compact .home-boutique-operating__note {
  margin-top: 24px !important;
  text-align: left !important;
  color: rgba(255,255,255,0.84) !important;
}

@media (max-width: 1200px) {
  body[data-page="home"] .home-boutique-operating__heading--compact h2 {
    white-space: normal;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .home-boutique-operating--compact {
    padding: 42px 0 34px !important;
  }

  body[data-page="home"] .home-boutique-operating__metrics--compact {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  body[data-page="home"] .home-boutique-operating--compact .home-boutique-operating__note {
    margin-top: 20px !important;
  }
}


/* Final title refinement — larger, thinner, more elegant */
body[data-page="home"] .home-boutique-hero__title-video {
  font-size: clamp(6.2rem, 13.8vw, 11.8rem) !important;
  font-weight: 400 !important;
  letter-spacing: -0.058em !important;
  line-height: 0.94 !important;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.72)) drop-shadow(2px 2px 0 rgba(0,0,0,0.06)) !important;
}

body[data-page="home"] .home-boutique-hero__title-video::before {
  -webkit-text-stroke: 0.8px rgba(255,255,255,0.30) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,0.38) !important;
}

body[data-page="home"] .home-boutique-hero__title-video::after {
  background:
    linear-gradient(90deg, transparent 0 13%, rgba(255,255,255,0.95) 13% 13.22%, transparent 13.22% 100%),
    linear-gradient(90deg, transparent 0 31%, rgba(255,255,255,0.90) 31% 31.2%, transparent 31.2% 100%),
    linear-gradient(90deg, transparent 0 49%, rgba(255,255,255,0.90) 49% 49.2%, transparent 49.2% 100%),
    linear-gradient(90deg, transparent 0 67%, rgba(255,255,255,0.92) 67% 67.22%, transparent 67.22% 100%),
    linear-gradient(90deg, transparent 0 84%, rgba(255,255,255,0.94) 84% 84.22%, transparent 84.22% 100%),
    linear-gradient(0deg, transparent 0 50%, rgba(255,255,255,0.78) 50% 50.2%, transparent 50.2% 100%),
    linear-gradient(132deg, transparent 0 28%, rgba(255,255,255,0.82) 28% 28.2%, transparent 28.2% 100%),
    linear-gradient(48deg, transparent 0 74%, rgba(255,255,255,0.80) 74% 74.2%, transparent 74.2% 100%),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02) 42%, rgba(0,0,0,0.03) 100%) !important;
  opacity: 0.96 !important;
}

@media (max-width: 980px) {
  body[data-page="home"] .home-boutique-hero__title-video {
    font-size: clamp(5rem, 13vw, 9rem) !important;
    letter-spacing: -0.05em !important;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .home-boutique-hero__title-video {
    font-size: clamp(3.9rem, 15vw, 6.4rem) !important;
    letter-spacing: -0.042em !important;
    line-height: 0.96 !important;
  }
}

/* Methodology refinement — apply Home light vertical-line background */
body[data-page="methodology"] {
  background-color: #f6f5f2;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(14.285% - 1px),
    rgba(0,0,0,0.075) calc(14.285% - 1px),
    rgba(0,0,0,0.075) 14.285%
  );
  color: #111111;
}

body[data-page="methodology"]::before {
  display: none;
}

body[data-page="methodology"] .site-header {
  background: rgba(246, 245, 242, 0.92);
  border-bottom-color: rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body[data-page="methodology"] .brand-text,
body[data-page="methodology"] .site-nav > a,
body[data-page="methodology"] .nav-parent,
body[data-page="methodology"] .nav-dropdown a {
  color: #111111;
}

body[data-page="methodology"] .site-nav > a:hover,
body[data-page="methodology"] .nav-parent:hover,
body[data-page="methodology"] .nav-dropdown a:hover,
body[data-page="methodology"] .site-nav > a.is-active,
body[data-page="methodology"] .nav-dropdown a.is-active,
body[data-page="methodology"] .nav-group.is-open > .nav-parent {
  color: #000000;
  background: rgba(0,0,0,0.045);
}

body[data-page="methodology"] .nav-dropdown {
  background: rgba(250,249,246,0.98);
  border-color: rgba(0,0,0,0.1);
}

body[data-page="methodology"] .research-architecture-simple,
body[data-page="methodology"] .research-title-hero,
body[data-page="methodology"] .architecture-simple-section {
  background: transparent;
}

body[data-page="methodology"] .research-title-hero {
  min-height: clamp(360px, 54vw, 680px);
  align-items: center;
  border-bottom-color: rgba(0,0,0,0.075);
}

body[data-page="methodology"] .research-title-hero-media,
body[data-page="methodology"] .research-title-hero-overlay {
  display: none;
}

body[data-page="methodology"] .research-title-hero-content {
  padding-bottom: 0;
}

body[data-page="methodology"] .research-title-hero-content h1 {
  max-width: 1180px;
  color: #0f0f10;
  text-shadow: none;
  font-weight: 400;
  letter-spacing: -0.058em;
}

body[data-page="methodology"] .research-architecture-simple .architecture-simple-section {
  border-bottom-color: rgba(0,0,0,0.075);
}

body[data-page="methodology"] .research-architecture-simple h2 {
  color: #0f0f10;
}

body[data-page="methodology"] .research-architecture-simple .architecture-text,
body[data-page="methodology"] .research-architecture-simple .architecture-text p {
  color: rgba(0,0,0,0.72);
}

body[data-page="methodology"] .site-footer {
  background: transparent;
  color: rgba(0,0,0,0.56);
  border-top-color: rgba(0,0,0,0.075);
}

body[data-page="methodology"] .footer-brand {
  color: #111111;
}

body[data-page="methodology"] .footer-disclaimer,
body[data-page="methodology"] .footer-sitemap a,
body[data-page="methodology"] .footer-bottom p {
  color: rgba(0,0,0,0.68);
}

body[data-page="methodology"] .footer-icon-button {
  border-color: rgba(0,0,0,0.12);
  color: #111111;
}

@media (max-width: 720px) {
  body[data-page="methodology"] {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(0,0,0,0.065) calc(25% - 1px),
      rgba(0,0,0,0.065) 25%
    );
  }

  body[data-page="methodology"] .research-title-hero {
    min-height: 360px;
  }
}

/* Methodology navigation active-state correction */
body[data-page="methodology"] .site-nav > a.active,
body[data-page="methodology"] .site-nav .nav-parent.active,
body[data-page="methodology"] .nav-dropdown a.active {
  color: #000000;
  background: rgba(0,0,0,0.045);
}

/* Open institutional header — Two Sigma inspired two-row navigation */
.site-header {
  height: auto !important;
  min-height: 0 !important;
  background: rgba(5, 7, 11, 0.94);
  border-bottom: 1px solid rgba(242, 239, 232, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 112px !important;
  height: auto !important;
  display: grid !important;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  align-items: start !important;
  justify-content: normal !important;
  gap: clamp(42px, 7vw, 120px);
  padding: 28px 0 26px;
}

.brand,
.brand-with-logo {
  height: auto !important;
  max-height: none !important;
  align-self: start;
  padding-top: 1px;
}

.brand-logo {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  border-radius: 7px;
}

.brand-text {
  font-size: 1.08rem !important;
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 640;
}

.site-nav.site-nav-open {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  width: 100% !important;
  min-width: 0;
  display: grid !important;
  gap: 8px;
  justify-self: end;
  align-self: start;
  overflow: visible !important;
}

.site-nav-open .nav-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(max-content, 1fr));
  column-gap: clamp(26px, 4vw, 76px);
  row-gap: 8px;
  align-items: start;
}

.site-nav.site-nav-open a {
  display: block;
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(242, 239, 232, 0.72);
  font-size: clamp(0.94rem, 1vw, 1.03rem);
  line-height: 1.28;
  letter-spacing: -0.035em;
  font-weight: 500;
  white-space: nowrap;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.site-nav.site-nav-open .nav-row-primary a {
  color: rgba(242, 239, 232, 0.96);
  font-weight: 650;
}

.site-nav.site-nav-open a:hover,
.site-nav.site-nav-open a.active {
  color: var(--text);
  background: transparent !important;
  transform: translateX(1px);
}

.site-nav.site-nav-open a.active {
  font-weight: 700;
}

body[data-page="home"] .site-header,
body[data-page="methodology"] .site-header {
  background-color: rgba(246, 245, 242, 0.90) !important;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(14.285% - 1px),
    rgba(0, 0, 0, 0.075) calc(14.285% - 1px),
    rgba(0, 0, 0, 0.075) 14.285%
  ) !important;
  border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

body[data-page="home"] .brand-text,
body[data-page="methodology"] .brand-text,
body[data-page="home"] .site-nav.site-nav-open a,
body[data-page="methodology"] .site-nav.site-nav-open a {
  color: rgba(0, 0, 0, 0.72) !important;
}

body[data-page="home"] .site-nav.site-nav-open .nav-row-primary a,
body[data-page="methodology"] .site-nav.site-nav-open .nav-row-primary a,
body[data-page="home"] .site-nav.site-nav-open a.active,
body[data-page="methodology"] .site-nav.site-nav-open a.active,
body[data-page="home"] .site-nav.site-nav-open a:hover,
body[data-page="methodology"] .site-nav.site-nav-open a:hover {
  color: #050505 !important;
  background: transparent !important;
}

body[data-page="home"] .site-nav.site-nav-open a.active,
body[data-page="methodology"] .site-nav.site-nav-open a.active {
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px 0 20px;
  }

  .site-nav.site-nav-open {
    justify-self: stretch;
  }

  .site-nav-open .nav-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 18px;
  }

  .site-nav.site-nav-open a {
    white-space: normal;
    font-size: 0.93rem;
  }
}

@media (max-width: 700px) {
  .nav-wrap {
    padding: 18px 0 18px;
    gap: 18px;
  }

  .site-nav-open .nav-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 9px;
  }

  body[data-page="home"] .site-header,
  body[data-page="methodology"] .site-header {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(0, 0, 0, 0.065) calc(25% - 1px),
      rgba(0, 0, 0, 0.065) 25%
    ) !important;
  }
}

@media (max-width: 420px) {
  .site-nav-open .nav-row {
    grid-template-columns: 1fr;
  }
}

/* Footer refinement — solid black closing block */
.site-footer,
body[data-page="home"] .site-footer,
body[data-page="methodology"] .site-footer {
  background: #000000 !important;
  background-image: none !important;
  color: rgba(255, 255, 255, 0.88) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.site-footer .footer-brand,
body[data-page="home"] .site-footer .footer-brand,
body[data-page="methodology"] .site-footer .footer-brand {
  color: #ffffff !important;
}

.site-footer .footer-description,
body[data-page="home"] .site-footer .footer-description,
body[data-page="methodology"] .site-footer .footer-description {
  color: rgba(255, 255, 255, 0.9) !important;
}

.site-footer .footer-disclaimer,
.site-footer .footer-sitemap a,
.site-footer .footer-bottom p,
.site-footer .legal,
body[data-page="home"] .site-footer .footer-disclaimer,
body[data-page="home"] .site-footer .footer-sitemap a,
body[data-page="home"] .site-footer .footer-bottom p,
body[data-page="home"] .site-footer .legal,
body[data-page="methodology"] .site-footer .footer-disclaimer,
body[data-page="methodology"] .site-footer .footer-sitemap a,
body[data-page="methodology"] .site-footer .footer-bottom p,
body[data-page="methodology"] .site-footer .legal {
  color: rgba(255, 255, 255, 0.72) !important;
}

.site-footer .footer-sitemap a:hover,
.site-footer .footer-sitemap a:focus-visible,
body[data-page="home"] .site-footer .footer-sitemap a:hover,
body[data-page="home"] .site-footer .footer-sitemap a:focus-visible,
body[data-page="methodology"] .site-footer .footer-sitemap a:hover,
body[data-page="methodology"] .site-footer .footer-sitemap a:focus-visible {
  color: #ffffff !important;
}

.site-footer .footer-icon-button,
body[data-page="home"] .site-footer .footer-icon-button,
body[data-page="methodology"] .site-footer .footer-icon-button {
  color: rgba(255, 255, 255, 0.82) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.035) !important;
}

.site-footer .footer-icon-button:hover,
.site-footer .footer-icon-button:focus-visible,
body[data-page="home"] .site-footer .footer-icon-button:hover,
body[data-page="home"] .site-footer .footer-icon-button:focus-visible,
body[data-page="methodology"] .site-footer .footer-icon-button:hover,
body[data-page="methodology"] .site-footer .footer-icon-button:focus-visible {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.site-footer .footer-bottom,
body[data-page="home"] .site-footer .footer-bottom,
body[data-page="methodology"] .site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}


/* Final header correction — open two-column navigation */
.site-nav.site-nav-open {
  display: grid !important;
  grid-template-columns: repeat(2, max-content) !important;
  column-gap: clamp(72px, 9vw, 168px) !important;
  row-gap: 0 !important;
  align-items: start !important;
  justify-content: end !important;
  justify-self: end !important;
  width: auto !important;
}

.site-nav.site-nav-open .nav-column {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  align-items: start !important;
}

.site-nav.site-nav-open .nav-column a {
  color: rgba(242, 239, 232, 0.78);
  font-weight: 540;
}

.site-nav.site-nav-open .nav-column a:hover,
.site-nav.site-nav-open .nav-column a.active {
  color: #ffffff;
  font-weight: 650;
}

body[data-page="home"] .site-nav.site-nav-open .nav-column a,
body[data-page="methodology"] .site-nav.site-nav-open .nav-column a {
  color: rgba(0, 0, 0, 0.72) !important;
}

body[data-page="home"] .site-nav.site-nav-open .nav-column a:hover,
body[data-page="home"] .site-nav.site-nav-open .nav-column a.active,
body[data-page="methodology"] .site-nav.site-nav-open .nav-column a:hover,
body[data-page="methodology"] .site-nav.site-nav-open .nav-column a.active {
  color: #050505 !important;
  font-weight: 650;
}

@media (max-width: 980px) {
  .site-nav.site-nav-open {
    justify-self: stretch !important;
    justify-content: start !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 42px !important;
    width: 100% !important;
  }
}

@media (max-width: 560px) {
  .site-nav.site-nav-open {
    grid-template-columns: 1fr !important;
    row-gap: 10px !important;
  }
}

/* Methodology page refinement — title with section index between two horizontal rules */
body[data-page="methodology"] .methodology-hero {
  background: transparent;
  padding: clamp(68px, 7.5vw, 118px) 0 0;
}

body[data-page="methodology"] .methodology-hero h1 {
  margin: 0 0 clamp(64px, 7vw, 96px);
  max-width: none;
  color: #050505;
  font-size: clamp(3.25rem, 6.2vw, 5.85rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 650;
}

body[data-page="methodology"] .methodology-section-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  min-height: 78px;
  border-top: 1px solid rgba(0, 0, 0, 0.86);
  border-bottom: 1px solid rgba(0, 0, 0, 0.86);
}

body[data-page="methodology"] .methodology-section-nav a {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 78px;
  color: #050505;
  font-size: clamp(0.98rem, 1.24vw, 1.16rem);
  line-height: 1.15;
  letter-spacing: -0.045em;
  font-weight: 680;
  transition: color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

body[data-page="methodology"] .methodology-section-nav a:hover,
body[data-page="methodology"] .methodology-section-nav a:focus-visible {
  color: rgba(0, 0, 0, 0.58);
  transform: translateX(2px);
  outline: none;
}

body[data-page="methodology"] .methodology-page .architecture-simple-section {
  scroll-margin-top: 148px;
}

body[data-page="methodology"] .methodology-page .architecture-simple-section:first-of-type {
  padding-top: clamp(84px, 8vw, 128px);
}

@media (max-width: 760px) {
  body[data-page="methodology"] .methodology-hero {
    padding-top: 56px;
  }

  body[data-page="methodology"] .methodology-hero h1 {
    margin-bottom: 48px;
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  body[data-page="methodology"] .methodology-section-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0;
    min-height: 0;
    padding: 18px 0;
  }

  body[data-page="methodology"] .methodology-section-nav a {
    min-height: 44px;
    font-size: 1rem;
  }
}

body[data-page="methodology"] #scope.architecture-simple-section {
  padding-top: clamp(84px, 8vw, 128px);
}

/* Quantitative Research refinement — apply Home light vertical-line background */
body[data-page="quantitative-research"] {
  background-color: #f6f5f2;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(14.285% - 1px),
    rgba(0,0,0,0.075) calc(14.285% - 1px),
    rgba(0,0,0,0.075) 14.285%
  );
  color: #111111;
}

body[data-page="quantitative-research"]::before {
  display: none;
}

body[data-page="quantitative-research"] .site-header {
  background: rgba(246, 245, 242, 0.92);
  border-bottom-color: rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body[data-page="quantitative-research"] .brand-text,
body[data-page="quantitative-research"] .site-nav a,
body[data-page="quantitative-research"] .nav-parent,
body[data-page="quantitative-research"] .nav-dropdown a {
  color: #111111;
}

body[data-page="quantitative-research"] .site-nav a:hover,
body[data-page="quantitative-research"] .site-nav a:focus-visible,
body[data-page="quantitative-research"] .nav-parent:hover,
body[data-page="quantitative-research"] .nav-dropdown a:hover,
body[data-page="quantitative-research"] .site-nav a.is-active,
body[data-page="quantitative-research"] .nav-dropdown a.is-active,
body[data-page="quantitative-research"] .nav-group.is-open > .nav-parent {
  color: #000000;
}

body[data-page="quantitative-research"] .nav-dropdown {
  background: rgba(250,249,246,0.98);
  border-color: rgba(0,0,0,0.1);
}

body[data-page="quantitative-research"] .quantitative-research-page,
body[data-page="quantitative-research"] .quant-hero,
body[data-page="quantitative-research"] .quant-copy-section {
  background: transparent;
}

body[data-page="quantitative-research"] .quant-hero {
  border-bottom-color: rgba(0,0,0,0.075);
}

body[data-page="quantitative-research"] .eyebrow,
body[data-page="quantitative-research"] .quant-section-label {
  color: rgba(0,0,0,0.56);
}

body[data-page="quantitative-research"] .quant-hero h1,
body[data-page="quantitative-research"] .quant-text-block h2 {
  color: #0f0f10;
}

body[data-page="quantitative-research"] .quant-hero-lead,
body[data-page="quantitative-research"] .quant-opening p,
body[data-page="quantitative-research"] .quant-text-block p:last-child {
  color: rgba(0,0,0,0.72);
}

body[data-page="quantitative-research"] .quant-text-block {
  border-top-color: rgba(0,0,0,0.075);
}

@media (max-width: 900px) {
  body[data-page="quantitative-research"] {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(50% - 0.5px),
      rgba(0,0,0,0.075) calc(50% - 0.5px),
      rgba(0,0,0,0.075) 50%
    );
  }
}

/* Equity Research refinement — apply Home light vertical-line background */
body[data-page="equity-research"] {
  background-color: #f6f5f2;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(14.285% - 1px),
    rgba(0,0,0,0.075) calc(14.285% - 1px),
    rgba(0,0,0,0.075) 14.285%
  );
  color: #111111;
}

body[data-page="equity-research"]::before {
  display: none;
}

body[data-page="equity-research"] .site-header {
  background: rgba(246, 245, 242, 0.92);
  border-bottom-color: rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body[data-page="equity-research"] .brand-text,
body[data-page="equity-research"] .site-nav a,
body[data-page="equity-research"] .nav-parent,
body[data-page="equity-research"] .nav-dropdown a {
  color: #111111;
}

body[data-page="equity-research"] .site-nav a:hover,
body[data-page="equity-research"] .site-nav a:focus-visible,
body[data-page="equity-research"] .nav-parent:hover,
body[data-page="equity-research"] .nav-dropdown a:hover,
body[data-page="equity-research"] .site-nav a.is-active,
body[data-page="equity-research"] .nav-dropdown a.is-active,
body[data-page="equity-research"] .nav-group.is-open > .nav-parent {
  color: #000000;
}

body[data-page="equity-research"] .nav-dropdown {
  background: rgba(250,249,246,0.98);
  border-color: rgba(0,0,0,0.1);
}

body[data-page="equity-research"] .equity-research-page,
body[data-page="equity-research"] .quant-hero,
body[data-page="equity-research"] .quant-copy-section {
  background: transparent;
}

body[data-page="equity-research"] .quant-hero {
  border-bottom-color: rgba(0,0,0,0.075);
}

body[data-page="equity-research"] .eyebrow,
body[data-page="equity-research"] .quant-section-label {
  color: rgba(0,0,0,0.56);
}

body[data-page="equity-research"] .quant-hero h1,
body[data-page="equity-research"] .quant-text-block h2 {
  color: #0f0f10;
}

body[data-page="equity-research"] .quant-hero-lead,
body[data-page="equity-research"] .quant-opening p,
body[data-page="equity-research"] .quant-text-block p:last-child {
  color: rgba(0,0,0,0.72);
}

body[data-page="equity-research"] .quant-text-block {
  border-top-color: rgba(0,0,0,0.075);
}

@media (max-width: 900px) {
  body[data-page="equity-research"] {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(50% - 0.5px),
      rgba(0,0,0,0.075) calc(50% - 0.5px),
      rgba(0,0,0,0.075) 50%
    );
  }
}

/* Archive refinement — apply Home light vertical-line background */
body[data-page="archive"] {
  background-color: #f6f5f2;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(14.285% - 1px),
    rgba(0,0,0,0.075) calc(14.285% - 1px),
    rgba(0,0,0,0.075) 14.285%
  );
  color: #111111;
}

body[data-page="archive"]::before {
  display: none;
}

body[data-page="archive"] .site-header {
  background: rgba(246, 245, 242, 0.92);
  border-bottom-color: rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body[data-page="archive"] .brand-text,
body[data-page="archive"] .site-nav a,
body[data-page="archive"] .nav-parent,
body[data-page="archive"] .nav-dropdown a {
  color: #111111;
}

body[data-page="archive"] .site-nav a:hover,
body[data-page="archive"] .site-nav a:focus-visible,
body[data-page="archive"] .nav-parent:hover,
body[data-page="archive"] .nav-dropdown a:hover,
body[data-page="archive"] .site-nav a.is-active,
body[data-page="archive"] .nav-dropdown a.is-active,
body[data-page="archive"] .nav-group.is-open > .nav-parent {
  color: #000000;
}

body[data-page="archive"] .nav-dropdown {
  background: rgba(250,249,246,0.98);
  border-color: rgba(0,0,0,0.1);
}

body[data-page="archive"] .archive-video-hero,
body[data-page="archive"] .archive-library {
  background: transparent;
}

body[data-page="archive"] .archive-video-hero {
  min-height: clamp(280px, 34vw, 420px);
  border-bottom-color: rgba(0,0,0,0.075);
}

body[data-page="archive"] .archive-hero-video,
body[data-page="archive"] .archive-hero-overlay {
  display: none;
}

body[data-page="archive"] .archive-video-hero h1 {
  color: #0f0f10;
  text-shadow: none;
}

body[data-page="archive"] .filter-button {
  border-color: rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.55);
  color: rgba(0,0,0,0.72);
}

body[data-page="archive"] .filter-button.active,
body[data-page="archive"] .filter-button:hover,
body[data-page="archive"] .filter-button:focus-visible {
  background: rgba(0,0,0,0.06);
  color: #0f0f10;
  border-color: rgba(0,0,0,0.16);
}

body[data-page="archive"] .card {
  border-color: rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.5);
}

body[data-page="archive"] .card:hover {
  border-color: rgba(0,0,0,0.14);
}

body[data-page="archive"] .card h3 {
  color: #0f0f10;
}

body[data-page="archive"] .card-meta,
body[data-page="archive"] .tag {
  color: rgba(0,0,0,0.56);
}

body[data-page="archive"] .card p,
body[data-page="archive"] .placeholder-note {
  color: rgba(0,0,0,0.72);
}

body[data-page="archive"] .tag {
  border-color: rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.38);
}

body[data-page="archive"] .card-link {
  color: #111111;
}

@media (max-width: 900px) {
  body[data-page="archive"] {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(50% - 0.5px),
      rgba(0,0,0,0.075) calc(50% - 0.5px),
      rgba(0,0,0,0.075) 50%
    );
  }
}

/* Collective refinement — apply Home light vertical-line background */
body[data-page="collective"] {
  background-color: #f6f5f2;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(14.285% - 1px),
    rgba(0,0,0,0.075) calc(14.285% - 1px),
    rgba(0,0,0,0.075) 14.285%
  );
  color: #111111;
}

body[data-page="collective"]::before {
  display: none;
}

body[data-page="collective"] .site-header {
  background: rgba(246, 245, 242, 0.92);
  border-bottom-color: rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body[data-page="collective"] .brand-text,
body[data-page="collective"] .site-nav a,
body[data-page="collective"] .nav-parent,
body[data-page="collective"] .nav-dropdown a {
  color: #111111;
}

body[data-page="collective"] .site-nav a:hover,
body[data-page="collective"] .site-nav a:focus-visible,
body[data-page="collective"] .nav-parent:hover,
body[data-page="collective"] .nav-dropdown a:hover,
body[data-page="collective"] .site-nav a.is-active,
body[data-page="collective"] .nav-dropdown a.is-active,
body[data-page="collective"] .nav-group.is-open > .nav-parent {
  color: #000000;
}

body[data-page="collective"] .nav-dropdown {
  background: rgba(250,249,246,0.98);
  border-color: rgba(0,0,0,0.1);
}

body[data-page="collective"] .collective-simple-page,
body[data-page="collective"] .collective-hero,
body[data-page="collective"] .collective-areas-section {
  background: transparent;
}

body[data-page="collective"] .collective-hero,
body[data-page="collective"] .collective-area-block {
  border-bottom-color: rgba(0,0,0,0.075);
  border-top-color: rgba(0,0,0,0.075);
}

body[data-page="collective"] .collective-hero h1,
body[data-page="collective"] .collective-area-block h2,
body[data-page="collective"] .collective-person-card h3 {
  color: #0f0f10;
}

body[data-page="collective"] .collective-hero-lead,
body[data-page="collective"] .collective-area-members,
body[data-page="collective"] .collective-person-role,
body[data-page="collective"] .collective-person-education,
body[data-page="collective"] .collective-person-focus {
  color: rgba(0,0,0,0.72);
}

body[data-page="collective"] .collective-section-label,
body[data-page="collective"] .collective-person-kicker {
  color: rgba(0,0,0,0.56);
}

body[data-page="collective"] .collective-person-card {
  border-color: rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.5);
}

body[data-page="collective"] .collective-person-image {
  background: rgba(255,255,255,0.36);
  border-bottom-color: rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  body[data-page="collective"] {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(50% - 0.5px),
      rgba(0,0,0,0.075) calc(50% - 0.5px),
      rgba(0,0,0,0.075) 50%
    );
  }
}

/* Open Roles refinement — apply Home light vertical-line background */
body[data-page="open-roles"] {
  background-color: #f6f5f2;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(14.285% - 1px),
    rgba(0,0,0,0.075) calc(14.285% - 1px),
    rgba(0,0,0,0.075) 14.285%
  );
  color: #111111;
}

body[data-page="open-roles"]::before {
  display: none;
}

body[data-page="open-roles"] .site-header {
  background: rgba(246, 245, 242, 0.92);
  border-bottom-color: rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body[data-page="open-roles"] .brand-text,
body[data-page="open-roles"] .site-nav a,
body[data-page="open-roles"] .nav-parent,
body[data-page="open-roles"] .nav-dropdown a {
  color: #111111;
}

body[data-page="open-roles"] .site-nav a:hover,
body[data-page="open-roles"] .site-nav a:focus-visible,
body[data-page="open-roles"] .nav-parent:hover,
body[data-page="open-roles"] .nav-dropdown a:hover,
body[data-page="open-roles"] .site-nav a.is-active,
body[data-page="open-roles"] .nav-dropdown a.is-active,
body[data-page="open-roles"] .nav-group.is-open > .nav-parent {
  color: #000000;
}

body[data-page="open-roles"] .nav-dropdown {
  background: rgba(250,249,246,0.98);
  border-color: rgba(0,0,0,0.1);
}

body[data-page="open-roles"] .careers-page,
body[data-page="open-roles"] .careers-hero,
body[data-page="open-roles"] .careers-statement,
body[data-page="open-roles"] .careers-tracks-section,
body[data-page="open-roles"] .careers-roles-section,
body[data-page="open-roles"] .careers-criteria-section,
body[data-page="open-roles"] .careers-process-section {
  background: transparent;
}

body[data-page="open-roles"] .careers-page {
  border-top-color: rgba(0,0,0,0.075);
}

body[data-page="open-roles"] .careers-hero,
body[data-page="open-roles"] .careers-statement,
body[data-page="open-roles"] .careers-tracks-section,
body[data-page="open-roles"] .careers-roles-section,
body[data-page="open-roles"] .careers-criteria-section,
body[data-page="open-roles"] .careers-process-section {
  border-bottom-color: rgba(0,0,0,0.075);
}

body[data-page="open-roles"] .careers-label,
body[data-page="open-roles"] .careers-card-kicker,
body[data-page="open-roles"] .careers-list-block p {
  color: rgba(0,0,0,0.56);
}

body[data-page="open-roles"] .careers-hero h1,
body[data-page="open-roles"] .careers-statement h2,
body[data-page="open-roles"] .careers-section-heading h2,
body[data-page="open-roles"] .careers-criteria-inner h2,
body[data-page="open-roles"] .careers-track-card h3,
body[data-page="open-roles"] .careers-role-card h3,
body[data-page="open-roles"] .careers-criteria-grid h3,
body[data-page="open-roles"] .careers-process-grid h3 {
  color: #0f0f10;
}

body[data-page="open-roles"] .careers-lead,
body[data-page="open-roles"] .careers-statement-copy p,
body[data-page="open-roles"] .careers-section-heading-split > p,
body[data-page="open-roles"] .careers-track-card > div:first-child > p:not(.careers-card-kicker),
body[data-page="open-roles"] .careers-role-card > p,
body[data-page="open-roles"] .careers-criteria-grid p,
body[data-page="open-roles"] .careers-process-grid p,
body[data-page="open-roles"] .careers-list-block li,
body[data-page="open-roles"] .careers-role-card li,
body[data-page="open-roles"] .careers-final-cta p {
  color: rgba(0,0,0,0.72);
}

body[data-page="open-roles"] .careers-button {
  border-color: rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.5);
  color: #111111;
}

body[data-page="open-roles"] .careers-button:hover,
body[data-page="open-roles"] .careers-button:focus-visible {
  border-color: rgba(0,0,0,0.24);
  background: rgba(0,0,0,0.05);
}

body[data-page="open-roles"] .careers-button-primary {
  background: #111111;
  border-color: #111111;
  color: #f6f5f2;
}

body[data-page="open-roles"] .careers-button-primary:hover,
body[data-page="open-roles"] .careers-button-primary:focus-visible {
  background: #000000;
  border-color: #000000;
  color: #f6f5f2;
}

body[data-page="open-roles"] .careers-track-card,
body[data-page="open-roles"] .careers-role-card,
body[data-page="open-roles"] .careers-criteria-grid article,
body[data-page="open-roles"] .careers-process-grid article {
  border-color: rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.5);
}

body[data-page="open-roles"] .careers-track-card:hover,
body[data-page="open-roles"] .careers-role-card:hover,
body[data-page="open-roles"] .careers-criteria-grid article:hover,
body[data-page="open-roles"] .careers-process-grid article:hover {
  border-color: rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.7);
}

body[data-page="open-roles"] .careers-card-divider,
body[data-page="open-roles"] .careers-final-cta {
  border-top-color: rgba(0,0,0,0.1);
}

body[data-page="open-roles"] .careers-card-divider {
  background: rgba(0,0,0,0.1);
}

body[data-page="open-roles"] .careers-list-block li::before,
body[data-page="open-roles"] .careers-role-card li::before {
  background: rgba(0,0,0,0.45);
}

body[data-page="open-roles"] .careers-process-grid span {
  color: rgba(0,0,0,0.22);
}

@media (max-width: 900px) {
  body[data-page="open-roles"] {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(50% - 0.5px),
      rgba(0,0,0,0.075) calc(50% - 0.5px),
      rgba(0,0,0,0.075) 50%
    );
  }
}

/* Header refinement — keep light-page header text black and pull header content inward */
.site-header .nav-wrap.container {
  width: min(100% - 88px, 1060px) !important;
  margin-inline: auto !important;
}

.nav-wrap {
  grid-template-columns: max-content minmax(0, 1fr) !important;
  gap: clamp(72px, 10vw, 180px) !important;
}

.site-nav.site-nav-open {
  justify-self: start !important;
}

@media (max-width: 980px) {
  .site-header .nav-wrap.container {
    width: min(100% - 44px, 1060px) !important;
  }

  .nav-wrap {
    gap: 20px !important;
  }

  .site-nav.site-nav-open {
    justify-self: stretch !important;
  }
}

body[data-page="home"] .brand-text,
body[data-page="methodology"] .brand-text,
body[data-page="quantitative-research"] .brand-text,
body[data-page="equity-research"] .brand-text,
body[data-page="archive"] .brand-text,
body[data-page="collective"] .brand-text,
body[data-page="open-roles"] .brand-text,
body[data-page="home"] .site-nav.site-nav-open .nav-column a,
body[data-page="methodology"] .site-nav.site-nav-open .nav-column a,
body[data-page="quantitative-research"] .site-nav.site-nav-open .nav-column a,
body[data-page="equity-research"] .site-nav.site-nav-open .nav-column a,
body[data-page="archive"] .site-nav.site-nav-open .nav-column a,
body[data-page="collective"] .site-nav.site-nav-open .nav-column a,
body[data-page="open-roles"] .site-nav.site-nav-open .nav-column a {
  color: rgba(0, 0, 0, 0.78) !important;
}

body[data-page="home"] .site-nav.site-nav-open .nav-column a:hover,
body[data-page="home"] .site-nav.site-nav-open .nav-column a.active,
body[data-page="methodology"] .site-nav.site-nav-open .nav-column a:hover,
body[data-page="methodology"] .site-nav.site-nav-open .nav-column a.active,
body[data-page="quantitative-research"] .site-nav.site-nav-open .nav-column a:hover,
body[data-page="quantitative-research"] .site-nav.site-nav-open .nav-column a.active,
body[data-page="equity-research"] .site-nav.site-nav-open .nav-column a:hover,
body[data-page="equity-research"] .site-nav.site-nav-open .nav-column a.active,
body[data-page="archive"] .site-nav.site-nav-open .nav-column a:hover,
body[data-page="archive"] .site-nav.site-nav-open .nav-column a.active,
body[data-page="collective"] .site-nav.site-nav-open .nav-column a:hover,
body[data-page="collective"] .site-nav.site-nav-open .nav-column a.active,
body[data-page="open-roles"] .site-nav.site-nav-open .nav-column a:hover,
body[data-page="open-roles"] .site-nav.site-nav-open .nav-column a.active {
  color: #000000 !important;
  font-weight: 650 !important;
}

/* Header refinement — larger black logo and hide on downward scroll */
.brand-logo {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  border-radius: 9px;
  object-fit: contain;
}

.site-header {
  transition: transform 240ms ease, background-color 180ms ease, border-color 180ms ease !important;
  will-change: transform;
}

.site-header.header-hidden {
  transform: translateY(calc(-100% - 10px));
}

/* Noemir — FVN Research Intelligence */
.site-header .nav-wrap.container {
  grid-template-columns: max-content minmax(0, 1fr) max-content !important;
  align-items: start !important;
  column-gap: clamp(30px, 5vw, 88px) !important;
}

.site-header .brand {
  grid-column: 1;
}

.site-header .site-nav.site-nav-open {
  grid-column: 2;
}

.noemir-header-action {
  grid-column: 3;
  justify-self: end;
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 13px 0 11px;
  border: 1px solid rgba(242, 239, 232, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(242, 239, 232, 0.92);
  cursor: pointer;
  white-space: nowrap;
  font-size: clamp(0.9rem, 0.96vw, 1rem);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 620;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.noemir-header-action:hover,
.noemir-header-action:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(242, 239, 232, 0.30);
  color: #ffffff;
  outline: none;
}

.noemir-header-icon {
  width: 19px;
  height: 19px;
  display: inline-grid;
  place-items: center;
}

.noemir-header-icon svg {
  width: 19px;
  height: 19px;
  display: block;
}

body.noemir-light-header .noemir-header-action,
body[data-page="home"] .noemir-header-action,
body[data-page="methodology"] .noemir-header-action,
body[data-page="quantitative-research"] .noemir-header-action,
body[data-page="equity-research"] .noemir-header-action,
body[data-page="archive"] .noemir-header-action,
body[data-page="collective"] .noemir-header-action,
body[data-page="open-roles"] .noemir-header-action {
  color: rgba(0, 0, 0, 0.78);
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.42);
}

body.noemir-light-header .noemir-header-action:hover,
body.noemir-light-header .noemir-header-action:focus-visible,
body[data-page="home"] .noemir-header-action:hover,
body[data-page="home"] .noemir-header-action:focus-visible,
body[data-page="methodology"] .noemir-header-action:hover,
body[data-page="methodology"] .noemir-header-action:focus-visible,
body[data-page="quantitative-research"] .noemir-header-action:hover,
body[data-page="quantitative-research"] .noemir-header-action:focus-visible,
body[data-page="equity-research"] .noemir-header-action:hover,
body[data-page="equity-research"] .noemir-header-action:focus-visible,
body[data-page="archive"] .noemir-header-action:hover,
body[data-page="archive"] .noemir-header-action:focus-visible,
body[data-page="collective"] .noemir-header-action:hover,
body[data-page="collective"] .noemir-header-action:focus-visible,
body[data-page="open-roles"] .noemir-header-action:hover,
body[data-page="open-roles"] .noemir-header-action:focus-visible {
  color: #000000;
  border-color: rgba(0, 0, 0, 0.24);
  background: rgba(255, 255, 255, 0.72);
}

.noemir-shell {
  position: fixed;
  inset: auto 24px 24px auto;
  z-index: 120;
  width: min(430px, calc(100vw - 32px));
  pointer-events: none;
}

.noemir-panel {
  max-height: min(720px, calc(100vh - 48px));
  display: grid;
  grid-template-rows: auto auto auto minmax(220px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 22px;
  background:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(0, 0, 0, 0.055) calc(25% - 1px),
      rgba(0, 0, 0, 0.055) 25%
    ),
    rgba(246, 245, 242, 0.98);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  color: #101010;
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  transform-origin: bottom right;
  transition: opacity 180ms ease, transform 180ms ease;
}

.noemir-shell.is-open {
  pointer-events: auto;
}

.noemir-shell.is-open .noemir-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.noemir-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 0;
}

.noemir-kicker {
  margin: 0 0 5px;
  font-family: var(--font-mono);
  font-size: 0.69rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.52);
}

.noemir-panel h2 {
  margin: 0;
  color: #080808;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 620;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.noemir-close {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.noemir-close:hover,
.noemir-close:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.18);
  color: #000000;
  outline: none;
  transform: rotate(2deg);
}

.noemir-subtitle {
  margin: 14px 22px 0;
  max-width: 360px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.91rem;
  line-height: 1.45;
}

.noemir-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 22px 15px;
}

.noemir-suggestions button {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: rgba(0, 0, 0, 0.72);
  cursor: pointer;
  padding: 8px 10px;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.noemir-suggestions button:hover,
.noemir-suggestions button:focus-visible {
  background: rgba(0, 0, 0, 0.055);
  border-color: rgba(0, 0, 0, 0.20);
  color: #000000;
  outline: none;
  transform: translateY(-1px);
}

.noemir-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  overflow-y: auto;
  padding: 0 22px 18px;
  scrollbar-width: thin;
}

.noemir-message {
  max-width: 92%;
  border-radius: 16px;
  padding: 11px 12px;
  font-size: 0.91rem;
  line-height: 1.48;
  letter-spacing: -0.015em;
}

.noemir-message-user {
  justify-self: end;
  background: #111111;
  color: #f7f7f4;
  border-bottom-right-radius: 5px;
}

.noemir-message-bot {
  justify-self: start;
  display: grid;
  gap: 6px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.78);
  border-bottom-left-radius: 5px;
}

.noemir-message-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.46);
}

.noemir-message-body {
  white-space: pre-wrap;
}

.noemir-source-link {
  justify-self: start;
  margin-top: 2px;
  color: #000000;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(0, 0, 0, 0.22);
  text-underline-offset: 3px;
}

.noemir-source-link:hover,
.noemir-source-link:focus-visible {
  text-decoration-color: rgba(0, 0, 0, 0.7);
  outline: none;
}

.noemir-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(246, 245, 242, 0.82);
}

.noemir-form input {
  min-width: 0;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #0d0d0d;
  padding: 0 14px;
  outline: none;
  font-size: 0.92rem;
}

.noemir-form input:focus {
  border-color: rgba(0, 0, 0, 0.36);
  background: #ffffff;
}

.noemir-form button {
  height: 42px;
  border: 1px solid #111111;
  border-radius: 999px;
  background: #111111;
  color: #f7f7f4;
  cursor: pointer;
  padding: 0 16px;
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.noemir-form button:hover,
.noemir-form button:focus-visible {
  background: #000000;
  border-color: #000000;
  outline: none;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .site-header .nav-wrap.container {
    grid-template-columns: minmax(0, 1fr) max-content !important;
    row-gap: 18px !important;
    column-gap: 18px !important;
    align-items: center !important;
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .noemir-header-action {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .site-header .site-nav.site-nav-open {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 640px) {
  .noemir-shell {
    inset: auto 12px 12px 12px;
    width: auto;
  }

  .noemir-panel {
    max-height: calc(100vh - 24px);
    border-radius: 20px;
  }

  .noemir-header-action {
    padding-inline: 10px 11px;
    min-height: 36px;
  }

  .noemir-header-icon,
  .noemir-header-icon svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 420px) {
  .noemir-header-action span:last-child {
    display: none;
  }

  .noemir-header-action {
    width: 38px;
    justify-content: center;
    padding: 0;
  }

  .noemir-subtitle {
    max-width: none;
  }
}

/* Equity Research — compact editorial rhythm, matched 1:1 with Quantitative Research */
body[data-page="equity-research"] .eyebrow,
body[data-page="equity-research"] .quant-section-label {
  display: none;
}

body[data-page="equity-research"] .quant-hero {
  min-height: auto;
  padding: clamp(112px, 12vw, 148px) 0 clamp(68px, 7.5vw, 96px);
}

body[data-page="equity-research"] .quant-hero h1 {
  margin: 0;
}

body[data-page="equity-research"] .quant-hero-lead {
  margin-top: 24px;
}

body[data-page="equity-research"] .quant-copy-section {
  padding: clamp(56px, 7vw, 88px) 0 clamp(84px, 9vw, 128px);
}

body[data-page="equity-research"] .quant-opening {
  padding-bottom: clamp(44px, 5.5vw, 68px);
}

body[data-page="equity-research"] .quant-text-block {
  padding: clamp(42px, 5.5vw, 68px) 0;
}

body[data-page="equity-research"] .quant-text-block h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.4vw, 3.8rem);
}

body[data-page="equity-research"] .quant-opening p,
body[data-page="equity-research"] .quant-text-block p:last-child {
  max-width: 760px;
  line-height: 1.68;
}

@media (max-width: 720px) {
  body[data-page="equity-research"] .quant-hero {
    padding: 76px 0 56px;
  }

  body[data-page="equity-research"] .quant-hero-lead {
    margin-top: 20px;
  }

  body[data-page="equity-research"] .quant-copy-section {
    padding: 48px 0 84px;
  }

  body[data-page="equity-research"] .quant-opening {
    padding-bottom: 38px;
  }

  body[data-page="equity-research"] .quant-text-block {
    padding: 38px 0;
  }

  body[data-page="equity-research"] .quant-text-block h2 {
    margin-bottom: 14px;
  }
}

/* Quantitative Research — compact editorial rhythm, no eyebrow labels */
body[data-page="quantitative-research"] .eyebrow,
body[data-page="quantitative-research"] .quant-section-label {
  display: none;
}

body[data-page="quantitative-research"] .quant-hero {
  min-height: auto;
  padding: clamp(112px, 12vw, 148px) 0 clamp(68px, 7.5vw, 96px);
}

body[data-page="quantitative-research"] .quant-hero h1 {
  margin: 0;
}

body[data-page="quantitative-research"] .quant-hero-lead {
  margin-top: 24px;
}

body[data-page="quantitative-research"] .quant-copy-section {
  padding: clamp(56px, 7vw, 88px) 0 clamp(84px, 9vw, 128px);
}

body[data-page="quantitative-research"] .quant-opening {
  padding-bottom: clamp(44px, 5.5vw, 68px);
}

body[data-page="quantitative-research"] .quant-text-block {
  padding: clamp(42px, 5.5vw, 68px) 0;
}

body[data-page="quantitative-research"] .quant-text-block h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.4vw, 3.8rem);
}

body[data-page="quantitative-research"] .quant-opening p,
body[data-page="quantitative-research"] .quant-text-block p:last-child {
  max-width: 760px;
  line-height: 1.68;
}

@media (max-width: 720px) {
  body[data-page="quantitative-research"] .quant-hero {
    padding: 76px 0 56px;
  }

  body[data-page="quantitative-research"] .quant-hero-lead {
    margin-top: 20px;
  }

  body[data-page="quantitative-research"] .quant-copy-section {
    padding: 48px 0 84px;
  }

  body[data-page="quantitative-research"] .quant-opening {
    padding-bottom: 38px;
  }

  body[data-page="quantitative-research"] .quant-text-block {
    padding: 38px 0;
  }

  body[data-page="quantitative-research"] .quant-text-block h2 {
    margin-bottom: 14px;
  }
}

/* Careers — final minimal FVN role page */
body[data-page="open-roles"] .careers-page,
body[data-page="open-roles"] .careers-hero,
body[data-page="open-roles"] .careers-section-final,
body[data-page="open-roles"] .careers-tracks-section,
body[data-page="open-roles"] .careers-roles-section,
body[data-page="open-roles"] .careers-story-section {
  background: transparent !important;
  border: 0 !important;
}

body[data-page="open-roles"] .careers-page {
  color: #111111;
}

body[data-page="open-roles"] .careers-hero-final {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  padding: clamp(112px, 12vw, 148px) 0 clamp(58px, 6.5vw, 86px) !important;
}

body[data-page="open-roles"] .careers-hero-inner {
  max-width: 1120px;
}

body[data-page="open-roles"] .careers-hero h1 {
  margin: 0;
  max-width: 980px;
  color: #0f0f10 !important;
  font-size: clamp(4rem, 8.6vw, 8.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

body[data-page="open-roles"] .careers-lead {
  max-width: 900px;
  margin: 24px 0 0;
  color: rgba(0,0,0,0.72) !important;
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.68;
}

body[data-page="open-roles"] .careers-actions {
  margin-top: 30px;
}

body[data-page="open-roles"] .careers-button {
  min-height: 44px;
  padding: 11px 18px;
}

body[data-page="open-roles"] .careers-section-final {
  padding: clamp(56px, 7vw, 88px) 0 !important;
}

body[data-page="open-roles"] .careers-story-section {
  padding-bottom: clamp(84px, 9vw, 128px) !important;
}

body[data-page="open-roles"] .careers-section-heading {
  margin-bottom: clamp(24px, 3.4vw, 42px);
}

body[data-page="open-roles"] .careers-section-heading h2,
body[data-page="open-roles"] .careers-story-copy h2 {
  max-width: 780px;
  margin: 0;
  color: #0f0f10 !important;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.4vw, 3.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

body[data-page="open-roles"] .careers-track-grid-final {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
}

body[data-page="open-roles"] .careers-role-grid-final {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
}

body[data-page="open-roles"] .careers-track-card-final,
body[data-page="open-roles"] .careers-role-card-final {
  min-height: 0 !important;
  display: block;
  padding: clamp(26px, 3.2vw, 38px) !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  background: #fbfaf7 !important;
  box-shadow: none;
}

body[data-page="open-roles"] .careers-track-card-final:hover,
body[data-page="open-roles"] .careers-role-card-final:hover {
  transform: translateY(-2px);
  border-color: rgba(0,0,0,0.14) !important;
  background: #ffffff !important;
}

body[data-page="open-roles"] .careers-track-card-final h3,
body[data-page="open-roles"] .careers-role-card-final h3 {
  margin: 0 0 16px;
  color: #0f0f10 !important;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.058em;
}

body[data-page="open-roles"] .careers-track-card-final p,
body[data-page="open-roles"] .careers-role-card-final p,
body[data-page="open-roles"] .careers-role-meta {
  max-width: 560px;
  margin: 0;
  color: rgba(0,0,0,0.68) !important;
  font-size: 15px;
  line-height: 1.68;
}

body[data-page="open-roles"] .careers-role-meta {
  color: rgba(0,0,0,0.52) !important;
  font-family: var(--font-mono);
  font-size: 11px !important;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="open-roles"] .careers-story-wrap {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

body[data-page="open-roles"] .careers-story-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 700px);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

body[data-page="open-roles"] .careers-story-card:nth-child(even) {
  grid-template-columns: minmax(0, 700px) minmax(220px, 320px);
}

body[data-page="open-roles"] .careers-story-card:nth-child(even) .careers-story-image {
  grid-column: 2;
  grid-row: 1;
}

body[data-page="open-roles"] .careers-story-card:nth-child(even) .careers-story-copy {
  grid-column: 1;
  grid-row: 1;
}

body[data-page="open-roles"] .careers-story-image {
  margin: 0;
  width: 100%;
  max-width: 320px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fbfaf7;
}

body[data-page="open-roles"] .careers-story-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(100%);
}

body[data-page="open-roles"] .careers-story-copy p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(0,0,0,0.72) !important;
  font-size: clamp(1.02rem, 1.18vw, 1.13rem);
  line-height: 1.72;
}

body[data-page="open-roles"] .careers-card-divider,
body[data-page="open-roles"] .careers-final-cta {
  display: none !important;
  border: 0 !important;
}

body[data-page="open-roles"] .site-footer,
body[data-page="open-roles"] .footer-bottom {
  border-top: 0 !important;
}

@media (max-width: 980px) {
  body[data-page="open-roles"] .careers-track-grid-final,
  body[data-page="open-roles"] .careers-role-grid-final,
  body[data-page="open-roles"] .careers-story-card,
  body[data-page="open-roles"] .careers-story-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  body[data-page="open-roles"] .careers-story-card:nth-child(even) .careers-story-image,
  body[data-page="open-roles"] .careers-story-card:nth-child(even) .careers-story-copy {
    grid-column: auto;
    grid-row: auto;
  }

  body[data-page="open-roles"] .careers-story-image {
    max-width: 360px;
  }
}

@media (max-width: 720px) {
  body[data-page="open-roles"] .careers-hero-final {
    padding: 76px 0 54px !important;
  }

  body[data-page="open-roles"] .careers-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.4rem);
  }

  body[data-page="open-roles"] .careers-lead {
    margin-top: 20px;
    font-size: 1.02rem;
    line-height: 1.62;
  }

  body[data-page="open-roles"] .careers-section-final {
    padding: 46px 0 !important;
  }

  body[data-page="open-roles"] .careers-story-section {
    padding-bottom: 84px !important;
  }

  body[data-page="open-roles"] .careers-track-card-final,
  body[data-page="open-roles"] .careers-role-card-final {
    padding: 24px !important;
  }
}

body[data-page="open-roles"] .site-header {
  border-bottom: 0 !important;
}

/* --- Careers page refinements: aligned headings + compact research area cards --- */
body[data-page="open-roles"] .careers-hero-inner,
body[data-page="open-roles"] .careers-roles-inner,
body[data-page="open-roles"] .careers-section-heading,
body[data-page="open-roles"] .careers-story-wrap {
  max-width: 1120px;
}

body[data-page="open-roles"] .careers-track-grid-detailed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.8vw, 34px);
  align-items: start;
}

body[data-page="open-roles"] .careers-track-card-detailed {
  min-height: 0 !important;
  padding: clamp(30px, 3vw, 40px) !important;
  background: #fffdfa !important;
  border: 0 !important;
  box-shadow: 0 14px 36px rgba(15, 15, 16, 0.035);
}

body[data-page="open-roles"] .careers-track-card-detailed:hover {
  transform: translateY(-2px);
  background: #fffdfa !important;
  box-shadow: 0 16px 40px rgba(15, 15, 16, 0.05);
  border: 0 !important;
}

body[data-page="open-roles"] .careers-track-card-detailed .careers-card-kicker {
  margin: 0 0 24px;
  color: rgba(82, 53, 33, 0.92) !important;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

body[data-page="open-roles"] .careers-track-card-detailed h3 {
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

body[data-page="open-roles"] .careers-track-intro {
  margin: 0 0 32px !important;
  max-width: 760px !important;
  color: rgba(0, 0, 0, 0.73) !important;
  font-size: clamp(1rem, 1.22vw, 1.12rem) !important;
  line-height: 1.72 !important;
}

body[data-page="open-roles"] .careers-track-card-detailed .careers-list-block {
  margin-top: 28px;
}

body[data-page="open-roles"] .careers-track-card-detailed .careers-list-block:first-of-type {
  margin-top: 0;
}

body[data-page="open-roles"] .careers-track-card-detailed .careers-list-block p {
  margin: 0 0 18px;
  color: rgba(82, 53, 33, 0.92) !important;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.30em;
  text-transform: uppercase;
}

body[data-page="open-roles"] .careers-track-card-detailed .careers-list-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="open-roles"] .careers-track-card-detailed .careers-list-block li {
  position: relative;
  margin: 0;
  padding: 0 0 0 24px;
  color: rgba(0, 0, 0, 0.76) !important;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.66;
}

body[data-page="open-roles"] .careers-track-card-detailed .careers-list-block li + li {
  margin-top: 14px;
}

body[data-page="open-roles"] .careers-track-card-detailed .careers-list-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82em;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
}

body[data-page="open-roles"] .careers-track-card-detailed .careers-list-block.muted li {
  color: rgba(0, 0, 0, 0.72) !important;
}

body[data-page="open-roles"] .careers-role-card-final {
  padding: 24px 24px 22px !important;
}

body[data-page="open-roles"] .careers-story-wrap {
  display: grid;
  gap: clamp(34px, 4vw, 48px);
}

body[data-page="open-roles"] .careers-story-card,
body[data-page="open-roles"] .careers-story-card:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

body[data-page="open-roles"] .careers-story-card:nth-child(even) .careers-story-image,
body[data-page="open-roles"] .careers-story-card:nth-child(even) .careers-story-copy {
  grid-column: auto;
  grid-row: auto;
}

body[data-page="open-roles"] .careers-story-copy {
  max-width: 780px;
}

body[data-page="open-roles"] .careers-story-copy h2 {
  margin: 0;
}

body[data-page="open-roles"] .careers-story-copy p {
  margin-top: 16px;
  max-width: 760px;
}

body[data-page="open-roles"] .careers-story-image {
  max-width: 220px;
  border: 0;
  box-shadow: 0 14px 32px rgba(15, 15, 16, 0.035);
}

@media (max-width: 980px) {
  body[data-page="open-roles"] .careers-track-grid-detailed,
  body[data-page="open-roles"] .careers-story-card,
  body[data-page="open-roles"] .careers-story-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  body[data-page="open-roles"] .careers-story-image {
    max-width: 280px;
  }
}

@media (max-width: 720px) {
  body[data-page="open-roles"] .careers-track-card-detailed {
    padding: 24px !important;
  }

  body[data-page="open-roles"] .careers-track-card-detailed h3 {
    font-size: clamp(2.2rem, 12vw, 3.3rem);
  }

  body[data-page="open-roles"] .careers-track-intro,
  body[data-page="open-roles"] .careers-track-card-detailed .careers-list-block li {
    font-size: 1rem !important;
  }
}

/* --- Careers open roles refinement: eyebrow + slim horizontal cards --- */
body[data-page="open-roles"] .careers-section-heading-eyebrow-only {
  margin-bottom: 18px;
}

body[data-page="open-roles"] .careers-section-heading-eyebrow-only .careers-card-kicker {
  margin: 0;
  color: rgba(82, 53, 33, 0.92) !important;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.30em;
  text-transform: uppercase;
}

body[data-page="open-roles"] .careers-role-list-refined {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
}

body[data-page="open-roles"] .careers-role-card-horizontal {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 18px 22px !important;
  border: 1px solid rgba(0, 0, 0, 0.10) !important;
  background: rgba(255,255,255,0.88) !important;
  box-shadow: none !important;
  min-height: 0 !important;
}

body[data-page="open-roles"] .careers-role-card-horizontal:hover {
  transform: none;
  border-color: rgba(0, 0, 0, 0.18) !important;
  background: #ffffff !important;
}

body[data-page="open-roles"] .careers-role-card-horizontal h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #0f0f10 !important;
}

body[data-page="open-roles"] .careers-role-title-wrap {
  min-width: 0;
}

body[data-page="open-roles"] .careers-role-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

body[data-page="open-roles"] .careers-role-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

body[data-page="open-roles"] .careers-role-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  color: rgba(0, 0, 0, 0.62);
  background: rgba(251, 250, 247, 0.9);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

body[data-page="open-roles"] .careers-role-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  color: #0f0f10;
  background: transparent;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

body[data-page="open-roles"] .careers-role-apply:hover,
body[data-page="open-roles"] .careers-role-apply:focus-visible {
  border-color: rgba(0, 0, 0, 0.28);
  background: #0f0f10;
  color: #ffffff;
}

@media (max-width: 980px) {
  body[data-page="open-roles"] .careers-role-card-horizontal {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body[data-page="open-roles"] .careers-role-right {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  body[data-page="open-roles"] .careers-role-card-horizontal {
    padding: 16px 18px !important;
  }

  body[data-page="open-roles"] .careers-role-tag {
    min-height: 26px;
    font-size: 9.5px;
  }

  body[data-page="open-roles"] .careers-role-apply {
    width: 100%;
  }
}

/* --- Careers story block: restored alternating image/text layout --- */
body[data-page="open-roles"] .careers-story-card,
body[data-page="open-roles"] .careers-story-card:nth-child(even) {
  display: grid;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

body[data-page="open-roles"] .careers-story-card {
  grid-template-columns: minmax(240px, 360px) minmax(0, 720px);
}

body[data-page="open-roles"] .careers-story-card:nth-child(even) {
  grid-template-columns: minmax(0, 720px) minmax(240px, 360px);
}

body[data-page="open-roles"] .careers-story-card:nth-child(odd) .careers-story-image {
  grid-column: 1;
  grid-row: 1;
}

body[data-page="open-roles"] .careers-story-card:nth-child(odd) .careers-story-copy {
  grid-column: 2;
  grid-row: 1;
}

body[data-page="open-roles"] .careers-story-card:nth-child(even) .careers-story-copy {
  grid-column: 1;
  grid-row: 1;
}

body[data-page="open-roles"] .careers-story-card:nth-child(even) .careers-story-image {
  grid-column: 2;
  grid-row: 1;
}

body[data-page="open-roles"] .careers-story-image {
  width: 100%;
  max-width: 360px;
  border: 0 !important;
  box-shadow: none;
  background: transparent;
}

body[data-page="open-roles"] .careers-story-image img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  body[data-page="open-roles"] .careers-story-card,
  body[data-page="open-roles"] .careers-story-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  body[data-page="open-roles"] .careers-story-card:nth-child(odd) .careers-story-image,
  body[data-page="open-roles"] .careers-story-card:nth-child(odd) .careers-story-copy,
  body[data-page="open-roles"] .careers-story-card:nth-child(even) .careers-story-copy,
  body[data-page="open-roles"] .careers-story-card:nth-child(even) .careers-story-image {
    grid-column: auto;
    grid-row: auto;
  }

  body[data-page="open-roles"] .careers-story-image {
    max-width: 360px;
  }
}

/* --- Header restructuring: logo left, structured nav center-right, Ask Noemir right --- */
.site-header .nav-wrap.container,
.site-header .nav-wrap {
  display: grid !important;
  grid-template-columns: max-content minmax(0, 1fr) max-content !important;
  align-items: center !important;
  column-gap: clamp(28px, 4vw, 72px) !important;
}

.site-header .brand,
.site-header .brand-with-logo {
  grid-column: 1;
  justify-self: start;
  align-self: center;
}

.site-header .site-nav.site-nav-structured {
  grid-column: 2;
  justify-self: center;
  align-self: center;
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  width: auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, max-content);
  align-items: start;
  justify-content: center;
  gap: clamp(40px, 6vw, 92px);
  margin-left: clamp(28px, 3vw, 56px);
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-header .site-nav.site-nav-structured .nav-column {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: max-content;
}

.site-header .site-nav.site-nav-structured a,
.site-header .site-nav.site-nav-structured .nav-parent {
  margin: 0;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(242, 239, 232, 0.92);
  font-size: clamp(0.98rem, 1.08vw, 1.08rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 560;
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

.site-header .site-nav.site-nav-structured a:hover,
.site-header .site-nav.site-nav-structured a:focus-visible,
.site-header .site-nav.site-nav-structured a.active,
.site-header .site-nav.site-nav-structured .nav-parent:hover,
.site-header .site-nav.site-nav-structured .nav-parent:focus-visible,
.site-header .site-nav.site-nav-structured .nav-parent.active {
  color: #ffffff;
  opacity: 1;
  outline: none;
}

.site-header .site-nav.site-nav-structured .nav-group-details {
  position: relative;
}

.site-header .site-nav.site-nav-structured .nav-group-details > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header .site-nav.site-nav-structured .nav-group-details > summary::-webkit-details-marker,
.site-header .site-nav.site-nav-structured .nav-group-details > summary::marker {
  display: none;
  content: '';
}

.site-header .site-nav.site-nav-structured .nav-parent::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -2px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.55;
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-header .site-nav.site-nav-structured .nav-group-details[open] > .nav-parent::after {
  transform: rotate(225deg) translate(-1px, -1px);
  opacity: 0.85;
}

.site-header .site-nav.site-nav-structured .nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: auto;
  z-index: 65;
  min-width: 214px;
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(242, 239, 232, 0.14);
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.30);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-header .site-nav.site-nav-structured .nav-group-details[open] > .nav-dropdown,
.site-header .site-nav.site-nav-structured .nav-group-details:hover > .nav-dropdown,
.site-header .site-nav.site-nav-structured .nav-group-details:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-header .site-nav.site-nav-structured .nav-dropdown a {
  padding: 0 !important;
  font-size: 0.95rem;
  line-height: 1.35;
  white-space: nowrap;
}

body.noemir-light-header .site-header .site-nav.site-nav-structured a,
body.noemir-light-header .site-header .site-nav.site-nav-structured .nav-parent,
body[data-page="home"] .site-header .site-nav.site-nav-structured a,
body[data-page="home"] .site-header .site-nav.site-nav-structured .nav-parent,
body[data-page="methodology"] .site-header .site-nav.site-nav-structured a,
body[data-page="methodology"] .site-header .site-nav.site-nav-structured .nav-parent,
body[data-page="quantitative-research"] .site-header .site-nav.site-nav-structured a,
body[data-page="quantitative-research"] .site-header .site-nav.site-nav-structured .nav-parent,
body[data-page="equity-research"] .site-header .site-nav.site-nav-structured a,
body[data-page="equity-research"] .site-header .site-nav.site-nav-structured .nav-parent,
body[data-page="archive"] .site-header .site-nav.site-nav-structured a,
body[data-page="archive"] .site-header .site-nav.site-nav-structured .nav-parent,
body[data-page="collective"] .site-header .site-nav.site-nav-structured a,
body[data-page="collective"] .site-header .site-nav.site-nav-structured .nav-parent,
body[data-page="open-roles"] .site-header .site-nav.site-nav-structured a,
body[data-page="open-roles"] .site-header .site-nav.site-nav-structured .nav-parent,
body[data-page="disclosures"] .site-header .site-nav.site-nav-structured a,
body[data-page="disclosures"] .site-header .site-nav.site-nav-structured .nav-parent {
  color: rgba(0, 0, 0, 0.84);
}

body.noemir-light-header .site-header .site-nav.site-nav-structured a:hover,
body.noemir-light-header .site-header .site-nav.site-nav-structured a:focus-visible,
body.noemir-light-header .site-header .site-nav.site-nav-structured a.active,
body.noemir-light-header .site-header .site-nav.site-nav-structured .nav-parent:hover,
body.noemir-light-header .site-header .site-nav.site-nav-structured .nav-parent:focus-visible,
body.noemir-light-header .site-header .site-nav.site-nav-structured .nav-parent.active,
body[data-page="home"] .site-header .site-nav.site-nav-structured a:hover,
body[data-page="home"] .site-header .site-nav.site-nav-structured a:focus-visible,
body[data-page="home"] .site-header .site-nav.site-nav-structured a.active,
body[data-page="home"] .site-header .site-nav.site-nav-structured .nav-parent:hover,
body[data-page="home"] .site-header .site-nav.site-nav-structured .nav-parent:focus-visible,
body[data-page="home"] .site-header .site-nav.site-nav-structured .nav-parent.active,
body[data-page="methodology"] .site-header .site-nav.site-nav-structured a:hover,
body[data-page="methodology"] .site-header .site-nav.site-nav-structured a:focus-visible,
body[data-page="methodology"] .site-header .site-nav.site-nav-structured a.active,
body[data-page="methodology"] .site-header .site-nav.site-nav-structured .nav-parent:hover,
body[data-page="methodology"] .site-header .site-nav.site-nav-structured .nav-parent:focus-visible,
body[data-page="methodology"] .site-header .site-nav.site-nav-structured .nav-parent.active,
body[data-page="quantitative-research"] .site-header .site-nav.site-nav-structured a:hover,
body[data-page="quantitative-research"] .site-header .site-nav.site-nav-structured a:focus-visible,
body[data-page="quantitative-research"] .site-header .site-nav.site-nav-structured a.active,
body[data-page="quantitative-research"] .site-header .site-nav.site-nav-structured .nav-parent:hover,
body[data-page="quantitative-research"] .site-header .site-nav.site-nav-structured .nav-parent:focus-visible,
body[data-page="quantitative-research"] .site-header .site-nav.site-nav-structured .nav-parent.active,
body[data-page="equity-research"] .site-header .site-nav.site-nav-structured a:hover,
body[data-page="equity-research"] .site-header .site-nav.site-nav-structured a:focus-visible,
body[data-page="equity-research"] .site-header .site-nav.site-nav-structured a.active,
body[data-page="equity-research"] .site-header .site-nav.site-nav-structured .nav-parent:hover,
body[data-page="equity-research"] .site-header .site-nav.site-nav-structured .nav-parent:focus-visible,
body[data-page="equity-research"] .site-header .site-nav.site-nav-structured .nav-parent.active,
body[data-page="archive"] .site-header .site-nav.site-nav-structured a:hover,
body[data-page="archive"] .site-header .site-nav.site-nav-structured a:focus-visible,
body[data-page="archive"] .site-header .site-nav.site-nav-structured a.active,
body[data-page="archive"] .site-header .site-nav.site-nav-structured .nav-parent:hover,
body[data-page="archive"] .site-header .site-nav.site-nav-structured .nav-parent:focus-visible,
body[data-page="archive"] .site-header .site-nav.site-nav-structured .nav-parent.active,
body[data-page="collective"] .site-header .site-nav.site-nav-structured a:hover,
body[data-page="collective"] .site-header .site-nav.site-nav-structured a:focus-visible,
body[data-page="collective"] .site-header .site-nav.site-nav-structured a.active,
body[data-page="collective"] .site-header .site-nav.site-nav-structured .nav-parent:hover,
body[data-page="collective"] .site-header .site-nav.site-nav-structured .nav-parent:focus-visible,
body[data-page="collective"] .site-header .site-nav.site-nav-structured .nav-parent.active,
body[data-page="open-roles"] .site-header .site-nav.site-nav-structured a:hover,
body[data-page="open-roles"] .site-header .site-nav.site-nav-structured a:focus-visible,
body[data-page="open-roles"] .site-header .site-nav.site-nav-structured a.active,
body[data-page="open-roles"] .site-header .site-nav.site-nav-structured .nav-parent:hover,
body[data-page="open-roles"] .site-header .site-nav.site-nav-structured .nav-parent:focus-visible,
body[data-page="open-roles"] .site-header .site-nav.site-nav-structured .nav-parent.active,
body[data-page="disclosures"] .site-header .site-nav.site-nav-structured a:hover,
body[data-page="disclosures"] .site-header .site-nav.site-nav-structured a:focus-visible,
body[data-page="disclosures"] .site-header .site-nav.site-nav-structured a.active,
body[data-page="disclosures"] .site-header .site-nav.site-nav-structured .nav-parent:hover,
body[data-page="disclosures"] .site-header .site-nav.site-nav-structured .nav-parent:focus-visible,
body[data-page="disclosures"] .site-header .site-nav.site-nav-structured .nav-parent.active {
  color: #000000;
}

body.noemir-light-header .site-header .site-nav.site-nav-structured .nav-dropdown,
body[data-page="home"] .site-header .site-nav.site-nav-structured .nav-dropdown,
body[data-page="methodology"] .site-header .site-nav.site-nav-structured .nav-dropdown,
body[data-page="quantitative-research"] .site-header .site-nav.site-nav-structured .nav-dropdown,
body[data-page="equity-research"] .site-header .site-nav.site-nav-structured .nav-dropdown,
body[data-page="archive"] .site-header .site-nav.site-nav-structured .nav-dropdown,
body[data-page="collective"] .site-header .site-nav.site-nav-structured .nav-dropdown,
body[data-page="open-roles"] .site-header .site-nav.site-nav-structured .nav-dropdown,
body[data-page="disclosures"] .site-header .site-nav.site-nav-structured .nav-dropdown {
  border-color: rgba(0, 0, 0, 0.10);
  background: rgba(250, 249, 246, 0.98);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

body.noemir-light-header .site-header .site-nav.site-nav-structured .nav-dropdown a,
body[data-page="home"] .site-header .site-nav.site-nav-structured .nav-dropdown a,
body[data-page="methodology"] .site-header .site-nav.site-nav-structured .nav-dropdown a,
body[data-page="quantitative-research"] .site-header .site-nav.site-nav-structured .nav-dropdown a,
body[data-page="equity-research"] .site-header .site-nav.site-nav-structured .nav-dropdown a,
body[data-page="archive"] .site-header .site-nav.site-nav-structured .nav-dropdown a,
body[data-page="collective"] .site-header .site-nav.site-nav-structured .nav-dropdown a,
body[data-page="open-roles"] .site-header .site-nav.site-nav-structured .nav-dropdown a,
body[data-page="disclosures"] .site-header .site-nav.site-nav-structured .nav-dropdown a {
  color: rgba(0, 0, 0, 0.74);
}

body.noemir-light-header .site-header .site-nav.site-nav-structured .nav-dropdown a:hover,
body.noemir-light-header .site-header .site-nav.site-nav-structured .nav-dropdown a.active,
body[data-page="home"] .site-header .site-nav.site-nav-structured .nav-dropdown a:hover,
body[data-page="home"] .site-header .site-nav.site-nav-structured .nav-dropdown a.active,
body[data-page="methodology"] .site-header .site-nav.site-nav-structured .nav-dropdown a:hover,
body[data-page="methodology"] .site-header .site-nav.site-nav-structured .nav-dropdown a.active,
body[data-page="quantitative-research"] .site-header .site-nav.site-nav-structured .nav-dropdown a:hover,
body[data-page="quantitative-research"] .site-header .site-nav.site-nav-structured .nav-dropdown a.active,
body[data-page="equity-research"] .site-header .site-nav.site-nav-structured .nav-dropdown a:hover,
body[data-page="equity-research"] .site-header .site-nav.site-nav-structured .nav-dropdown a.active,
body[data-page="archive"] .site-header .site-nav.site-nav-structured .nav-dropdown a:hover,
body[data-page="archive"] .site-header .site-nav.site-nav-structured .nav-dropdown a.active,
body[data-page="collective"] .site-header .site-nav.site-nav-structured .nav-dropdown a:hover,
body[data-page="collective"] .site-header .site-nav.site-nav-structured .nav-dropdown a.active,
body[data-page="open-roles"] .site-header .site-nav.site-nav-structured .nav-dropdown a:hover,
body[data-page="open-roles"] .site-header .site-nav.site-nav-structured .nav-dropdown a.active,
body[data-page="disclosures"] .site-header .site-nav.site-nav-structured .nav-dropdown a:hover,
body[data-page="disclosures"] .site-header .site-nav.site-nav-structured .nav-dropdown a.active {
  color: #000000;
}

@media (max-width: 1120px) {
  .site-header .site-nav.site-nav-structured {
    gap: clamp(24px, 3vw, 42px);
    margin-left: clamp(14px, 2vw, 24px);
  }
}

@media (max-width: 980px) {
  .site-header .nav-wrap.container,
  .site-header .nav-wrap {
    grid-template-columns: minmax(0, 1fr) max-content !important;
    row-gap: 14px !important;
    column-gap: 18px !important;
  }

  .site-header .brand,
  .site-header .brand-with-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header .site-nav.site-nav-structured {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    margin-left: 0;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .site-header .site-nav.site-nav-structured .nav-column {
    min-width: 0;
  }

  .site-header .site-nav.site-nav-structured .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 10px 0 0 14px;
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
}

@media (max-width: 640px) {
  .site-header .site-nav.site-nav-structured {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-header .site-nav.site-nav-structured a,
  .site-header .site-nav.site-nav-structured .nav-parent {
    font-size: 0.96rem;
  }
}

/* --- Disclosure page refinement: light vertical grid, compact rhythm, no repeated eyebrows --- */
body[data-page="disclosures"] {
  background-color: #f6f5f2 !important;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(14.285% - 1px),
    rgba(0,0,0,0.075) calc(14.285% - 1px),
    rgba(0,0,0,0.075) 14.285%
  ) !important;
  color: #111111 !important;
}

body[data-page="disclosures"]::before {
  display: none !important;
}

body[data-page="disclosures"] .site-header {
  background: rgba(246, 245, 242, 0.92) !important;
  border-bottom-color: rgba(0,0,0,0.08) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body[data-page="disclosures"] .brand-text,
body[data-page="disclosures"] .site-nav a,
body[data-page="disclosures"] .nav-parent,
body[data-page="disclosures"] .nav-dropdown a {
  color: #111111 !important;
}

body[data-page="disclosures"] .disclosure-page,
body[data-page="disclosures"] .disclosure-hero,
body[data-page="disclosures"] .disclosure-copy-section {
  background: transparent !important;
}

body[data-page="disclosures"] .disclosure-hero {
  min-height: auto !important;
  display: block !important;
  padding: clamp(76px, 8vw, 112px) 0 clamp(34px, 4vw, 54px) !important;
  border-bottom: 0 !important;
}

body[data-page="disclosures"] .disclosure-hero-inner,
body[data-page="disclosures"] .disclosure-copy-wrap {
  max-width: 1040px;
}

body[data-page="disclosures"] .eyebrow,
body[data-page="disclosures"] .disclosure-section-label {
  display: none !important;
}

body[data-page="disclosures"] .disclosure-hero h1 {
  max-width: 920px;
  color: #0f0f10 !important;
  font-size: clamp(4rem, 8vw, 8.4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

body[data-page="disclosures"] .disclosure-hero-lead {
  max-width: 720px;
  margin: 22px 0 0 !important;
  color: rgba(0,0,0,0.72) !important;
  font-size: clamp(1.04rem, 1.26vw, 1.18rem);
  line-height: 1.64;
}

body[data-page="disclosures"] .disclosure-copy-section {
  padding: clamp(22px, 3vw, 38px) 0 clamp(82px, 8vw, 122px) !important;
}

body[data-page="disclosures"] .disclosure-text-block {
  max-width: 900px;
  padding: clamp(30px, 3.6vw, 48px) 0 !important;
  border-top: 1px solid rgba(0,0,0,0.075) !important;
}

body[data-page="disclosures"] .disclosure-text-block:first-child {
  border-top: 0 !important;
  padding-top: 0 !important;
}

body[data-page="disclosures"] .disclosure-text-block h2 {
  max-width: 780px;
  margin: 0 0 14px !important;
  color: #0f0f10 !important;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.8vw, 3.3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.052em;
}

body[data-page="disclosures"] .disclosure-text-block p:last-child {
  max-width: 820px;
  margin: 0 !important;
  color: rgba(0,0,0,0.72) !important;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.72;
}

@media (max-width: 900px) {
  body[data-page="disclosures"] {
    background-image: repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(50% - 0.5px),
      rgba(0,0,0,0.075) calc(50% - 0.5px),
      rgba(0,0,0,0.075) 50%
    ) !important;
  }
}

@media (max-width: 720px) {
  body[data-page="disclosures"] .disclosure-hero {
    padding: 58px 0 34px !important;
  }

  body[data-page="disclosures"] .disclosure-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.4rem);
  }

  body[data-page="disclosures"] .disclosure-text-block {
    padding: 28px 0 !important;
  }
}

/* --- Header dropdown readability + centered nav adjustment --- */
.site-header .site-nav.site-nav-structured {
  margin-left: clamp(120px, 8vw, 176px) !important;
}

.site-header .site-nav.site-nav-structured .nav-dropdown {
  border-color: rgba(0,0,0,0.10) !important;
  background: rgba(250,249,246,0.985) !important;
  box-shadow: 0 18px 42px rgba(0,0,0,0.12) !important;
}

.site-header .site-nav.site-nav-structured .nav-dropdown a {
  color: rgba(0,0,0,0.78) !important;
}

.site-header .site-nav.site-nav-structured .nav-dropdown a:hover,
.site-header .site-nav.site-nav-structured .nav-dropdown a:focus-visible,
.site-header .site-nav.site-nav-structured .nav-dropdown a.active {
  color: #000000 !important;
}

@media (max-width: 1120px) {
  .site-header .site-nav.site-nav-structured {
    margin-left: clamp(36px, 5vw, 72px) !important;
  }
}

@media (max-width: 980px) {
  .site-header .site-nav.site-nav-structured {
    margin-left: 0 !important;
  }
}

/* --- Landing hero title cleanup: no shadow, lines only inside letters --- */
body[data-page="home"] .home-boutique-hero__title-video {
  position: relative;
  isolation: isolate;
  color: #0a0a0b !important;
  -webkit-text-fill-color: #0a0a0b !important;
  background: none !important;
  text-shadow: none !important;
  filter: none !important;
}

body[data-page="home"] .home-boutique-hero__title-video::before {
  content: none !important;
  display: none !important;
}

body[data-page="home"] .home-boutique-hero__title-video::after {
  content: attr(data-text) !important;
  position: absolute;
  inset: 0;
  color: transparent;
  background:
    linear-gradient(90deg, transparent 0 13.2%, rgba(255,255,255,0.98) 13.2% 13.42%, transparent 13.42% 100%),
    linear-gradient(90deg, transparent 0 31.1%, rgba(255,255,255,0.94) 31.1% 31.3%, transparent 31.3% 100%),
    linear-gradient(90deg, transparent 0 48.9%, rgba(255,255,255,0.94) 48.9% 49.12%, transparent 49.12% 100%),
    linear-gradient(90deg, transparent 0 66.8%, rgba(255,255,255,0.96) 66.8% 67.02%, transparent 67.02% 100%),
    linear-gradient(90deg, transparent 0 83.9%, rgba(255,255,255,0.96) 83.9% 84.12%, transparent 84.12% 100%),
    linear-gradient(0deg, transparent 0 50.1%, rgba(255,255,255,0.82) 50.1% 50.3%, transparent 50.3% 100%),
    linear-gradient(132deg, transparent 0 28.2%, rgba(255,255,255,0.9) 28.2% 28.42%, transparent 28.42% 100%),
    linear-gradient(132deg, transparent 0 72.8%, rgba(255,255,255,0.88) 72.8% 73.02%, transparent 73.02% 100%),
    linear-gradient(48deg, transparent 0 74.1%, rgba(255,255,255,0.88) 74.1% 74.32%, transparent 74.32% 100%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01) 42%, rgba(255,255,255,0) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  pointer-events: none;
}

/* Collective compact contributor cards */
body[data-page="collective"] .collective-areas-section {
  padding: clamp(64px, 8vw, 112px) 0 clamp(92px, 11vw, 156px);
}

body[data-page="collective"] .collective-area-block {
  padding: clamp(58px, 7vw, 92px) 0;
}

body[data-page="collective"] .collective-area-block h2 {
  margin-bottom: clamp(18px, 2.5vw, 24px);
}

body[data-page="collective"] .collective-person-grid {
  gap: clamp(18px, 2.2vw, 26px);
  margin-top: clamp(28px, 3.8vw, 44px);
}

body[data-page="collective"] .collective-person-card {
  min-height: 0;
}

body[data-page="collective"] .collective-person-image {
  aspect-ratio: 4 / 3;
  max-height: 210px;
}

body[data-page="collective"] .collective-person-body {
  padding: clamp(20px, 2.6vw, 28px);
}

body[data-page="collective"] .collective-person-kicker {
  margin-bottom: 14px;
}

body[data-page="collective"] .collective-person-card h3 {
  margin-bottom: 10px;
}

body[data-page="collective"] .collective-person-role {
  margin-bottom: 12px;
}

body[data-page="collective"] .collective-person-education {
  min-height: 0;
}

body[data-page="collective"] .collective-person-focus,
body[data-page="collective"] .collective-placeholder-line {
  display: none;
}

@media (max-width: 720px) {
  body[data-page="collective"] .collective-areas-section {
    padding: 56px 0 92px;
  }

  body[data-page="collective"] .collective-area-block {
    padding: 48px 0;
  }

  body[data-page="collective"] .collective-person-image {
    max-height: 190px;
  }
}


/* Collective tiered structure and balanced portrait proportions */
body[data-page="collective"] .collective-areas-wrap {
  max-width: 900px;
}

body[data-page="collective"] .collective-area-block {
  max-width: 900px;
  padding: clamp(54px, 6.5vw, 86px) 0;
}

body[data-page="collective"] .collective-area-block h2 {
  margin-bottom: clamp(16px, 2vw, 22px);
}

body[data-page="collective"] .collective-person-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  margin-top: clamp(24px, 3.2vw, 38px);
  align-items: stretch;
}

body[data-page="collective"] .collective-person-image {
  aspect-ratio: auto;
  height: clamp(174px, 20vw, 198px);
  max-height: none;
}

body[data-page="collective"] .collective-person-body {
  padding: clamp(18px, 2.2vw, 24px);
}

body[data-page="collective"] .collective-person-kicker {
  margin-bottom: 12px;
}

body[data-page="collective"] .collective-person-card h3 {
  margin-bottom: 9px;
}

body[data-page="collective"] .collective-person-role {
  margin-bottom: 10px;
}

@media (max-width: 720px) {
  body[data-page="collective"] .collective-person-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="collective"] .collective-person-image {
    height: 188px;
  }
}

/* Collective refinement — uncropped portrait framing */
body[data-page="collective"] .collective-areas-wrap,
body[data-page="collective"] .collective-area-block {
  max-width: 820px;
}

body[data-page="collective"] .collective-person-grid {
  max-width: 780px;
  gap: clamp(20px, 2.6vw, 28px);
  margin-top: clamp(30px, 4vw, 44px);
}

body[data-page="collective"] .collective-person-card {
  min-height: auto;
}

body[data-page="collective"] .collective-person-image {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body[data-page="collective"] .collective-person-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

body[data-page="collective"] .collective-person-body {
  padding: clamp(22px, 3vw, 30px);
}

body[data-page="collective"] .collective-person-kicker {
  margin-bottom: 24px;
}

body[data-page="collective"] .collective-person-card h3 {
  margin-bottom: 12px;
}

body[data-page="collective"] .collective-person-role {
  margin-bottom: 18px;
}

@media (max-width: 820px) {
  body[data-page="collective"] .collective-person-grid {
    max-width: 420px;
  }
}

/* Noemir Careers — guided application interview */
body[data-page="open-roles"] .careers-button,
body[data-page="open-roles"] .careers-role-apply {
  font-family: inherit;
  cursor: pointer;
}

body[data-page="open-roles"] .careers-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

body[data-page="open-roles"] .careers-button-secondary {
  color: #0f0f10;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

body[data-page="open-roles"] .careers-button-secondary:hover,
body[data-page="open-roles"] .careers-button-secondary:focus-visible {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.24);
  color: #000000;
}

.career-guide-open {
  overflow: hidden;
}

.career-guide-shell {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: none;
  color: #0f0f10;
}

.career-guide-shell.is-open {
  display: block;
}

.career-guide-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.34);
  backdrop-filter: blur(10px);
}

.career-guide-panel {
  position: absolute;
  inset: auto clamp(14px, 2vw, 28px) clamp(14px, 2vw, 28px) auto;
  width: min(560px, calc(100vw - 28px));
  max-height: min(820px, calc(100vh - 28px));
  display: grid;
  grid-template-rows: auto auto minmax(260px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 26px;
  background:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent calc(25% - 1px),
      rgba(0, 0, 0, 0.045) calc(25% - 1px),
      rgba(0, 0, 0, 0.045) 25%
    ),
    rgba(246, 245, 242, 0.985);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.32);
}

.career-guide-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 24px 12px;
}

.career-guide-kicker {
  margin: 0 0 7px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.52);
}

.career-guide-header h2 {
  margin: 0;
  color: #080808;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.career-guide-close {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: rgba(0, 0, 0, 0.72);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.career-guide-close:hover,
.career-guide-close:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.2);
  color: #000000;
  outline: none;
  transform: rotate(2deg);
}

.career-guide-progress {
  height: 3px;
  margin: 0 24px 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.career-guide-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: #111111;
  transition: width 260ms ease;
}

.career-guide-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 260px;
  overflow-y: auto;
  padding: 0 24px 20px;
  scrollbar-width: thin;
}

.career-guide-message {
  max-width: 94%;
  border-radius: 17px;
  padding: 12px 13px;
  font-size: 0.92rem;
  line-height: 1.48;
  letter-spacing: -0.015em;
}

.career-guide-message-user {
  justify-self: end;
  background: #111111;
  color: #f7f7f4;
  border-bottom-right-radius: 5px;
}

.career-guide-message-bot {
  justify-self: start;
  display: grid;
  gap: 7px;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.78);
  border-bottom-left-radius: 5px;
}

.career-guide-message-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

.career-guide-message-body {
  white-space: pre-wrap;
}

.career-guide-card {
  display: grid;
  gap: 12px;
  width: min(100%, 470px);
  justify-self: start;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.career-guide-consent-line {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.86rem;
  line-height: 1.48;
  letter-spacing: -0.01em;
}

.career-guide-consent-line input {
  margin-top: 2px;
  accent-color: #111111;
}

.career-guide-primary-action,
.career-guide-review-actions button,
.career-guide-role-actions button,
.career-guide-skip,
.career-guide-input-form button {
  font-family: inherit;
  cursor: pointer;
}

.career-guide-primary-action {
  min-height: 40px;
  border: 1px solid #111111;
  border-radius: 999px;
  background: #111111;
  color: #f7f7f4;
  padding: 0 16px;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.career-guide-primary-action:hover,
.career-guide-primary-action:focus-visible {
  background: #000000;
  border-color: #000000;
  outline: none;
  transform: translateY(-1px);
}

.career-guide-inline-notice {
  margin: 0;
  color: rgba(124, 40, 30, 0.92);
  font-size: 0.82rem;
  line-height: 1.35;
}

.career-guide-input-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(246, 245, 242, 0.86);
}

.career-guide-input-form.is-hidden {
  display: none;
}

.career-guide-input-form input,
.career-guide-input-form textarea {
  min-width: 0;
  height: 43px;
  min-height: 43px;
  max-height: 132px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  color: #0d0d0d;
  padding: 11px 14px;
  outline: none;
  font-size: 0.92rem;
  line-height: 1.35;
  resize: none;
  overflow-y: auto;
  font-family: inherit;
}

.career-guide-input-form input:focus,
.career-guide-input-form textarea:focus {
  border-color: rgba(0, 0, 0, 0.36);
  background: #ffffff;
}

.career-guide-input-form button {
  height: 43px;
  border: 1px solid #111111;
  border-radius: 999px;
  background: #111111;
  color: #f7f7f4;
  padding: 0 16px;
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.career-guide-input-form .career-guide-skip {
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.52);
  color: rgba(0, 0, 0, 0.78);
}

.career-guide-role-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: rgba(251, 250, 247, 0.84);
}

.career-guide-role-row.is-prefilled {
  border-color: rgba(0, 0, 0, 0.22);
  background: #ffffff;
}

.career-guide-role-row > span {
  color: #0f0f10;
  font-size: 0.94rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
  font-weight: 620;
}

.career-guide-role-actions {
  display: flex;
  gap: 7px;
  align-items: center;
}

.career-guide-role-actions button,
.career-guide-review-actions button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(0, 0, 0, 0.76);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.career-guide-role-actions button:hover,
.career-guide-role-actions button:focus-visible,
.career-guide-review-actions button:hover,
.career-guide-review-actions button:focus-visible {
  background: #111111;
  border-color: #111111;
  color: #f7f7f4;
  outline: none;
  transform: translateY(-1px);
}

.career-guide-file-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.82rem;
  line-height: 1.4;
}

.career-guide-review-card {
  width: min(100%, 510px);
}

.career-guide-review-row {
  display: grid;
  gap: 3px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.career-guide-review-row span {
  font-family: var(--font-mono);
  color: rgba(0, 0, 0, 0.48);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.career-guide-review-row p {
  margin: 0;
  color: rgba(0, 0, 0, 0.78);
  font-size: 0.91rem;
  line-height: 1.42;
  white-space: pre-wrap;
  word-break: break-word;
}

.career-guide-review-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  padding-top: 2px;
}

.career-guide-review-actions .career-guide-primary-action {
  min-height: 36px;
  padding: 0 14px;
}

body[data-page="open-roles"] .careers-role-apply {
  appearance: none;
}

@media (max-width: 720px) {
  .career-guide-panel {
    inset: auto 10px 10px 10px;
    width: auto;
    max-height: calc(100vh - 20px);
    border-radius: 22px;
  }

  .career-guide-header {
    padding: 20px 18px 11px;
  }

  .career-guide-progress {
    margin-inline: 18px;
  }

  .career-guide-messages {
    padding: 0 18px 18px;
  }

  .career-guide-input-form {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .career-guide-input-form .career-guide-skip {
    grid-column: 1 / -1;
    width: 100%;
  }

  .career-guide-role-row {
    grid-template-columns: 1fr;
  }

  .career-guide-role-actions {
    justify-content: flex-start;
  }
}

body[data-page="open-roles"] .role-entry-note {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 0.58em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.46);
  vertical-align: middle;
}


/* Impressum page - compact legal information layout */
body[data-page="impressum"] {
  background-color: #f6f5f2 !important;
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent calc(14.285% - 1px),
    rgba(0,0,0,0.075) calc(14.285% - 1px),
    rgba(0,0,0,0.075) 14.285%
  ) !important;
  color: #111111 !important;
}

body[data-page="impressum"]::before {
  display: none !important;
}

body[data-page="impressum"] .site-header {
  background: rgba(246, 245, 242, 0.92) !important;
  border-bottom-color: rgba(0,0,0,0.08) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body[data-page="impressum"] .brand-text,
body[data-page="impressum"] .site-nav a,
body[data-page="impressum"] .nav-parent,
body[data-page="impressum"] .nav-dropdown a {
  color: #111111 !important;
}

body[data-page="impressum"] .disclosure-page,
body[data-page="impressum"] .disclosure-hero,
body[data-page="impressum"] .disclosure-copy-section {
  background: transparent !important;
}

body[data-page="impressum"] .disclosure-hero {
  min-height: auto !important;
  display: block !important;
  padding: clamp(76px, 8vw, 112px) 0 clamp(34px, 4vw, 54px) !important;
  border-bottom: 0 !important;
}

body[data-page="impressum"] .disclosure-hero-inner,
body[data-page="impressum"] .disclosure-copy-wrap {
  max-width: 1040px;
}

body[data-page="impressum"] .disclosure-hero h1 {
  max-width: 920px;
  color: #0f0f10 !important;
  font-size: clamp(4rem, 8vw, 8.4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

body[data-page="impressum"] .disclosure-hero-lead {
  max-width: 720px;
  margin: 22px 0 0 !important;
  color: rgba(0,0,0,0.72) !important;
  font-size: clamp(1.04rem, 1.26vw, 1.18rem);
  line-height: 1.64;
}

body[data-page="impressum"] .disclosure-copy-section {
  padding: clamp(22px, 3vw, 38px) 0 clamp(82px, 8vw, 122px) !important;
}

body[data-page="impressum"] .disclosure-text-block {
  max-width: 900px;
  padding: clamp(30px, 3.6vw, 48px) 0 !important;
  border-top: 1px solid rgba(0,0,0,0.075) !important;
}

body[data-page="impressum"] .disclosure-text-block:first-child {
  border-top: 0 !important;
  padding-top: 0 !important;
}

body[data-page="impressum"] .disclosure-text-block h2 {
  max-width: 780px;
  margin: 0 0 14px !important;
  color: #0f0f10 !important;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.8vw, 3.3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.052em;
}

body[data-page="impressum"] .disclosure-text-block p,
body[data-page="impressum"] .disclosure-text-block address {
  max-width: 820px;
  margin: 0 0 12px !important;
  color: rgba(0,0,0,0.72) !important;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  font-style: normal;
  line-height: 1.72;
}

body[data-page="impressum"] .disclosure-text-block p:last-child,
body[data-page="impressum"] .disclosure-text-block address:last-child {
  margin-bottom: 0 !important;
}


body[data-page="impressum"] .site-footer,
body[data-page="impressum"] .site-footer .footer-brand,
body[data-page="impressum"] .site-footer .footer-description,
body[data-page="impressum"] .site-footer .footer-disclaimer,
body[data-page="impressum"] .site-footer .footer-sitemap a,
body[data-page="impressum"] .site-footer .footer-bottom p,
body[data-page="impressum"] .site-footer .legal {
  color: #f4f4f4 !important;
}

@media (max-width: 720px) {
  body[data-page="impressum"] .disclosure-hero {
    padding: 86px 0 44px !important;
  }

  body[data-page="impressum"] .disclosure-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.4rem);
  }

  body[data-page="impressum"] .disclosure-text-block {
    padding: 28px 0 !important;
  }
}


/* v0.7 — page heading harmonization: match Quantitative Research scale and thin serif weight */
body[data-page="methodology"] .methodology-hero h1,
body[data-page="archive"] .archive-video-hero h1,
body[data-page="collective"] .collective-hero h1,
body[data-page="open-roles"] .careers-hero h1,
body[data-page="quantitative-research"] .quant-hero h1,
body[data-page="equity-research"] .quant-hero h1,
body[data-page="disclosures"] .disclosure-hero h1,
body[data-page="impressum"] .disclosure-hero h1 {
  max-width: 980px !important;
  margin: 0 !important;
  font-family: var(--font-serif) !important;
  font-size: clamp(4rem, 8.6vw, 8.8rem) !important;
  font-weight: 400 !important;
  line-height: 0.92 !important;
  letter-spacing: -0.07em !important;
}

@media (max-width: 720px) {
  body[data-page="methodology"] .methodology-hero h1,
  body[data-page="archive"] .archive-video-hero h1,
  body[data-page="collective"] .collective-hero h1,
  body[data-page="open-roles"] .careers-hero h1,
  body[data-page="quantitative-research"] .quant-hero h1,
  body[data-page="equity-research"] .quant-hero h1,
  body[data-page="disclosures"] .disclosure-hero h1,
  body[data-page="impressum"] .disclosure-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.4rem) !important;
  }
}

/* Collective image sizing - full-width portraits */
body[data-page="collective"] .collective-person-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

body[data-page="collective"] .collective-person-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* Collective portrait fix — show full portrait height without vertical crop */
body[data-page="collective"] .collective-person-image {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
}

body[data-page="collective"] .collective-person-image img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* Collective — LinkedIn profile buttons */
body[data-page="collective"] .collective-person-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

body[data-page="collective"] .collective-person-name-row h3 {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}

body[data-page="collective"] .collective-linkedin-button {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 15, 16, 0.18);
  border-radius: 50%;
  color: #0f0f10;
  background: transparent;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

body[data-page="collective"] .collective-linkedin-button svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

body[data-page="collective"] .collective-linkedin-button:hover,
body[data-page="collective"] .collective-linkedin-button:focus-visible {
  color: #ffffff;
  background: #0f0f10;
  border-color: #0f0f10;
  transform: translateY(-1px);
}

body[data-page="collective"] .collective-linkedin-button:focus-visible {
  outline: 2px solid rgba(15, 15, 16, 0.32);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  body[data-page="collective"] .collective-person-name-row {
    gap: 10px;
  }

  body[data-page="collective"] .collective-linkedin-button {
    width: 32px;
    height: 32px;
  }
}

