.report {
  width: min(42rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(7.5rem, 14vh, 9rem) 0 4.5rem;
}

.report-hero {
  margin-bottom: 1.35rem;
  animation: rise 0.7s var(--ease) both;
}

.report-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.5vw, 2.45rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 0.45rem;
}

.report-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.crumbs {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.crumbs a {
  color: var(--accent);
  text-decoration: none;
}

.crumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.note-kicker {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 1.35rem 0 0.65rem;
}

.note-kicker:first-of-type {
  margin-top: 0.15rem;
}

.sheet {
  position: relative;
  isolation: isolate;
  --lg-filter: none;
  border-radius: 22px;
  padding: 1.25rem 1.3rem 1.35rem;
  margin: 0 0 1rem;
  color: var(--fg);
  box-shadow: 0 6px var(--lg-outer-shadow-blur) var(--lg-outer-shadow);
  background-color: color-mix(in srgb, var(--panel-bg) 88%, var(--fg) 4%);
  border: 1px solid var(--panel-brd);
  backdrop-filter: blur(14px) saturate(1.55);
  -webkit-backdrop-filter: blur(14px) saturate(1.55);
  animation: sheet-fade 0.45s var(--ease) backwards;
}

.sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 var(--lg-shadow-blur) var(--lg-shadow-spread) var(--lg-shadow-color);
  background-color: rgba(var(--lg-tint-rgb), var(--lg-tint-opacity));
  pointer-events: none;
}

.sheet.lg-refraction {
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.sheet.lg-refraction::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  backdrop-filter: var(--lg-filter);
  -webkit-backdrop-filter: var(--lg-filter);
  isolation: isolate;
  pointer-events: none;
}

.sheet.lg-fallback {
  background-color: rgba(var(--lg-tint-rgb), var(--lg-fallback-tint));
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
}

.sheet > * {
  position: relative;
  z-index: 2;
}

html.lg-chrome .sheet.lg-static {
  transition: transform 0.3s var(--ease);
}

html.lg-chrome .sheet.lg-static:hover {
  will-change: transform;
}

html.lg-chrome .sheet.lg-static.lg-refraction::after,
html.lg-chrome[data-resolved-theme="dark"] .sheet.lg-static.lg-refraction::after {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  isolation: auto;
  background: var(--lg-spec) center / 100% 100% no-repeat;
  mix-blend-mode: screen;
  opacity: var(--lg-spec-opacity, 0.5);
}

@media (prefers-color-scheme: dark) {
  html.lg-chrome:not([data-resolved-theme="light"]) .sheet.lg-static.lg-refraction::after {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

.sheet:nth-of-type(1) { animation-delay: 0.04s; }
.sheet:nth-of-type(2) { animation-delay: 0.08s; }
.sheet:nth-of-type(3) { animation-delay: 0.12s; }
.sheet:nth-of-type(4) { animation-delay: 0.16s; }
.sheet:nth-of-type(5) { animation-delay: 0.2s; }
.sheet:nth-of-type(6) { animation-delay: 0.24s; }
.sheet:nth-of-type(7) { animation-delay: 0.28s; }

a.sheet.note-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.sheet.note-link:hover {
  text-decoration: none;
}

.note-link h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  color: var(--fg);
}

.note-link p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.report-foot {
  margin-top: 1.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 0.9rem;
  animation: rise 0.75s var(--ease) 0.32s both;
}

.report-foot a {
  color: var(--accent);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(0.7rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes sheet-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .report-hero,
  .sheet,
  .report-foot {
    animation: none;
  }
}
