Users notice the absence of consistency. They rarely notice its presence.

The goal of visual quality in web development is often described as pixel-perfect implementation: every element matching the design exactly. In practice, pixel-perfect is not achievable across the range of browsers, devices, and viewport sizes a real product serves. What is achievable, and what matters more, is consistency.
A visually consistent product is one where the same element looks the same everywhere it appears. A button has the same height, padding, and font weight on every page. A card spacing value is the same across every instance in the product. A heading weight is uniform throughout.
Consistency requires that deviations, where they exist, are systematic rather than arbitrary.
Visual inconsistency in web products typically comes from one of two places: different developers making different decisions about how to implement the same design element, or the same developer making slightly different decisions at different times.
Both are common and both are predictable. Without a systematic way to verify that implementations match a shared design reference, individual developers rely on their own interpretation of the design file and their own judgment about what is close enough. Two developers looking at the same design spec will not always arrive at the same value.
Even with a design system in place, implementations can drift when components are customised or combined in ways the system did not anticipate.
Pixel-perfect perfection requires matching the design exactly across every combination of browser, operating system, screen resolution, and viewport size. Browsers render type, subpixel values, and borders differently. Responsive layouts shift values as the viewport changes. Perfect matching in all of these conditions simultaneously is not possible.
Consistency does not require matching perfectly everywhere. It requires matching the same way everywhere.
Users do not notice visual consistency in the way they notice an interesting design decision. They notice its absence. A product with consistent visual implementation feels solid and considered. A product with inconsistent implementation feels slightly unfinished, in a way that is hard to articulate but easy to perceive.
That feeling compounds with product scale. A small product with a handful of pages can absorb inconsistency without it being particularly visible. A large product with dozens of components across hundreds of pages has many more opportunities for variations to accumulate and many more places where users will encounter the result.
Building from a consistent design reference and checking implementations against it regularly is the practical approach to maintaining visual quality at scale.

