Use a SmoothStep function on the output of the blend layer with the range being 0.8 to 0.85. This will make it output 0 at 0.8, and 1 at 0.85.
You could also do it by something like “saturate((output - 0.8) * 20)” which may or may not be cheaper per pixel.