:root {
  --ink: #0d0d0d;
  --cream: #f5ecd7;
  --cream-dim: #c8b99a;
  --gold: #c9a84c;
  --gold-dim: #8a6f30;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'DM Mono', monospace;
  font-weight: 300;
  min-height: 100vh;
}

.reports-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1a1a1a;
}

.reports-header__brand {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

.reports-header__nav {
  display: flex;
  gap: 20px;
}

.reports-header__nav a {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #555;
  text-decoration: none;
  transition: color 0.15s;
}

.reports-header__nav a:hover { color: var(--cream-dim); }

.reports-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.reports-main__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.reports-main__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 12px;
}

.reports-main__intro {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 52ch;
}

.reports-state {
  border: 1px solid #1e1e1e;
  padding: 32px 28px;
  text-align: center;
}

.reports-state__eyebrow {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
}

.reports-state__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 12px;
}

.reports-state__text {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.reports-state__cta {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}

.reports-state__cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.reports-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.report-card {
  border: 1px solid #1e1e1e;
  padding: 24px;
  transition: border-color 0.15s;
}

.report-card:hover { border-color: #333; }

.report-card--expired {
  opacity: 0.55;
}

.report-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.report-card__url {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--cream);
  word-break: break-all;
}

.report-card__date {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.report-card__score-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.report-card__score-track {
  flex: 1;
  height: 5px;
  background: #1a1a1a;
  border-radius: 2px;
  overflow: hidden;
}

.report-card__score-fill {
  height: 100%;
  background: linear-gradient(90deg, #e05252, #d4a843, #3a6645);
  border-radius: 2px;
}

.report-card__score-label {
  font-size: 12px;
  color: var(--cream-dim);
  white-space: nowrap;
}

.report-card__score-label strong { color: var(--cream); }

.report-card__progress {
  font-size: 12px;
  color: var(--gold-dim);
  margin-bottom: 18px;
}

.report-card__progress strong { color: var(--gold); font-weight: 400; }

.report-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.report-card__open {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #3d362c;
  background: transparent;
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.15s, color 0.15s;
}

.report-card__open:hover {
  border-color: var(--gold-dim);
  color: var(--cream);
}

.report-card__template {
  display: inline-block;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.15s, opacity 0.15s;
}

.report-card__template:hover {
  background: #d4b25a;
}

.report-card__open--disabled {
  pointer-events: none;
  background: #333;
  color: #666;
}

.report-card__badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  padding: 10px 0;
}

/* Footer styles: static/css/site-footer.css */

@media (max-width: 560px) {
  .report-card__top { flex-direction: column; }
}
