:root {
  color-scheme: light;
  --ink: #1f2523;
  --muted: #66716d;
  --soft: #eef1ed;
  --paper: #f8f7f2;
  --white: #ffffff;
  --line: #dfe4de;
  --charcoal: #15231f;
  --green: #285544;
  --sage: #8d9f82;
  --copper: #b8653e;
  --amber: #d4a94f;
  --blue: #3c6170;
  --shadow: 0 24px 70px rgba(20, 35, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

img {
  display: block;
  width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 27, 23, 0.88);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.hero-actions,
.legend,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.nav {
  gap: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 800;
}

.header-cta {
  padding: 0 18px;
  background: var(--white);
  color: var(--charcoal);
}

.button {
  padding: 0 20px;
}

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

.button.secondary {
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(20px, 7vw, 96px) 0;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -1;
  background: var(--charcoal);
}

.hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(14, 27, 23, 0.82), rgba(14, 27, 23, 0.34) 54%, rgba(14, 27, 23, 0.58)),
    linear-gradient(0deg, rgba(14, 27, 23, 0.84), rgba(14, 27, 23, 0.04) 64%);
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.06) brightness(1.04);
  opacity: 0.98;
}

.hero-content {
  width: min(920px, 100%);
  padding-bottom: clamp(54px, 8vw, 96px);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4.8vw, 58px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.3vw, 26px);
  line-height: 1.35;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-inline: calc(clamp(20px, 7vw, 96px) * -1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(14, 27, 23, 0.82);
  backdrop-filter: blur(16px);
}

.hero-strip article {
  padding: clamp(22px, 3vw, 34px) clamp(18px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.hero-strip span,
.metrics span,
.plan-card span,
.result-board span {
  color: var(--muted);
  font-size: 14px;
}

.hero-strip span {
  color: rgba(255, 255, 255, 0.68);
}

.section {
  scroll-margin-top: 84px;
  padding: clamp(70px, 10vw, 132px) clamp(20px, 7vw, 96px);
}

.intro {
  display: grid;
  grid-template-columns: 220px minmax(0, 860px);
  gap: clamp(26px, 6vw, 88px);
  justify-content: center;
  background: var(--white);
}

.section-label {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-copy p:not(.eyebrow),
.demand-copy p,
.product p,
.section-heading p:not(.eyebrow),
.closing p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.development {
  background: var(--paper);
}

.acquisition {
  background: var(--charcoal);
  color: var(--white);
}

.acquisition .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

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

.acquisition-grid article,
.due-grid article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.acquisition-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.acquisition-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.metrics article {
  padding: clamp(26px, 4vw, 46px);
  background: var(--soft);
}

.metrics strong {
  display: block;
  margin-top: 10px;
  color: var(--green);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 44px;
  text-align: center;
}

.masterplan {
  background: var(--paper);
}

.plan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 18px;
  align-items: stretch;
}

.masterplan-visual {
  margin-bottom: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.masterplan-visual img {
  height: clamp(320px, 52vw, 640px);
  object-fit: cover;
  filter: saturate(1.12) contrast(1.06) brightness(1.04);
}

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

.masterplan-summary article,
.plan-card,
.model-grid article,
.risk-grid article,
.development-grid article,
.timeline-grid article,
.market-grid article {
  border: 1px solid var(--line);
  background: var(--white);
}

.masterplan-summary article {
  padding: 26px;
}

.masterplan-summary span {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.masterplan-summary strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.masterplan-summary p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.demand,
.product {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.demand {
  background: var(--charcoal);
  color: var(--white);
}

.demand-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.demand-image img {
  height: min(56vw, 560px);
  min-height: 360px;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05) brightness(1.03);
  box-shadow: var(--shadow);
}

.operating-model {
  background: var(--white);
}

.model-grid,
.risk-grid,
.development-grid,
.timeline-grid,
.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.model-grid article,
.risk-grid article,
.development-grid article,
.timeline-grid article,
.market-grid article {
  padding: 26px;
}

.development-grid span,
.timeline-grid span,
.market-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-grid span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.model-grid p,
.risk-grid p,
.development-grid p,
.timeline-grid p,
.market-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.market-update {
  background: var(--white);
}

.market-grid {
  grid-template-columns: repeat(3, 1fr);
}

.market-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.source-links a {
  padding: 11px 14px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.timeline {
  background: var(--paper);
}

.technical {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  background: var(--white);
}

.technical-copy {
  position: sticky;
  top: 110px;
}

.technical-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.spec-list article {
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.spec-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.spec-list strong {
  color: var(--green);
  font-size: 28px;
}

.asset-viewer {
  min-width: 0;
}

.asset-tabs,
.committee-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.asset-tab,
.committee-tab,
.inline-action,
.modal-close {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.asset-tab,
.committee-tab {
  padding: 0 14px;
}

.asset-tab.is-active,
.committee-tab.is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.asset-stage {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.asset-stage img {
  width: 100%;
  height: min(66vw, 690px);
  object-fit: contain;
  padding: clamp(12px, 2.2vw, 28px);
  background: #fefefe;
  filter: saturate(1.08) contrast(1.06) brightness(1.03);
}

.asset-stage figcaption {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.asset-stage figcaption span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.asset-stage figcaption strong {
  font-size: 24px;
}

.asset-stage figcaption p {
  margin-bottom: 4px;
  color: var(--muted);
  line-height: 1.6;
}

.inline-action {
  width: fit-content;
  padding: 0 14px;
  background: var(--soft);
}

.product {
  background: var(--green);
  color: var(--white);
}

.product p {
  color: rgba(255, 255, 255, 0.76);
}

.product-gallery {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}

.product-gallery img {
  height: 440px;
  object-fit: cover;
  background: var(--paper);
  filter: saturate(1.12) contrast(1.06) brightness(1.03);
}

.product-gallery img:first-child {
  padding: 22px;
  object-fit: contain;
}

.cashflow {
  background: #e9ede7;
}

.simulator {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 20px;
  align-items: start;
}

.controls,
.result-board,
.chart-card,
.table-wrap {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(20, 35, 31, 0.07);
}

.controls {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.controls label {
  display: grid;
  gap: 9px;
}

.controls label > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.field-prefix {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.field-prefix span {
  color: var(--muted);
  font-weight: 800;
}

.field-prefix input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 24px;
  font-weight: 800;
}

.result-board {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.result-board article {
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  background: var(--charcoal);
  color: var(--white);
}

.result-board strong {
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1.05;
}

.chart-card,
.table-wrap {
  grid-column: 2;
}

.chart-card {
  padding: 26px;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.chart-head h3 {
  margin-bottom: 6px;
  font-size: 28px;
}

.chart-head p {
  margin-bottom: 0;
  color: var(--muted);
}

.legend {
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.legend i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.income-dot {
  background: var(--copper);
}

.cash-dot {
  background: var(--blue);
}

.bars {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  min-height: 330px;
  padding-top: 16px;
  border-bottom: 2px solid var(--line);
  background-image: linear-gradient(to top, var(--line) 1px, transparent 1px);
  background-size: 100% 25%;
}

.bar-year {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  align-items: end;
  height: 100%;
  min-width: 0;
}

.bar-year span {
  min-height: 6px;
  border-radius: 6px 6px 0 0;
}

.bar-year .income {
  background: var(--copper);
}

.bar-year .cash {
  background: var(--blue);
}

.bar-year small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.table-wrap {
  overflow-x: auto;
}

.sensitivity {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(320px, 1.4fr);
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(20, 35, 31, 0.07);
}

.sensitivity p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.sensitivity-table {
  display: grid;
  grid-template-columns: 132px repeat(5, minmax(82px, 1fr));
  border: 1px solid var(--line);
  overflow: hidden;
}

.sensitivity-table span {
  display: grid;
  min-height: 58px;
  align-items: center;
  padding: 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.sensitivity-table strong {
  display: grid;
  min-height: 58px;
  align-items: center;
  padding: 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--green);
  font-size: 18px;
}

.sensitivity-table .hot {
  background: #eef4eb;
}

.sensitivity-table .warm {
  background: #fff8ea;
}

.sensitivity-table .cold {
  background: #f7eeee;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 740px;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: right;
  white-space: nowrap;
}

th:first-child,
td:first-child {
  text-align: left;
}

th {
  background: var(--soft);
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

td {
  color: #3d4743;
  font-weight: 650;
}

.disclaimer {
  max-width: 980px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.visuals {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 14px;
  background: var(--charcoal);
}

.visuals img {
  height: clamp(280px, 34vw, 460px);
  object-fit: cover;
  filter: saturate(1.14) contrast(1.06) brightness(1.03);
}

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

.risk-grid {
  grid-template-columns: repeat(4, 1fr);
}

.committee {
  background: var(--charcoal);
  color: var(--white);
}

.committee .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.committee-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.committee-tabs {
  display: grid;
  margin: 0;
}

.committee-tab {
  justify-content: start;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.committee-panel {
  min-height: 230px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.committee-panel span {
  display: block;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.committee-panel h3 {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
}

.committee-panel p,
.due-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.due-grid article {
  min-height: 190px;
}

.image-modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  place-items: center;
  padding: 76px clamp(16px, 4vw, 56px) 28px;
  background: rgba(10, 18, 16, 0.88);
}

.image-modal.is-open {
  display: grid;
}

.image-modal img {
  max-width: min(1200px, 100%);
  max-height: 86vh;
  object-fit: contain;
  background: var(--white);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0 16px;
}

.closing {
  display: grid;
  grid-template-columns: minmax(280px, 780px) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(64px, 9vw, 112px) clamp(20px, 7vw, 96px);
  background: var(--charcoal);
  color: var(--white);
}

.closing p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
}

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

.documents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.documents-grid a {
  display: grid;
  gap: 12px;
  min-height: 260px;
  align-content: start;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.documents-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(20, 35, 31, 0.12);
}

.documents-grid span {
  width: fit-content;
  padding: 8px 10px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.documents-grid strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.documents-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(20px, 7vw, 96px);
  background: #101b18;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }

  .hero-strip,
  .metrics,
  .model-grid,
  .risk-grid,
  .development-grid,
  .timeline-grid,
  .acquisition-grid,
  .due-grid,
  .masterplan-summary,
  .result-board {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .plan-layout,
  .demand,
  .product,
  .technical,
  .simulator,
  .sensitivity,
  .committee-layout,
  .closing {
    grid-template-columns: 1fr;
  }

  .technical-copy {
    position: static;
  }

  .result-board,
  .chart-card,
  .table-wrap,
  .sensitivity {
    grid-column: auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: absolute;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 90vh;
    padding-top: 116px;
  }

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

  h1 {
    font-size: 42px;
  }

  .hero-strip,
  .metrics,
  .model-grid,
  .risk-grid,
  .development-grid,
  .timeline-grid,
  .market-grid,
  .acquisition-grid,
  .due-grid,
  .masterplan-summary,
  .result-board,
  .controls,
  .visuals {
    grid-template-columns: 1fr;
  }

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

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

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery img,
  .demand-image img,
  .asset-stage img {
    height: 320px;
    min-height: 0;
  }

  .spec-list,
  .sensitivity-table {
    grid-template-columns: 1fr;
  }

  .bars {
    gap: 5px;
    min-height: 260px;
  }

  .bar-year {
    gap: 2px;
  }

  .button {
    width: 100%;
  }
}
