Render Flow - Clamp function
[Parse CSS] -> [Identify clamp() function] -> [Evaluate min, preferred, max values] -> [Calculate final value based on viewport] -> [Apply computed value to property] -> [Layout] -> [Paint] -> [Composite]
The browser reads the CSS and finds the clamp() function. It calculates the final value by choosing the preferred value but limits it between the minimum and maximum values. Then it applies this value to the property, lays out the page, paints pixels, and composites layers.