diff --git a/submissions/examples/kanban-task-board/README.md b/submissions/examples/kanban-task-board/README.md
new file mode 100644
index 00000000..74cf0cfd
--- /dev/null
+++ b/submissions/examples/kanban-task-board/README.md
@@ -0,0 +1,71 @@
+# Kanban Task Board Component
+
+A modern Kanban-style task management component with columns for organizing tasks by status (To Do, In Progress, Completed). Task cards feature staggered reveal animations, hover lift effects, and color-coded tags.
+
+## Classes
+
+| Class | Description |
+|---|---|
+| `ease-kanban` | Horizontal board container with scroll support |
+| `ease-kanban-column` | Status column (To Do / In Progress / Completed) |
+| `ease-kanban-header` | Column header with dot indicator, title, and count |
+| `ease-kanban-dot` | Status indicator dot |
+| `ease-kanban-dot-todo` | Blue dot for To Do column |
+| `ease-kanban-dot-progress` | Amber dot with pulse for In Progress column |
+| `ease-kanban-dot-done` | Green dot for Completed column |
+| `ease-kanban-count` | Task count badge |
+| `ease-task-card` | Individual task card with entrance animation and hover lift |
+| `ease-task-title` | Task title text |
+| `ease-task-meta` | Due date or status metadata |
+| `ease-task-tag` | Category tag badge |
+| `ease-task-tag-dev` | Purple tag for development tasks |
+| `ease-task-tag-design` | Pink tag for design tasks |
+
+## Usage
+
+```html
+
+
+
+
+
To Do
+ 3
+
+
+ Dev
+
Create API documentation
+ Due Jun 12
+
+
+
+
+
+
+
In Progress
+ 2
+
+
+ Dev
+
Authentication system
+ Due Jun 8
+
+
+
+
+
+
+
Completed
+ 4
+
+
+ Dev
+
Project setup
+ Done
+
+
+
+```
+
+## Why it fits EaseMotion CSS
+
+Pure CSS Kanban board with staggered column and card entrance animations, pulsing status indicators, and hover lift effects. Uses design tokens for colors and spacing. Respects `prefers-reduced-motion`.
diff --git a/submissions/examples/kanban-task-board/demo.html b/submissions/examples/kanban-task-board/demo.html
new file mode 100644
index 00000000..e2dd989b
--- /dev/null
+++ b/submissions/examples/kanban-task-board/demo.html
@@ -0,0 +1,110 @@
+
+
+
+
+
+ Kanban Task Board — EaseMotion CSS
+
+
+
+
+