diff --git a/README.de.md b/README.de.md
new file mode 100644
index 0000000..26ced8c
--- /dev/null
+++ b/README.de.md
@@ -0,0 +1,69 @@
+
+
+
+
+# Werkbaum
+
+[English](README.md) · **Deutsch**
+
+Eine textuelle, Markdown-artige Notation für Projektstrukturpläne
+(Work Breakdown Structure) mit Und/Oder-Zerlegung — und ein Live-Editor,
+der sie als Diagramm rendert.
+
+```
+[~] Werkbaum (XL) https://wiki.example.de/relaunch
+ - [~] Dokumentenspeicher
+ | [x] Textdatei mit Copy+Paste im Frontend (S)
+ - [x] Parser
+ - [x] Texteingabefeld im Frontend
+ | [ ] Backend
+ - [~] Darstellung/Rendern (XL)
+ - [/] H (S) @anna
+ - [ ] CMS-Anbindung (M)
+ | [ ] WordPress
+ | [?] Headless CMS
+```
+
+`-` = Pflicht-Teilpaket (all of, im Diagramm nebeneinander) ·
+`|` = Alternative (any of, untereinander) · `[…]` = Status ·
+`(M)` = T-Shirt-Aufwand · `@name` = Zuständigkeit · `%%` = Kommentar.
+
+## Nutzung
+
+
+
+`frontend/index.html` im Browser öffnen — links Text bearbeiten, rechts entsteht das
+Diagramm live. Toggles: transponierte (schmale) Darstellung, verworfene
+Elemente einblenden.
+
+## Projektdokumente
+
+- `frontend/` — Editor · `backend/` — Kotlin/Spring (Gerüst folgt, siehe backend/README.md)
+- `docs/SPEC.md` — verbindliche Sprachdefinition
+- `docs/DECISIONS.md` — Design-Entscheidungen mit Begründung
+- `docs/ROADMAP.md` — Mermaid-Plugin, Taiga-Integration, Tenzu
+- `docs/TASKS.md` — offene Aufgaben (Checkboxen)
+- `docs/brand/BRAND.md` — Logo, Wortbild, Anwendungsregeln
+- `docs/design/` — Design-Herleitung der Marke
+- `CLAUDE.md` — Projektkontext für Claude Code
+
+## Deployment
+
+Der Editor wird per GitHub Actions als statische Seite auf **GitHub Pages**
+veröffentlicht (Workflow: `.github/workflows/pages.yml`). Ausgelöst bei jedem
+Push auf `main` sowie manuell (`workflow_dispatch`).
+
+Der Workflow stellt einen Site-Ordner zusammen: `frontend/index.html` liegt als
+`index.html` an der Wurzel-URL, dazu die vom Editor referenzierten Dateien
+(`docs/brand/` fürs Favicon, `LICENSE` für den MIT-Link im Footer). Die
+`../`-Pfade der Editor-Quelle werden dabei nur auf der Kopie geradegezogen — die
+Quelldatei bleibt unverändert. `backend/` und die übrigen `docs/` werden nicht
+veröffentlicht.
+
+**Einmalige Einrichtung:** In den Repo-Settings unter **Pages** als **Source**
+„GitHub Actions" wählen. Das Repo muss dafür **öffentlich** sein (GitHub Pages
+via Actions ist für private Repos nur mit kostenpflichtigem Plan verfügbar).
+
+## Lizenz
+
+MIT — siehe [LICENSE](LICENSE). © 2026 Michael Hönnig.
diff --git a/README.en.md b/README.en.md
deleted file mode 100644
index 78ff219..0000000
--- a/README.en.md
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-# Werkbaum
-
-[Deutsch](README.md) · **English**
-
-A textual, Markdown-like notation for work breakdown structures with
-and/or decomposition — plus a live editor that renders it as a diagram.
-
-```
-[~] Werkbaum (XL) https://wiki.example.de/relaunch
- - [~] Document store
- | [x] Text file with copy+paste in the frontend (S)
- - [x] Parser
- - [x] Text input field in the frontend
- | [ ] Backend
- - [~] Display/rendering (XL)
- - [/] H (S) @anna
- - [ ] CMS integration (M)
- | [ ] WordPress
- | [?] Headless CMS
-```
-
-`-` = mandatory sub-package (all of, side by side in the diagram) ·
-`|` = alternative (any of, stacked) · `[…]` = status ·
-`(M)` = T-shirt effort · `@name` = responsibility · `%%` = comment.
-
-## Usage
-
-Open `frontend/index.html` in the browser — edit text on the left, the
-diagram is built live on the right. Toggles: transposed (narrow) layout,
-show discarded elements.
-
-## Project documents
-
-- `frontend/` — editor · `backend/` — Kotlin/Spring (scaffold to follow, see backend/README.md)
-- `docs/SPEC.md` — normative language definition
-- `docs/DECISIONS.md` — design decisions with rationale
-- `docs/ROADMAP.md` — Mermaid plugin, Taiga integration, Tenzu
-- `docs/TASKS.md` — open tasks (checkboxes)
-- `docs/brand/BRAND.md` — logo, wordmark, usage rules
-- `docs/design/` — design derivation of the brand
-- `CLAUDE.md` — project context for Claude Code
-
-> **Note:** The project documentation is maintained in German; German is the
-> source language (see `CLAUDE.md`). This English README is a convenience
-> translation and may lag behind the German original.
-
-## Deployment
-
-The editor is published as a static page on **GitHub Pages** via GitHub
-Actions (workflow: `.github/workflows/pages.yml`). Triggered on every push to
-`main` and manually (`workflow_dispatch`).
-
-The workflow assembles a site folder: `frontend/index.html` is placed as
-`index.html` at the root URL, along with the files the editor references
-(`docs/brand/` for the favicon, `LICENSE` for the MIT link in the footer). The
-`../` paths in the editor source are straightened only on the copy — the source
-file stays unchanged. `backend/` and the remaining `docs/` are not published.
-
-**One-time setup:** In the repo settings under **Pages**, select **Source** =
-"GitHub Actions". The repo must be **public** for this (GitHub Pages via Actions
-is only available for private repos on a paid plan).
-
-## License
-
-MIT — see [LICENSE](LICENSE). © 2026 Michael Hönnig.
diff --git a/README.md b/README.md
index 32695f8..cd04355 100644
--- a/README.md
+++ b/README.md
@@ -1,67 +1,71 @@
-
+
# Werkbaum
-**Deutsch** · [English](README.en.md)
+**English** · [Deutsch](README.de.md)
-Eine textuelle, Markdown-artige Notation für Projektstrukturpläne
-(Work Breakdown Structure) mit Und/Oder-Zerlegung — und ein Live-Editor,
-der sie als Diagramm rendert.
+A textual, Markdown-like notation for work breakdown structures with
+and/or decomposition — plus a live editor that renders it as a diagram.
```
[~] Werkbaum (XL) https://wiki.example.de/relaunch
- - [~] Dokumentenspeicher
- | [x] Textdatei mit Copy+Paste im Frontend (S)
+ - [~] Document store
+ | [x] Text file with copy+paste in the frontend (S)
- [x] Parser
- - [x] Texteingabefeld im Frontend
+ - [x] Text input field in the frontend
| [ ] Backend
- - [~] Darstellung/Rendern (XL)
+ - [~] Display/rendering (XL)
- [/] H (S) @anna
- - [ ] CMS-Anbindung (M)
+ - [ ] CMS integration (M)
| [ ] WordPress
| [?] Headless CMS
```
-`-` = Pflicht-Teilpaket (all of, im Diagramm nebeneinander) ·
-`|` = Alternative (any of, untereinander) · `[…]` = Status ·
-`(M)` = T-Shirt-Aufwand · `@name` = Zuständigkeit · `%%` = Kommentar.
+`-` = mandatory sub-package (all of, side by side in the diagram) ·
+`|` = alternative (any of, stacked) · `[…]` = status ·
+`(M)` = T-shirt effort · `@name` = responsibility · `%%` = comment.
-## Nutzung
+## Usage
-`frontend/index.html` im Browser öffnen — links Text bearbeiten, rechts entsteht das
-Diagramm live. Toggles: transponierte (schmale) Darstellung, verworfene
-Elemente einblenden.
+
-## Projektdokumente
+Open `frontend/index.html` in the browser — edit text on the left, the
+diagram is built live on the right. Toggles: transposed (narrow) layout,
+show discarded elements.
-- `frontend/` — Editor · `backend/` — Kotlin/Spring (Gerüst folgt, siehe backend/README.md)
-- `docs/SPEC.md` — verbindliche Sprachdefinition
-- `docs/DECISIONS.md` — Design-Entscheidungen mit Begründung
-- `docs/ROADMAP.md` — Mermaid-Plugin, Taiga-Integration, Tenzu
-- `docs/TASKS.md` — offene Aufgaben (Checkboxen)
-- `docs/brand/BRAND.md` — Logo, Wortbild, Anwendungsregeln
-- `docs/design/` — Design-Herleitung der Marke
-- `CLAUDE.md` — Projektkontext für Claude Code
+## Project documents
+
+- `frontend/` — editor · `backend/` — Kotlin/Spring (scaffold to follow, see backend/README.md)
+- `docs/SPEC.md` — normative language definition
+- `docs/DECISIONS.md` — design decisions with rationale
+- `docs/ROADMAP.md` — Mermaid plugin, Taiga integration, Tenzu
+- `docs/TASKS.md` — open tasks (checkboxes)
+- `docs/brand/BRAND.md` — logo, wordmark, usage rules
+- `docs/design/` — design derivation of the brand
+- `CLAUDE.md` — project context for Claude Code
+
+> **Note:** The detailed project documentation under `docs/` is maintained in
+> German, the project's source language (see `CLAUDE.md`). This README is
+> available in [English](README.md) and [German](README.de.md).
## Deployment
-Der Editor wird per GitHub Actions als statische Seite auf **GitHub Pages**
-veröffentlicht (Workflow: `.github/workflows/pages.yml`). Ausgelöst bei jedem
-Push auf `main` sowie manuell (`workflow_dispatch`).
+The editor is published as a static page on **GitHub Pages** via GitHub
+Actions (workflow: `.github/workflows/pages.yml`). Triggered on every push to
+`main` and manually (`workflow_dispatch`).
-Der Workflow stellt einen Site-Ordner zusammen: `frontend/index.html` liegt als
-`index.html` an der Wurzel-URL, dazu die vom Editor referenzierten Dateien
-(`docs/brand/` fürs Favicon, `LICENSE` für den MIT-Link im Footer). Die
-`../`-Pfade der Editor-Quelle werden dabei nur auf der Kopie geradegezogen — die
-Quelldatei bleibt unverändert. `backend/` und die übrigen `docs/` werden nicht
-veröffentlicht.
+The workflow assembles a site folder: `frontend/index.html` is placed as
+`index.html` at the root URL, along with the files the editor references
+(`docs/brand/` for the favicon, `LICENSE` for the MIT link in the footer). The
+`../` paths in the editor source are straightened only on the copy — the source
+file stays unchanged. `backend/` and the remaining `docs/` are not published.
-**Einmalige Einrichtung:** In den Repo-Settings unter **Pages** als **Source**
-„GitHub Actions" wählen. Das Repo muss dafür **öffentlich** sein (GitHub Pages
-via Actions ist für private Repos nur mit kostenpflichtigem Plan verfügbar).
+**One-time setup:** In the repo settings under **Pages**, select **Source** =
+"GitHub Actions". The repo must be **public** for this (GitHub Pages via Actions
+is only available for private repos on a paid plan).
-## Lizenz
+## License
-MIT — siehe [LICENSE](LICENSE). © 2026 Michael Hönnig.
+MIT — see [LICENSE](LICENSE). © 2026 Michael Hönnig.
diff --git a/docs/screenshot.png b/docs/screenshot.png
new file mode 100644
index 0000000..484d619
Binary files /dev/null and b/docs/screenshot.png differ