.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  border-color: var(--line);
  color: var(--green);
  background: rgba(110, 231, 168, 0.07);
  outline: none;
}

.report-shell {
  width: min(1040px, 92vw);
  margin: 0 auto;
  padding: 54px 0 72px;
}

.reports-hero {
  padding: 30px 0 48px;
  border-bottom: 1px solid var(--line);
}

.reports-hero h1 {
  margin: 0;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.reports-hero > p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.report-list {
  display: grid;
  gap: 16px;
  padding: 28px 0;
}

.report-card,
.report-document {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 26, 19, 0.88);
  box-shadow: var(--shadow);
}

.report-card {
  padding: 26px 30px;
}

.report-card-date,
.report-document-meta,
.breadcrumbs {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.report-card h2 {
  margin: 7px 0 10px;
  font-size: 23px;
}

.report-card h2 a,
.report-read-link,
.breadcrumbs a,
.report-back a,
.report-content a {
  color: inherit;
  text-decoration: none;
}

.report-card h2 a:hover,
.report-read-link,
.breadcrumbs a:hover,
.report-back a:hover,
.report-content a {
  color: var(--green);
}

.report-card p {
  margin: 0 0 15px;
  color: var(--muted);
}

.report-read-link {
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.report-document {
  overflow: hidden;
}

.report-document-meta {
  display: flex;
  justify-content: space-between;
  padding: 15px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--green);
  background: rgba(110, 231, 168, 0.04);
}

.report-content {
  overflow-x: auto;
  padding: 30px 36px 42px;
  color: #d9e9e1;
  font-size: 15px;
}

.report-content h1,
.report-content h2,
.report-content h3 {
  color: var(--text);
  line-height: 1.3;
}

.report-content h1 {
  margin: 0 0 26px;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(32px, 4.8vw, 52px);
  font-weight: 500;
}

.report-content h2 {
  margin: 40px 0 16px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 24px;
}

.report-content h3 {
  margin: 26px 0 10px;
  font-size: 18px;
}

.report-content p,
.report-content li {
  color: #bbcec4;
}

.report-content strong {
  color: var(--text);
}

.report-content table {
  width: 100%;
  min-width: 620px;
  margin: 18px 0 26px;
  border-collapse: collapse;
  font-size: 13px;
}

.report-content th,
.report-content td {
  padding: 11px 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.report-content th {
  color: var(--green);
  background: rgba(110, 231, 168, 0.05);
}

.report-content blockquote {
  margin: 22px 0;
  padding: 12px 18px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  background: rgba(242, 198, 109, 0.05);
}

.report-content pre,
.report-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.report-content pre {
  overflow-x: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #050d09;
}

.report-back {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.report-empty {
  padding: 56px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.report-empty p {
  color: var(--muted);
}

.report-disclaimer {
  margin-top: 4px;
}

@media (max-width: 760px) {
  .report-shell {
    width: min(100% - 28px, 680px);
    padding-top: 28px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding: 7px 9px;
    font-size: 12px;
  }

  .site-nav a:first-child {
    display: none;
  }

  .report-card,
  .report-content {
    padding: 22px 20px 28px;
  }

  .report-document-meta {
    padding: 13px 20px;
  }
}
