/* ============================================
   CC8: TRUTH HYDRATION — visual states
   Loading shimmer, loaded clean, fallback italicized w/ asterisk.
   ============================================ */

.truth-loading {
  opacity: 0.6;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: helix-truth-shimmer 1.5s infinite;
  border-radius: 3px;
}

.truth-loaded {
  opacity: 1;
}

.truth-fallback {
  opacity: 0.85;
  font-style: italic;
}

.truth-fallback::after {
  content: ' *';
  font-size: 0.8em;
  opacity: 0.6;
}

@keyframes helix-truth-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
