Given an integer array `nums` of unique elements, return all possible subsets (the power set). The solution set must not contain duplicate subsets.
Recursive Backtracking (Decision Tree)
At each index, we make a binary decision: either INCLUDE the current element in the subset or SKIP it and move on. This builds a decision tree whose leaves are all 2^n subsets. Unlike Combination Sum, we always add the current path to results — there's no target to hit.