/* Report content — full width, no sub-nav */
/* Score hero */
.score-hero { display: flex; align-items: center; gap: 24px; padding: 28px; margin-bottom: 20px; border-radius: 14px; }
.score-orb { position: relative; width: 110px; height: 110px; flex-shrink: 0; }
.orb-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.orb-label strong { font-size: 28px; font-weight: 700; }
.orb-label span { font-size: 12px; color: var(--text-secondary); }
.score-meta h1 { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.band-tag { display: inline-block; padding: 3px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.band-lead { background: rgba(52,199,89,0.15); color: var(--green); }
.band-prog { background: rgba(255,204,0,0.15); color: var(--yellow); }
.band-dev { background: rgba(255,149,0,0.15); color: var(--orange); }
.band-emerge { background: rgba(255,59,48,0.15); color: var(--red); }
/* Domain scores bar */
.domain-scores { padding: 20px; border-radius: 14px; margin-bottom: 20px; }
.domain-scores h2 { font-size: 14px; font-weight: 500; margin-bottom: 14px; color: var(--text-secondary); }
.ds-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.ds-name { width: 160px; font-size: 13px; flex-shrink: 0; }
.ds-track { flex: 1; height: 6px; background: rgba(4,49,89,0.06); border-radius: 3px; overflow: hidden; }
.ds-fill { height: 100%; border-radius: 3px; transition: width 0.4s; }
.ds-fill.score-high { background: var(--green); }
.ds-fill.score-mid { background: var(--yellow); }
.ds-fill.score-low { background: var(--red); }
.ds-val { width: 120px; font-size: 12px; text-align: right; font-variant-numeric: tabular-nums; }
/* Exec cards */
.exec-cards { display: flex; flex-direction: column; gap: 12px; }
.exec-card { padding: 16px 20px; border-radius: 12px; }
.exec-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.exec-card .sec-content { font-size: 13px; line-height: 1.6; color: var(--text-secondary); }
/* Section cards for tab content */
.rpt-section { padding: 20px 24px; border-radius: 14px; margin-bottom: 16px; }
.rpt-section h2 { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.rpt-section h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.sec-content { font-size: 13px; line-height: 1.7; color: var(--text-secondary); }
.sec-content p { margin-bottom: 10px; }
.sec-content strong { color: var(--text-primary); }
/* Domain banner (from header-only tables) */
.domain-banner {
  display: flex; align-items: baseline; gap: 14px;
  padding: 14px 18px; margin: 28px 0 14px; border-radius: 10px;
  border-left: 3px solid var(--accent);
  background: rgba(0,122,255,0.06);
}
.domain-banner:first-child { margin-top: 0; }
.db-name { font-size: 14px; font-weight: 700; letter-spacing: 0.6px; color: var(--accent); }
.db-meta { font-size: 12px; color: var(--text-secondary); font-weight: 500; }
/* Sub-section headers */
.rpt-subheader {
  font-size: 13px; font-weight: 600; color: var(--text-primary);
  margin: 20px 0 8px; padding-bottom: 5px;
  border-bottom: 1px solid var(--border); letter-spacing: 0.3px;
}
/* Callout / decision box */
.rpt-callout {
  padding: 16px 20px; margin: 16px 0; border-radius: 10px;
  font-size: 13px; line-height: 1.6; font-weight: 500;
  background: rgba(255,204,0,0.06); border: 1px solid rgba(255,204,0,0.18);
  color: var(--text-primary);
}
/* Data tables */
.report-table, .sec-content table {
  width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 12px;
}
.report-table th, .sec-content table th {
  padding: 10px 12px; text-align: left; font-weight: 600; font-size: 12px;
  background: rgba(4,49,89,0.03); border-bottom: 2px solid var(--border);
  color: var(--text-primary);
}
.report-table td, .sec-content table td {
  padding: 10px 12px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--border); color: var(--text-secondary); line-height: 1.5;
}
.report-table tbody tr:hover td { background: rgba(4,49,89,0.02); }
/* Sprint cell multi-line */
.cell-line { display: block; font-size: 11px; margin-top: 3px; opacity: 0.8; }
.report-table td strong, .report-table th strong { color: var(--text-primary); }
/* Generate button */
.gen-btn {
  padding: 10px 20px; border-radius: 8px; font-weight: 500;
  background: var(--accent); color: white; margin-top: 16px;
}
.gen-btn:hover { filter: brightness(1.1); }

.report-toolbar {
  display: flex; justify-content: flex-end; padding: 0 0 12px; gap: 8px;
}
.report-toolbar .btn-primary { display: flex; align-items: center; gap: 6px; }
