diff --git a/README.md b/README.md
index 2fe7bb9..8ca9945 100644
--- a/README.md
+++ b/README.md
@@ -1,186 +1,240 @@
# Insertr
-> **Element-Level Edit-in-place CMS** - Hybrid approach with individual elements and markdown collections
+> **The Tailwind of CMS** - Zero-configuration content editing for any static site
-Insertr allows developers to make any website content editable by simply adding a CSS class. Clients get appropriate editing interfaces based on content type - individual fields for headlines/buttons, rich markdown editors for flowing content.
+Insertr adds editing capabilities to any HTML website by simply adding `class="insertr"` to elements. No complex setup, no architectural changes, no framework dependencies. Just mark what should be editable and get a production-ready CMS.
-## ✨ Two Editing Approaches
+## ✨ Zero Configuration Philosophy
-### **Element-Level Editing** (Granular Control)
+### **Just Add a Class**
```html
-
+
+
```
-Perfect for:
-- Headlines, titles, taglines
-- Call-to-action buttons (text + URL)
-- Contact information
-- Short descriptions
+**That's it!** No manual IDs, no configuration files, no schema definitions.
-### **Markdown Collections** (Rich Content)
-```html
-
-
Our company was founded in 2020...
-
We recognized that **small businesses** needed access to...
-
Today, we've helped over [200 clients](portfolio) achieve their goals.
-
-```
+### **Container Expansion**
+Containers with `class="insertr"` automatically make their viable children editable:
+- **Viable children**: Elements containing only text (h1-h6, p, span, a, button)
+- **Automatic detection**: Skip complex nested elements
+- **Semantic convenience**: One class enables section-wide editing
-Perfect for:
-- Story sections, articles
-- Team member bios
-- Product descriptions
-- Multi-paragraph content with formatting
+## 🎯 Three User Experiences
-**That's it!** Your clients get the right editing experience for each content type.
+### 1. **Regular Visitors** (99% of traffic)
+- Pure static HTML performance
+- Zero editor assets loaded
+- No runtime overhead
-## 🎯 Three User Types
+### 2. **Content Editors** (Authenticated users)
+- Rich editing interface loads on demand
+- Click-to-edit any marked element
+- Smart input types: text, textarea, link editor, markdown
+- Changes saved to database
-### 1. **The Customer** (End User)
-- Sees a clean, professional website
-- No editing interface visible
-- Fast loading with minimal overhead
-
-### 2. **The Client** (Content Manager)
-- Logs in to see the same website with subtle edit buttons
-- Gets appropriate editing interfaces:
- - **Text inputs** for headlines and short content
- - **Link editors** for buttons (text + URL fields)
- - **Markdown editors** for rich content with formatting
-- Changes are saved immediately with responsive overlay forms
-
-### 3. **The Developer** (You)
-- **Element-level**: Add `class="insertr"` to any individual element
-- **Markdown collections**: Add `data-field-type="markdown"` for rich content
-- No complex setup or framework dependencies
-- Works with any existing website
+### 3. **Developers** (You)
+- Add `class="insertr"` to any element
+- Use HTML `id` attributes for complex cases
+- Never see or manage generated content IDs
+- Works with any static site generator
## 🚀 Current Status
-**✅ Frontend Prototype Complete**
-- **Hybrid editing system**: Element-level + markdown collections
-- **Smart field detection**: Automatic input types based on HTML tags
-- **Responsive overlay forms**: Width adapts to element size
-- **Markdown support**: Powered by marked.js for rich content
-- **Mock authentication system** with role switching
-- **Local persistence** with automatic saving
-- **Multi-page support** with consistent experience
+**✅ Go CLI Parser Complete**
+- **Container expansion**: `div.insertr` auto-expands to viable children
+- **Smart content detection**: Automatic text/markdown/link classification
+- **ID generation**: Context-aware, collision-resistant identifiers
+- **Development server**: Live reload with Air integration
**🔄 In Development**
-- Go backend with REST API
-- Authentik OAuth integration
-- File-based content storage
-- Git version control
+- Content injection engine (database → HTML)
+- Smart asset loading (editor only for authenticated users)
+- Production deployment examples
## 🛠️ Quick Start
-1. **Clone and install**:
- ```bash
- git clone
- cd insertr
- npm install
- ```
+### **Development Setup**
+```bash
+# Clone repository
+git clone
+cd insertr
-2. **Start development server**:
- ```bash
- npm run dev
- ```
-
-3. **Open http://localhost:3000** and test the demo!
-
-## 📚 Integration Guide
-
-### Basic Setup
-```html
-
-
-
-
-
-
-
-
-
-
-
-
+# Start development server with live reload
+cd insertr-cli
+air
```
-### Element-Level Editing
-```html
-
-
Your Title
+Visit **http://localhost:3000** to see enhanced demo site with live reload.
-
-
Your description
+### **Parse Existing Site**
+```bash
+cd insertr-cli
-
-Contact Us
+# Analyze HTML for editable elements
+go run main.go parse ../demo-site/
+
+# Development server with parsing
+go run main.go servedev -i ../demo-site -p 3000
```
-### Markdown Collections
-```html
-
-
-
Your story begins here...
-
Use **bold**, *italic*, and [links](url) naturally.