pub type Grid = Arc<DashMap<CellRef, Cell>>;
Thread-safe sparse grid storage. Wrapped in Arc so clones share the same underlying data.
pub struct Grid { /* private fields */ }