Concept Flow - Dig method for nested access
Start with nested hash
Call dig with keys
Check if current level has key
Go deeper
Repeat for next key
Return final value or nil
The dig method tries each key step-by-step inside nested hashes or arrays. If a key is missing, it returns nil instead of error.