Mental Model
A trie stores words by sharing common beginnings, so searching for a prefix is fast by following the shared path.
Analogy: Imagine a tree of roads where each letter is a turn; to find all streets starting with 'Ma', you just follow the path M -> a and see all branches from there.
root
↓
m -> a -> n -> null
↓
p -> null
↓
d -> e -> null