/* ==========================================================================
   CarExpress — Konto Page Reveal (TRANS-02)
   Post-crossfade content reveal for the customer account area.
   Deliberately NOT imported by css/main.css — main.css is loaded by public
   pages too, and this effect must stay scoped to the 11 konto/*.html pages
   via per-page <link> only, same convention as page-transition.css.
   ========================================================================== */

.page-reveal {
  opacity: 0;
  transition: opacity var(--transition-reveal);
}

.page-reveal.is-visible {
  opacity: 1;
}

/* Accessibility: respect user motion preference */
@media (prefers-reduced-motion: reduce) {
  .page-reveal {
    opacity: 1;
    transition: none;
  }
}
