/* ============================================================
   Bitkoning Master Brand — Base
   The global box model for the whole system. Loads FIRST, before tokens
   and components. Keeping box-sizing global (instead of per-component)
   means width includes padding + border everywhere, so a width:100% field
   with padding can never overflow its container. Add other truly global,
   regression-safe base rules here — not aggressive resets that would change
   how existing .bk-* components render.
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}
