/* CORRESPONDENCE PROOF — M8a Foundation cascade root · single-import entry point
 * ============================================================
 * Loads all 9 M8a foundation utility files in canonical cascade order. Entry HTML surfaces
 * link to this file ONCE; downstream @import resolution wires the full M8a-01..M8a-09 stack.
 *
 * Established at S65 M8b-01 Phase 0+ via TIER0-TECH-DEBT-CLOSURE-DEFAULT 4-gate PASS:
 *   - CAUSAL: M8b-01 audit at S65 surfaced "M8a never integrated to site root" gap; foundation
 *             files shipped 124/124 green at M8a-01..M8a-09 close but were not loaded by any
 *             entry HTML (only legacy css/style.css linked from index.html etc.).
 *   - CONTAINED: <30 min wall time, 5 files modified (this file + entry HTML <link> wires +
 *             integration spec).
 *   - SINGLE-PATTERN: CSS @import cascade rooted in this file + <link rel="stylesheet"> in
 *             entry HTMLs. One mechanism, one shape.
 *   - GRADE-SAFE: unblocks M8b-01 ship AND prevents 27 downstream M8b primitive ships
 *             into CSS void; preserves M8a 124/124 grade floor.
 *
 * Cascade order (matrix v1.2.3 §5.1 sequence + m8a-phase-close-log doctrine):
 *   1. foundation-tokens.css       — M8a-01 — palette tokens (--ink, --cream, --lime, --lime-deep, --rule, --rule-strong, --muted, --dim).
 *                                              MUST LOAD FIRST so all downstream var() references resolve.
 *   2. foundation-typography.css   — M8a-02 — .font-display + .font-mono + .font-body + .text-eyebrow.
 *   3. foundation-mark.css         — M8a-03 — .mark substrate (2-property pattern (c)).
 *   4. foundation-grid.css         — M8a-04 — .grid-bg-noise + .grid-bg-lines.
 *   5. foundation-motion.css       — M8a-05 — @keyframes + .motion-pulse-status + .motion-pulse-signature + .motion-ticker-scroll + @media reduced-motion.
 *   6. foundation-annotation.css   — M8a-06 — .annotation + .annotation--doc-chrome.
 *   7. foundation-chrome.css       — M8a-07 — .chrome--top + .chrome--bottom + .chrome--status.
 *   8. foundation-glyph.css        — M8a-08 — .glyph--ticker + .glyph--keynav.
 *   9. foundation-a11y.css         — S75   — .skip-to-content + *:focus-visible + ::selection (Acid Paper a11y restore from css/style.css orphans).
 *  10. foundation-print.css        — M8a-09 — @media print overrides (LOAD LAST so print scope can override anything in the stack).
 *
 * Layer contract: NO new CSS rules in this file. @import only. Phantom-rule-safe: every
 * imported file ships verified utilities per its M8a phase-close-log entry. This file is a
 * cascade-order ORCHESTRATOR, not a utility carrier.
 *
 * Forward-applicable: every M8b primitive that consumes foundation utilities MUST verify
 * runtime resolution in entry HTML context (via tests/integration/foundation-cascade-wiring.
 * spec.js), NOT just isolated fixture context. Isolated fixture proves the primitive WORKS;
 * integration spec proves the foundation WIRES correctly to the live site. Both gates required
 * from M8b-01 forward.
 *
 * Matrix reference: docs/m8/scope-coverage-matrix.md v1.2.3 §5.1 + §5.2 M8b-01 row
 * Phase close log: docs/m8/m8b-phase-close-log.md M8b-01 entry (Foundation integration gate section)
 */

@import url('./foundation-tokens.css');
@import url('./foundation-typography.css');
@import url('./foundation-mark.css');
@import url('./foundation-grid.css');
@import url('./foundation-motion.css');
@import url('./foundation-annotation.css');
@import url('./foundation-chrome.css');
@import url('./foundation-glyph.css');
@import url('./foundation-a11y.css');
@import url('./foundation-print.css');
