the real problem isnt the engines, its that most devs are too lazy to even check the computed values. if you actually wanna fight the "mathematically perfect" look, you gotta stop treating font-size as a static value and start using custom fluid typography scales in your css.
clamp(1rem, 2vw + 0.5rem, 3rem)
its easy to just let the browser scale everything linearly, but that kills any sense of hierarchy. i usually manually override the letter-spacing for larger headings using a negative value like
-0.02em
to keep them from looking too loose on high-res screens.
>the human touch is being replaced by algorithmic efficiencyif you arent specifically targeting your
display weights w/ custom tracking, you might as well just use a template. its not about avoiding the tools, its about refusing to let the default browser rendering dictate the entire visual rhythm of the page