/* =============================================
   VIVIANA – ONBOARDING TUTORIAL · v4
   Speech-bubble version — no modal backdrop.

   The live bubble styles are injected inline by
   onboarding-tutorial.js (class .viv-tip). This
   file only neutralises leftover classes from
   earlier builds (.obt-*) so any cached markup
   can't dim the screen or block clicks.
   ============================================= */

/* Kill any surviving old-build overlay artefacts. */
.obt-backdrop,
.obt-spotlight,
.obt-tooltip {
    display: none !important;
    pointer-events: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Reduced-motion users still deserve a visible bubble. */
@media (prefers-reduced-motion: reduce) {
    .viv-tip {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}
