:root {
  --navy: #0f2b5c;
  --deep: #061a3e;
  --blue: #2d6bff;
  --ink: #13294b;
  --muted: #65748b;
  --line: #d9e4f3;
  --paper: #f3f6fb;
  --cream: #fbf7ef;
  --green: #0c8e75;
  --green-soft: #e8f7f1;
  --red: #b84d5f;
  --gold: #d6a03d;
  --shadow: 0 24px 70px rgba(15, 43, 92, 0.16);
  --font-body: "Poppins", "Montserrat", Arial, sans-serif;
  --font-display: "Montserrat", "Poppins", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214, 160, 61, 0.16), transparent 28rem),
    linear-gradient(135deg, #f6f0e5 0%, #eef4fb 48%, #f9fbff 100%);
  font-family: var(--font-body);
}

button,
input {
  font: inherit;
}

.controls {
  position: fixed;
  inset: 18px auto 18px 18px;
  z-index: 20;
  width: 330px;
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(15, 43, 92, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  font-family: var(--font-body);
}

.controls__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.controls__brand img {
  width: 116px;
  height: auto;
}

.print-button {
  border: 0;
  border-radius: 999px;
  padding: 10px 13px;
  color: white;
  background: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.controls__intro h1 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.05;
}

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

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.input-grid,
.assumptions {
  display: grid;
  gap: 10px;
}

.mode-toggle {
  display: grid;
  gap: 8px;
  margin: 0 0 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fbff;
}

.mode-toggle legend {
  padding: 0 4px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.mode-toggle label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.mode-toggle input {
  width: auto;
  accent-color: var(--blue);
}

.input-grid > label,
.assumptions label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.input-grid > label > span,
.assumptions span {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f8fbff;
  color: var(--ink);
}

input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
}

.assumptions {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.assumptions summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.site-shell {
  display: grid;
  gap: 36px;
  width: min(1020px, calc(100vw - 390px));
  margin: 24px 24px 64px 390px;
}

.page {
  position: relative;
  min-height: 1414px;
  overflow: hidden;
  padding: 42px 60px 54px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--blue), var(--navy));
}

.page::after {
  content: attr(data-page) "/" attr(data-total-pages);
  position: absolute;
  right: 58px;
  bottom: 34px;
  color: #8b98aa;
  font: 13px var(--font-body);
}

.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 44px;
  font-family: var(--font-display);
}

.page-header img {
  width: 168px;
}

.page-header div {
  display: grid;
  gap: 6px;
  text-align: right;
}

.page-header span {
  color: var(--muted);
  font-weight: 800;
}

.page-header strong {
  color: var(--navy);
  font-size: 25px;
}

.hero {
  position: relative;
  height: 560px;
  margin: 0 -60px;
  overflow: hidden;
}

.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 26, 62, 0.86), rgba(6, 26, 62, 0.42) 56%, rgba(6, 26, 62, 0.18)),
    linear-gradient(0deg, rgba(6, 26, 62, 0.28), transparent 46%);
}

.hero__copy {
  position: absolute;
  left: 66px;
  bottom: 92px;
  width: min(680px, 62%);
  color: white;
}

.hero__copy h2 {
  margin: 0 0 22px;
  max-width: 760px;
  font-size: 50px;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero__copy p:not(.eyebrow) {
  margin: 0;
  max-width: 600px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}

.freimenge-badge {
  position: absolute;
  right: 68px;
  bottom: 92px;
  display: grid;
  gap: 7px;
  width: 245px;
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 30px;
  color: white;
  background: rgba(15, 43, 92, 0.88);
  font-family: var(--font-display);
}

.freimenge-badge span {
  opacity: 0.84;
}

.freimenge-badge strong {
  font-size: 24px;
}

.freimenge-formula {
  display: grid;
  gap: 2px;
  line-height: 1.08;
}

.freimenge-badge strong span {
  display: block;
  opacity: 1;
}

.freimenge-badge em {
  font-style: normal;
  font-weight: 800;
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.hero-card,
.metric-stack article {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #eef4ff;
  font-family: var(--font-body);
}

.hero-card--green,
.metric-stack article:nth-child(2) {
  background: var(--green-soft);
}

.hero-card span,
.metric-stack span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.hero-card strong,
.metric-stack strong {
  display: block;
  color: var(--blue);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.hero-card--green strong,
.metric-stack article:nth-child(2) strong,
.metric-stack article:nth-child(3) strong {
  color: var(--green);
}

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

.story-row {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  margin-top: 54px;
  align-items: stretch;
}

.story-copy {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff, #f6f9fe);
}

.story-copy h3,
.quiet-note h3,
.feature-panel h3,
.closing-panel h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
}

.story-copy p,
.quiet-note p,
.feature-panel p,
.closing-panel p {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.48;
}

.storage-figure {
  display: grid;
  place-items: center;
  align-content: center;
  margin: 0;
  padding: 22px 22px 18px;
  border: 1px solid #d7e5f7;
  border-radius: 26px;
  background: #eef6ff;
}

.storage-figure img {
  width: min(100%, 206px);
  max-height: 312px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: none;
}

.storage-figure__image--print {
  display: none;
}

.storage-figure__image--perspective {
  width: min(100%, 206px);
  max-height: 312px;
  transform: none;
}

.storage-figure figcaption {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
}

.section-lead {
  max-width: 820px;
  margin: 0 0 58px;
}

.section-lead h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.section-lead p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.42;
}

.economics-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 36px;
  align-items: stretch;
}

.feature-panel {
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: white;
}

.feature-panel > p {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 16px;
}

.chart-card {
  margin-top: 22px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #fbfdff, #f4f8ff);
}

.chart-card svg {
  display: block;
  width: 100%;
  height: auto;
}

.metric-stack {
  display: grid;
  gap: 18px;
}

.metric-stack article {
  display: grid;
  align-content: center;
}

.quiet-note,
.closing-panel {
  margin-top: 68px;
  padding: 38px;
  border-radius: 36px;
  background: linear-gradient(135deg, #eff5ff, #f9fbff);
  border: 1px solid var(--line);
}

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-bottom: 42px;
}

.comparison-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: white;
}

.comparison-card--plus {
  border: 2px solid var(--blue);
}

.comparison-card__photo {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.comparison-card__photo > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-card--classic .comparison-card__photo::after,
.comparison-card--plus .comparison-card__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.45), transparent 58%);
}

.storage-float {
  position: absolute;
  right: 22px;
  bottom: -28px;
  width: 118px;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(15, 43, 92, 0.20));
}

.comparison-card__body {
  padding: 34px;
}

.comparison-card__body h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: -0.03em;
}

.comparison-card--plus h3 {
  color: var(--blue);
}

.comparison-card__body p {
  min-height: 78px;
  margin: 0 0 22px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.4;
}

.comparison-card__body .comparison-card__spec {
  min-height: 0;
  margin: -10px 0 20px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fbff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.32;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-metrics span {
  min-width: 0;
  padding: 16px;
  border: 2px solid var(--line);
  border-radius: 20px;
  background: #f8fbff;
  font-family: var(--font-body);
}

.comparison-card--classic .mini-metrics span:nth-child(2),
.comparison-card--classic .mini-metrics span:nth-child(3) {
  border-color: var(--red);
}

.comparison-card--plus .mini-metrics span {
  border-color: var(--green);
  background: var(--green-soft);
}

.comparison-card--plus .mini-metrics span:nth-child(2) {
  border-color: var(--blue);
  background: #eef4ff;
}

.mini-metrics em {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.18;
}

.mini-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1;
  overflow-wrap: anywhere;
}

.comparison-card--classic .mini-metrics span:nth-child(2) strong,
.comparison-card--classic .mini-metrics span:nth-child(3) strong {
  color: var(--red);
}

.comparison-card--plus .mini-metrics strong {
  color: var(--green);
}

.comparison-card--plus .mini-metrics span:nth-child(2) strong {
  color: var(--blue);
}

.restcost-panel {
  padding-bottom: 28px;
}

.assumption-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.assumption-grid article {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: white;
}

.source-note {
  grid-column: 1 / -1;
  margin: -16px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.source-note a {
  color: var(--blue);
  font-weight: 800;
}

.assumption-grid h3 {
  margin: 0 0 28px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 28px;
}

dl,
dd {
  margin: 0;
}

dl {
  display: grid;
  gap: 18px;
  font-family: var(--font-body);
}

dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
}

.comparison-values div {
  align-items: center;
}

.comparison-values .cost-row {
  margin-top: 4px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 2px solid transparent;
}

.cost-row--classic {
  border-color: rgba(184, 77, 95, 0.55);
  background: linear-gradient(135deg, rgba(184, 77, 95, 0.14), rgba(255, 245, 247, 0.95));
}

.cost-row--plus {
  border-color: rgba(12, 142, 117, 0.58);
  background: linear-gradient(135deg, rgba(12, 142, 117, 0.16), rgba(232, 247, 241, 0.98));
}

.comparison-values .cost-row dt {
  color: var(--ink);
  font-weight: 800;
}

.comparison-values .cost-row dd {
  font-size: 23px;
  line-height: 1;
}

.comparison-values .amortization-row {
  margin-top: -6px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fbff;
}

.comparison-values .amortization-row[hidden] {
  display: none;
}

.comparison-values .amortization-row dt {
  color: var(--muted);
  font-weight: 800;
}

.comparison-values .amortization-row dd {
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
}

.amortization-row--plus dd {
  color: var(--green);
}

.cost-row--classic dd {
  color: var(--red);
}

.cost-row--plus dd {
  color: var(--green);
}

dt {
  color: var(--muted);
}

dd {
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

a {
  color: var(--blue);
  font-weight: 800;
}

.closing-panel {
  margin-top: 64px;
}

.legal-footer {
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 70px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.15fr 1.65fr;
  gap: 34px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.28;
}

.legal-footer div {
  display: grid;
  align-content: start;
  gap: 2px;
}

.legal-footer strong {
  display: block;
  margin-bottom: 4px;
  color: #0069bf;
  font-weight: 800;
  line-height: 1.18;
}

.chart-axis {
  stroke: #b9c6da;
  stroke-width: 1;
}

.chart-grid {
  stroke: #e5ecf6;
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.chart-area {
  fill: rgba(45, 107, 255, 0.12);
}

.chart-label {
  fill: var(--muted);
  font: 18px var(--font-body);
}

.chart-callout {
  fill: #fff8e7;
  stroke: rgba(214, 160, 61, 0.45);
}

.chart-callout-text {
  fill: #9a6b12;
  font: 700 18px var(--font-display);
}

@media screen and (max-width: 1180px) {
  .controls {
    position: static;
    width: auto;
    margin: 16px;
  }

  .site-shell {
    width: auto;
    margin: 16px;
  }
}

@media screen and (max-width: 760px) {
  .page {
    min-height: auto;
    padding: 28px 20px 46px;
    border-radius: 22px;
  }

  .hero {
    margin: 0 -20px;
  }

  .hero__copy,
  .freimenge-badge {
    left: 24px;
    right: 24px;
    width: auto;
  }

  .freimenge-badge {
    bottom: 24px;
  }

  .hero__copy {
    bottom: 148px;
  }

  .hero__copy h2,
  .section-lead h2 {
    font-size: 36px;
  }

  .magazine-grid,
  .story-row,
  .economics-layout,
  .comparison-cards,
  .assumption-grid {
    grid-template-columns: 1fr;
  }

  .legal-footer {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 36px;
  }
}

@page {
  size: A4;
  margin: 0;
}

@media print {
  html,
  body {
    width: 210mm;
    background: white;
  }

  .controls {
    display: none !important;
  }

  .site-shell {
    display: block;
    width: 210mm;
    margin: 0;
  }

  .page {
    width: 210mm;
    min-height: 297mm;
    height: 297mm;
    margin: 0;
    padding: 10mm 13mm 12mm;
    border-top: 0;
    border-radius: 0;
    box-shadow: none;
    break-after: auto;
    page-break-after: auto;
    overflow: hidden;
  }

  .page::before {
    display: none;
  }

  .page + .page {
    break-before: page;
    page-break-before: always;
  }

  .page[hidden] {
    display: none !important;
    break-before: auto;
    page-break-before: auto;
  }

  .page-header {
    margin-bottom: 8mm;
    padding-top: 5mm;
    border-top: 1.5mm solid var(--blue);
  }

  .page-header img {
    width: 44mm;
  }

  .page-header strong {
    font-size: 22px;
  }

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

  .section-lead h2 {
    font-size: 44px;
  }

  .section-lead p:not(.eyebrow) {
    font-size: 18px;
  }

  .hero {
    height: 92mm;
    margin-inline: -13mm;
  }

  .hero__copy {
    left: 14mm;
    bottom: 18mm;
    width: 108mm;
  }

  .hero__copy h2 {
    font-size: 37px;
    line-height: 0.98;
  }

  .hero__copy p:not(.eyebrow) {
    max-width: 103mm;
    font-size: 16px;
    line-height: 1.3;
  }

  .freimenge-badge {
    right: 13mm;
    bottom: 24mm;
    width: 69mm;
    padding: 7mm;
    border-radius: 18px;
  }

  .freimenge-badge strong {
    font-size: 19px;
    white-space: normal;
  }

  .magazine-grid {
    gap: 7mm;
    margin-top: 8mm;
  }

  .hero-card,
  .metric-stack article {
    padding: 7mm;
    border-radius: 20px;
  }

  .hero-card strong,
  .metric-stack strong {
    font-size: 29px;
  }

  .hero-card p {
    font-size: 11px;
    line-height: 1.34;
  }

  .story-row {
    grid-template-columns: 1fr 60mm;
    gap: 9mm;
    margin-top: 9mm;
  }

  .story-copy {
    padding: 8mm;
    border-radius: 24px;
  }

  .story-copy h3 {
    font-size: 24px;
  }

  .story-copy p {
    font-size: 14px;
    line-height: 1.42;
  }

  .storage-figure {
    overflow: hidden;
    padding: 6mm 6mm 5mm;
    border-color: #d7e5f7;
    border-radius: 18px;
    background: #eef6ff !important;
  }

  .storage-figure img {
    width: min(100%, 46mm);
    max-height: 60mm;
    background: transparent;
    filter: none;
  }

  .storage-figure__image--perspective {
    width: min(100%, 46mm);
    max-height: 60mm;
    transform: none;
  }

  .storage-figure figcaption {
    font-size: 12px;
  }

  .quiet-note,
  .closing-panel {
    margin-top: 38px;
    padding: 28px;
  }

  .quiet-note h3,
  .closing-panel h3 {
    font-size: 27px;
  }

  .quiet-note p,
  .closing-panel p {
    font-size: 16px;
  }

  .legal-footer {
    left: 13mm;
    right: 13mm;
    bottom: 15mm;
    grid-template-columns: 1.35fr 1fr 1.15fr 1.65fr;
    gap: 9mm;
    font-size: 9px;
    line-height: 1.22;
  }

  .legal-footer strong {
    margin-bottom: 2mm;
    font-size: 9.4px;
  }

  .comparison-card__photo {
    height: 53mm;
  }

  .comparison-page {
    padding-top: 9mm;
    padding-bottom: 9mm;
  }

  .comparison-page .page-header {
    margin-bottom: 28px;
  }

  .comparison-page .section-lead {
    margin-bottom: 14px;
  }

  .comparison-page .section-lead h2 {
    font-size: 35px;
    line-height: 1.02;
    margin-bottom: 8px;
  }

  .comparison-page .section-lead p:not(.eyebrow) {
    font-size: 13.8px;
    line-height: 1.3;
  }

  .comparison-page .comparison-cards {
    gap: 9mm;
    margin-bottom: 7mm;
  }

  .comparison-page .comparison-card__photo {
    height: 39mm;
  }

  .storage-float {
    width: 24mm;
    max-height: 40mm;
    bottom: -8mm;
  }

  .comparison-card__body {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 5.4mm;
  }

  .comparison-card__body h3 {
    margin-bottom: 2.6mm;
    font-size: 22.5px;
  }

  .comparison-card__body p {
    min-height: 0;
    margin-bottom: 3.1mm;
    font-size: 11.8px;
    line-height: 1.32;
  }

  .comparison-card__body .comparison-card__spec {
    min-height: 0;
    margin: -1mm 0 2.8mm;
    padding: 2mm 2.5mm;
    border-radius: 12px;
    font-size: 7.8px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mini-metrics {
    gap: 2.6mm;
    margin-top: auto;
  }

  .mini-metrics span {
    padding: 2.8mm;
    border-radius: 14px;
  }

  .mini-metrics em {
    font-size: 8.3px;
    overflow-wrap: normal;
    white-space: normal;
  }

  .source-note {
    margin-top: -4mm;
    font-size: 10px;
  }

  .comparison-values .cost-row {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 4mm 4.5mm;
    border-radius: 14px;
  }

  .comparison-values .cost-row dt {
    line-height: 1.22;
  }

  .comparison-values .cost-row dd {
    min-width: 25mm;
    font-size: 17px;
    white-space: nowrap;
  }

  .comparison-values .amortization-row {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 3mm 4mm;
    border-radius: 12px;
  }

  .comparison-values .amortization-row dd {
    min-width: 25mm;
    font-size: 14px;
    white-space: nowrap;
  }

  .mini-metrics strong {
    font-size: 16.5px;
    white-space: nowrap;
  }

  .restcost-panel {
    padding: 5mm 8mm 4mm;
  }

  .restcost-panel h3 {
    font-size: 20px;
    margin-bottom: 2.4mm;
  }

  .restcost-panel > p {
    font-size: 11.3px;
    margin-bottom: 2.5mm;
  }

  .restcost-panel .chart-card {
    border-radius: 16px;
  }

  .restcost-panel .chart-card svg {
    height: 39mm;
  }

  .assumptions-page .section-lead {
    margin-bottom: 20px;
  }

  .assumptions-page .section-lead h2 {
    font-size: 38px;
    margin-bottom: 10px;
  }

  .assumptions-page .section-lead p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.32;
  }

  .assumptions-page .assumption-grid {
    gap: 12mm;
  }

  .assumptions-page .assumption-grid article {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 10mm;
    border-radius: 24px;
  }

  .assumptions-page .assumption-grid h3 {
    margin-bottom: 8mm;
    font-size: 25px;
  }

  .assumptions-page dl {
    gap: 5mm;
  }

  .assumptions-page .comparison-values div {
    min-height: 7mm;
  }

  .assumptions-page .comparison-values dd {
    white-space: nowrap;
  }

  .assumptions-page .comparison-values .cost-row {
    min-height: 18mm;
    margin-top: auto;
  }

  .assumptions-page .comparison-values .amortization-row {
    min-height: 10mm;
    margin-top: -3mm;
  }

  .assumptions-page .source-note {
    margin-top: -7mm;
  }

  .assumptions-page .closing-panel {
    margin-top: 12mm;
    padding: 9mm 10mm;
    border-radius: 24px;
  }

  .assumptions-page .closing-panel h3 {
    margin-bottom: 4mm;
    font-size: 24px;
  }

  .assumptions-page .closing-panel p {
    font-size: 13px;
    line-height: 1.32;
  }

  .assumptions-page .legal-footer {
    bottom: 8mm;
    font-size: 7.5px;
    line-height: 1.16;
  }

  .assumptions-page .legal-footer strong {
    margin-bottom: 1mm;
    font-size: 7.7px;
  }

  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
