/* reports-coming-soon.css — backdrop-blur overlay on the wizard zone (US-002).
   Anchors absolutely inside `.reports-wizard-zone` (the wizard zone gets
   `position: relative;` either via app.css or set inline by render()).
   CTA reuses `.btn .btn-primary` from shared.css — no new button class. */

.rcs-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.55);
  border-radius: inherit;
}

html.dark .rcs-overlay {
  background: rgba(20, 22, 40, 0.55);
}

.rcs-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 420px;
  padding: 24px 28px;
  text-align: center;
}

.rcs-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full, 9999px);
  background: var(--accent-subtle);
  color: var(--accent);
}
.rcs-icon i[data-lucide] { width: 22px; height: 22px; }

.rcs-title {
  margin: 0;
  font-family: 'Host Grotesk', 'DM Sans', system-ui, sans-serif;
  font-size: var(--text-lg, 18px);
  font-weight: 600;
  color: var(--text-primary);
}

.rcs-body {
  margin: 0;
  font-size: var(--text-sm, 13px);
  line-height: 1.5;
  color: var(--text-secondary);
}

.rcs-cta { margin-top: 4px; }
