/* ========================================================================== 
   ENTRYPOINT: main.css
   Central stylesheet aggregator for the BidKernel marketing shell.

   Purpose:
   - Provide a single, documented entrypoint for all public-facing styles.
   - Load modular CSS files under base/layout/components/pages/utilities
     as described in ReadMe.md.

   Dependencies:
  - base/base.css
   - layout/header-nav.css
   - layout/main-layout.css
   - components/buttons.css
   - components/sections.css
   - utilities/states.css
   - utilities/animations.css
   - pages/protocol.css

   Notes:
   - The legacy marketing-shell.css file is no longer imported at
     runtime; its contents have been split into the modules below.
   - Keep this file as the only stylesheet linked from public HTML
     pages so the entrypoint remains stable.

   Timestamp:
   - 2026-02-07 12:00:00 AM UTC
   ========================================================================== */

/* Base */
@import url("./base/base.css");

/* Layout */
@import url("./layout/header-nav.css");
@import url("./layout/main-layout.css");

/* Components */
@import url("./components/buttons.css");
@import url("./components/sections.css");

/* Page-specific tweaks */
@import url("./pages/protocol.css");

/* Utilities (always last) */
@import url("./utilities/states.css");
@import url("./utilities/animations.css");
