:root {
  color-scheme: light;
  --ink: #10283f;
  --ink-soft: #42566a;
  --ink-muted: #6e7b87;
  --paper: #fffdf8;
  --canvas: #f3efe5;
  --canvas-deep: #e9e2d4;
  --line: rgba(16, 40, 63, 0.14);
  --line-strong: rgba(16, 40, 63, 0.25);
  --green: #176858;
  --green-dark: #0f5044;
  --green-pale: #dcebe5;
  --gold: #b47a26;
  --gold-pale: #f3e7cf;
  --danger: #8e3c35;
  --shadow-small: 0 10px 30px rgba(22, 37, 50, 0.08);
  --shadow-large: 0 28px 80px rgba(22, 37, 50, 0.13);
  --radius-small: 10px;
  --radius-medium: 18px;
  --radius-large: 28px;
  --page-width: 1180px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--canvas);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 4%, rgba(180, 122, 38, 0.08), transparent 26rem),
    var(--canvas);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(23, 104, 88, 0.35);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 40, 63, 0.94);
  color: #f7f4ec;
  backdrop-filter: blur(18px);
}

.header-inner,
.section-wrap,
.site-footer {
  width: min(var(--page-width), calc(100% - 40px));
  margin-inline: auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #e9c882;
  font-family: Georgia, "Songti SC", serif;
  font-size: 17px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  letter-spacing: 0.04em;
}

.brand small {
  margin-top: -2px;
  color: rgba(247, 244, 236, 0.6);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.header-actions,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(247, 244, 236, 0.75);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: #fff;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 80, 68, 0.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.button-small:hover {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.16);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  box-shadow: none;
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.report-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(10, 30, 49, 0.98), rgba(18, 53, 75, 0.97)),
    var(--ink);
  color: #f7f4ec;
}

.report-hero::after {
  position: absolute;
  z-index: -1;
  right: -12%;
  bottom: -40%;
  width: 62%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  transform: rotate(-14deg);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: 8%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(180, 122, 38, 0.18);
  filter: blur(90px);
}

.hero-content {
  width: min(var(--page-width), calc(100% - 40px));
  min-height: 650px;
  margin-inline: auto;
  padding: 88px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
}

.eyebrow,
.section-index,
.sidebar-label,
.metric-label {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e9c882;
}

.eyebrow span {
  width: 36px;
  height: 1px;
  background: currentColor;
}

.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  color: #fffdfa;
  font-family: Georgia, "Songti SC", "STSong", serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.hero-intro {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(247, 244, 236, 0.76);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.85;
}

.hero-intro strong {
  color: #fff;
}

.hero-actions {
  margin-top: 36px;
}

.cover-card {
  position: relative;
  min-height: 460px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px 26px 2px 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(4, 22, 37, 0.56);
  box-shadow: 0 34px 80px rgba(4, 14, 23, 0.32);
  backdrop-filter: blur(10px);
}

.cover-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(#e4c177, #9a641d);
  content: "";
}

.cover-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(247, 244, 236, 0.66);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cover-symbol {
  width: 104px;
  height: 104px;
  margin: 44px 0 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(233, 200, 130, 0.5);
  border-radius: 50%;
  color: #e9c882;
  font-family: Georgia, serif;
  font-size: 30px;
}

.cover-symbol i {
  position: absolute;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(233, 200, 130, 0.2);
  border-radius: 50%;
}

.cover-meta {
  margin: 0;
}

.cover-meta div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cover-meta dt {
  color: rgba(247, 244, 236, 0.5);
  font-size: 11px;
}

.cover-meta dd {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}

.cover-note {
  margin: 18px 0 0;
  color: rgba(247, 244, 236, 0.54);
  font-size: 11px;
  line-height: 1.6;
}

.summary-section,
.report-section {
  padding: 104px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  gap: 40px;
  align-items: start;
  margin-bottom: 44px;
}

.section-index {
  margin: 9px 0 0;
  color: var(--green);
}

.section-heading h2,
.report-cta h2 {
  margin: 0;
  font-family: Georgia, "Songti SC", "STSong", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.section-heading p:not(.section-index) {
  max-width: 670px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

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

.metric-card {
  min-height: 224px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow-small);
}

.metric-primary {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: #fff;
}

.metric-label {
  color: var(--ink-muted);
}

.metric-primary .metric-label {
  color: rgba(255, 255, 255, 0.68);
}

.metric-card strong {
  margin-top: auto;
  font-family: Georgia, serif;
  font-size: 62px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.metric-card strong span {
  margin-left: 4px;
  font-family: inherit;
  font-size: 20px;
}

.metric-card .metric-days {
  padding-bottom: 9px;
  font-family: Inter, sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.metric-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.metric-primary p {
  color: rgba(255, 255, 255, 0.72);
}

.review-boundary {
  margin-top: 18px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(180, 122, 38, 0.26);
  border-radius: var(--radius-medium);
  background: var(--gold-pale);
}

.boundary-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(180, 122, 38, 0.55);
  border-radius: 50%;
  color: #8d5b14;
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 800;
}

.boundary-title {
  margin: 1px 0 5px;
  color: #71470f;
  font-weight: 850;
}

.review-boundary p:last-child {
  margin: 0;
  color: #665033;
  font-size: 14px;
}

.report-section {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - var(--page-width)) / 2));
  background: var(--paper);
}

.report-heading {
  width: min(var(--page-width), 100%);
  margin-inline: auto;
}

.report-shell {
  width: min(var(--page-width), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.report-sidebar {
  align-self: stretch;
}

.sidebar-inner {
  position: sticky;
  top: 106px;
}

.sidebar-label {
  margin: 0 0 14px;
  color: var(--ink-muted);
}

#report-nav {
  display: grid;
  gap: 4px;
}

#report-nav a {
  min-height: 42px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  border-left: 2px solid transparent;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

#report-nav a:hover,
#report-nav a.is-active {
  border-left-color: var(--green);
  background: var(--green-pale);
  color: var(--green-dark);
}

.nav-loading {
  opacity: 0.7;
}

.sidebar-note {
  margin-top: 28px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: #f7f4ed;
}

.sidebar-note span {
  color: var(--green);
  font-weight: 900;
}

.sidebar-note p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 11px;
  line-height: 1.6;
}

.report-content {
  min-width: 0;
  max-width: 790px;
}

.loading-state,
.error-state {
  min-height: 220px;
  padding: 38px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: #f8f5ee;
}

.loading-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 3px solid var(--green-pale);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

.loading-state strong,
.error-state strong {
  font-family: Georgia, "Songti SC", serif;
  font-size: 24px;
}

.loading-state p,
.error-state p {
  margin: 7px 0 0;
  color: var(--ink-muted);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.report-document-title {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.report-content > blockquote:first-of-type {
  margin-top: 0;
}

.report-content h2 {
  margin: 76px 0 24px;
  padding-top: 8px;
  color: var(--ink);
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(29px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.report-content h2::before {
  width: 34px;
  height: 3px;
  margin-bottom: 18px;
  display: block;
  background: var(--green);
  content: "";
}

.report-content h2:first-of-type {
  margin-top: 48px;
}

.report-content h3 {
  margin: 38px 0 14px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.45;
}

.report-content p {
  margin: 0 0 18px;
  color: #334b60;
  line-height: 1.82;
}

.report-content blockquote {
  margin: 24px 0 32px;
  padding: 20px 22px 20px 26px;
  border: 0;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  background: var(--gold-pale);
  color: #5f4a2d;
  font-size: 14px;
  line-height: 1.75;
}

.report-content ul {
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.report-content li {
  position: relative;
  padding-left: 23px;
  color: #334b60;
  line-height: 1.75;
}

.report-content li::before {
  position: absolute;
  top: 0.7em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.draft-block {
  position: relative;
  margin: 16px 0 28px;
  padding: 26px 28px 28px;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: #f6f8f7;
  color: #2c4255;
  font: 14px/1.82 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  box-shadow: 0 8px 24px rgba(16, 40, 63, 0.05);
}

.draft-block::before {
  display: block;
  margin-bottom: 16px;
  color: var(--green);
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  content: "Draft · Manual review required";
}

.table-scroll {
  width: 100%;
  margin: 18px 0 32px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(16, 40, 63, 0.04);
  -webkit-overflow-scrolling: touch;
}

.report-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 13px;
}

.report-table th,
.report-table td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.report-table th {
  background: #edf3f0;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.05em;
}

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

.report-table td {
  color: #3d5264;
  line-height: 1.65;
}

.error-state {
  flex-direction: column;
  align-items: flex-start;
  border-color: rgba(142, 60, 53, 0.25);
  background: #fbf0ed;
}

.error-state strong {
  color: var(--danger);
}

.error-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.error-retry {
  cursor: pointer;
  font: inherit;
}

.error-state .button-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
}

.error-state .button-ghost:hover {
  border-color: var(--green);
  background: var(--green-pale);
}

.report-cta {
  margin-block: 96px;
  padding: clamp(38px, 6vw, 68px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius-large) 6px var(--radius-large) 6px;
  background:
    radial-gradient(circle at 85% 0%, rgba(233, 200, 130, 0.18), transparent 23rem),
    var(--ink);
  color: #fff;
  box-shadow: var(--shadow-large);
}

.report-cta h2 {
  max-width: 720px;
  color: #fff;
}

.report-cta p:not(.section-index) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.section-index-light {
  color: #e9c882;
}

.cta-actions {
  min-width: 230px;
  flex-direction: column;
  align-items: stretch;
}

.button-light {
  border-color: #f7f4ec;
  background: #f7f4ec;
  color: var(--ink);
  box-shadow: none;
}

.button-light:hover {
  border-color: #fff;
  background: #fff;
}

.cta-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.cta-secondary:hover {
  color: #fff;
}

.site-footer {
  padding: 0 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink-muted);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--green-dark);
  font-weight: 750;
  text-decoration: none;
}

.noscript-note {
  position: fixed;
  z-index: 60;
  right: 20px;
  bottom: 20px;
  max-width: 480px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--paper);
  box-shadow: var(--shadow-large);
  color: var(--ink-soft);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero-content {
    min-height: auto;
    padding: 68px 0 76px;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .cover-card {
    width: min(100%, 580px);
    min-height: 390px;
  }

  .cover-symbol {
    margin: 32px 0 28px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-index {
    margin-top: 0;
  }

  .report-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .report-sidebar {
    position: sticky;
    z-index: 15;
    top: 76px;
    margin-inline: -20px;
    padding: 12px 20px;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.95);
    backdrop-filter: blur(14px);
  }

  .sidebar-inner {
    position: static;
  }

  .sidebar-label,
  .sidebar-note {
    display: none;
  }

  #report-nav {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  #report-nav::-webkit-scrollbar {
    display: none;
  }

  #report-nav a {
    min-width: max-content;
    border: 0;
    border-radius: 999px;
    background: #f1eee7;
  }

  #report-nav a:hover,
  #report-nav a.is-active {
    border: 0;
    background: var(--green-pale);
  }

  .report-content {
    max-width: 100%;
  }

  .report-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cta-actions {
    width: min(100%, 360px);
  }
}

@media (max-width: 640px) {
  .header-inner,
  .section-wrap,
  .site-footer,
  .hero-content {
    width: min(100% - 28px, var(--page-width));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand small,
  .header-actions .text-link {
    display: none;
  }

  .button-small {
    min-height: 40px;
    padding: 9px 13px;
    font-size: 12px;
  }

  .hero-content {
    padding: 52px 0 58px;
  }

  .hero-copy h1 {
    font-size: clamp(39px, 13vw, 56px);
  }

  .hero-intro {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .cover-card {
    min-height: 360px;
    padding: 22px;
  }

  .summary-section,
  .report-section {
    padding-block: 72px;
  }

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

  .section-heading h2,
  .report-cta h2 {
    font-size: 34px;
  }

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

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

  .metric-card strong {
    font-size: 52px;
  }

  .review-boundary {
    padding: 20px;
  }

  .report-section {
    padding-inline: 14px;
  }

  .report-sidebar {
    top: 68px;
    margin-inline: 0;
    padding-inline: 0;
  }

  .report-content h2 {
    margin-top: 62px;
    font-size: 30px;
  }

  .report-content h3 {
    margin-top: 32px;
  }

  .draft-block {
    padding: 22px 18px;
    font-size: 12px;
  }

  .loading-state,
  .error-state {
    min-height: 190px;
    padding: 25px;
  }

  .report-cta {
    width: calc(100% - 28px);
    margin-block: 72px;
    padding: 32px 24px;
    border-radius: 22px 4px 22px 4px;
  }

  .cta-actions {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 36px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

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

@media print {
  :root {
    --canvas: #fff;
    --paper: #fff;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 11pt;
  }

  .site-header,
  .hero-actions,
  .report-sidebar,
  .report-cta,
  .site-footer,
  .skip-link,
  .noscript-note {
    display: none !important;
  }

  .report-hero {
    background: #fff;
    color: #000;
  }

  .hero-content {
    min-height: auto;
    padding: 24mm 0 18mm;
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .hero-intro,
  .eyebrow {
    color: #000;
  }

  .cover-card {
    min-height: auto;
    border-color: #999;
    background: #fff;
    color: #000;
    box-shadow: none;
  }

  .cover-card * {
    color: #000 !important;
  }

  .summary-section,
  .report-section {
    padding-block: 12mm;
  }

  .metric-card,
  .metric-primary {
    min-height: auto;
    border-color: #aaa;
    background: #fff;
    color: #000;
    box-shadow: none;
  }

  .metric-card * {
    color: #000 !important;
  }

  .report-shell {
    display: block;
  }

  .report-content {
    max-width: none;
  }

  .report-content h2,
  .report-content h3,
  .draft-block,
  .table-scroll,
  blockquote {
    break-inside: avoid;
  }

  .draft-block,
  .table-scroll {
    border-color: #aaa;
    background: #fff;
    box-shadow: none;
  }
}
