body {
  justify-content: flex-start;
  align-items: flex-start;
}
 
#report-container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: #111;
}
 
/* ── header ── */
#report-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.5rem;
}
 
.report-header-row {
  display: flex;
  gap: 16px;
  align-items: baseline;
}
 
.report-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  min-width: 140px;
}
 
.report-meta {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
}
 
/* ── divider ── */
.report-divider {
  border-top: 1px solid #e0e0e0;
  margin: 1.5rem 0;
}
 
/* ── sections ── */
.report-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.report-section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
}
 
.report-section-body {
  font-size: 14px;
  line-height: 1.9;
  color: #333;
  font-weight: 300;
}
 
.report-section-body p {
  margin: 0 0 10px;
}
 
.report-section-body ul {
  margin: 0 0 10px;
  padding-left: 1.2rem;
}
 
.report-section-body li {
  margin-bottom: 6px;
}
 
/* ── signature ── */
#report-signature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 0.5rem;
}
 
.signature-line {
  font-size: 24px;
  letter-spacing: 4px;
  color: #111;
  margin-top: 4px;
}
 
.signature-note {
  font-size: 10px;
  letter-spacing: 2px;
  color: #aaa;
  text-transform: uppercase;
}

#report-close {
  padding-top: 0.5rem;
  padding-bottom: 3rem;
}

#report-close a {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaa;
  text-decoration: none;
}

#report-close a:hover {
  color: #111;
}