Render Flow - Why splitting files improves maintainability
Read main.scss
Find @use or @import statements
Load partials (_variables.scss, _buttons.scss, etc.)
Parse each partial
Combine all styles
Compile to CSS
Browser renders combined CSS
The Sass compiler reads the main file, loads smaller partial files via @use or @import, parses and combines them, then compiles into one CSS file for the browser to render.