:root {
  --ink: #171717;
  --muted: #5c5c5c;
  --paper: #f8f6f1;
  --white: #ffffff;
  --line: #d8d2c7;
  --red: #b33a2e;
  --teal: #0f766e;
  --gold: #b8871f;
  --blue: #315a8a;
  --shadow: 0 18px 40px rgba(23, 23, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 28px;
  background: rgba(248, 246, 241, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 18px;
  height: 18px;
  background:
    linear-gradient(90deg, var(--red) 0 33%, transparent 33% 100%),
    linear-gradient(180deg, var(--teal) 0 48%, var(--gold) 48% 100%);
  border: 1px solid var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #111;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  filter: grayscale(0.25) contrast(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58) 58%, rgba(0, 0, 0, 0.28)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78));
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 84px;
  color: var(--white);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.78);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffcf71;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.96;
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.03;
  font-weight: 500;
}

h3 {
  font-size: 18px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 760px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions,
.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 750;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.hero .button-primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.hero .button {
  color: var(--white);
}

.hero .button-primary {
  color: var(--ink);
}

.hero button.button {
  color: var(--white);
}

.metric-band {
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.metric-grid {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.metric-card {
  min-height: 166px;
  padding: 28px;
  background: var(--ink);
}

.metric-value {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 0.92;
}

.metric-card h2 {
  margin-bottom: 8px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.metric-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.section {
  padding: 86px 0;
  background: var(--white);
}

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

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

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

.two-column {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.2fr);
  gap: 64px;
}

.lead-stack p {
  font-size: 18px;
  line-height: 1.65;
  color: #343434;
}

.section-heading {
  max-width: 870px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.chart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.chart-layout.reversed {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
}

.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.chart-panel,
.insight-panel,
.module-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.chart-panel {
  padding: 26px;
}

.insight-panel {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: var(--ink);
  color: var(--white);
}

.insight-number {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 0.9;
}

.insight-formula {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-panel p:last-child {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.map-panel {
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
}

.map-surface {
  position: relative;
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #202020;
  background-size: 46px 46px;
}

.map-origin,
.map-node {
  position: absolute;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: #f8f6f1;
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.map-origin {
  left: 28px;
  bottom: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
}

.map-node {
  min-width: 52px;
  min-height: 28px;
  padding: 6px 8px;
}

.node-china {
  top: 26px;
  right: 72px;
}

.node-korea {
  top: 78px;
  right: 28px;
}

.node-us {
  bottom: 30px;
  right: 34px;
}

.node-japan {
  top: 20px;
  right: 8px;
}

.node-taiwan {
  top: 82px;
  right: 116px;
}

.map-line {
  position: absolute;
  z-index: 1;
  left: 68px;
  bottom: 54px;
  height: 2px;
  background: rgba(255, 255, 255, 0.42);
  transform-origin: left center;
  animation: corridorPulse 2600ms ease-in-out infinite;
}

.line-china {
  width: 150px;
  transform: rotate(-35deg);
}

.line-korea {
  width: 182px;
  transform: rotate(-18deg);
  animation-delay: 260ms;
}

.line-us {
  width: 178px;
  transform: rotate(3deg);
  animation-delay: 520ms;
}

.line-japan {
  width: 196px;
  transform: rotate(-45deg);
  animation-delay: 780ms;
}

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

.module-card {
  min-height: 280px;
  padding: 24px;
}

.module-card span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.module-card h3 {
  min-height: 64px;
  margin-bottom: 14px;
}

.module-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.chart-panel-spaced,
.chart-layout-spaced {
  margin-top: 24px;
}

.evolution-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.95fr);
}

.annual-chart-wrap,
.partner-stack {
  display: grid;
  gap: 14px;
}

.annual-scroll,
.partner-stack-scroll {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 0 10px;
}

.annual-plot {
  position: relative;
  min-height: 290px;
}

.annual-average {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 3;
  width: 100%;
  height: 260px;
  pointer-events: none;
}

.annual-average polyline {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.annual-bars {
  position: relative;
  z-index: 2;
  display: grid;
  height: 278px;
  align-items: end;
}

.annual-year {
  display: grid;
  width: 34px;
  height: 278px;
  grid-template-rows: 1fr 24px;
  gap: 7px;
  align-items: end;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.annual-bar-shell {
  position: relative;
  display: block;
  width: 100%;
  height: 236px;
  border-bottom: 1px solid var(--ink);
  background:
    linear-gradient(180deg, transparent 24%, rgba(216, 210, 199, 0.65) 25%, transparent 26%),
    linear-gradient(180deg, transparent 49%, rgba(216, 210, 199, 0.65) 50%, transparent 51%),
    linear-gradient(180deg, transparent 74%, rgba(216, 210, 199, 0.65) 75%, transparent 76%);
}

.annual-total,
.annual-clause {
  position: absolute;
  bottom: 0;
  display: block;
  min-height: 0;
  transform-origin: bottom;
  animation: growUp 720ms ease both;
}

.annual-total {
  right: 8px;
  left: 8px;
  background: #cfc7b9;
}

.annual-clause {
  right: 12px;
  left: 12px;
  background: var(--teal);
}

.annual-year.active .annual-total {
  background: var(--red);
}

.annual-year.active small,
.partner-year.active small {
  color: var(--ink);
  font-weight: 850;
}

.annual-year small,
.partner-year small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
  text-align: center;
}

.partner-stack-groups {
  display: flex;
  min-width: max-content;
  align-items: end;
  gap: 10px;
}

.partner-admin-group {
  display: grid;
  gap: 10px;
  padding: 12px 12px 8px;
  border: 1px solid var(--line);
  background: #f8f6f1;
}

.partner-admin-group h4 {
  margin: 0;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.partner-years {
  display: flex;
  height: 246px;
  align-items: end;
  gap: 4px;
}

.partner-year {
  display: grid;
  width: 30px;
  height: 246px;
  grid-template-rows: 1fr 20px;
  gap: 6px;
  align-items: end;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.partner-bar {
  display: flex;
  width: 22px;
  min-height: 8px;
  flex-direction: column-reverse;
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.14);
  background: #e7e1d6;
  animation: growUp 740ms ease both;
}

.partner-bar i {
  display: block;
  min-height: 0;
}

.partner-year.active .partner-bar {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.chart-legend i {
  display: inline-block;
  width: 12px;
  height: 12px;
}

.legend-all-records {
  background: #cfc7b9;
}

.legend-clause-records {
  background: var(--teal);
}

.legend-average {
  height: 2px !important;
  background: var(--ink);
}

.chart-detail,
.chart-interpretation {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.chart-detail {
  min-height: 46px;
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--red);
  background: #f8f6f1;
}

.segmented-control {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.segmented-control button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f4efe6;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.segmented-control button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.evolution-chart {
  display: grid;
  min-height: 360px;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: end;
}

.evolution-column {
  display: grid;
  min-width: 0;
  gap: 8px;
  text-align: center;
}

.evolution-bar-wrap {
  position: relative;
  height: 240px;
  border-bottom: 1px solid var(--ink);
  background:
    linear-gradient(180deg, transparent 24%, rgba(216, 210, 199, 0.55) 25%, transparent 26%),
    linear-gradient(180deg, transparent 49%, rgba(216, 210, 199, 0.55) 50%, transparent 51%),
    linear-gradient(180deg, transparent 74%, rgba(216, 210, 199, 0.55) 75%, transparent 76%);
}

.evolution-bar {
  position: absolute;
  right: 18%;
  bottom: 0;
  left: 18%;
  min-height: 8px;
  background: var(--red);
  transform-origin: bottom;
  animation: growUp 720ms ease both;
}

.evolution-column strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}

.evolution-column span {
  font-size: 13px;
  font-weight: 800;
}

.evolution-column small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.sector-ribbon {
  display: grid;
  gap: 16px;
}

.ribbon-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.ribbon-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ribbon-legend i,
.legend-swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
}

.ribbon-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 32px;
  gap: 10px;
  align-items: center;
}

.ribbon-row > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.ribbon-track {
  display: flex;
  height: 26px;
  min-width: 20px;
  overflow: hidden;
  border-radius: 999px;
  background: #efe9de;
  animation: slideIn 760ms ease both;
}

.ribbon-track i {
  display: block;
  min-width: 2px;
}

.ribbon-row strong {
  font-size: 13px;
}

.process-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 24px;
  align-items: stretch;
}

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

.process-node {
  position: relative;
  min-height: 166px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.process-node::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 18px;
  height: 1px;
  background: var(--line);
}

.process-node:nth-child(3)::after,
.process-node:last-child::after {
  display: none;
}

.process-node span {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.process-node strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.2;
}

.process-node small {
  color: var(--muted);
  line-height: 1.35;
}

.process-node.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  animation: pulseProcess 1600ms ease-in-out infinite;
}

.process-node.active small {
  color: rgba(255, 255, 255, 0.68);
}

.process-detail {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.process-detail h3 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.05;
  font-weight: 500;
}

.process-detail p {
  color: var(--muted);
  line-height: 1.55;
}

.process-detail p strong {
  color: var(--ink);
}

.bubble-plot {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(23, 23, 23, 0.16) 50%, transparent 50.3%),
    linear-gradient(180deg, transparent 49.7%, rgba(23, 23, 23, 0.16) 50%, transparent 50.3%),
    #f6f1e8;
}

.axis-label {
  position: absolute;
  z-index: 1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.axis-label-x {
  right: 18px;
  bottom: 12px;
}

.axis-label-y {
  top: 16px;
  left: 18px;
}

.bubble {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(179, 58, 46, 0.45);
  border-radius: 50%;
  background: rgba(179, 58, 46, 0.18);
  color: var(--ink);
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
  transform: translate(-50%, 50%);
  animation: floatBubble 5200ms ease-in-out infinite;
}

.bubble:nth-of-type(2n) {
  background: rgba(15, 118, 110, 0.18);
  border-color: rgba(15, 118, 110, 0.45);
  animation-delay: 600ms;
}

.bubble:nth-of-type(3n) {
  background: rgba(49, 90, 138, 0.18);
  border-color: rgba(49, 90, 138, 0.45);
  animation-delay: 1100ms;
}

.bubble span {
  width: min-content;
  min-width: 46px;
  line-height: 1.05;
}

.benchmark-row small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.comparison-table {
  display: grid;
  gap: 18px;
}

.compare-row {
  display: grid;
  gap: 8px;
}

.compare-row h4 {
  margin: 0;
  font-size: 14px;
}

.compare-bars {
  display: grid;
  gap: 6px;
}

.compare-bars span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px 72px;
  gap: 10px;
  align-items: center;
  font-size: 12px;
}

.compare-bars span::before {
  content: "";
  grid-column: 1;
  grid-row: 1;
  height: 9px;
  background: #ece7de;
}

.compare-bars i {
  grid-column: 1;
  grid-row: 1;
  display: block;
  height: 9px;
  background: var(--teal);
  animation: slideIn 720ms ease both;
}

.compare-bars span:nth-child(2) i {
  background: var(--blue);
}

.compare-bars span:nth-child(3) i {
  background: var(--gold);
}

.compare-bars b {
  color: var(--muted);
}

.compare-bars strong {
  text-align: right;
}

.delta-chart {
  display: grid;
  gap: 16px;
}

.delta-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) minmax(0, 1fr) 68px;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}

.delta-track {
  position: relative;
  height: 20px;
  border-left: 1px solid var(--ink);
  background: linear-gradient(90deg, transparent 49.5%, var(--ink) 50%, transparent 50.5%);
}

.delta-track i {
  position: absolute;
  top: 50%;
  height: 10px;
  transform: translateY(-50%);
  animation: slideIn 720ms ease both;
}

.delta-track .positive {
  background: var(--teal);
}

.delta-track .negative {
  background: var(--red);
}

.delta-row strong {
  text-align: right;
}

@keyframes growUp {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes slideIn {
  from {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes pulseProcess {
  0%,
  100% {
    box-shadow: 0 18px 40px rgba(23, 23, 23, 0.16);
  }
  50% {
    box-shadow: 0 20px 44px rgba(179, 58, 46, 0.32);
  }
}

@keyframes floatBubble {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -6px;
  }
}

@keyframes corridorPulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.86;
  }
}

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

.panel-heading h3,
.panel-heading p {
  margin-bottom: 0;
}

.panel-heading p {
  color: var(--muted);
  font-size: 13px;
}

.bars {
  display: grid;
  gap: 15px;
}

.bars.compact {
  gap: 18px;
}

.bar-row {
  display: grid;
  gap: 6px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  line-height: 1.25;
}

.bar-label strong {
  white-space: nowrap;
}

.bar-track {
  height: 12px;
  background: #ece7de;
}

.bar-fill {
  display: block;
  height: 100%;
  background: var(--teal);
}

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

.bar-fill-warm {
  background: var(--gold);
}

.source-note,
.quota-note {
  margin: 16px 0 0;
  color: rgba(92, 92, 92, 0.52);
  font-size: 11px;
  line-height: 1.45;
  opacity: 0.74;
  overflow-wrap: anywhere;
}

.donut-wrap {
  display: grid;
  gap: 20px;
  justify-items: center;
  overflow: hidden;
}

.donut {
  position: relative;
  width: min(260px, 100%);
  aspect-ratio: 1;
}

.donut svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.donut-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
}

.donut-center strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
}

.donut-center span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legend {
  display: grid;
  gap: 12px;
  width: 100%;
}

.legend-item {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}

.legend-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
}

.stack-track {
  display: flex;
  height: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ece7de;
}

.stack-segment {
  display: block;
  min-width: 2px;
}

.lollipop {
  display: grid;
  gap: 16px;
}

.lollipop-row {
  display: grid;
  grid-template-columns: minmax(190px, 260px) 1fr 64px;
  align-items: center;
  gap: 18px;
}

.lollipop-label {
  display: grid;
  gap: 3px;
}

.lollipop-label span {
  font-weight: 760;
}

.lollipop-label small {
  color: var(--muted);
}

.lollipop-track {
  position: relative;
  height: 24px;
}

.lollipop-track::before,
.lollipop-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  transform: translateY(-50%);
}

.lollipop-track::before {
  content: "";
  width: 100%;
  background: #e5dfd4;
}

.lollipop-line {
  background: var(--red);
}

.lollipop-dot {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 3px solid var(--white);
  background: var(--red);
  box-shadow: 0 0 0 1px var(--red);
  transform: translate(-50%, -50%);
}

.section-compact {
  padding: 52px 0;
}

.split-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.split-column {
  display: grid;
  min-width: 0;
  gap: 18px;
}

.split-column .section-heading {
  margin-bottom: 0;
}

.split-column .section-heading h2 {
  font-size: 30px;
  line-height: 1.08;
}

.split-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.split-stack .chart-panel {
  min-width: 0;
  padding: 18px;
}

.visibility-strip .chart-panel {
  padding: 18px;
}

.visibility-strip .panel-heading {
  margin-bottom: 14px;
  padding-bottom: 10px;
}

.visibility-strip .panel-heading h3 {
  font-size: 15px;
}

.visibility-strip .donut {
  width: min(150px, 100%);
}

.visibility-strip .donut-center strong {
  font-size: 32px;
}

.visibility-strip .legend-item {
  font-size: 12px;
}

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

.case-carousel {
  display: grid;
  gap: 14px;
}

.case-carousel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.case-carousel-toolbar .source-note {
  margin: 0;
}

.case-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.case-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  cursor: pointer;
}

.case-control:disabled {
  cursor: not-allowed;
  opacity: 0.36;
}

#caseCounter {
  min-width: 54px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  text-align: center;
}

.case-carousel-viewport {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 4px 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(32, 32, 32, 0.36) transparent;
}

.case-disclaimer {
  max-width: 920px;
  margin: 0;
  color: rgba(92, 92, 92, 0.72);
  font-size: 11px;
  line-height: 1.5;
}

.case-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 46%);
  gap: 18px;
}

.country-profile-card,
.case-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.country-profile-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
}

.case-card {
  align-content: start;
  min-height: 520px;
  scroll-snap-align: start;
}

.country-profile-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--red);
}

.profile-2::before {
  background: var(--ink);
}

.profile-3::before {
  background: var(--blue);
}

.profile-4::before {
  background: var(--teal);
}

.profile-stat {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--muted);
}

.profile-stat strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 0.9;
  color: var(--ink);
  font-weight: 500;
}

.country-profile-card h3,
.case-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.case-card h3 {
  max-width: 18ch;
}

.profile-archetype {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.country-profile-card p,
.case-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.case-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.case-card .case-country {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-count {
  color: rgba(92, 92, 92, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.case-corridor {
  width: fit-content;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f4efe6;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 820;
}

.case-theme {
  color: var(--ink) !important;
  font-size: 15px !important;
}

.case-highlights {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-highlights li {
  position: relative;
  padding-left: 15px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.case-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.67em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.case-highlights mark {
  padding: 1px 3px;
  border-radius: 3px;
  background: #fff0a8;
  color: var(--ink);
}

.case-signal {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
  font-weight: 680;
}

.profile-tags,
.slip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.profile-tags span,
.slip-tags span {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f4efe6;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.profile-route {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink) !important;
}

.country-profile-card small,
.case-card small {
  color: rgba(92, 92, 92, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.case-caveat {
  display: block;
}

.case-card-disclaimer {
  padding-top: 10px;
  border-top: 1px solid rgba(32, 32, 32, 0.08);
}

.country-matrix-detail {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf2;
}

.matrix-detail-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.matrix-detail-head h4 {
  margin: 0;
  font-size: 16px;
}

.matrix-detail-head strong {
  white-space: nowrap;
  color: var(--muted);
  font-size: 12px;
}

.lgu-node-cloud {
  display: flex;
  max-height: 190px;
  flex-wrap: wrap;
  gap: 7px;
  overflow: auto;
}

.lgu-node {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(23, 23, 23, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 720;
}

.muted-node {
  color: var(--muted);
}

.bubble.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(23, 23, 23, 0.12);
}

.registry-tool {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: stretch;
}

.registry-controls,
.routing-slip {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.registry-controls {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.registry-controls fieldset {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.registry-controls fieldset:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.registry-controls legend {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.registry-controls label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.25;
}

.registry-controls input {
  accent-color: var(--red);
}

.routing-slip {
  display: grid;
  gap: 20px;
  padding: 26px;
}

.slip-tier {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.slip-tier span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
}

.slip-tier strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
}

.slip-tier small {
  color: var(--muted);
  line-height: 1.4;
}

.slip-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 20px;
}

.slip-columns h3 {
  margin-bottom: 10px;
}

.slip-columns ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

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

.recommendation-card,
.sequence-step,
.operating-rule {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.recommendation-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 260px;
  padding: 24px;
  background: var(--white);
}

.recommendation-card span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
}

.recommendation-card h3,
.operating-rule h3,
.sequence-step h3 {
  margin: 0;
}

.recommendation-card h3 {
  max-width: 16ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.08;
}

.recommendation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.recommendation-sequence-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  margin-top: 24px;
}

.operating-rule {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background: var(--ink);
  color: var(--white);
}

.operating-rule .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.operating-rule h3 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 500;
  line-height: 0.98;
}

.operating-rule p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.55;
}

.implementation-sequence {
  display: grid;
  gap: 14px;
}

.sequence-step {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  background: var(--white);
}

.sequence-marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(32, 32, 32, 0.14);
  border-radius: 999px;
  background: #f4efe6;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.sequence-step h3 {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.sequence-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.network-grid {
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.72fr);
  align-items: stretch;
}

.network-frame {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.network-frame iframe {
  display: block;
  width: 100%;
  height: min(74vh, 760px);
  min-height: 560px;
  border: 0;
  background: var(--white);
}

figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #f0ece4;
}

figcaption {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.section-report .section-inner {
  width: min(100% - 64px, 1480px);
}

.section-report .section-heading p:not(.eyebrow),
.section-report .source-note {
  color: rgba(255, 255, 255, 0.7);
}

.section-report .section-heading {
  max-width: 1180px;
}

.section-report .section-heading h2 {
  max-width: 1120px;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.98;
}

.download-panel {
  margin-top: 18px;
}

.download-panel[hidden] {
  display: none;
}

.download-form {
  display: grid;
  gap: 18px;
  max-width: 820px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.download-form-head {
  display: grid;
  gap: 8px;
}

.download-form-head h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.download-form-head p:last-child,
.form-status {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

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

.download-fields label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.download-fields input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.download-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.download-form .button-primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.download-form .button:not(.button-primary) {
  color: var(--white);
}

.form-status.error {
  color: #ffd7d2;
}

.form-status.success {
  color: #d9fff6;
}

.report-view {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(440px, 1.28fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 24px;
}

.report-shell {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #101010;
}

.report-shell iframe {
  display: block;
  width: 100%;
  height: min(78vh, 820px);
  border: 0;
  background: var(--white);
}

.report-copy {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.58;
}

.report-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

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

.report-article {
  max-width: none;
  margin-top: 44px;
  padding: 0;
  column-count: 3;
  column-gap: clamp(26px, 3vw, 48px);
  column-rule: 1px solid rgba(255, 255, 255, 0.12);
}

.report-summary {
  max-width: 980px;
  column-count: 1;
  column-gap: 0;
  column-rule: 0;
}

.report-summary p {
  max-width: 920px;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.62;
}

.report-preview-actions {
  display: flex;
  margin-top: 28px;
}

.section-report .report-preview-actions .button-primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.long-read-page .section-report {
  min-height: calc(100vh - 64px);
}

.report-article .report-kicker {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.report-article h3 {
  max-width: none;
  margin: 0 0 12px;
  color: var(--white);
  break-after: avoid;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.report-article p,
.report-article li {
  max-width: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(13.5px, 0.95vw, 15.5px);
  line-height: 1.66;
}

.report-article p {
  margin-bottom: 16px;
}

.report-article ul {
  display: grid;
  gap: 13px;
  max-width: none;
  margin: 18px 0 26px;
  padding-left: 1.3em;
}

.report-stat-grid {
  display: grid;
  column-span: all;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 34px;
}

.report-stat {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.report-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.report-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.35;
}

.report-table-wrap {
  column-span: all;
  max-width: 100%;
  margin: 24px 0 28px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.report-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.report-table th,
.report-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
  vertical-align: top;
}

.report-table th {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.source-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.source-table th,
.source-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.source-table th {
  background: #eee8dc;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

@media (max-width: 920px) {
  .metric-grid,
  .three-up,
  .chart-layout,
  .chart-layout.reversed,
  .two-column,
  .visual-grid,
  .split-dashboard,
  .country-profile-grid,
  .registry-tool,
  .recommendation-sequence-shell,
  .slip-columns,
  .report-view,
  .process-shell {
    grid-template-columns: 1fr;
  }

  .case-track {
    grid-auto-columns: minmax(320px, 74%);
  }

  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recommendation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-node:nth-child(3)::after {
    display: block;
  }

  .process-node:nth-child(2)::after,
  .process-node:nth-child(4)::after,
  .process-node:last-child::after {
    display: none;
  }

  .metric-card {
    min-height: 138px;
  }

  .panel-heading {
    display: block;
  }

  .panel-heading h3 {
    margin-bottom: 6px;
  }

  .section-report .section-inner {
    width: min(100% - 40px, 1120px);
  }

  .section-report .section-heading h2 {
    font-size: clamp(40px, 8vw, 68px);
  }

  .report-article {
    column-count: 2;
  }

  .report-summary {
    column-count: 1;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 14px 18px;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }

  .nav-links a {
    font-size: 13px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content,
  .section-inner,
  .metric-grid {
    width: min(100% - 32px, 1120px);
  }

  .section-report .section-inner {
    width: min(100% - 32px, 1120px);
  }

  .section-report .section-heading h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .report-article {
    margin-top: 30px;
    column-count: 1;
  }

  .report-summary {
    column-count: 1;
  }

  .report-article p,
  .report-article li {
    font-size: 14px;
  }

  .hero-content {
    padding-bottom: 52px;
  }

  .hero-actions,
  .report-actions,
  .download-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .case-carousel-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-controls {
    width: 100%;
    justify-content: space-between;
  }

  .case-track {
    grid-auto-columns: minmax(280px, 100%);
  }

  .case-card {
    min-height: 0;
  }

  .button {
    width: 100%;
  }

  .download-fields {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .chart-panel,
  .insight-panel,
  .module-card,
  .metric-card {
    padding: 20px;
  }

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

  .recommendation-grid,
  .sequence-step {
    grid-template-columns: 1fr;
  }

  .operating-rule {
    min-height: 0;
  }

  .module-card {
    min-height: 0;
  }

  .module-card span {
    margin-bottom: 18px;
  }

  .module-card h3 {
    min-height: 0;
  }

  .evolution-chart {
    min-height: 280px;
    gap: 8px;
  }

  .evolution-bar-wrap {
    height: 170px;
  }

  .evolution-column strong {
    font-size: 20px;
  }

  .evolution-column small {
    display: none;
  }

  .ribbon-row {
    grid-template-columns: 68px minmax(0, 1fr) 28px;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-node {
    min-height: 0;
  }

  .process-node::after {
    display: none !important;
  }

  .country-profile-card {
    min-height: 0;
  }

  .matrix-detail-head {
    display: grid;
  }

  .matrix-detail-head strong {
    white-space: normal;
  }

  .bubble-plot {
    min-height: 360px;
  }

  .bubble {
    font-size: 9px;
  }

  .compare-bars span,
  .delta-row {
    grid-template-columns: 1fr;
  }

  .compare-bars strong,
  .delta-row strong {
    text-align: left;
  }

  .lollipop-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .lollipop-track {
    height: 18px;
  }

  .report-shell iframe {
    height: 62vh;
  }

  .source-table {
    min-width: 0;
    table-layout: fixed;
    font-size: 13px;
  }

  .source-table th,
  .source-table td {
    padding: 12px 10px;
  }
}
