Mental Model
A stack is like a pile where you add and remove items only from the top. Using a linked list means each item points to the one below it.
Analogy: Imagine stacking plates: you put a new plate on top and take the top plate off first. Each plate holds the next plate underneath.
Top -> [Node1] -> [Node2] -> [Node3] -> null ā (top points here)