diff --git a/README.md b/README.md
index 9366c70..860fb29 100644
--- a/README.md
+++ b/README.md
@@ -24,6 +24,61 @@ Unlike standard backups, this system uses `rsync --delete` to enforce a bidirect
* **segments_data.json**: The central database for tracking video series counters and optimized hashtag groups.
* **segment_manager2.py**: The logic engine for maintaining metadata consistency across all three phones.
+## 📊 System Architecture Diagram
+
+```mermaid
+flowchart TB
+ subgraph "Device Fleet"
+ S23["📱 Samsung S23+"]
+ Pixel["📱 Google Pixel 9a"]
+ ZFlip["📱 ZFlip7"]
+ end
+
+ subgraph "GitHub Cloud"
+ Repo["🌐 termux-backup repo
(Source of Truth)"]
+ end
+
+ subgraph "Core Scripts ~/.shortcuts/"
+ BA["backup-all
🔄 Push device → Cloud"]
+ SI["sync-in
⬇️ Pull Cloud → device"]
+ MGR["manager
📊 Hashtag/content CRUD"]
+ CAM["org-camera-album
📁 Media organizer"]
+ IIR["iir-log
🔋 Battery logger"]
+ BU["backup-folder
💾 Folder backup"]
+ end
+
+ subgraph "Hidden Engine .hidden/"
+ SEG["segment_manager.py
🎬 Content tracker"]
+ DATA["segments_data.json
#️⃣ Hashtag database"]
+ end
+
+ S23 <-->|"backup-all / sync-in"| Repo
+ Pixel <-->|"backup-all / sync-in"| Repo
+ ZFlip <-->|"backup-all / sync-in"| Repo
+
+ BA -->|"rsync --delete"| Repo
+ Repo -->|"git reset --hard"| SI
+ SI -->|"rsync --delete"| S23
+ SI -->|"rsync --delete"| Pixel
+ SI -->|"rsync --delete"| ZFlip
+
+ MGR --> SEG
+ SEG --> DATA
+ CAM -->|"mv + refresh"| S23
+ IIR -->|"every 20min"| battery_log["battery_status_log.txt"]
+```
+
+### Script Reference Table
+
+| Script | Purpose | Direction |
+|--------|---------|-----------|
+| `backup-all` | Mirrors local → GitHub, deletes cloud files you deleted locally | ↑ Push |
+| `sync-in` | Force-resets local to match GitHub exactly (destructive pull) | ↓ Pull |
+| `manager` | Python CRUD for content segments & hashtag groups | 📊 Data |
+| `org-camera-album` | Moves camera photos to named folders + refreshes gallery | 📁 Media |
+| `iir-log` | Background battery logger (temp, voltage, health) every 20min | 🔋 Monitor |
+| `backup-folder` | One-off folder backups | 💾 Archive |
+
## 🚀 Deployment
### Prerequisites