1 Custom properties (variables)
Define reusable values with --name and read them with var(). They cascade and can be themed at runtime.
:root { --brand: #2563eb; --pad: 12px; }
h1 { color: var(--brand); }
.highlight { background: var(--brand); color:#fff; padding: var(--pad); }