marimo's html-wasm export bundles only the notebook .py file.
The shared labs/bootstrap.py is not available in the Pyodide
virtual filesystem, so `from bootstrap import setup_lab` fails
with ModuleNotFoundError on every lab in the browser smoke test.
WASM bootstrapping is inherently inline work: you cannot import
a module to install the modules it needs. Each lab's Cell 0 now
handles the two paths directly:
- emscripten: micropip.install the runtime packages + wheel
- native: bootstrap.native_bootstrap() for sys.path setup
bootstrap.py is simplified to native-only (the WASM path in
setup_lab was unreachable and its wheel_relpath() would also
have failed reading pyproject.toml from the virtual filesystem).
The existing test_static.py wheel-version consistency test still
catches drift: it reads the version from pyproject.toml and
asserts the inline micropip URL matches across all 33 labs.
Centralize micropip/setup in labs/bootstrap.py, wire Engine.solve and physics helpers where labs teach them, add missing grid regions for sustainability, and normalize vol1 imports to registry entry points.