Close the components layer at EOF, not 74 lines early
`@layer components {` opens at line 126 and was closed by a stray `}` at
10983, so the last 74 lines (DESCRIBED MODAL, MEDIA PICKER) were unlayered and
outranked every named layer unconditionally. That is exactly the accident this
file's own header says adopting `components` fixed.
A visual no-op today: `components` already sits after `makeover` in the
declared order, `responsive` is declared and empty, and the only other
unlayered rules are the per-request creator theme block theming.rs injects,
which is a `:root` token block matching none of these 74 lines.
Separate from the split that follows so the split stays byte-identical and this
one cascade-touching change is isolated.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>