/* tc-premium-dark.css — site-wide background unification
   Applies the /grab page's "soft premium dark" body treatment to all
   tool / guide / legal / platform-tool pages so the whole site reads as
   one cohesive product (Linear / Vercel / Raycast aesthetic).

   Scope is intentionally LIMITED to body background — does NOT touch
   text colors, accent colors, borders, or component styling. Each page
   keeps its own design system for cards, buttons, layouts. */

body {
  background-color: #0B1220 !important;
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(34,211,238,0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(167,139,250,0.10), transparent 55%),
    radial-gradient(ellipse 70% 60% at 15% 90%, rgba(59,130,246,0.08), transparent 60%) !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

/* Reduced-motion guard not needed — the gradients are static (no drift).
   Background-attachment: fixed gives the parallax-feel without animation. */
