/* =========================================================
   MILO COMPONENT CONTRACT
   File: milo-foundation.css
   Layer: Global Foundation Rules
   Version: 1.x

   PURPOSE
   ----------------------------------------------------------------
   Defines the smallest set of global baseline rules that must
   load everywhere to stabilize first paint and page-level safety.

   This file is intentionally minimal.
   It should contain only rules that are truly universal.

   OWNERSHIP
   ----------------------------------------------------------------
   Owns:
   - Page-level baseline background to prevent first-paint flash

   Does NOT own:
   - Design primitives
   - Typography hierarchy or normalization
   - Layout primitives
   - Component/module styles
   - Link behavior
   - Focus ring system
   - Reduced-motion behavior

   ARCHITECTURE
   ----------------------------------------------------------------
   - This file should remain extremely small
   - More specific accessibility behavior belongs in milo-a11y.css
   - Baseline visual safety belongs here only when it must load everywhere

========================================================= */

/* #region 1) FIRST-PAINT BASELINE */
html,
body {
  background: var(--milo-bg-base);
}
/* #endregion 1) FIRST-PAINT BASELINE */
