/* ============================================================
   Report gate (email capture)
   ============================================================ */
.report {
  position: fixed;
  inset: 0;
  background: var(--bg-grad);
  z-index: 11;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.report[hidden] { display: none; }
.report-inner {
  width: 100%;
  max-width: var(--max);
  text-align: center;
}
.report-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-fg);
  margin-bottom: var(--space-5);
}
.report-badge svg { width: 32px; height: 32px; }
.report-inner h1 { text-align: center; }
.report-emoji { font-size: 40px; margin: 8px 0 24px; }
.report-inner .field { text-align: center; margin-bottom: var(--space-3); }
.report-inner .btn { margin-top: var(--space-2); }
.report-inner .error { text-align: center; }
.report-privacy {
  margin: var(--space-4) 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}
.report-privacy[hidden] { display: none; }
