:root { color-scheme: light; --ink: #272727; --muted: #656565; --rule: #d2d2d2; --accent: #096e65; }
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100vh; color: var(--ink); background: white; font: 16px/1.75 "Helvetica Neue", Helvetica, sans-serif; letter-spacing: 0; }
html.embedded, html.embedded body { min-height: 0; height: auto; }
html.embedded { overflow: hidden; }
body { overflow-x: clip; }
.container { width: min(100% - 80px, 1440px); margin-inline: auto; }
.hero { background: #ededed; border-bottom: 1px solid var(--rule); }
.hero .container { min-height: 450px; padding-block: 48px; }
.eyebrow { font: 12px "Courier New", monospace; text-transform: uppercase; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
h1 { font-size: 64px; line-height: 1.08; margin: 24px 0; }
.hero p { max-width: 570px; color: var(--muted); }
.hero-rules { display: flex; gap: 12px; margin-top: 32px; }
.hero-rules span { display: block; width: 96px; height: 12px; background: #c4c4c4; }
.hero-rules span:nth-child(2) { width: 56px; background: #a0bab6; }
.hero-rules span:nth-child(3) { width: 32px; background: #c8aca8; }
.glance { padding-block: 32px 40px; border-bottom: 1px solid var(--rule); }
h2 { font-size: 36px; line-height: 1.2; margin: 18px 0 24px; }
.glance h2 { font-size: 28px; }
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.stats > div { padding-left: 20px; border-left: 2px solid var(--rule); font: 44px/1.2 Georgia, serif; }
.stats span { display: block; margin-top: 12px; font: 13px/1.4 "Helvetica Neue", Helvetica, sans-serif; color: var(--muted); }
.report-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 48px; padding-top: 48px; }
.toc-slot { position: relative; align-self: stretch; min-width: 0; }
.toc { position: sticky; top: 24px; font-size: 14px; background: white; }
.connected .toc { position: relative; top: 0; max-height: var(--toc-height, 700px); overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; transform: translateY(var(--toc-offset, 0px)); will-change: transform; }
.toc-title, .toc-end { display: block; padding: 16px 12px; border-block: 1px solid var(--ink); }
.toc-title { font-weight: 650; }
.toc ol { list-style: decimal-leading-zero; padding: 0 0 0 36px; margin: 0; }
.toc li { border-bottom: 1px solid var(--rule); padding-left: 4px; }
.toc li:last-child { border: 0; }
.toc li::marker { font: 11px "Courier New", monospace; color: var(--muted); }
.toc a { display: block; padding: 14px 10px; color: inherit; text-decoration: none; border-left: 3px solid transparent; }
.toc a:hover { background: #f3f3f3; }
.toc a[aria-current] { background: #e7f1ef; border-left-color: var(--accent); color: #064c46; font-weight: 650; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.sections { min-width: 0; }
.report-section { min-height: 1040px; padding-bottom: 64px; margin-bottom: 48px; border-bottom: 1px solid var(--rule); scroll-margin-top: 24px; }
.report-section:first-child { min-height: 1600px; }
.report-section:last-child { margin-bottom: 0; }
.report-section p { max-width: 70ch; color: var(--muted); margin: 20px 0; }
.section-number { font: 12px "Courier New", monospace; color: var(--muted); }
.placeholder { min-height: 420px; border: 1px solid var(--rule); background: repeating-linear-gradient(135deg, #ededed 0, #ededed 12px, #e8e8e8 12px, #e8e8e8 13px); display: flex; align-items: center; justify-content: center; margin: 32px 0; color: #787878; font: 24px Georgia, serif; }
.report-section:first-child .placeholder { min-height: 520px; }
.box-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-block: 32px; }
.small-box { height: 180px; background: #f1f1f1; border-top: 3px solid #c5c5c5; padding: 20px; color: var(--muted); font-size: 13px; }
.small-box:nth-child(2) { border-top-color: #9dbab4; }
.small-box:nth-child(3) { border-top-color: #c8aaa5; }
.text-lines { height: 220px; margin-top: 40px; background: repeating-linear-gradient(to bottom, transparent 0, transparent 43px, #ddd 43px, #ddd 44px); }
.report-footer { min-height: 360px; padding-block: 64px; }
.report-footer p { max-width: 700px; color: var(--muted); }
@media (max-width: 1100px) {
  .report-layout { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .toc-slot { display: none; }
}
@media (max-width: 600px) {
  .container { width: calc(100% - 32px); }
  h1 { font-size: 46px; }
  h2 { font-size: 30px; }
  .hero .container { min-height: 420px; padding-block: 40px; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats > div { font-size: 36px; }
  .box-row { gap: 8px; }
  .small-box { padding: 12px 8px; font-size: 12px; overflow-wrap: anywhere; }
  .placeholder { min-height: 360px; }
}