/* ==========================================================================
   LAVZEN — Site background  (lavzen-bg.css)
   --------------------------------------------------------------------------
   Flat monochrome canvas behind the whole site — the same neutral dark field the
   home marketplace uses, so every page reads as one consistent black/glass theme
   (no photo, no hue). `html body…` specificity (0,0,2) keeps it above the Code
   Studio "Global → Background" default.
   ========================================================================== */

html { background: var(--ink-deep, #0B0B0B); }

html body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 18% 6%,  #232323 0%, rgba(35,35,35,0) 46%),
    radial-gradient(95% 80% at 88% 18%,  #1c1c1c 0%, rgba(28,28,28,0) 50%),
    radial-gradient(140% 120% at 50% 120%, #0b0b0b 0%, rgba(11,11,11,0) 55%),
    linear-gradient(180deg, #141414 0%, #101010 60%, #0b0b0b 100%);
}
