I changed the way the FQM works to simply invert the query condition instead of deleting the rule altogether.
For example, it will turn the following feature query condition...
@supports (display: flex) { /* styles here */ }
... Into the following...
@supports not((display: flex)) { /* styles here */ }