:root {
  --bg: #efe6d5;
  --bg-deep: #1c1509;
  --surface: #f6efe2;
  --surface-warm: #e8dbc2;
  --gold: #a87320;
  --gold-bright: #9b681c;
  --gold-deep: #704913;
  --ivory: #2e271d;
  --text: #433a2e;
  --muted: #756957;
  --line: rgba(100, 72, 30, 0.24);
  --content: min(1160px, 60vw);
  --nav-height: 72px;
  --font: "Palatino Linotype", Palatino, "Book Antiqua", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  font-size: 22px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.ambient {
  display: none;
}

.ambient::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(217, 173, 78, 0.06);
  border-radius: inherit;
}

.ambient-one {
  top: 18vh;
  left: -27rem;
}

.ambient-two {
  right: -30rem;
  bottom: 5vh;
}

.floating-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: var(--content);
  max-width: calc(100vw - 28px);
  height: var(--nav-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px;
  border: 0;
  border-bottom: 1px solid rgba(73, 53, 24, 0.2);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: top 220ms ease, width 220ms ease, border-radius 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.floating-nav a {
  padding: 11px 17px 10px;
  border-radius: 999px;
  color: #5d523f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.floating-nav a:hover,
.floating-nav a.active {
  color: #744a0e;
  background: rgba(155, 104, 28, 0.09);
}

.floating-nav.is-floating {
  top: 18px;
  width: max-content;
  border: 1px solid rgba(231, 201, 114, 0.24);
  border-radius: 999px;
  background: rgba(27, 20, 9, 0.94);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.floating-nav.is-floating a {
  color: #c9b995;
}

.floating-nav.is-floating a:hover,
.floating-nav.is-floating a.active {
  color: #241a09;
  background: #e7c972;
}

main {
  width: 100%;
}

.section {
  position: relative;
  width: var(--content);
  margin: 0 auto;
  padding: 150px 0;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.section::after {
  content: "";
  position: absolute;
  z-index: -3;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--section-bg);
}

#overview {
  --section-bg: linear-gradient(145deg, #f5eee2 0%, #eee4d2 58%, #e7dbc4 100%);
}

#results {
  --section-bg: radial-gradient(circle at 80% 18%, rgba(177, 126, 37, 0.1), transparent 35rem), #1c1509;
}

#method {
  --section-bg: linear-gradient(155deg, #eee4d1 0%, #e7dbc4 54%, #ded0b5 100%);
}

#findings {
  --section-bg: radial-gradient(circle at 14% 52%, rgba(177, 126, 37, 0.09), transparent 34rem), #211809;
}

#benchmark {
  --section-bg: linear-gradient(145deg, #f4eddf 0%, #ece2d0 58%, #e3d6bf 100%);
}

#cases {
  --section-bg: radial-gradient(circle at 82% 28%, rgba(177, 126, 37, 0.1), transparent 34rem), #191308;
}

#results,
#findings,
#cases {
  --gold: #d9ad4e;
  --gold-bright: #efcf7b;
  --gold-deep: #8b6426;
  --ivory: #f4ead3;
  --text: #eee2c8;
  --muted: #bcae91;
  --line: rgba(217, 173, 78, 0.25);
}

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 105px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -6vw;
  top: 12%;
  width: 32vw;
  aspect-ratio: 1;
  border: 1px solid rgba(76, 44, 4, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 0 42px rgba(91, 53, 7, 0.025), inset 0 0 0 84px rgba(91, 53, 7, 0.025);
}

.hero-mark {
  position: absolute;
  right: 0;
  top: 22%;
  z-index: -1;
  color: rgba(78, 43, 3, 0.075);
  font-size: clamp(180px, 22vw, 420px);
  font-weight: 700;
  line-height: 0.8;
}

.model-wordmark {
  /* Occupies the same box the .model-name text did: --wordmark-type is the old
     font-size and 4.877 = 0.9 line-height x 5.4187 image aspect, so the rendered
     height matches the old line box and nothing below shifts. */
  --wordmark-type: clamp(76px, 7vw, 132px);
  display: block;
  width: min(100%, calc(var(--wordmark-type) * 4.877));
  height: auto;
  margin: 0 0 28px;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 34px;
  color: #2f1b04;
  font-size: clamp(43px, 3.2vw, 61px);
  line-height: 1.05;
  letter-spacing: -0.032em;
  font-weight: 700;
}

h1 span {
  color: #684006;
}

.hero-intro {
  max-width: 980px;
  margin-bottom: 38px;
  color: #665a49;
  font-size: 27px;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 20px;
}

.project-button {
  min-width: 0;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px 9px;
  border: 1px solid #2a1e0b;
  border-radius: 8px;
  color: #f4ead3;
  background: linear-gradient(135deg, #30230e, #1d160a);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.project-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.github-button svg {
  color: #e8b85f;
  fill: currentColor;
}

.huggingface-button svg {
  color: #ffd21e;
  fill: currentColor;
}

.paper-button svg {
  color: #dc8740;
  fill: none;
}

.project-button:hover {
  transform: translateY(-3px);
  border-color: #9b681c;
  box-shadow: 0 12px 30px rgba(91, 62, 20, 0.18);
}

.project-button.disabled {
  color: #766951;
  background: rgba(69, 51, 24, 0.05);
  border-color: rgba(69, 51, 24, 0.24);
  cursor: default;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-stats div {
  padding: 25px 30px 24px 0;
}

.hero-stats div + div {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--gold-bright);
  font-size: 34px;
  line-height: 1;
}

.hero-stats span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 19px;
}

.section-heading {
  max-width: 1020px;
  margin-bottom: 74px;
}

.section-heading h2 {
  margin-bottom: 24px;
  color: var(--ivory);
  font-size: clamp(48px, 4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-heading p {
  max-width: 940px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 25px;
  line-height: 1.48;
}

#method,
#benchmark {
  color: #2f1b04;
}

#method .section-heading h2,
#benchmark .section-heading h2 {
  color: #2f1b04;
}

#method .section-heading p,
#benchmark .section-heading p,
#method .technology-copy p,
#benchmark .table-note {
  color: #5a4018;
}

#method .technology-copy article {
  border-top-color: #815716;
}

#method .technology-copy h3 {
  color: #5d3605;
}

.performance-chart {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px 70px;
  background: transparent;
}

.metric-block {
  min-width: 0;
}

.metric-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.metric-title strong {
  color: var(--ivory);
  font-size: 30px;
}

.metric-title span {
  color: var(--muted);
  font-size: 18px;
  text-align: right;
}

.bar-row {
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr) 49px;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  color: var(--muted);
  font-size: 18px;
}

.bar-row i {
  position: relative;
  height: 13px;
  border-radius: 999px;
  background: rgba(244, 234, 210, 0.11);
  overflow: hidden;
}

.bar-row i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--score) * 1%);
  border-radius: inherit;
  background: #776b58;
}

.bar-row b {
  color: var(--text);
  text-align: right;
}

.bar-row.featured {
  color: var(--gold-bright);
  font-weight: 700;
}

.bar-row.featured i {
  height: 17px;
  background: rgba(217, 173, 78, 0.13);
}

.bar-row.featured i::before {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  box-shadow: 0 0 18px rgba(217, 173, 78, 0.28);
}

.bar-row.featured b {
  color: var(--gold-bright);
}

.chart-note,
.table-note {
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.paper-figure {
  width: 100%;
  margin: 0;
  background: transparent;
}

.paper-figure img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
}

.transparent-figure {
  padding: 18px 0;
  background: transparent;
}

.method-paper-figure {
  margin: 20px 0 56px;
}

.benchmark-code-chart {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px 58px;
  width: 100%;
  background: transparent;
}

.code-chart-panel {
  min-width: 0;
  background: transparent;
}

.code-chart-panel h3 {
  margin: 0 0 22px;
  color: var(--ivory);
  font-size: 30px;
  line-height: 1;
  text-align: center;
}

.code-chart-plot {
  position: relative;
  height: 297px;
  padding-left: 40px;
}

.code-chart-axis {
  position: absolute;
  left: 40px;
  right: 0;
  top: 0;
  height: 205px;
  border-bottom: 2px solid rgba(244, 234, 211, 0.52);
}

.code-chart-gridline {
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px dashed rgba(217, 173, 78, 0.22);
}

.code-chart-gridline span {
  position: absolute;
  right: calc(100% + 8px);
  top: -10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.code-chart-bars {
  position: absolute;
  left: 40px;
  right: 0;
  top: 0;
  height: 297px;
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 2px;
}

.code-bar-slot {
  min-width: 0;
  display: grid;
  grid-template-rows: 205px 92px;
}

.code-bar-zone {
  position: relative;
  min-width: 0;
}

.code-bar {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(28px, 72%);
  height: var(--height);
  min-height: 38px;
  border: 2px solid var(--bar-border);
  border-radius: 7px 7px 1px 1px;
  background: var(--bar-color);
  transform: translateX(-50%);
}

.code-bar.ours {
  width: min(32px, 80%);
  border-width: 3px;
  border-color: #efcf7b;
  background-color: #dfa24d;
  background-image: repeating-linear-gradient(135deg, transparent 0 7px, rgba(100, 57, 12, 0.42) 7px 9px);
}

.code-bar-value {
  position: absolute;
  left: 50%;
  bottom: calc(var(--height) + 6px);
  color: var(--text);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  transform: translateX(-50%);
}

.code-logo {
  position: absolute;
  left: 50%;
  top: 6px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: #fffaf0;
  transform: translateX(-50%);
}

.code-logo svg {
  width: 20px;
  height: 20px;
  display: block;
}

.ours .code-logo {
  width: 28px;
  height: 28px;
  border-color: #f7e3a9;
}

.code-model-label {
  /* Slots are only 24-44px wide in the two-column layout, far narrower than
     names like "DeepSeek V4 Pro". Angling the labels makes collisions depend on
     slot spacing x sin(45deg) vs line height, not on text length. */
  position: relative;
  min-width: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.code-model-label span {
  position: absolute;
  top: 11px;
  right: 50%;
  white-space: nowrap;
  transform: rotate(-45deg);
  transform-origin: 100% 0;
}

.code-model-label.ours-label {
  color: #efcf7b;
}

.method-visual {
  width: 100%;
  background: transparent;
}

.method-visual svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  background: transparent;
  font-family: var(--font);
}

.method-visual .orbit {
  fill: none;
  stroke: rgba(217, 173, 78, 0.24);
  stroke-width: 4;
  stroke-dasharray: 10 12;
}

.method-visual .route {
  fill: none;
  stroke: url(#goldFlow);
  stroke-width: 5;
  stroke-linecap: round;
}

.method-visual .human-node circle,
.method-visual .agent-node circle {
  fill: rgba(217, 173, 78, 0.055);
  stroke: var(--gold);
  stroke-width: 4;
}

.method-visual .human-node path,
.method-visual .agent-node path,
.method-visual .agent-node rect,
.method-visual .stage path,
.method-visual .output-node path {
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method-visual text {
  fill: var(--ivory);
  font-size: 25px;
  font-weight: 700;
}

.method-visual text.sub {
  fill: var(--muted);
  font-size: 19px;
  font-weight: 400;
}

.method-visual .stage rect {
  fill: rgba(22, 17, 10, 0.9);
  stroke: var(--gold-deep);
  stroke-width: 2.5;
}

.method-visual .output-node text {
  fill: var(--gold-bright);
  font-size: 31px;
}

.technology-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin-top: 70px;
}

.technology-copy article {
  padding-top: 30px;
  border-top: 2px solid var(--gold-deep);
}

.technology-copy h3 {
  margin-bottom: 20px;
  color: var(--gold-bright);
  font-size: 31px;
  line-height: 1.08;
}

.technology-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.finding-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.finding-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px 0 36px;
  border-bottom: 1px solid var(--line);
}

.finding-list span {
  color: var(--gold-bright);
  font-size: 31px;
  font-style: italic;
}

.finding-list p {
  max-width: 950px;
  margin: 0;
  color: var(--text);
  font-size: 27px;
  line-height: 1.44;
}

.table-shell {
  position: relative;
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f6efe2;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.02);
  cursor: grab;
  scrollbar-color: var(--gold-deep) rgba(255, 255, 255, 0.04);
  scrollbar-width: thin;
}

#benchmark .table-shell {
  border-color: rgba(91, 65, 27, 0.28);
  background: #f7f0e4;
  box-shadow: 0 18px 55px rgba(68, 49, 24, 0.1);
  scrollbar-color: #8e6729 rgba(76, 58, 31, 0.1);
}

.table-shell.dragging {
  cursor: grabbing;
  user-select: none;
}

.table-shell:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

table {
  width: 1120px;
  min-width: 1120px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
}

th,
td {
  min-width: 0;
  padding: 10px 4px;
  border-right: 1px solid rgba(94, 68, 30, 0.1);
  border-bottom: 1px solid rgba(94, 68, 30, 0.14);
  color: var(--muted);
  text-align: center;
  white-space: normal;
}

thead th {
  position: sticky;
  top: 0;
  z-index: 5;
  height: 70px;
  color: #f4ead3;
  background: #2a1e0b;
  font-size: 14px;
  vertical-align: middle;
}

tbody tr:hover td,
tbody tr:hover th {
  color: #2e271d;
  background-color: rgba(155, 104, 28, 0.08);
}

#benchmark tbody tr:hover td,
#benchmark tbody tr:hover th {
  color: #2b1803;
  background-color: rgba(96, 57, 8, 0.12);
}

thead th:first-child,
tbody th:first-child {
  position: sticky;
  left: 0;
  z-index: 4;
  width: 120px;
  min-width: 120px;
  color: #2e271d;
  background: #e8dcc5;
  text-align: left;
}

thead th:nth-child(2),
tbody td:first-of-type {
  position: sticky;
  left: 120px;
  z-index: 4;
  width: 170px;
  min-width: 170px;
  color: #433a2e;
  background: #e8dcc5;
  text-align: left;
  box-shadow: 12px 0 22px rgba(0, 0, 0, 0.26);
}

thead th:first-child,
thead th:nth-child(2) {
  z-index: 7;
  color: #f4ead3;
  background: #2a1e0b;
}

.icoder-col {
  color: #805413;
  background: rgba(155, 104, 28, 0.1);
  font-weight: 700;
}

thead .icoder-col {
  color: #1a1105;
  background: linear-gradient(180deg, #e9ca78, #b8802e);
}

td strong,
td u {
  color: #2e271d;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

td.icoder-col strong,
td.icoder-col u {
  color: #71490e;
}

.benchmark-section {
  width: min(1480px, 82vw);
}

.benchmark-section .table-shell {
  width: min(100%, 1120px);
  margin-left: auto;
  margin-right: auto;
}

.benchmark-section > .section-heading,
.benchmark-section > .table-note {
  width: min(1160px, 73%);
  margin-left: auto;
  margin-right: auto;
}

tbody th[rowspan] {
  vertical-align: middle;
  border-bottom: 2px solid rgba(111, 73, 19, 0.22);
}

#benchmark tbody th:first-child,
#benchmark tbody td:first-of-type {
  color: #332005;
  background: #dfbd68;
}

#benchmark tbody td {
  color: #5b421d;
  border-color: rgba(84, 49, 6, 0.17);
}

#benchmark tbody .icoder-col {
  color: #4a2904;
  background: rgba(90, 51, 4, 0.13);
}

#benchmark tbody td strong,
#benchmark tbody td u,
#benchmark tbody td.icoder-col strong,
#benchmark tbody td.icoder-col u {
  color: #2d1903;
}

.case-study {
  margin: 0 0 120px;
}

.case-frame {
  padding: 18px;
  border: 1px solid rgba(217, 173, 78, 0.42);
  border-radius: 14px;
  background: #f3ecdc;
  overflow: hidden;
}

.case-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.case-study figcaption {
  max-width: 1040px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.48;
}

.case-study figcaption strong {
  color: var(--gold-bright);
  font-size: 25px;
}

footer {
  width: var(--content);
  min-height: 190px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 19px;
}

footer p {
  margin: 0;
}

footer div {
  display: flex;
  gap: 24px;
}

footer a {
  color: var(--gold-bright);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  :root {
    --content: min(90vw, 980px);
  }

  .floating-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .performance-chart,
  .technology-copy {
    grid-template-columns: 1fr;
  }

  .benchmark-code-chart {
    grid-template-columns: 1fr;
  }

  .technology-copy {
    gap: 30px;
  }

  .method-visual {
    overflow-x: auto;
  }

  .method-visual svg {
    width: 1100px;
    max-width: none;
  }
}

@media (max-width: 720px) {
  :root {
    --content: calc(100vw - 36px);
    --nav-height: 58px;
  }

  body {
    font-size: 19px;
  }

  .floating-nav {
    top: 10px;
    width: calc(100vw - 20px);
    height: var(--nav-height);
    margin-top: 10px;
    padding: 6px;
    border-radius: 16px;
    scrollbar-width: none;
  }

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

  .floating-nav a {
    flex: 0 0 auto;
    padding: 10px 13px;
    font-size: 16px;
  }

  .section {
    padding: 95px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
  }

  .hero::before,
  .hero-mark {
    display: none;
  }

  .model-wordmark {
    --wordmark-type: clamp(62px, 18vw, 88px);
  }

  h1 {
    font-size: clamp(36px, 10vw, 52px);
    line-height: 0.99;
  }

  .hero-intro {
    font-size: 22px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }

  .project-button {
    min-width: 0;
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div,
  .hero-stats div + div {
    padding: 20px 0;
    border-left: 0;
  }

  .hero-stats div + div {
    border-top: 1px solid var(--line);
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2 {
    font-size: 43px;
  }

  .section-heading p,
  .finding-list p {
    font-size: 21px;
  }

  .performance-chart {
    gap: 50px;
  }

  .metric-title {
    display: block;
  }

  .metric-title span {
    display: block;
    margin-top: 5px;
    text-align: left;
  }

  .bar-row {
    grid-template-columns: 82px minmax(0, 1fr) 45px;
    font-size: 16px;
  }

  .method-visual svg {
    width: 930px;
  }

  .technology-copy h3 {
    font-size: 29px;
  }

  .technology-copy p,
  .case-study figcaption {
    font-size: 19px;
  }

  .finding-list li {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .finding-list span {
    font-size: 25px;
  }

  .benchmark-section {
    width: 100%;
  }

  .benchmark-section > .section-heading,
  .benchmark-section > .table-note {
    width: var(--content);
    margin-left: auto;
    margin-right: auto;
  }

  .table-shell {
    border-radius: 0;
  }

  table {
    font-size: 16px;
  }

  th,
  td {
    padding: 16px 13px;
  }

  thead th:first-child,
  tbody th:first-child {
    width: 145px;
    min-width: 145px;
  }

  thead th:nth-child(2),
  tbody td:first-of-type {
    left: 145px;
    width: 210px;
    min-width: 210px;
  }

  .case-study {
    margin-bottom: 80px;
  }

  .case-frame {
    margin: 0 -10px;
    padding: 7px;
  }

  footer {
    min-height: 230px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
