/* ============================================================
   PERF DEFAULTS  —  applied to EVERY device (not a mode).
   Trims the two biggest always-on GPU/repaint costs with
   negligible visual loss.
   ============================================================ */

/* 1) Status dots stop pulsing forever. They're small rounded-full pills, so
      target rounded-full + animate-pulse. Loading skeletons are rectangular
      (rounded-md/lg) and keep their shimmer. Dot + colour are unchanged. */
.rounded-full.animate-pulse { animation: none !important; }

/* 2) Cap frosted-glass blur to a light, cheap radius everywhere. The look
      stays (subtle frost); the GPU no longer re-blurs 12-40px every frame
      while a modal animates. backdrop-blur-none is left untouched. */
[class*="backdrop-blur"]:not(.backdrop-blur-none) {
  -webkit-backdrop-filter: blur(3px) !important;
  backdrop-filter: blur(3px) !important;
}
