A steep spacing scale can produce a negative mathematical intercept even though every value inside the chosen interval is positive. That is valid algebra: clamp() prevents the preferred line from escaping the declared lower and upper bounds. The example also shows why output should use subtraction instead of an awkward plus-negative expression.

Enter 320 → 24 and 1280 → 80

Use a 16px root, rem + vw output and six decimals. The exact slope is 56/960, or 7/120 px per viewport px. Multiplying by 100 gives 35/6vw, and the pixel intercept is 24 − (7/120 × 320) = 16/3px. In this tuple the intercept remains positive; the separately reviewed tuple 320 → 8 and 1280 → 80 produces the negative -16px intercept used to test subtraction serialization.

Use the raw token only with a reviewed property

The spacing tuple produces clamp(1.5rem, 0.333333rem + 5.833333vw, 5rem). ClampCalc copies a raw value because the same numeric token may be reviewed for padding, margin or gap, while its built-in declaration button intentionally remains font-size. The calculator does not accept an arbitrary CSS property name and never reconstructs user-supplied CSS.

Check composition, not only arithmetic

Large spacing growth may leave too little room for content at intermediate widths or create excessive empty space on wide screens. Test the section with real headings, controls and translations, and inspect nested layout constraints. The token proves a bounded line through the requested points; it does not prove those points create a balanced design.