/* ── Report page ───────────────────────────────────────────────────────── */
.report-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ── Cover ──────────────────────────────────────────────────────────────── */
.report-cover {
  text-align: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 2px solid #e5e7eb;
}

.report-logo {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 24px;
}

.report-address {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
}

.report-address-sub {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 8px;
}

.report-date {
  font-size: 13px;
  color: #94a3b8;
  margin: 0 0 32px;
}

.report-score-circle {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #1d4ed8;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-num {
  font-size: 36px;
  font-weight: 700;
  color: #1d4ed8;
}

.score-label {
  font-size: 16px;
  font-weight: 400;
  color: #94a3b8;
}

.report-conclusion {
  font-size: 20px;
  line-height: 1.5;
  color: #374151;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Sections ──────────────────────────────────────────────────────────── */
.report-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f1f5f9;
}

.report-section:last-child {
  border-bottom: none;
}

.report-section h2 {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin: 0 0 20px;
}

.report-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  margin: 28px 0 12px;
}

/* ── 3-tier typography ─────────────────────────────────────────────────── */
.report-tier-1 {
  font-size: 20px;
  line-height: 1.5;
  color: #111;
  font-weight: 500;
  margin-bottom: 16px;
}

.report-tier-2 {
  font-size: 15px;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 12px;
}

.report-tier-3 {
  font-size: 12px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 8px;
}

/* ── Placeholder boxes ─────────────────────────────────────────────────── */
.report-placeholder-box {
  height: 200px;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 14px;
  background: #f9fafb;
  margin-bottom: 20px;
}

.report-placeholder-box.wide {
  height: 260px;
}

/* ── Disclaimer ────────────────────────────────────────────────────────── */
.report-disclaimer {
  margin-top: 20px;
  padding: 16px 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.75;
  color: #64748b;
}

.report-disclaimer strong {
  color: #374151;
}

.report-sources .report-tier-3 {
  line-height: 2;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .report-address { font-size: 22px; }
  .report-conclusion { font-size: 17px; }
  .report-tier-1 { font-size: 17px; }
}

/* ── Print styles ──────────────────────────────────────────────────────── */
@media print {
  .global-nav { display: none !important; }
  .report-content { padding: 0; max-width: 100%; }
  .report-section { break-inside: avoid; }
}
