/* Compact scale — 75% of default.
   font-size: 75% sets 1rem = 12px (down from 16px), which shrinks all
   Tailwind spacing, font sizes and widths by 25% with no scroll penalty.
   We use font-size instead of zoom because CSS zoom forces a full
   layout+paint pass on every scroll frame, causing severe jank. */
html { font-size: 75%; }

/* Scraper / dashboard use overflow-hidden on the body for a locked layout.
   vh units are unaffected by font-size so h-screen still fills the viewport. */
