`@scope` introduces scoping with a lower and upper boundary (donut scope). Beyond limiting matching, how does `@scope` proximity affect the cascade, and at what point is it applied?
@scope (.card) { .title { color: red; } }
@scope (.card .featured) { .title { color: blue; } }
/* a .title that is inside .card .featured */