How can we align text in nested cases within all cases?
\documentclass[12pt,a4paper]{article} \usepackage[fleqn]{amsmath} \begin{document} \begin{align} \begin{cases} Equation 1 = 0 &\text{Align this 1} \\ \begin{cases} Equation 2 = 0, &\text{ Align this 2 } \\ Equation 3 = 0, &\text{ Align this 3 } \\ \end{cases}\\ Equation 4 = 0, &\text{ Align this 4} \end{cases} \end{align} \end{document} This produces a "local" alignment within each case, but doesn't align through both cases, which I would like.

