/* Click acknowledgement for full-page navigations on public pages.

   Opening an analysis or a speaker profile is a server-rendered page load. With
   no feedback the page reads as dead for a beat and people click again. This was
   pasted into three templates before the owner found a fourth surface missing it
   (the report-preview source cards, 2026-07-22), so it lives here now.

   `pcv-` namespace, self-contained tokens — same reasoning as public_topbar.css. */

.pcv {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  background: var(--pcv-veil, rgba(250, 245, 234, 0.88));
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .16s ease, visibility .16s ease;
}
.pcv.on { opacity: 1; visibility: visible; }
.pcv-ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid var(--pcv-track, rgba(15, 45, 68, 0.15));
  border-top-color: var(--pcv-spin, #1f7a5c);
  animation: pcvspin .8s linear infinite;
}
.pcv-lbl {
  font: 600 13.5px/1.4 "Inter Tight", -apple-system, sans-serif;
  color: var(--pcv-muted, #5c6b66);
  text-align: center;
  max-width: 34ch;
  padding: 0 16px;
}
.pcv-lbl b {
  display: block;
  color: var(--pcv-ink, #0F2A2E);
  font-size: 15px;
  font-weight: 600;
  margin-top: 3px;
}
@keyframes pcvspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .pcv { transition: none; }
  .pcv-ring { animation: none; }
}
