/// Returns a nondeterministic 64-bit seed without requiring an OS entropy source.
///
/// Each `RandomState` carries per-instance keys, so consecutive calls produce
/// different values. This is not cryptographic randomness; it only seeds
/// algorithms whose caller passed no explicit seed. Unlike `rand::random`, it
/// does not pull in `getrandom`, so it works on targets like
/// `wasm32-unknown-unknown` without a JavaScript entropy backend.
pub