/* =============================================================================
   INDEX.CSS — Page-Specific Styles: Market Pulse (Landing Page)
   AI Supply Chain Dashboard
   Created: 2025-02-27

   PURPOSE: Overrides and additions specific to index.html only.
   Sets the page accent to blue and the ambient glow to blue.

   SHARED MODULES IMPORTED (via index.main.css):
   - base.css       tokens, body, grid
   - scores.css     score-N colours, trend-badge
   - tiles.css      .index-tile, stack ladder, guide tooltip, modal, dash-btn
   - admin.css      admin console UI

   REVERT: These rules were inline in index.html <style>. If removing the
   module system, paste them back there.
   ============================================================================= */

/* Page accent — blue (default, matches :root --acc) */
:root {
    --acc:     #3b82f6;
    --acc-dim: rgba(59,130,246,0.08);
    --acc-glow:rgba(59,130,246,0.15);
    --ambient-colour: rgba(59,130,246,0.06);
}

/* index.html uses Inter as the body font (others use JetBrains Mono) */
body { font-family: var(--font-body); }
