:root {
  --paper: #f3f5f2;
  --surface: #ffffff;
  --surface-soft: #e9eeea;
  --ink: #17201e;
  --muted: #606b67;
  --line: #cbd2ce;
  --line-strong: #9aa6a1;
  --blue: #456d9a;
  --teal: #1f7568;
  --red: #b34834;
  --gold: #b7832e;
  --orange: #d47735;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  --font-serif: "Songti SC", "STSong", "Noto Serif SC", "Source Han Serif SC", SimSun, serif;
  --font-numeric: Georgia, "Times New Roman", serif;
  --sidebar-width: 244px;
  --content-width: 1180px;
  --radius: 6px;
  --shadow: 0 10px 28px rgba(23, 32, 30, 0.08);
  --shadow-soft: 0 5px 18px rgba(23, 32, 30, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

button,
select,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.reading-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: var(--sidebar-width);
  z-index: 80;
  height: 3px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  width: var(--sidebar-width);
  min-height: 100vh;
  min-height: 100dvh;
  padding: 30px 20px 22px;
  display: flex;
  flex-direction: column;
  background: #1a2522;
  color: #f4f6f3;
  border-right: 1px solid #34423e;
}

.side-brand {
  padding: 0 9px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.side-brand__mark {
  display: block;
  margin-bottom: 12px;
  color: #efc078;
  font-size: 12px;
}

.side-brand strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 650;
}

.side-brand > span:last-child {
  display: block;
  margin-top: 6px;
  color: #a9b8b3;
  font-family: var(--font-numeric);
  font-size: 22px;
}

.section-nav {
  display: grid;
  gap: 1px;
  margin: 18px 0;
  overflow-y: auto;
  scrollbar-width: thin;
}

.section-nav a {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  color: #b9c5c1;
  text-decoration: none;
  border-left: 2px solid transparent;
  font-size: 13px;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.section-nav a span {
  color: #758781;
  font-family: var(--font-numeric);
  font-size: 11px;
}

.section-nav a:hover,
.section-nav a:focus-visible,
.section-nav a.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-left-color: #efc078;
  outline: none;
}

.side-meta {
  margin-top: auto;
  padding: 16px 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 2px;
  color: #9eada8;
  font-size: 12px;
}

.side-meta strong {
  color: #eef2f0;
  font-size: 13px;
}

.mobile-header {
  display: none;
}

main,
.site-footer {
  margin-left: var(--sidebar-width);
}

.section-anchor {
  scroll-margin-top: 20px;
}

.hero {
  position: relative;
  min-height: min(780px, 92vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #eef1ed;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--red);
}

.hero-chart {
  position: absolute;
  inset: 16% 0 0 32%;
  opacity: 0.18;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content-width), calc(100% - 92px));
  margin: 0 auto;
  padding: 76px 0 68px;
}

.eyebrow,
.section-kicker,
.section-index,
.note-label {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 1.22;
  font-weight: 650;
}

.hero-year {
  margin: 8px 0 26px;
  color: var(--teal);
  font-family: var(--font-numeric);
  font-size: 38px;
  line-height: 1;
}

.hero-lead {
  max-width: 760px;
  margin: 0 0 34px;
  color: #46514d;
  font-size: 18px;
}

.report-meta {
  max-width: 820px;
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 0.9fr;
  margin: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.report-meta div {
  min-height: 90px;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}

.report-meta div:first-child {
  padding-left: 0;
}

.report-meta div:last-child {
  border-right: 0;
}

.report-meta dt {
  color: var(--muted);
  font-size: 12px;
}

.report-meta dd {
  margin: 4px 0 0;
  font-weight: 700;
  line-height: 1.5;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.hero-kpi {
  padding: 18px 22px 0;
  border-right: 1px solid var(--line);
}

.hero-kpi:first-child {
  padding-left: 0;
}

.hero-kpi:last-child {
  border-right: 0;
}

.hero-kpi strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-numeric);
  font-size: 30px;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-kpi-unit {
  margin-left: 5px;
  color: var(--muted);
  font-family: inherit;
  font-size: 13px;
}

.hero-kpi-number {
  font-variant-numeric: tabular-nums lining-nums;
}

.hero-kpi > span {
  color: var(--muted);
  font-size: 13px;
}

.hero-kpi small {
  display: block;
  margin-top: 5px;
  color: #79837f;
  font-size: 10px;
}

.content-band,
.content-section,
.methodology {
  padding: 92px 0;
}

.section-inner {
  width: min(var(--content-width), calc(100% - 92px));
  margin: 0 auto;
}

.report-intro {
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  gap: 80px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.intro-grid h2,
.section-heading h2,
.methodology h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 35px;
  line-height: 1.35;
  font-weight: 650;
}

.intro-copy {
  margin: 0;
  color: #36413d;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.8;
}

.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.signal-column {
  padding: 42px 46px 22px 0;
}

.signal-column + .signal-column {
  padding-left: 46px;
  border-left: 1px solid var(--line);
}

.signal-column h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.signal-positive h3 {
  color: var(--teal);
}

.signal-pressure h3 {
  color: var(--red);
}

.signal-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-column li {
  position: relative;
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid #e1e5e2;
}

.signal-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.signal-positive li::before {
  color: var(--teal);
}

.signal-pressure li::before {
  color: var(--red);
}

.source-note {
  margin-top: 26px;
  color: #727c78;
  font-size: 12px;
}

.content-section {
  background: var(--surface);
}

.content-section--muted {
  background: var(--surface-soft);
}

.content-section--ink {
  background: #1d2926;
  color: #f3f5f2;
}

.content-section--accent {
  background: #e6f0ed;
}

.content-section--regional {
  background: #eef0f4;
}

.content-section--recommendations {
  background: #edf0ec;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.82fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

.content-section--ink .section-heading {
  border-color: #485653;
}

.content-section--ink .section-heading > p {
  color: #b6c0bd;
}

.content-section--ink .section-index {
  color: #efc078;
}

.chart-and-note,
.capital-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: stretch;
}

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

.figure-block {
  position: relative;
  min-width: 0;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.figure-block::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 3px;
  background: var(--teal);
  opacity: 0.72;
  pointer-events: none;
}

.figure-block--wide {
  width: 100%;
}

.figure-block--dark {
  background: #24322e;
  border-color: #465550;
}

.figure-block--accent {
  background: #f7faf8;
  border-color: #aac5bd;
}

.chart {
  width: 100%;
  isolation: isolate;
}

.chart-medium {
  height: 360px;
}

.chart-large {
  height: 430px;
}

.chart-xlarge {
  height: 520px;
}

figcaption {
  min-height: 78px;
  display: grid;
  gap: 2px;
  padding: 16px 20px;
  background: #f8faf8;
  border-top: 1px solid var(--line);
  color: #6a7470;
  font-size: 12px;
  line-height: 1.5;
}

figcaption strong {
  color: var(--ink);
  font-size: 14px;
}

.figure-block--dark figcaption {
  background: #1d2926;
  border-color: #465550;
  color: #b5c0bc;
}

.figure-block--dark figcaption strong {
  color: #f3f5f2;
}

.reading-note {
  padding: 32px;
  background: #f0f3ef;
  border-left: 4px solid var(--gold);
}

.reading-note p {
  margin: 0 0 18px;
}

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

.data-toolbar,
.compare-toolbar,
.industry-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: end;
  margin: 42px 0 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.data-toolbar label,
.compare-toolbar label,
.industry-toolbar label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
}

select,
input[type="search"] {
  height: 40px;
  min-width: 180px;
  padding: 0 34px 0 11px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

input[type="search"] {
  min-width: 230px;
  padding-right: 11px;
}

select:focus,
input:focus,
button:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(31, 117, 104, 0.22);
  outline-offset: 2px;
}

.result-count {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--line-strong) transparent;
  scrollbar-width: thin;
}

.data-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th,
.data-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: middle;
  border-right: 1px solid #e0e4e2;
  border-bottom: 1px solid #e0e4e2;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.data-table th:last-child,
.data-table td:last-child {
  border-right: 0;
}

.data-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #e8ede9;
  color: #2d3834;
  font-weight: 700;
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.data-table tbody tr:hover td {
  background: #f4f7f4;
}

.data-table--dense {
  min-width: 1500px;
  font-size: 12px;
}

.data-table--dense th,
.data-table--dense td {
  padding: 10px 11px;
}

.appendix-disclosure {
  margin-top: 22px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.appendix-disclosure summary {
  padding: 18px 0;
  cursor: pointer;
  color: var(--teal);
  font-weight: 700;
}

.appendix-table-wrap {
  margin-bottom: 10px;
}

.segmented-control {
  display: inline-flex;
  margin: 0 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  overflow: hidden;
}

.segmented-control button {
  min-height: 38px;
  padding: 7px 16px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-strong);
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.segmented-control button:last-child {
  border-right: 0;
}

.segmented-control button.is-active {
  color: #ffffff;
  background: var(--teal);
  box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.22);
}

.metric-statements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.metric-statements p {
  margin: 0;
  padding: 20px 24px;
  border-right: 1px solid var(--line);
}

.metric-statements p:first-child {
  padding-left: 0;
}

.metric-statements p:last-child {
  border-right: 0;
}

.metric-statements strong,
.metric-statements span {
  display: block;
}

.metric-statements strong {
  color: var(--teal);
  font-family: var(--font-numeric);
  font-size: 24px;
}

.metric-statements span {
  color: var(--muted);
  font-size: 12px;
}

.finding-quote {
  margin: 28px 0 0;
  padding: 24px 30px;
  background: #f2f4f1;
  border-left: 4px solid var(--red);
  font-family: var(--font-serif);
  font-size: 19px;
}

.capital-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  border-top: 1px solid var(--line-strong);
}

.capital-fact {
  min-height: 128px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capital-fact:nth-child(2n) {
  border-right: 0;
}

.capital-fact strong {
  display: block;
  color: var(--red);
  font-family: var(--font-numeric);
  font-size: 27px;
}

.capital-fact span {
  color: var(--muted);
  font-size: 12px;
}

.chapter-conclusion,
.data-caveat {
  margin: 28px 0 0;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.58);
  border-left: 4px solid var(--teal);
}

.content-section--accent .chapter-conclusion {
  background: #f5f9f7;
}

.compare-toolbar,
.industry-toolbar {
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
}

.compare-toolbar p {
  max-width: 660px;
  margin: 0;
  color: #3f4a46;
}

.industry-toolbar {
  justify-content: flex-start;
  gap: 28px;
}

.industry-summary {
  margin-bottom: 22px;
  padding: 24px 30px;
  background: #f0f3ef;
  border-left: 4px solid var(--gold);
}

.industry-summary h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.industry-summary p:last-child {
  margin: 0;
}

.recommendation-list {
  border-top: 1px solid var(--line-strong);
}

.recommendation-item {
  border-bottom: 1px solid var(--line-strong);
}

.recommendation-item summary {
  min-height: 92px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
}

.recommendation-item summary::-webkit-details-marker {
  display: none;
}

.recommendation-number {
  color: var(--red);
  font-family: var(--font-numeric);
  font-size: 30px;
}

.recommendation-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 650;
}

.recommendation-state {
  color: var(--muted);
  font-size: 12px;
}

.recommendation-body {
  padding: 0 0 30px 96px;
}

.recommendation-body ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.recommendation-body li {
  padding: 9px 0;
  border-bottom: 1px solid #d9dfdb;
}

.recommendation-body li:last-child {
  border-bottom: 0;
}

.recommendation-source {
  color: var(--muted);
  font-size: 11px;
}

.methodology {
  background: #222c29;
  color: #eef2f0;
}

.methodology-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.methodology-inner p {
  margin: 0 0 16px;
  color: #bdc7c3;
}

.site-footer {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px max(46px, calc((100% - var(--content-width)) / 2));
  background: #111816;
  color: #eef2f0;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span {
  color: #9daba6;
  font-size: 12px;
}

.site-footer a {
  color: #efc078;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #ffffff;
  background: var(--red);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-2px);
}

.noscript {
  position: fixed;
  inset: auto 20px 20px calc(var(--sidebar-width) + 20px);
  z-index: 100;
  padding: 12px 16px;
  background: #fff4d9;
  border: 1px solid var(--gold);
}

.boot-error {
  position: fixed;
  top: 18px;
  right: 24px;
  left: calc(var(--sidebar-width) + 24px);
  z-index: 120;
  display: grid;
  gap: 4px;
  padding: 14px 18px;
  color: #7a2d20;
  background: #fff4ee;
  border: 1px solid #d9a99e;
  box-shadow: 0 8px 22px rgba(23, 32, 30, 0.12);
}

.boot-error strong,
.boot-error span {
  display: block;
}

.js-enhanced .chart {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 520ms ease;
}

.js-enhanced .chart.is-chart-visible {
  opacity: 1;
  transform: none;
}

.motion-ready .hero .hero-inner > *,
.motion-ready .report-intro .section-inner > *,
.motion-ready .content-section .section-inner > *,
.motion-ready .methodology .section-inner > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 480ms ease, transform 560ms ease;
}

.motion-ready .hero.is-revealed .hero-inner > *,
.motion-ready .report-intro.is-revealed .section-inner > *,
.motion-ready .content-section.is-revealed .section-inner > *,
.motion-ready .methodology.is-revealed .section-inner > * {
  opacity: 1;
  transform: none;
}

.motion-ready .is-revealed .section-inner > *:nth-child(2),
.motion-ready .hero.is-revealed .hero-inner > *:nth-child(2) {
  transition-delay: 70ms;
}

.motion-ready .is-revealed .section-inner > *:nth-child(3),
.motion-ready .hero.is-revealed .hero-inner > *:nth-child(3) {
  transition-delay: 130ms;
}

.motion-ready .is-revealed .section-inner > *:nth-child(4),
.motion-ready .hero.is-revealed .hero-inner > *:nth-child(4) {
  transition-delay: 180ms;
}

@media (hover: hover) and (pointer: fine) {
  .figure-block:hover {
    border-color: var(--line-strong);
    box-shadow: 0 12px 30px rgba(23, 32, 30, 0.11);
    transform: translateY(-2px);
  }

  .segmented-control button:not(.is-active):hover {
    color: var(--ink);
    background: #edf2ee;
  }

  select:hover,
  input[type="search"]:hover {
    border-color: var(--teal);
  }
}

@media (max-width: 1160px) {
  :root {
    --sidebar-width: 218px;
  }

  .section-inner,
  .hero-inner {
    width: min(var(--content-width), calc(100% - 54px));
  }

  .section-heading,
  .intro-grid {
    gap: 42px;
  }

  .chart-and-note,
  .capital-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  }

  .hero-kpi strong {
    font-size: 27px;
  }

  .hero h1 {
    font-size: 50px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 70px;
  }

  .mobile-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 18px;
    background: rgba(26, 37, 34, 0.97);
    color: #ffffff;
    border-bottom: 1px solid #45524f;
  }

  .reading-progress {
    left: 0;
  }

  .mobile-brand {
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
  }

  .menu-button {
    min-width: 58px;
    height: 44px;
    color: #ffffff;
    background: transparent;
    border: 1px solid #81908b;
    border-radius: 4px;
  }

  .sidebar {
    width: min(310px, 84vw);
    transform: translateX(-104%);
    transition: transform 180ms ease;
    box-shadow: var(--shadow);
  }

  body.nav-open .sidebar {
    transform: translateX(0);
  }

  body.nav-open {
    overflow: hidden;
  }

  .sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 35;
    background: rgba(17, 24, 22, 0.55);
  }

  .sidebar-backdrop:not([hidden]) {
    display: block;
  }

  main,
  .site-footer {
    margin-left: 0;
  }

  .hero {
    min-height: 760px;
    padding-top: 58px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-chart {
    inset: 34% -18% 0 18%;
  }

  .section-anchor {
    scroll-margin-top: 68px;
  }

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

  .hero-kpi {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
  }

  .hero-kpi:nth-child(2n) {
    border-right: 0;
  }

  .hero-kpi:nth-child(3) {
    padding-left: 0;
  }

  .section-heading,
  .intro-grid,
  .chart-and-note,
  .capital-layout,
  .methodology-inner {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .intro-grid,
  .methodology-inner {
    gap: 22px;
  }

  .section-heading {
    align-items: start;
  }

  .chart-and-note,
  .capital-layout {
    gap: 24px;
  }

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

  .reading-note {
    border-left: 0;
    border-top: 4px solid var(--gold);
  }

  .site-footer {
    padding: 30px 28px;
  }
}

@media (max-width: 680px) {
  .section-inner,
  .hero-inner {
    width: calc(100% - 32px);
  }

  .hero {
    min-height: 0;
    align-items: flex-start;
  }

  .hero-inner {
    padding: 48px 0 20px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.18;
  }

  .hero-year {
    font-size: 30px;
  }

  .hero-lead {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .report-meta {
    grid-template-columns: 1fr;
  }

  .report-meta div,
  .report-meta div:first-child {
    min-height: 0;
    padding: 7px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .report-meta div:last-child {
    border-bottom: 0;
  }

  .report-meta dd {
    margin-top: 1px;
    font-size: 14px;
    line-height: 1.4;
  }

  .report-meta dt {
    font-size: 11px;
  }

  .hero-kpis {
    margin-top: 18px;
  }

  .hero-kpi,
  .hero-kpi:first-child,
  .hero-kpi:nth-child(3) {
    min-height: 84px;
    padding: 10px 12px;
  }

  .hero-kpi strong {
    font-size: 23px;
  }

  .hero-kpi-unit {
    font-size: 11px;
  }

  .hero-kpi > span {
    font-size: 11px;
  }

  .hero-kpi small {
    margin-top: 2px;
    font-size: 9px;
  }

  .content-band,
  .content-section,
  .methodology {
    padding: 64px 0;
  }

  .intro-grid h2,
  .section-heading h2,
  .methodology h2 {
    font-size: 28px;
  }

  .intro-copy {
    font-size: 18px;
  }

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

  .signal-column,
  .signal-column + .signal-column {
    padding: 30px 0;
    border-left: 0;
  }

  .signal-column + .signal-column {
    border-top: 1px solid var(--line);
  }

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

  .chart-medium,
  .chart-large,
  .chart-xlarge {
    height: 360px;
  }

  figcaption {
    min-height: 0;
    padding: 14px 16px;
  }

  .data-table th:first-child,
  .data-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--surface);
    box-shadow: 1px 0 0 #e0e4e2;
  }

  .data-table thead th:first-child {
    z-index: 2;
    background: #e8ede9;
  }

  .metric-statements {
    grid-template-columns: 1fr;
  }

  .metric-statements p,
  .metric-statements p:first-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-statements p:last-child {
    border-bottom: 0;
  }

  .segmented-control {
    width: 100%;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
  }

  .segmented-control button {
    min-height: 44px;
    padding: 7px 8px;
    font-size: 12px;
  }

  select,
  input[type="search"] {
    height: 44px;
  }

  .data-toolbar,
  .compare-toolbar,
  .industry-toolbar {
    align-items: stretch;
  }

  .data-toolbar label,
  .compare-toolbar label,
  .industry-toolbar label,
  select,
  input[type="search"] {
    width: 100%;
  }

  .result-count {
    width: 100%;
    margin-left: 0;
  }

  .capital-facts {
    grid-template-columns: 1fr 1fr;
  }

  .capital-fact {
    min-height: 112px;
    padding: 15px;
  }

  .recommendation-item summary {
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }

  .recommendation-number {
    font-size: 24px;
  }

  .recommendation-title {
    font-size: 18px;
  }

  .recommendation-state {
    display: none;
  }

  .recommendation-body {
    padding: 0 0 24px 62px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 18px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }

  .noscript {
    inset: auto 10px 10px;
  }

  .boot-error {
    top: 10px;
    right: 10px;
    left: 10px;
  }
}

@media (max-width: 360px) {
  .hero-inner {
    padding: 34px 0 10px;
  }

  .eyebrow {
    margin-bottom: 8px;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1.16;
  }

  .hero-year {
    margin: 6px 0 16px;
    font-size: 28px;
  }

  .hero-lead {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
  }

  .report-meta div,
  .report-meta div:first-child {
    padding: 5px 0;
  }

  .hero-kpis {
    margin-top: 12px;
  }

  .hero-kpi,
  .hero-kpi:first-child,
  .hero-kpi:nth-child(3) {
    min-height: 76px;
    padding: 8px 9px;
  }

  .hero-kpi strong {
    font-size: 21px;
  }
}

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

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