diff --git a/README.md b/README.md
index f1ffb08..56ca53b 100644
--- a/README.md
+++ b/README.md
@@ -79,6 +79,7 @@ npm i -g @fiscalmindset/blindfold && blindfold signup --email you@example.com
[๐งช Proof โ the demo](#proof-of-blindness--the-side-by-side-demo)
[๐ Integration styles](#two-integration-styles)
[๐งฉ Supported integrations](#supported-integrations)
+[๐ธ Cost โ when to use it](#cost)
[โจ๏ธ CLI at a glance](#cli-at-a-glance)
[๐ค Agent skill](#agent-skill--let-your-coding-agent-seal-keys-for-you)
@@ -484,6 +485,46 @@ impact writeup: [`integration-stack.md`](integration-stack.md).
---
+
+
+## ๐ธ Cost โ when to use the enclave (and when not to)
+
+Every time a key is *used*, it's a metered Terminal 3 enclave operation โ a real
+(tiny) cost, unlike reading a plaintext env var. That's the trade-off of
+confidential compute: an `env` var is free but leakable; an enclave-substituted
+key costs a fraction but **can't leak**.
+
+**How small?** Measured live: **~20 tokens per operation** (a `use`/release or a
+proxy forward). The self-serve `signup` grant (~20,000 tokens) is roughly
+**1,000 secret-uses**, free, on testnet.
+
+Whether that's cheap depends on **frequency ร value**:
+
+| Key | Fit |
+|---|---|
+| Deploy tokens, Stripe/payment keys, admin creds, keys handed to **autonomous agents** โ used occasionally, catastrophic if leaked | โ
**Ideal** โ the cost is a rounding error next to a breach |
+| A key hit **thousands of times a second**, low value per call | โ ๏ธ Per-call enclave cost adds up โ use the pattern below |
+
+**Three levers to keep it cheap:**
+
+1. **Release once, reuse.** `release()` hands the plaintext to *your* process โ
+ cache it for a burst/session and pay **one op for N calls** instead of N ops.
+ *(Trade-off: the key sits in your memory for that window โ your choice, per
+ workload.)*
+2. **Seal selectively.** Only route the keys that would hurt if leaked through
+ the enclave; leave low-value, high-frequency traffic alone.
+3. **Proxy where it matters.** The per-call proxy gives the strongest guarantee โ
+ spend the ~20 tokens where the guarantee is worth it, and release-and-reuse
+ where volume dominates.
+
+**Bottom line:** for the high-value secrets Blindfold is built for โ the ones you
+hand to AI agents โ ~20 tokens per use is trivial insurance against a leak that
+could cost thousands. It's not meant to wrap every low-value call at massive
+scale; for that, release-and-reuse collapses the cost. And on testnet, you build
+for free.
+
+---
+
## CLI at a glance
```bash