:root {
  --paper: #f3ede3;
  --paper-strong: #fff9f0;
  --ink: #132433;
  --ink-soft: #365063;
  --line: rgba(19, 36, 51, 0.12);
  --rust: #b45127;
  --teal: #0f6b67;
  --mustard: #9f7430;
  --shadow: 0 18px 60px rgba(16, 29, 43, 0.12);
  --radius: 26px;
  --page-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(180, 81, 39, 0.12), transparent 28rem),
    radial-gradient(circle at top right, rgba(15, 107, 103, 0.14), transparent 24rem),
    linear-gradient(180deg, #f5efe5 0%, #efe6d8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 88%);
}

.page-shell {
  width: min(var(--page-width), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.hero,
.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(19, 36, 51, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 249, 240, 0.82);
  box-shadow: var(--shadow);
}

.hero {
  padding: 2rem;
  min-height: 76vh;
  display: grid;
  gap: 1.6rem;
  align-content: space-between;
  background:
    linear-gradient(135deg, rgba(255, 249, 240, 0.95), rgba(240, 229, 213, 0.84)),
    rgba(255, 249, 240, 0.85);
}

.hero::after,
.panel::after {
  content: "";
  position: absolute;
  inset: auto -6rem -6rem auto;
  width: 14rem;
  height: 14rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 107, 103, 0.14), transparent 68%);
}

.hero__meta,
.hero__nav,
.section-heading,
.lab-grid,
.model-grid,
.episode-card,
.compare-table {
  position: relative;
  z-index: 1;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__tag {
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(19, 36, 51, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__copy h1,
.section-heading h2,
.episode-card h3,
.layer-detail h3,
.lab-card h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  line-height: 0.96;
}

.hero__copy h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 7vw, 7rem);
  letter-spacing: -0.05em;
}

.hero__lede,
.section-heading p,
.layer-detail p,
.lab-card p,
.compare-table,
.episode-card ul,
.episode-card__meta {
  color: var(--ink-soft);
}

.hero__lede {
  max-width: 56rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__nav a,
.episode-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(19, 36, 51, 0.18);
  background: rgba(255, 255, 255, 0.66);
}

.hero__nav a:hover,
.episode-card__link:hover,
.layer-chip:hover,
.scope-chip:hover {
  transform: translateY(-1px);
}

main {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.panel {
  padding: 1.4rem;
}

.panel--contrast {
  background: linear-gradient(180deg, rgba(17, 36, 51, 0.96), rgba(17, 36, 51, 0.9));
  color: #eef4f8;
}

.panel--contrast .section-heading p,
.panel--contrast .compare-table {
  color: rgba(238, 244, 248, 0.74);
}

.panel--accent {
  background:
    linear-gradient(135deg, rgba(180, 81, 39, 0.14), rgba(255, 249, 240, 0.88)),
    rgba(255, 249, 240, 0.88);
}

.eyebrow,
.layer-detail__eyebrow,
.scope-readout__label,
.budget-label,
.episode-card__meta {
  margin: 0 0 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 52rem;
  margin: 0;
  line-height: 1.7;
}

.model-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(15rem, 0.7fr) minmax(0, 0.9fr);
  gap: 1rem;
}

.diagram-card,
.layer-detail,
.lab-card {
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(19, 36, 51, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.diagram-card img {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.diagram-card figcaption {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.layer-stack {
  display: grid;
  gap: 0.65rem;
}

.layer-chip,
.scope-chip {
  appearance: none;
  border: 1px solid rgba(19, 36, 51, 0.16);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.layer-chip.is-active,
.scope-chip.is-active {
  background: var(--ink);
  color: #fff6ea;
  border-color: var(--ink);
}

.layer-detail {
  display: grid;
  gap: 0.75rem;
}

.layer-detail h3 {
  font-size: 2rem;
}

.layer-detail ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1rem;
  color: var(--ink-soft);
}

.compare-table {
  display: grid;
  gap: 0.6rem;
}

.compare-table__row {
  display: grid;
  grid-template-columns: 1.05fr 1.4fr 1.4fr 1.15fr;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-table__row--head {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(238, 244, 248, 0.85);
}

.lab-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.scope-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.scope-readout code {
  display: inline-block;
  padding: 0.45rem 0.65rem;
  border-radius: 12px;
  background: rgba(19, 36, 51, 0.08);
  font-size: 0.95rem;
}

.budget-meter {
  width: 100%;
  height: 0.9rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(19, 36, 51, 0.08);
}

.budget-meter__fill {
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--mustard), var(--rust));
  transition: width 140ms ease;
}

.budget-readout p {
  margin: 0.45rem 0 0;
}

.episode-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(19, 36, 51, 0.1);
}

.episode-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .model-grid,
  .lab-grid,
  .episode-card,
  .compare-table__row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(var(--page-width), calc(100% - 1rem));
    padding-top: 0.8rem;
  }

  .hero,
  .panel {
    padding: 1rem;
    border-radius: 22px;
  }

  .hero__copy h1 {
    font-size: clamp(2.7rem, 16vw, 4.3rem);
  }

  .section-heading h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
}

body.report-page {
  background:
    linear-gradient(180deg, #f6f1e8 0%, #ece2d5 100%);
}

body.report-page::before {
  display: none;
}

.report-shell {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
}

.report-masthead,
.report-section,
.report-rail,
.report-footer {
  border: 1px solid rgba(19, 36, 51, 0.1);
  background: rgba(249, 245, 238, 0.92);
  box-shadow: 0 16px 48px rgba(16, 29, 43, 0.1);
}

.report-masthead {
  padding: 1.25rem;
  border-radius: 30px;
}

.report-masthead__top,
.report-masthead__body,
.report-layout,
.report-check-grid,
.report-summary-grid {
  display: grid;
  gap: 1rem;
}

.report-masthead__top {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(19, 36, 51, 0.1);
}

.report-kicker,
.report-utility {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.report-chip,
.report-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-chip {
  border: 1px solid rgba(19, 36, 51, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-soft);
}

.report-utility a,
.report-link-list a {
  color: var(--ink);
}

.report-utility a {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 36, 51, 0.14);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.report-masthead__body {
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.9fr);
  align-items: start;
  padding-top: 1.25rem;
}

.report-series,
.report-section__eyebrow,
.report-rail__eyebrow,
.report-status-card__label {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.report-headline h1,
.report-section h2,
.report-rail h2,
.report-summary-card h3,
.report-block h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  line-height: 0.98;
}

.report-headline h1 {
  max-width: 8ch;
  font-size: clamp(3.2rem, 7vw, 6rem);
  letter-spacing: -0.05em;
}

.report-summary {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.report-status-board,
.report-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.report-status-card,
.report-summary-card,
.report-block {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(19, 36, 51, 0.1);
  background: rgba(255, 255, 255, 0.76);
}

.report-status-card strong,
.report-summary-card h3 {
  display: block;
  margin-bottom: 0.55rem;
}

.report-status-card p,
.report-summary-card p,
.report-block p,
.report-footer p,
.report-next-list,
.report-checklist {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.report-status-card--warning {
  background: linear-gradient(180deg, rgba(180, 81, 39, 0.12), rgba(255, 255, 255, 0.82));
}

.report-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.78fr);
  align-items: start;
  margin-top: 1.25rem;
}

.report-main {
  display: grid;
  gap: 1rem;
}

.report-section {
  padding: 1.15rem;
  border-radius: 26px;
}

.report-section--warning {
  background:
    linear-gradient(135deg, rgba(180, 81, 39, 0.12), rgba(249, 245, 238, 0.96)),
    rgba(249, 245, 238, 0.96);
}

.report-section__heading {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.report-section h2,
.report-rail h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.04em;
}

.report-pill {
  border: 1px solid transparent;
}

.report-pill--live {
  background: rgba(15, 107, 103, 0.12);
  border-color: rgba(15, 107, 103, 0.24);
  color: #0f6b67;
}

.report-pill--verified {
  background: rgba(19, 36, 51, 0.1);
  border-color: rgba(19, 36, 51, 0.16);
  color: var(--ink);
}

.report-pill--pending {
  background: rgba(180, 81, 39, 0.12);
  border-color: rgba(180, 81, 39, 0.22);
  color: #8f3f1e;
}

.report-manifest {
  display: grid;
  border-top: 1px solid rgba(19, 36, 51, 0.08);
}

.report-manifest__row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 1.6fr auto;
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(19, 36, 51, 0.08);
}

.report-manifest__row--head {
  padding-top: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.report-manifest a {
  color: var(--ink);
  text-underline-offset: 0.16em;
  word-break: break-word;
}

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

.report-checklist,
.report-link-list,
.report-next-list {
  padding-left: 1.1rem;
}

.report-checklist li,
.report-link-list li,
.report-next-list li {
  margin: 0.45rem 0;
}

.report-facts {
  display: grid;
  gap: 0.7rem;
}

.report-facts div {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(19, 36, 51, 0.08);
}

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

.report-facts dt {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.report-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.report-aside {
  display: grid;
  gap: 1rem;
}

.report-rail {
  padding: 1rem;
  border-radius: 24px;
}

.report-footer {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 20px;
}

@media (max-width: 1080px) {
  .report-layout,
  .report-masthead__body,
  .report-status-board,
  .report-summary-grid,
  .report-check-grid,
  .report-manifest__row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .report-shell {
    width: min(1240px, calc(100% - 1rem));
    padding-top: 0.8rem;
  }

  .report-masthead,
  .report-section,
  .report-rail,
  .report-footer {
    padding: 1rem;
    border-radius: 22px;
  }

  .report-headline h1 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .report-section h2,
  .report-rail h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }
}

body.page-launch-report {
  color: #182937;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(180, 81, 39, 0.14), transparent 24rem),
    linear-gradient(180deg, #f3ebde 0%, #e8ddcc 100%);
}

body.page-launch-report::before {
  background-image:
    linear-gradient(rgba(24, 41, 55, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 41, 55, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 86%);
}

.report-shell {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.15rem 0 4rem;
}

.report-header,
.report-section {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(24, 41, 55, 0.12);
  box-shadow: 0 20px 70px rgba(17, 30, 43, 0.12);
}

.report-header {
  padding: 1.25rem;
  color: #f8f0e4;
  background:
    linear-gradient(135deg, rgba(16, 27, 38, 0.96), rgba(21, 43, 58, 0.96)),
    #101b26;
}

.report-header::after,
.report-section::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 107, 103, 0.16), transparent 68%);
  pointer-events: none;
}

.report-header > *,
.report-section > * {
  position: relative;
  z-index: 1;
}

.report-header__bar,
.report-badge-row,
.report-nav,
.report-link-grid,
.report-kpi-grid,
.report-status-grid,
.report-proof-grid,
.report-note-grid {
  display: grid;
  gap: 1rem;
}

.report-header__bar {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.report-kicker,
.report-date,
.report-section__eyebrow,
.report-link-card__eyebrow,
.report-status-card__eyebrow,
.report-kpi__label,
.report-scorecard__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.report-kicker {
  color: rgba(248, 240, 228, 0.72);
}

.report-badge-row {
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  justify-content: end;
  gap: 0.6rem;
}

.report-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 240, 228, 0.18);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.report-badge--light {
  background: rgba(255, 255, 255, 0.08);
  color: #f8f0e4;
}

.report-badge--warning {
  background: rgba(180, 81, 39, 0.16);
  color: #ffd6c5;
}

.report-header__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(18rem, 0.8fr);
  gap: 1.2rem;
  margin-top: 1.4rem;
  align-items: start;
}

.report-title-block h1,
.report-section__heading h2,
.report-link-card h3,
.report-status-card h3,
.report-proof-card h3,
.report-note-card h3 {
  margin: 0;
  font-family: "Baskerville", "Times New Roman", serif;
  line-height: 0.94;
}

.report-title-block h1 {
  max-width: 7ch;
  font-size: clamp(3.5rem, 7vw, 6.3rem);
  letter-spacing: -0.06em;
}

.report-date {
  color: rgba(248, 240, 228, 0.72);
  margin-bottom: 0.8rem;
}

.report-dek,
.report-section__heading p,
.report-scorecard__item p,
.report-link-card p,
.report-kpi span,
.report-note-card p,
.report-proof-notes,
.report-status-list {
  line-height: 1.7;
}

.report-dek {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: rgba(248, 240, 228, 0.8);
  font-size: 1.02rem;
}

.report-scorecard {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(248, 240, 228, 0.12);
  background: rgba(248, 240, 228, 0.06);
  backdrop-filter: blur(6px);
}

.report-scorecard__item {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(248, 240, 228, 0.1);
}

.report-scorecard__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.report-scorecard__item strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.9rem;
  font-family: "Baskerville", "Times New Roman", serif;
  letter-spacing: -0.04em;
}

.report-scorecard__item p {
  margin: 0.35rem 0 0;
  color: rgba(248, 240, 228, 0.75);
}

.report-nav {
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  margin-top: 1.25rem;
  overflow-x: auto;
}

.report-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #f8f0e4;
  text-decoration: none;
  border: 1px solid rgba(248, 240, 228, 0.16);
  background: rgba(248, 240, 228, 0.06);
  white-space: nowrap;
  font-weight: 700;
}

.report-nav a:hover {
  transform: translateY(-1px);
}

.report-main {
  display: grid;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.report-section {
  padding: 1.25rem;
  background: rgba(255, 249, 240, 0.88);
}

.report-section--tinted {
  background:
    linear-gradient(135deg, rgba(180, 81, 39, 0.12), rgba(255, 249, 240, 0.88)),
    rgba(255, 249, 240, 0.88);
}

.report-section--dark {
  color: #edf4f7;
  background:
    linear-gradient(135deg, rgba(15, 28, 38, 0.98), rgba(18, 46, 61, 0.96)),
    #101b26;
}

.report-section--dark .report-section__heading p,
.report-section--dark .report-proof-notes {
  color: rgba(237, 244, 247, 0.74);
}

.report-section__heading {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.report-section__heading h2 {
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  letter-spacing: -0.05em;
}

.report-section__heading p {
  max-width: 48rem;
  margin: 0;
  color: #496172;
}

.report-link-grid,
.report-kpi-grid,
.report-status-grid,
.report-proof-grid,
.report-note-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.report-kpi-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.report-link-card,
.report-kpi,
.report-status-card,
.report-proof-card,
.report-note-card {
  height: 100%;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(24, 41, 55, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.report-section--dark .report-proof-card {
  border-color: rgba(237, 244, 247, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.report-link-card__eyebrow,
.report-status-card__eyebrow {
  color: #6c7e8a;
  margin-bottom: 0.7rem;
}

.report-link-card h3,
.report-status-card h3,
.report-proof-card h3,
.report-note-card h3 {
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.report-link-list,
.report-status-list,
.report-proof-notes {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.report-link-list a {
  color: #163d59;
  font-weight: 700;
}

.report-kpi {
  display: grid;
  gap: 0.45rem;
}

.report-kpi strong {
  display: block;
  font-size: 2rem;
  font-family: "Baskerville", "Times New Roman", serif;
  letter-spacing: -0.04em;
}

.report-kpi span {
  color: #4c6474;
}

.report-status-card--good {
  background:
    linear-gradient(180deg, rgba(15, 107, 103, 0.1), rgba(255, 255, 255, 0.8)),
    rgba(255, 255, 255, 0.76);
}

.report-status-card--warning {
  background:
    linear-gradient(180deg, rgba(180, 81, 39, 0.12), rgba(255, 255, 255, 0.8)),
    rgba(255, 255, 255, 0.76);
}

.report-proof-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.report-proof-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(237, 244, 247, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.report-proof-row code {
  padding: 0.25rem 0.45rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(237, 244, 247, 0.86);
  font-size: 0.88rem;
}

.report-proof-row strong {
  color: #89dbc0;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.report-note-card p {
  margin: 0.9rem 0 0;
  color: #4a6272;
}

@media (max-width: 980px) {
  .report-header__bar,
  .report-header__grid,
  .report-link-grid,
  .report-kpi-grid,
  .report-status-grid,
  .report-proof-grid,
  .report-note-grid {
    grid-template-columns: 1fr;
  }

  .report-badge-row,
  .report-nav {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  .report-shell {
    width: min(1160px, calc(100% - 1rem));
    padding-top: 0.7rem;
  }

  .report-header,
  .report-section {
    padding: 1rem;
    border-radius: 24px;
  }

  .report-title-block h1 {
    font-size: clamp(2.9rem, 17vw, 4.3rem);
    max-width: 6ch;
  }

  .report-section__heading h2 {
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .report-proof-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}
