/* Opinionated foundation: everything except the CSS/framework components.
   Restyles bare HTML (reset + generic) and registers every utility group
   (tools, layouts, effects), all tree-shaken. This is the foundation that
   powers `base + components/*`. Use base OR utilities, never both. */

@import './tools/index.css';
/* button is a @utility (foundation-level): generic @applies it to bare
   <button>, and framework components @apply button-icon. */
@import './components/css/button.css';
@import './reset.css' layer(reset);
@import './layout-reset.css' layer(reset);
@import './variables/index.css';
@import './generic/index.css';
@import './layouts/index.css';
@import './effects/index.css';
