Mental Model
A trie stores words by branching letters step-by-step, making it easy to find or add words by following paths of letters.
Analogy: Imagine a tree where each branch is a letter, and to write a word, you walk down branches matching each letter until the word ends.
root ↓ [a] -> [b] -> [c] ↑ current position