/*
 * Establishes the global CSS cascade layer order for the whole theme.
 * This file MUST be the first stylesheet loaded (see functions.php),
 * before tailwind-built.css and before any unlayered legacy CSS.
 *
 * Per the CSS Cascade Layers spec, any unlayered declaration always
 * beats a layered one, regardless of selector specificity or source
 * order. Declaring every stylesheet's rules inside a named layer -
 * with "legacy" listed first here - makes Tailwind's utilities layer
 * win over the theme's own CSS (style.css, main.css, inline <style>
 * blocks), matching how the old CDN Play build behaved.
 */
@layer legacy, properties, theme, base, components, utilities;
