Three Forms
| Form | Meaning | What the explanation should make visible |
|---|---|---|
| Sequential | One value feeds the next. | The intermediate value is named and consumed. |
| Conditional | A branch selects the result. | Every branch returns a compatible result. |
| Parallel | Independent branches run separately. | Branches do not depend on shared intermediate state. |

