1. The forgotten financial layer
Between a household's checking account and its credit cards sits a third layer of money that appears in no banking app: gift cards, store credit, punch passes, loyalty balances, membership perks, prepaid cards. We call it the forgotten financial layer, the dusty dollars. The money is fine; it just hasn't been touched in a while.
Only one slice of it has a rigorous public measurement. 43% of Americans hold unused gift cards or store credit, at an average of $244 per person, roughly $27 billion held nationwide (Bankrate, 2024). That is a stock, not a flow: the flow figure, dated but sourced, is about $3 billion of gift-card value that went unredeemed in 2019 (Mercator Advisory Group, via CBS News, 2020). And the stock is growing: the average holder's balance ran $116 in 2021, $175 in 2022, $187 in 2023, and $244 in 2024, a 30% jump in the final year alone (Bankrate's annual series). Retail accounting recognizes the slice it no longer expects you to redeem as revenue; the industry's own word for it is breakage.
The rest of the layer is real but poorly measured, and this paper will not invent numbers for it. Class packs and punch passes routinely expire unfinished. Consumers belong to about 15 loyalty programs and actively use about 7 (Bond, The Loyalty Report); the other 8 accrue value nobody claims. Membership perks, a warehouse cashback balance, a co-op member reward, a roadside benefit, renew silently whether used or not. Prepaid cards hold their balances in drawers indefinitely.
2. Why the money gets stuck: the five-step chain
To spend a gift card you must, in order: remember it exists, know where it is, have it with you, remember it at the store, and get it accepted at the register. As a thought experiment, if each step independently succeeded 80% of the time, only a third of cards would make it through all five. The point is not the specific number; it is that failure compounds across steps, so fixing any single step barely moves the outcome. The chain has to be fixed end to end.
Every incumbent answer fixes one step. A drawer fixes "know where it is." A note in your phone fixes "remember it exists." Nothing fixes "remember it at the store," because that requires knowing where you are at the moment you are there.
3. The Right-Moment Doctrine
The doctrine is that a stored-value wallet earns its keep at exactly three moments, and must cost the user almost nothing at each:
Intake. One photo. The scanner reads brand, balance, barcode, PIN and expiration; on-device Vision handles barcodes and text while a cloud read handles the harder fields. Cards also arrive by voice, from the photo library, and by forwarding a gift-card email to the Share Extension, which parses it with regular expressions and makes no network call of any kind.
Cue. The reminder arrives when you can act on it, near the store, at a plausible hour, and never as a nag. This is the hard part, and it is a restraint problem, not a reach problem. One component, the NotificationConductor, owns every location cue: the same card cannot interrupt twice inside 30 minutes or more than 3 times in 24 hours; a Watch buzz silences the phone for 60 seconds; dismiss a card's alerts three times in a month and it quiets itself, with a one-tap undo in Settings. After a card's first alert, a wrong-time-of-day fire is vetoed outright, so a coffee card does not chirp at 11pm.
Redemption. The screen brightens, the barcode fills it, the cashier scans it, from the iPhone or the Apple Watch. Cards with a confirmed barcode can also export to Apple Wallet, with a free account sign-in.
4. Location that adapts without watching you
A fixed reminder radius is wrong somewhere: 500 meters in Manhattan covers a thousand storefronts, and in rural Utah it may not cover the parking lot. CardCue Pro tunes the radius to neighborhood density, 100m urban, 300m suburban, 600m rural, with dwell requirements of 30, 45 and 75 seconds so traffic driving past a store does not fire it, and quiet hours matched to each profile.
Classifying a neighborhood does not require knowing where you live. The device rounds your coordinate to a 1km grid square before any network call, and a small model classifies that square as urban, suburban or rural; the answer is cached for 90 days. The server never sees a finer coordinate, a name, or a card. A trajectory predictor fires slightly early when a store sits within 35 degrees of your heading, 30 seconds to 4 minutes out. iOS grants an app 20 live geofences; CardCue Pro keeps the nearest 20 armed and re-picks them as you move.
5. The wallet stays on the phone
Before the first scan, the app asks one direct question, cloud AI or on-device only, and no card photo can leave the device until it is answered. With the cloud read on, the image goes to Anthropic's Claude through CardCue Pro's own relay, which adds the API key, stores nothing, and forwards no identity: no name, no email, no account, no device identifier. With on-device only, every scan runs locally.
Card numbers and barcodes are encrypted on the device before sync, with a key that lives in the user's iCloud Keychain and never reaches us. PINs stay in the Keychain and never sync. Card photos are never stored in the cloud; a scan sends the photo to the AI reader unless the on-device-only toggle is set. The one analytics SDK ships off by default and is anonymous when on; there is no IDFA, no tracking prompt, and nothing is sold.
6. Conclusion
The forgotten financial layer persists because remembering has been the user's job. The Right-Moment Doctrine moves that job to the phone, the one object that is present at intake, present near the store, and present at the register. Everything else in CardCue Pro, the interruption budget, the density profiles, the on-device rounding, exists so that the moving of that job costs the user nothing: not time, not attention, and not their data.
Sources
- Bankrate, "Gift card survey," 2024. 43% of U.S. adults hold at least one unused gift card, voucher or store credit; average $244 per person; ~$27 billion in total. bankrate.com
- Mercator Advisory Group, via CBS News, January 2020: roughly $3 billion in U.S. gift-card value went unredeemed in 2019.
- Bond Brand Loyalty, "The Loyalty Report": consumers belong to roughly 15 loyalty programs and actively engage with about half.
- Every product behavior and number in sections 3–5 (cooldowns, caps, radii, dwell times, grid rounding, encryption boundaries) is read directly from the CardCue Pro source as shipped, August 2026.