:root {
  color-scheme: light;
  --paper: #f4f1ea;
  --surface: #fdfcf8;
  --ink: #1d1a14;
  --muted: #857d6f;
  --hairline: #e5e0d4;
  --rule: #d8d2c2;
  --accent: #2e5f4b;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: Seravek, "Gill Sans Nova", Ubuntu, Calibri, "DejaVu Sans", source-sans-pro, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 15px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}

.report-page {
  min-height: 100vh;
}

.report-shell {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 100vh;
  width: min(560px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 56px 0;
  animation: report-rise 0.5s ease-out both;
}

@keyframes report-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

.report-kicker,
.report-note {
  margin: 0;
  color: var(--muted);
}

.report-kicker {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.report-kinds {
  display: flex;
  gap: 22px;
  margin-top: -6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

.report-kinds a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.report-kinds a:hover {
  color: var(--ink);
}

.report-kinds a[aria-current="page"] {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.report-shell .report-panel {
  max-width: none;
  gap: 20px;
  padding: 44px 40px;
  border-color: var(--hairline);
}

.report-panel h1 {
  max-width: 420px;
  margin: 0;
  font: 400 30px/1.2 var(--serif);
  letter-spacing: -0.01em;
}

.report-note {
  font-size: 13px;
}

@media (max-width: 560px) {
  .report-shell .report-panel {
    padding: 30px 22px;
  }

  .report-panel h1 {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}
