/* BIGHUB benchmark page: marketing site aesthetic: monochrome, grid, no shadows */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --black: #000000;
  --white: #ffffff;
  /* Same as white so body + alternating sections read as one flat white (no grey/beige banding) */
  --muted: #ffffff;
  --grey: #737373;
  --grey-light: #e5e5e5;
  --line: #000000;
  --bar-baseline: #74aa9c;
  --bar-bighub: #000000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  /* 100vw + spotlight bleed can exceed layout width when a vertical scrollbar exists */
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--black);
  background: var(--white);
}

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

a:hover {
  opacity: 0.7;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
  }
}

.site-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
}

.btn-cta:hover {
  opacity: 0.85;
}

/* Layout */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  border-bottom: 1px solid var(--line);
}

.section--white {
  background: var(--white);
}

.section--muted {
  background: var(--white);
}

/* Hero */
/* Full-width band via normal block layout (avoid 100vw: wider than layout when scrollbar). */
.hero.section {
  width: 100%;
  max-width: none;
}

.hero {
  position: relative;
  overflow: visible;
  min-height: auto;
  padding: 64px 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__inner {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: max(24px, 5vw);
  padding-right: max(24px, 5vw);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hero {
    min-height: 78vh;
    padding: 56px 0 64px;
  }
}

@media (min-width: 1280px) {
  .hero {
    min-height: 85vh;
    padding: 48px 0 56px;
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.88fr);
    gap: clamp(48px, 6vw, 120px);
    align-items: center;
  }
}

/* White fringe follows glyph alpha (drop-shadow), so dots are cleared under letterforms, not whole columns */
.hero__title {
  margin: 0;
  font-size: clamp(30px, 7.05vw, 80px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.035em;
  max-width: min(100%, 28ch);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--white)) drop-shadow(0 0 2px var(--white))
    drop-shadow(0 0 5px var(--white)) drop-shadow(0 0 10px var(--white))
    drop-shadow(0 0 16px var(--white));
}

.hero__title-line {
  display: block;
  line-height: 1.06;
}

.hero__title-line + .hero__title-line {
  margin-top: 0.08em;
}

@media (min-width: 1024px) {
  .hero__title {
    max-width: min(100%, 24ch);
  }
}

.hero__kicker {
  margin: 0 0 clamp(20px, 3vw, 36px);
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--white)) drop-shadow(0 0 2px var(--white))
    drop-shadow(0 0 4px var(--white)) drop-shadow(0 0 7px var(--white))
    drop-shadow(0 0 11px var(--white));
}

.hero__aside {
  padding-top: 0;
}

@media (min-width: 1024px) {
  .hero__aside {
    padding-top: clamp(8px, 2vh, 32px);
    max-width: 42ch;
  }
}

.hero__lead {
  margin: 0 0 14px;
  font-size: clamp(16px, 1.65vw, 21px);
  line-height: 1.55;
  color: var(--grey);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--white)) drop-shadow(0 0 2px var(--white))
    drop-shadow(0 0 4px var(--white)) drop-shadow(0 0 8px var(--white))
    drop-shadow(0 0 13px var(--white));
}

.hero__lead strong {
  color: var(--black);
  font-weight: 600;
}

.hero__hammer {
  margin: 22px 0 clamp(24px, 3vw, 40px);
  font-size: clamp(15px, 1.45vw, 19px);
  line-height: 1.55;
  font-weight: 500;
  color: var(--grey);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--white)) drop-shadow(0 0 2px var(--white))
    drop-shadow(0 0 4px var(--white)) drop-shadow(0 0 8px var(--white))
    drop-shadow(0 0 13px var(--white));
}

.hero__block {
  margin: 0;
  padding: clamp(24px, 3vw, 36px) 0 0 clamp(20px, 2.5vw, 28px);
  border-left: 3px solid var(--black);
}

.hero__block-title {
  margin: 0 0 12px;
  font-size: clamp(11px, 1vw, 12px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--white)) drop-shadow(0 0 2px var(--white))
    drop-shadow(0 0 4px var(--white)) drop-shadow(0 0 7px var(--white))
    drop-shadow(0 0 11px var(--white));
}

.hero__block p {
  margin: 0;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.65;
  color: var(--grey);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--white)) drop-shadow(0 0 2px var(--white))
    drop-shadow(0 0 4px var(--white)) drop-shadow(0 0 8px var(--white))
    drop-shadow(0 0 13px var(--white));
}

.hero__block p strong {
  color: var(--black);
  font-weight: 600;
}

.hero__block-hook {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--black);
}

/* Dot spotlight only on hero + method band; closed before B1 (see index.html). */
.page-spotlight {
  position: relative;
}

.page-spotlight__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--white);
  /* Approximate hero / band split until JS sets exact stops (avoids flash) */
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff min(78vh, 82%),
    #000000 min(78vh, 82%),
    #000000 100%
  );
}

/* Dots between backdrop and text; white drop-shadow on hero/band type clears points under glyphs */
.page-spotlight__field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 1);
}

.page-spotlight__content {
  position: relative;
  z-index: 2;
}

.page-spotlight__content > section.section--white {
  background: transparent;
}

.page-spotlight__content > .band-dark {
  background: transparent;
}

.page-spotlight__content > section {
  position: relative;
}

/* TILE / splits must match hero-spotlight.js (TILE = 520) */
.page-spotlight__spot {
  --spot-tile: 520px;
  --spot-r: 260px;
  --split-top: 520px;
  --split-bottom: 520px;
  position: absolute;
  left: 0;
  top: 0;
  width: var(--spot-tile);
  height: var(--spot-tile);
  will-change: transform;
}

.page-spotlight__ink,
.page-spotlight__paper {
  position: absolute;
  inset: 0;
  background-size: 10px 10px;
  mask-image: radial-gradient(
    circle var(--spot-r) at 50% 50%,
    #000 0,
    #000 108px,
    rgba(0, 0, 0, 0.42) 162px,
    rgba(0, 0, 0, 0.1) 222px,
    rgba(0, 0, 0, 0) var(--spot-r)
  );
  mask-repeat: no-repeat;
  -webkit-mask-image: radial-gradient(
    circle var(--spot-r) at 50% 50%,
    #000 0,
    #000 108px,
    rgba(0, 0, 0, 0.42) 162px,
    rgba(0, 0, 0, 0.1) 222px,
    rgba(0, 0, 0, 0) var(--spot-r)
  );
  -webkit-mask-repeat: no-repeat;
}

.page-spotlight__ink {
  background-image: radial-gradient(rgba(0, 0, 0, 0.38) 1.15px, transparent 1.15px);
}

.page-spotlight__ink--before {
  clip-path: inset(0 0 calc(var(--spot-tile) - var(--split-top)) 0);
}

.page-spotlight__paper {
  background-image: radial-gradient(rgba(255, 255, 255, 0.34) 1.15px, transparent 1.15px);
  clip-path: inset(var(--split-top) 0 calc(var(--spot-tile) - var(--split-bottom)) 0);
}

.page-spotlight__ink--after {
  clip-path: inset(var(--split-bottom) 0 0 0);
}

.page-spotlight:hover .page-spotlight__field {
  opacity: 1;
}

@media (max-width: 1023px) {
  .page-spotlight__field {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-spotlight__field {
    transition: none;
  }
}

/* B1 onward: no dots; centered column, figures centered for scanability */
.benchmark-rest .block {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.benchmark-rest .block__index {
  text-align: center;
}

@media (min-width: 768px) {
  .benchmark-rest .block {
    grid-template-columns: 64px 1fr;
    gap: 32px 40px;
  }

  .benchmark-rest .block__index {
    justify-self: center;
    text-align: center;
  }
}

.benchmark-rest .block__body {
  text-align: center;
}

.benchmark-rest .block__body .prose,
.benchmark-rest .block__body .prose p,
.benchmark-rest .block__body .list-plain,
.benchmark-rest .block__body .list-plain li {
  text-align: left;
}

.benchmark-rest .bar-chart {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  max-width: 100%;
}

.benchmark-rest .ablation {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  max-width: 100%;
  gap: 12px;
}

.benchmark-rest .hbars {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.benchmark-rest .stat-row {
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.benchmark-rest .interpret,
.benchmark-rest .inset {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.benchmark-rest .li-box {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  max-width: 100%;
}

/* Slightly larger type from B2 onward (first section in main = B1 keeps base scale) */
.benchmark-rest > section:nth-of-type(n + 2) .block__index {
  font-size: clamp(36px, 4.6vw, 56px);
}

.benchmark-rest > section:nth-of-type(n + 2) .block__label {
  font-size: 12px;
  letter-spacing: 0.13em;
}

.benchmark-rest > section:nth-of-type(n + 2) .block__title {
  font-size: clamp(26px, 2.9vw, 34px);
}

.benchmark-rest > section:nth-of-type(n + 2) .block__subtitle {
  font-size: 16px;
}

.benchmark-rest > section:nth-of-type(n + 2) .block__scope {
  font-size: 14px;
  margin-bottom: 16px;
}

.benchmark-rest > section:nth-of-type(n + 2) .recovery-stack {
  margin-bottom: 36px;
}

.benchmark-rest > section:nth-of-type(n + 2) .recovery-stack__legend li {
  font-size: 15px;
}

.benchmark-rest > section:nth-of-type(n + 2) .recovery-stack__meta {
  font-size: 12px;
}

.benchmark-rest > section:nth-of-type(n + 2) .block__title--sm {
  font-size: 21px;
}

.benchmark-rest > section:nth-of-type(n + 2) .prose p,
.benchmark-rest > section:nth-of-type(n + 2) .list-plain li {
  font-size: 16px;
}

.benchmark-rest > section:nth-of-type(n + 2) .caption {
  font-size: 15px;
}

.benchmark-rest > section:nth-of-type(n + 2) .interpret__k {
  font-size: 11px;
}

.benchmark-rest > section:nth-of-type(n + 2) .interpret p {
  font-size: 16px;
}

.benchmark-rest > section:nth-of-type(n + 2) .inset__t {
  font-size: 13px;
}

.benchmark-rest > section:nth-of-type(n + 2) .inset p {
  font-size: 16px;
}

.benchmark-rest > section:nth-of-type(n + 2) .stat-delta {
  font-size: 16px;
}

.benchmark-rest > section:nth-of-type(n + 2) .stat-cell__k {
  font-size: 11px;
}

.benchmark-rest > section:nth-of-type(n + 2) .stat-cell__v {
  font-size: 22px;
}

.benchmark-rest > section:nth-of-type(n + 2) .hname {
  font-size: 14px;
}

.benchmark-rest > section:nth-of-type(n + 2) .hpp {
  font-size: 14px;
}

.benchmark-rest > section:nth-of-type(n + 2) .bar-val {
  font-size: 20px;
}

.benchmark-rest > section:nth-of-type(n + 2) .bar-lab {
  font-size: 11px;
}

.benchmark-rest > section:nth-of-type(n + 2) .ab-pct {
  font-size: 14px;
}

.benchmark-rest > section:nth-of-type(n + 2) .ab-lab {
  font-size: 10px;
}

/* Section index */
.block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 64px 0;
}

@media (min-width: 768px) {
  .block {
    grid-template-columns: 100px 1fr;
    gap: 48px;
    padding: 80px 0;
  }
}

.block__index {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.block__body {
  min-width: 0;
}

.block__label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.block__title {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.block__subtitle {
  margin: -8px 0 24px;
  font-size: 14px;
  color: var(--grey);
}

.block__scope {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--grey);
}

.block__title--sm {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* B4 · recovery: stacked split of baseline errors */
.recovery-stack {
  margin: 6px auto 32px;
  max-width: 22rem;
}

.recovery-stack__track {
  display: flex;
  width: 100%;
  height: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--white);
}

.recovery-stack__segment {
  height: 100%;
  min-width: 4px;
  box-sizing: border-box;
}

.recovery-stack__segment--correct {
  background: var(--bar-bighub);
}

.recovery-stack__segment--open {
  background: var(--grey-light);
  border-left: 1px solid var(--line);
}

.recovery-stack__meta {
  margin: 10px 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.recovery-stack__legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.recovery-stack__legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--grey);
}

.recovery-stack__swatch {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  border: 1px solid var(--line);
}

.recovery-stack__swatch--correct {
  background: var(--bar-bighub);
}

.recovery-stack__swatch--open {
  background: var(--grey-light);
}

/* Type */
.prose p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--grey);
}

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

.prose strong,
.prose .on {
  color: var(--black);
  font-weight: 600;
}

.list-plain {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.list-plain li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey);
}

.list-plain li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 1px;
  background: var(--black);
}

.callout {
  margin: 24px 0 0;
  padding: 20px 24px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black);
}

.caption {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--grey);
}

.caption::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 1px;
  background: var(--black);
  vertical-align: middle;
  margin-right: 10px;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 24px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.stat-cell {
  padding: 20px 24px;
  background: var(--white);
}

.stat-cell__k {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

.stat-cell__v {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat-delta {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
}

/* Bar charts */
.bar-chart {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 48px;
  min-height: 200px;
  padding: 32px 0 8px;
  border-top: 1px solid var(--grey-light);
  margin-top: 8px;
}

.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 88px;
}

.bar-wrap {
  height: 160px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 1px solid var(--black);
}

.bar {
  width: 56px;
  border-radius: 0;
}

.bar--muted {
  background: var(--bar-baseline);
}

.bar--solid {
  background: var(--bar-bighub);
}

.bar-val {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
}

.bar-lab {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

/* B1 · split layout (hero / band-dark rhythm: copy left, figures right) */
.b1-section__block.block {
  max-width: min(100%, 1180px);
}

.b1-section .block__body {
  max-width: none;
  text-align: left;
}

.benchmark-rest .b1-section .block__body {
  text-align: left;
}

.b1-split {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
  width: 100%;
}

@media (min-width: 900px) {
  .b1-split {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(24px, 3.5vw, 48px);
  }
}

.b1-split__copy {
  flex: 1 1 auto;
  min-width: 0;
}

@media (min-width: 900px) {
  .b1-split__copy {
    flex: 1 1 42%;
    max-width: min(100%, 32rem);
  }
}

.b1-split__copy .block__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.b1-split__copy .block__subtitle {
  margin: -6px 0 20px;
  font-size: clamp(13px, 1.15vw, 15px);
  line-height: 1.45;
}

.b1-split__copy .b1-section__lede {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.62;
}

.b1-split__figures.b1-figures-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.b1-figures-grid__head--a {
  display: none;
}

.b1-figures-grid__head--b {
  order: 2;
}

.b1-figures-grid__chart--a {
  order: 1;
}

.b1-figures-grid__chart--b {
  order: 3;
}

.b1-figures-grid__head--b {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-light);
}

.b1-figures-grid__head--b .b1-section__h3 {
  margin: 0 0 4px;
  font-size: clamp(16px, 1.55vw, 18px);
}

.b1-figures-grid__head--b .b1-panel__lede {
  margin: 0;
  max-width: none;
  line-height: 1.45;
}

.b1-panel__lede {
  margin-bottom: 18px;
  max-width: none;
}

.b1-figures-grid__chart .b1-stat {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.b1-figures-grid__chart .b1-caption {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 48ch;
}

.benchmark-rest .b1-section .b1-figures-grid__chart .bar-chart {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 900px) {
  .b1-split__figures.b1-figures-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: clamp(16px, 2.5vw, 36px);
    row-gap: 6px;
    align-items: start;
    flex: 1 1 58%;
    max-width: none;
  }

  .b1-figures-grid__head--a {
    display: block;
    grid-column: 1;
    grid-row: 1;
  }

  .b1-figures-grid__head--b {
    order: unset;
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .b1-figures-grid__chart--a {
    order: unset;
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
  }

  .b1-figures-grid__chart--b {
    order: unset;
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
  }

  /* Same bar track height so both charts share one baseline */
  .b1-figures-grid .bar-chart--b1 .bar-wrap,
  .b1-figures-grid .bar-chart--b1-rubric .bar-wrap {
    height: 140px;
  }

  /* Same outer padding + margin so both bar rows share one baseline (title is row 1) */
  .b1-figures-grid .bar-chart--b1,
  .b1-figures-grid .bar-chart--b1-rubric {
    min-height: 0;
    margin-top: 0;
    padding: 12px 0 2px;
    border-top: none;
  }
}

.b1-section__meta {
  margin: -4px 0 0;
  color: var(--grey);
}

.b1-split__copy .b1-section__meta {
  margin: -8px 0 0;
}

.b1-section__lede {
  margin: 0 0 22px;
  max-width: 38ch;
  font-size: 15px;
  line-height: 1.62;
  color: var(--grey);
}

.b1-section__lede strong {
  color: var(--black);
  font-weight: 600;
}

.b1-section__lede--tight {
  margin-bottom: 16px;
}

.b1-section__h3 {
  margin: 48px 0 8px;
  font-size: clamp(17px, 1.75vw, 20px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: var(--black);
}

.b1-chart {
  margin: 0;
}

.b1-stat {
  margin-top: 18px;
  text-align: center;
}

.b1-caption::before {
  display: none;
}

.b1-caption {
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  max-width: 42ch;
  text-align: center;
}

.bar-chart--b1 {
  min-height: 0;
  margin-top: 4px;
  padding: 26px 0 2px;
  border-top: none;
}

.bar-chart--b1-rubric {
  padding-top: 22px;
  min-height: 164px;
}

.bar-chart--b1-rubric .bar-wrap {
  height: 128px;
}

.bar-chart--b1-rubric .bar {
  width: 48px;
}

.bar-chart--b1-rubric .bar-val {
  font-size: 17px;
}

@media (prefers-reduced-motion: no-preference) {
  .b1-section .b1-bar {
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 1.12s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .b1-section .js-chart-reveal.is-revealed .bar-group:nth-child(1) .b1-bar {
    transform: scaleY(1);
  }

  .b1-section .js-chart-reveal.is-revealed .bar-group:nth-child(2) .b1-bar {
    transform: scaleY(1);
    transition-delay: 0.18s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .b1-section .b1-bar {
    transform: none;
  }
}

/* B2 · split layout (mirror B1: headline left, charts right) */
.b2-section__block.block {
  max-width: min(100%, 1180px);
}

.b2-section .block__body {
  max-width: none;
  text-align: left;
}

.benchmark-rest .b2-section .block__body {
  text-align: left;
}

.b2-split {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
  width: 100%;
}

@media (min-width: 900px) {
  .b2-split {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(24px, 3.5vw, 48px);
  }
}

.b2-split__copy {
  flex: 1 1 auto;
  min-width: 0;
}

@media (min-width: 900px) {
  .b2-split__copy {
    flex: 1 1 42%;
    max-width: min(100%, 32rem);
  }
}

/* Beat .benchmark-rest > section:nth-of-type(n + 2) .block__title (B1 is section 1 and skips that rule) */
.benchmark-rest .b2-section .b2-split__copy .block__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.benchmark-rest .b2-section .b2-split__copy .block__subtitle {
  margin: -6px 0 0;
  font-size: clamp(13px, 1.15vw, 15px);
  line-height: 1.45;
  color: var(--grey);
}

.b2-split__figures {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

@media (min-width: 900px) {
  .b2-split__figures {
    flex: 1 1 58%;
    max-width: none;
  }
}

.benchmark-rest .b2-section .hbars {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  width: 100%;
}

@media (max-width: 899px) {
  .benchmark-rest .b2-section .hbars {
    margin-top: 4px;
  }
}

.b2-caption {
  margin-top: 20px;
  margin-left: 0;
  margin-right: 0;
  max-width: 48ch;
  text-align: left;
  padding-left: 0;
}

.b2-caption::before {
  display: none;
}

.benchmark-rest .b2-section .b2-note {
  margin: 24px 0 0;
  padding: 0;
  border: none;
  max-width: 48ch;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.62;
  font-weight: 400;
  color: var(--grey);
  text-align: left;
}

/* B3 · split layout (same rhythm as B2) */
.b3-section__block.block {
  max-width: min(100%, 1180px);
}

.b3-section .block__body {
  max-width: none;
  text-align: left;
}

.benchmark-rest .b3-section .block__body {
  text-align: left;
}

.b3-split {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
  width: 100%;
}

@media (min-width: 900px) {
  .b3-split {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(24px, 3.5vw, 48px);
  }
}

.b3-split__copy {
  flex: 1 1 auto;
  min-width: 0;
}

@media (min-width: 900px) {
  .b3-split__copy {
    flex: 1 1 42%;
    max-width: min(100%, 32rem);
  }
}

.benchmark-rest .b3-section .b3-split__copy .block__title {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.benchmark-rest .b3-section .b3-split__copy .block__subtitle {
  margin: -6px 0 0;
  font-size: clamp(13px, 1.15vw, 15px);
  line-height: 1.45;
  color: var(--grey);
}

.b3-split__figures {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

@media (min-width: 900px) {
  .b3-split__figures {
    flex: 1 1 58%;
    max-width: none;
  }
}

.benchmark-rest .b3-section .b3-split__figures .ablation {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  width: 100%;
  padding-top: 8px;
  border-top: none;
  justify-content: flex-start;
  gap: clamp(8px, 1.5vw, 12px);
}

@media (max-width: 899px) {
  .benchmark-rest .b3-section .b3-split__figures .ablation {
    margin-top: 4px;
    justify-content: center;
  }
}

.b3-caption {
  margin-top: 20px;
  margin-left: 0;
  margin-right: 0;
  max-width: 48ch;
  text-align: left;
  padding-left: 0;
}

.b3-caption::before {
  display: none;
}

.benchmark-rest .b3-section .b3-note {
  margin: 24px 0 0;
  padding: 0;
  border: none;
  max-width: 48ch;
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.62;
  font-weight: 400;
  color: var(--grey);
  text-align: left;
}

/* B4–Close (.04–.09): split layout (épured) */
.b4-section__block.block,
.b5-section__block.block,
.practice-section__block.block,
.mechanism-section__block.block,
.limits-section__block.block,
.close-section__block.block {
  max-width: min(100%, 1180px);
}

.b4-section .block__body,
.b5-section .block__body,
.practice-section .block__body,
.mechanism-section .block__body,
.limits-section .block__body,
.close-section .block__body {
  max-width: none;
  text-align: left;
}

.benchmark-rest .b4-section .block__body,
.benchmark-rest .b5-section .block__body,
.benchmark-rest .practice-section .block__body,
.benchmark-rest .mechanism-section .block__body,
.benchmark-rest .limits-section .block__body,
.benchmark-rest .close-section .block__body {
  text-align: left;
}

.b4-split,
.b5-split,
.practice-split,
.mechanism-split,
.limits-split,
.close-split {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  width: 100%;
}

@media (min-width: 900px) {
  .b4-split,
  .b5-split,
  .practice-split,
  .mechanism-split,
  .limits-split,
  .close-split {
    flex-direction: row;
    align-items: flex-start;
    gap: clamp(20px, 3vw, 40px);
  }
}

.b4-split__copy,
.b5-split__copy,
.practice-split__copy,
.mechanism-split__copy,
.limits-split__copy,
.close-split__copy {
  flex: 1 1 auto;
  min-width: 0;
}

@media (min-width: 900px) {
  .b4-split__copy,
  .b5-split__copy,
  .practice-split__copy,
  .mechanism-split__copy,
  .limits-split__copy,
  .close-split__copy {
    flex: 1 1 42%;
    max-width: min(100%, 32rem);
  }
}

.benchmark-rest .b4-section .b4-split__copy .block__title,
.benchmark-rest .b5-section .b5-split__copy .block__title,
.benchmark-rest .practice-section .practice-split__copy .block__title,
.benchmark-rest .mechanism-section .mechanism-split__copy .block__title,
.benchmark-rest .limits-section .limits-split__copy .block__title,
.benchmark-rest .close-section .close-split__copy .block__title {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.benchmark-rest .b4-section .b4-split__copy .block__subtitle,
.benchmark-rest .b5-section .b5-split__copy .block__subtitle,
.benchmark-rest .practice-section .practice-split__copy .block__subtitle {
  margin: -4px 0 0;
  font-size: clamp(13px, 1.15vw, 15px);
  line-height: 1.45;
  color: var(--grey);
}

.b5-split__copy .block__scope {
  margin: 0 0 10px;
}

.b4-split__figures,
.b5-split__figures,
.practice-split__figures,
.mechanism-split__figures,
.limits-split__figures,
.close-split__figures {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

@media (min-width: 900px) {
  .b4-split__figures,
  .b5-split__figures,
  .practice-split__figures,
  .mechanism-split__figures,
  .limits-split__figures,
  .close-split__figures {
    flex: 1 1 58%;
    max-width: none;
  }
}

.benchmark-rest .b4-section .b4-split__figures .recovery-stack {
  margin: 0;
  max-width: none;
}

.benchmark-rest .b4-section .b4-split__figures .recovery-stack__meta {
  margin: 8px 0 8px;
}

.benchmark-rest .b4-section .b4-split__figures .recovery-stack__legend {
  gap: 8px 20px;
}

.benchmark-rest .b4-section .b4-split__figures .prose {
  margin-top: 18px;
}

.b4-caption,
.b5-caption,
.limits-caption {
  margin-top: 14px;
  margin-left: 0;
  margin-right: 0;
  max-width: 48ch;
  text-align: left;
  padding-left: 0;
}

.b4-caption::before,
.b5-caption::before,
.limits-caption::before {
  display: none;
}

.benchmark-rest .b5-section .b5-split__figures .bar-chart {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  width: 100%;
  min-height: 0;
  padding-top: 12px;
  padding-bottom: 4px;
  border-top: none;
  justify-content: flex-start;
}

.benchmark-rest .b5-section .b5-split__figures .stat-delta {
  margin-top: 14px;
  text-align: left;
}

.b5-figures-prose {
  margin-top: 16px;
}

.benchmark-rest .b5-section .b5-note {
  margin: 18px 0 0;
  padding: 0;
  border: none;
  max-width: 48ch;
  font-size: clamp(14px, 1.25vw, 15px);
  line-height: 1.58;
  font-weight: 400;
  color: var(--grey);
  text-align: left;
}

.benchmark-rest .practice-section .practice-split__figures .practice-cols {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  width: 100%;
  gap: 24px;
}

@media (min-width: 640px) {
  .benchmark-rest .practice-section .practice-split__figures .practice-cols {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    gap: 28px;
  }
}

.benchmark-rest .mechanism-section .mechanism-split__figures .prose,
.benchmark-rest .close-section .close-split__figures .prose {
  margin-top: 0;
}

.benchmark-rest .mechanism-section .mechanism-split__figures .prose p,
.benchmark-rest .close-section .close-split__figures .prose p {
  margin-bottom: 12px;
}

.benchmark-rest .close-section .close-split__figures .prose .close-kicker {
  margin-bottom: 16px;
}

.close-kicker {
  margin: 0;
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--black);
}

.close-kicker strong {
  font-weight: 700;
}

.prose--close p:last-child {
  margin-bottom: 0;
}

.benchmark-rest .limits-section .limits-split__figures .list-plain {
  margin: 0;
}

.benchmark-rest .limits-section .limits-split__figures .list-plain li {
  margin-bottom: 6px;
}

.benchmark-rest .limits-section .limits-split__figures .list-plain li:last-child {
  margin-bottom: 0;
}

/* Légèrement moins de padding vertical que le bloc générique */
.b4-section .block,
.b5-section .block,
.practice-section .block,
.mechanism-section .block,
.limits-section .block,
.close-section .block {
  padding-top: 48px;
  padding-bottom: 56px;
}

@media (min-width: 768px) {
  .b4-section .block,
  .b5-section .block,
  .practice-section .block,
  .mechanism-section .block,
  .limits-section .block,
  .close-section .block {
    padding-top: 64px;
    padding-bottom: 72px;
  }
}

/* Horizontal bars */
.hbars {
  margin-top: 24px;
}

.hrow {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr 72px;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.hname {
  font-size: 13px;
  font-weight: 500;
}

.htrack {
  height: 8px;
  background: var(--grey-light);
  border: 1px solid var(--line);
}

.hfill {
  height: 100%;
  background: var(--black);
}

.hpp {
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

/* Ablation */
.ablation {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 200px;
  padding: 32px 0 0;
  border-top: 1px solid var(--grey-light);
  margin-top: 16px;
}

.ab-item {
  flex: 1;
  min-width: 64px;
  max-width: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ab-wrap {
  height: 140px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-bottom: 1px solid var(--black);
}

.ab-bar {
  width: 100%;
  max-width: 40px;
  border-radius: 0;
}

.ab-bar--muted {
  background: var(--bar-baseline);
}

.ab-bar--mid {
  background: #a3a3a3;
}

.ab-bar--full {
  background: var(--black);
}

.ab-pct {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
}

.ab-lab {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
  color: var(--grey);
  /* Reserve two lines so wrapped labels don’t shift % / bar alignment */
  min-height: 2.6em;
}

.interpret {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.interpret__k {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.interpret p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--grey);
}

.interpret--spaced {
  margin-top: 32px;
}

.inset {
  margin-top: 28px;
  padding-left: 20px;
  border-left: 2px solid var(--black);
}

.inset__t {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inset p {
  margin: 0;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
}

/* Dark band: compact block after hero: result + protocol */
.band-dark {
  position: relative;
  overflow: visible;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid var(--black);
  padding: 48px 0 56px;
}

@media (min-width: 768px) {
  .band-dark {
    padding: 56px 0 64px;
  }
}

/* Same horizontal frame as .wrap + benchmark blocks so B1 lines up below */
.band-dark__wrap {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
  box-sizing: border-box;
}

.band-dark__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(100%, 1180px);
  margin-left: auto;
  margin-right: auto;
  gap: 28px;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 899px) {
  .band-dark__content {
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 900px) {
  .band-dark__content {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(24px, 4vw, 48px);
    text-align: left;
  }
}

.band-dark__metric {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 899px) {
  .band-dark__metric {
    align-items: center;
    text-align: center;
  }

  .band-dark .band-dark__k,
  .band-dark .band-dark__sub {
    text-align: center;
  }

  .band-dark .band-dark__stat {
    align-items: center;
  }
}

@media (max-width: 767px) {
  .band-dark .band-dark__k,
  .band-dark .band-dark__sub {
    text-align: center;
  }

  .band-dark .band-dark__stat {
    align-items: center;
  }
}

@media (min-width: 900px) {
  .band-dark__metric {
    flex: 0 0 auto;
    max-width: min(38vw, 22rem);
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 899px) {
  .band-dark__metric {
    width: 100%;
  }
}

.band-dark .band-dark__k {
  margin: 0 0 16px;
  max-width: 42ch;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--black)) drop-shadow(0 0 2px var(--black))
    drop-shadow(0 0 4px var(--black)) drop-shadow(0 0 7px var(--black))
    drop-shadow(0 0 11px var(--black));
}

.band-dark .band-dark__stat {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--black)) drop-shadow(0 0 2px var(--black))
    drop-shadow(0 0 5px var(--black)) drop-shadow(0 0 10px var(--black))
    drop-shadow(0 0 16px var(--black));
}

@media (min-width: 900px) {
  .band-dark .band-dark__stat {
    align-items: flex-start;
  }
}

.band-dark__stat-line {
  display: block;
  font-size: clamp(56px, 16vw, 124px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.band-dark .band-dark__sub {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  max-width: 42ch;
  text-align: left;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--black)) drop-shadow(0 0 2px var(--black))
    drop-shadow(0 0 4px var(--black)) drop-shadow(0 0 8px var(--black))
    drop-shadow(0 0 13px var(--black));
}

.band-dark__protocol {
  margin: 0;
  min-width: 0;
  width: 100%;
  max-width: 36rem;
}

@media (min-width: 900px) {
  .band-dark__protocol {
    flex: 0 1 30rem;
    width: auto;
    max-width: min(30rem, 100%);
  }
}

.band-dark__proto-index {
  margin: 0 0 6px;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--black)) drop-shadow(0 0 2px var(--black))
    drop-shadow(0 0 5px var(--black)) drop-shadow(0 0 10px var(--black))
    drop-shadow(0 0 16px var(--black));
}

.band-dark__proto-label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--black)) drop-shadow(0 0 2px var(--black))
    drop-shadow(0 0 4px var(--black)) drop-shadow(0 0 7px var(--black))
    drop-shadow(0 0 11px var(--black));
}

.band-dark__proto-title {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--white);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--black)) drop-shadow(0 0 2px var(--black))
    drop-shadow(0 0 5px var(--black)) drop-shadow(0 0 10px var(--black))
    drop-shadow(0 0 16px var(--black));
}

.band-dark__proto-lead {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.52);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--black)) drop-shadow(0 0 2px var(--black))
    drop-shadow(0 0 4px var(--black)) drop-shadow(0 0 8px var(--black))
    drop-shadow(0 0 13px var(--black));
}

.band-dark__list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.band-dark__list li {
  position: relative;
  z-index: 1;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  filter: drop-shadow(0 0 1px var(--black)) drop-shadow(0 0 2px var(--black))
    drop-shadow(0 0 4px var(--black)) drop-shadow(0 0 8px var(--black))
    drop-shadow(0 0 13px var(--black));
}

.band-dark__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.band-dark__list strong {
  color: var(--white);
  font-weight: 600;
}

.band-dark__proto-only {
  margin: 4px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--black)) drop-shadow(0 0 2px var(--black))
    drop-shadow(0 0 4px var(--black)) drop-shadow(0 0 7px var(--black))
    drop-shadow(0 0 11px var(--black));
}

.band-dark__callout {
  margin: 12px 0 0;
  padding: 0;
  border: none;
  max-width: 48ch;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--black)) drop-shadow(0 0 2px var(--black))
    drop-shadow(0 0 4px var(--black)) drop-shadow(0 0 8px var(--black))
    drop-shadow(0 0 13px var(--black));
}

.band-dark__callout strong {
  font-weight: 700;
  color: var(--white);
}

.band-dark__hammer {
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(13px, 1.25vw, 16px);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  max-width: 48ch;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 1px var(--black)) drop-shadow(0 0 2px var(--black))
    drop-shadow(0 0 4px var(--black)) drop-shadow(0 0 8px var(--black))
    drop-shadow(0 0 13px var(--black));
}

.band-dark__hammer strong {
  color: var(--white);
  font-weight: 700;
}

.stat-delta__sub {
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .stat-delta__sub {
    display: block;
    margin-top: 6px;
    white-space: normal;
  }
}

/* Before / With BIGHUB (in practice) */
.practice-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 8px;
  text-align: left;
}

@media (min-width: 640px) {
  .practice-cols {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.practice-cols__k {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.practice-cols__list {
  margin: 0;
}

/* LinkedIn block */
.li-box {
  margin: 0;
  padding: 40px 32px;
  border: 1px solid var(--line);
  background: var(--white);
}

.li-box__k {
  margin: 0 0 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.li-box pre {
  margin: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  white-space: pre-wrap;
  color: var(--black);
}

.footer-min {
  padding: 32px 0 48px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
}

.mobile-nav-hint {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.header-aside {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (min-width: 900px) {
  .mobile-nav-hint {
    display: none;
  }
}
