The simplest solution is cache.
But if it’s not possible to use cache in your case, you can try to add custom index for wp_postmeta table.
CREATE INDEX meta_value_idx ON wp_postmeta (
meta_value(20));
The number “20” should be increased in case you have long team names.