pub fn det_hypot(x: f64, y: f64) -> f64
Deterministic hypot(x, y) = sqrt(x² + y²).
sqrt is a WASM intrinsic, so this is deterministic. Uses scaling to avoid overflow/underflow for extreme values.