CoolFace
Apppublic

aidn/REM-IBM-MAS

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
index.html1566 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="de" class="scroll-smooth">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>REM Showcase | IBM Watson X</title>7 8    <!-- Tailwind CSS CDN -->9    <script src="https://cdn.tailwindcss.com"></script>10 11    <!-- Tailwind Configuration — IBM Carbon Emulation -->12    <script>13        tailwind.config = {14            theme: {15                extend: {16                    colors: {17                        ibm: {18                            blue: '#0f62fe',19                            'blue-hover': '#0353e9',20                            'blue-light': '#4589ff',21                            dark: '#161616',22                            surface: '#262626',23                            'surface-light': '#393939',24                            text: '#f4f4f4',25                            'text-secondary': '#c6c6c6',26                            'text-muted': '#525252',27                            success: '#42be65',28                            warning: '#f1c21b',29                            error: '#da1e28',30                        }31                    },32                    fontFamily: {33                        ibm: ['"IBM Plex Sans"', 'system-ui', 'sans-serif'],34                        'ibm-mono': ['"IBM Plex Mono"', 'monospace'],35                    },36                    borderRadius: {37                        DEFAULT: '0',38                    }39                }40            }41        }42    </script>43 44    <!-- Lucide Icons CDN -->45    <script src="https://unpkg.com/lucide@latest"></script>46 47    <!-- IBM Plex Fonts -->48    <link rel="preconnect" href="https://fonts.googleapis.com">49    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>50    <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap" rel="stylesheet">51 52    <style>53        /* ── Beamer & Base Optimizations ── */54        html { font-size: 16px; }55        body {56            -webkit-font-smoothing: antialiased;57            -moz-osx-font-smoothing: grayscale;58        }59 60        /* ── Fade-in-up Animation ── */61        .fade-in-up {62            opacity: 0;63            transform: translateY(24px);64        }65        .fade-in-up.visible {66            animation: fadeInUp 0.7s ease-out forwards;67        }68        @keyframes fadeInUp {69            to {70                opacity: 1;71                transform: translateY(0);72            }73        }74 75        /* ── Delay Variants ── */76        .delay-100 { animation-delay: 100ms; }77        .delay-200 { animation-delay: 200ms; }78        .delay-300 { animation-delay: 300ms; }79        .delay-400 { animation-delay: 400ms; }80        .delay-500 { animation-delay: 500ms; }81 82        /* ── Typing Indicator (for Phase 2) ── */83        .typing-indicator span {84            animation: blink 1.4s infinite both;85            height: 6px;86            width: 6px;87            background: #c6c6c6;88            border-radius: 50%;89            display: inline-block;90            margin: 0 1px;91        }92        .typing-indicator span:nth-child(2) { animation-delay: 0.2s; }93        .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }94        @keyframes blink {95            0% { opacity: 0.2; transform: scale(0.8); }96            20% { opacity: 1; transform: scale(1.2); }97            100% { opacity: 0.2; transform: scale(0.8); }98        }99 100        /* ── Chat message animation (for Phase 2) ── */101        .chat-message {102            animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;103            opacity: 0;104            transform: scale(0.95);105        }106        @keyframes popIn {107            to { opacity: 1; transform: scale(1); }108        }109 110        /* ── Scrollbar (for Phase 2 chat) ── */111        .chat-scroll::-webkit-scrollbar { width: 6px; }112        .chat-scroll::-webkit-scrollbar-track { background: transparent; }113        .chat-scroll::-webkit-scrollbar-thumb { background: #525252; }114        .chat-scroll::-webkit-scrollbar-thumb:hover { background: #c6c6c6; }115 116        /* ── Agent Graph — Fancy Effects ── */117        @keyframes orbit-spin { to { transform: rotate(360deg); } }118        @keyframes radar-sweep { to { transform: rotate(360deg); } }119        @keyframes dash-flow { to { stroke-dashoffset: -20; } }120        @keyframes scan-sweep {121            0% { transform: translateY(-260px); opacity: 0; }122            10% { opacity: 1; }123            90% { opacity: 1; }124            100% { transform: translateY(260px); opacity: 0; }125        }126        @keyframes halo-breathe {127            0%, 100% { opacity: 0.04; transform: scale(1); }128            50% { opacity: 0.14; transform: scale(1.15); }129        }130        @keyframes orch-heartbeat {131            0%, 70%, 100% { transform: scale(1); }132            80% { transform: scale(1.06); }133            90% { transform: scale(0.97); }134        }135        @keyframes ambient-drift {136            0%   { opacity: 0; transform: translate(0, 0); }137            15%  { opacity: 0.5; }138            85%  { opacity: 0.3; }139            100% { opacity: 0; transform: translate(var(--dx, 15px), var(--dy, -40px)); }140        }141        @keyframes ring-tick-pulse {142            0%, 100% { opacity: 0.2; r: 2; }143            50% { opacity: 0.6; r: 3; }144        }145        .orbit-ring-1 { transform-origin: 200px 230px; animation: orbit-spin 80s linear infinite; }146        .orbit-ring-2 { transform-origin: 200px 230px; animation: orbit-spin 55s linear infinite reverse; }147        .orbit-ring-3 { transform-origin: 200px 230px; animation: orbit-spin 110s linear infinite; }148        .radar-sweep-line { transform-origin: 200px 230px; animation: radar-sweep 4s linear infinite; }149        .graph-conn-dash { animation: dash-flow 1.2s linear infinite; }150        .scan-line-fx { animation: scan-sweep 5s ease-in-out infinite; }151        .node-halo { transform-origin: center; animation: halo-breathe 3s ease-in-out infinite; }152        .orch-core-beat { transform-origin: 200px 230px; animation: orch-heartbeat 2.5s ease-in-out infinite; }153        .ambient-dot {154            animation: ambient-drift var(--dur, 6s) ease-in-out infinite;155            animation-delay: var(--delay, 0s);156        }157        .ring-tick { animation: ring-tick-pulse 3s ease-in-out infinite; }158 159        #mas-graph {160            transition: opacity 1.5s ease;161        }162        #mas-graph path, #mas-graph circle, #mas-graph rect, #mas-graph line {163            transition: fill 0.5s ease, stroke 0.5s ease, stroke-width 0.35s ease, opacity 0.5s ease, filter 0.5s ease;164        }165    </style>166</head>167<body class="bg-ibm-dark text-ibm-text font-ibm">168 169    <!-- ════════════════════════════════════════════ -->170    <!-- NAVIGATION                                   -->171    <!-- ════════════════════════════════════════════ -->172    <nav class="fixed w-full z-50 bg-ibm-dark/95 backdrop-blur-md border-b border-ibm-surface-light">173        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">174            <div class="flex justify-between h-16 items-center">175                <!-- Brand -->176                <div class="flex items-center gap-3">177                    <span class="text-lg font-bold text-ibm-text tracking-tight">IBM Watson X</span>178                    <span class="hidden sm:inline text-ibm-surface-light">|</span>179                    <span class="hidden sm:inline text-sm font-medium text-ibm-text-secondary font-ibm-mono">Multi-Agent REM</span>180                </div>181 182                <!-- Nav Links -->183                <div class="hidden md:flex items-center space-x-8">184                    <a href="#challenge-loesung" class="text-ibm-text-secondary hover:text-ibm-text font-medium text-sm transition-colors duration-200">185                        Challenge & Lösung186                    </a>187                    <a href="#demo" class="text-ibm-text-secondary hover:text-ibm-text font-medium text-sm transition-colors duration-200">188                        Live-Demo189                    </a>190                    <a href="#architektur" class="text-ibm-text-secondary hover:text-ibm-text font-medium text-sm transition-colors duration-200">191                        Architektur192                    </a>193                </div>194 195                <!-- CTA -->196                <div>197                    <a href="#demo" class="bg-ibm-blue hover:bg-ibm-blue-hover text-white px-5 py-2 text-sm font-semibold transition-colors duration-200 inline-block">198                        Zum Showcase199                    </a>200                </div>201            </div>202        </div>203    </nav>204 205    <!-- ════════════════════════════════════════════ -->206    <!-- HERO                                         -->207    <!-- ════════════════════════════════════════════ -->208    <section id="hero" class="relative pt-32 pb-20 lg:pt-44 lg:pb-28 overflow-hidden bg-ibm-dark">209        <!-- Abstract Grid Background -->210        <div class="absolute inset-0 z-0 opacity-20">211            <div class="absolute inset-0" style="background-image:212                linear-gradient(rgba(15,98,254,0.15) 1px, transparent 1px),213                linear-gradient(90deg, rgba(15,98,254,0.15) 1px, transparent 1px);214                background-size: 60px 60px;">215            </div>216            <!-- Gradient Overlay -->217            <div class="absolute inset-0 bg-gradient-to-b from-ibm-dark via-ibm-dark/70 to-ibm-surface"></div>218        </div>219 220        <!-- Content -->221        <div class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">222            <div class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 border border-white/10 text-sm font-medium text-ibm-text-secondary mb-8 fade-in-up">223                <i data-lucide="cpu" class="w-4 h-4 text-ibm-blue"></i>224                IBM Watson X &nbsp;|&nbsp; Multi-Agent System225            </div>226 227            <h1 class="text-4xl md:text-6xl lg:text-7xl font-bold tracking-tight mb-6 fade-in-up delay-100">228                Requirements Engineering<br class="hidden md:block" />229                mit <span class="text-transparent bg-clip-text bg-gradient-to-r from-ibm-blue to-ibm-blue-light">Agentic AI</span>.230            </h1>231 232            <p class="text-lg md:text-xl lg:text-2xl text-ibm-text-secondary max-w-3xl mx-auto mb-10 fade-in-up delay-200">233                Von der Meeting-Aufnahme zum priorisierten Epic-Backlog —<br class="hidden sm:block" />234                in Minuten, nicht Tagen.235            </p>236 237            <div class="flex flex-col sm:flex-row justify-center gap-4 fade-in-up delay-300">238                <a href="#demo" class="bg-ibm-blue hover:bg-ibm-blue-hover text-white px-8 py-4 font-bold text-lg transition-colors duration-200 inline-flex items-center justify-center gap-2">239                    Demo starten240                    <i data-lucide="arrow-down" class="w-5 h-5"></i>241                </a>242            </div>243        </div>244    </section>245 246    <!-- ════════════════════════════════════════════ -->247    <!-- CHALLENGE & LÖSUNG                           -->248    <!-- ════════════════════════════════════════════ -->249    <section id="challenge-loesung" class="py-24 bg-ibm-dark">250        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">251            <div class="text-center mb-16">252                <h2 class="text-3xl md:text-4xl font-bold text-ibm-text mb-4 fade-in-up">253                    Statische Prozesse treffen auf komplexe Anforderungen254                </h2>255                <div class="w-24 h-1 bg-ibm-blue mx-auto mt-6 fade-in-up delay-100"></div>256            </div>257 258            <div class="grid grid-cols-1 md:grid-cols-2 gap-12 lg:gap-24">259                <!-- ── Challenge (Links) ── -->260                <div class="space-y-6">261                    <div class="flex items-center gap-3 mb-8 fade-in-up">262                        <div class="w-10 h-10 flex items-center justify-center bg-ibm-error/10">263                            <i data-lucide="alert-triangle" class="w-5 h-5 text-ibm-error"></i>264                        </div>265                        <h3 class="text-2xl font-bold text-ibm-text">Die Challenge</h3>266                    </div>267 268                    <!-- Card 1 -->269                    <div class="bg-ibm-surface p-6 border border-ibm-surface-light fade-in-up delay-100">270                        <div class="flex gap-4">271                            <i data-lucide="file-text" class="w-6 h-6 text-ibm-error mt-1 shrink-0"></i>272                            <div>273                                <h4 class="font-bold text-ibm-text mb-2">Unstrukturierte Meetings</h4>274                                <p class="text-ibm-text-secondary text-sm leading-relaxed">275                                    Anforderungen gehen im Gespräch verloren. Meeting-Notizen sind fragmentiert und unvollständig — wertvolles Wissen versickert.276                                </p>277                            </div>278                        </div>279                    </div>280 281                    <!-- Card 2 -->282                    <div class="bg-ibm-surface p-6 border border-ibm-surface-light fade-in-up delay-200">283                        <div class="flex gap-4">284                            <i data-lucide="clock" class="w-6 h-6 text-ibm-warning mt-1 shrink-0"></i>285                            <div>286                                <h4 class="font-bold text-ibm-text mb-2">Manueller Breakdown</h4>287                                <p class="text-ibm-text-secondary text-sm leading-relaxed">288                                    Vom Meeting zu Epics und Tasks vergehen Tage. Der Requirements Engineer wird zum Flaschenhals im Projekt.289                                </p>290                            </div>291                        </div>292                    </div>293 294                    <!-- Card 3 -->295                    <div class="bg-ibm-surface p-6 border border-ibm-surface-light fade-in-up delay-300">296                        <div class="flex gap-4">297                            <i data-lucide="hourglass" class="w-6 h-6 text-ibm-warning mt-1 shrink-0"></i>298                            <div>299                                <h4 class="font-bold text-ibm-text mb-2">Reaktive PoCs</h4>300                                <p class="text-ibm-text-secondary text-sm leading-relaxed">301                                    Bis ein lauffähiger Proof-of-Concept steht, vergehen Wochen. In der Zwischenzeit ändern sich die Anforderungen bereits.302                                </p>303                            </div>304                        </div>305                    </div>306                </div>307 308                <!-- ── Lösung (Rechts) ── -->309                <div class="space-y-6">310                    <div class="flex items-center gap-3 mb-8 fade-in-up">311                        <div class="w-10 h-10 flex items-center justify-center bg-ibm-blue/10">312                            <i data-lucide="check-circle" class="w-5 h-5 text-ibm-blue"></i>313                        </div>314                        <h3 class="text-2xl font-bold text-ibm-text">Die Lösung</h3>315                    </div>316 317                    <!-- Card 1 -->318                    <div class="bg-[#1a2b4a] p-6 border border-ibm-blue/20 fade-in-up delay-100">319                        <div class="flex gap-4">320                            <i data-lucide="check-circle" class="w-6 h-6 text-ibm-blue mt-1 shrink-0"></i>321                            <div>322                                <h4 class="font-bold text-ibm-text mb-2">100% Vollständigkeit</h4>323                                <p class="text-ibm-text-secondary text-sm leading-relaxed">324                                    Keine Anforderung geht verloren. Das MAS verarbeitet jede Zeile des Transkripts und extrahiert alle relevanten Informationen.325                                </p>326                            </div>327                        </div>328                    </div>329 330                    <!-- Card 2 -->331                    <div class="bg-[#1a2b4a] p-6 border border-ibm-blue/20 fade-in-up delay-200">332                        <div class="flex gap-4">333                            <i data-lucide="zap" class="w-6 h-6 text-ibm-blue mt-1 shrink-0"></i>334                            <div>335                                <h4 class="font-bold text-ibm-text mb-2">Time-to-Value in Minuten</h4>336                                <p class="text-ibm-text-secondary text-sm leading-relaxed">337                                    Von der Meeting-Aufnahme zum priorisierten Epic-Backlog in Minuten statt Tagen. Parallelisierte Agenten-Arbeit macht's möglich.338                                </p>339                            </div>340                        </div>341                    </div>342 343                    <!-- Card 3 -->344                    <div class="bg-[#1a2b4a] p-6 border border-ibm-blue/20 fade-in-up delay-300">345                        <div class="flex gap-4">346                            <i data-lucide="rocket" class="w-6 h-6 text-ibm-blue mt-1 shrink-0"></i>347                            <div>348                                <h4 class="font-bold text-ibm-text mb-2">Sofort lauffähige PoCs</h4>349                                <p class="text-ibm-text-secondary text-sm leading-relaxed">350                                    Direkt nach dem Meeting liegt ein strukturierter, priorisierter Epic- und Task-Backlog vor — ready to build.351                                </p>352                            </div>353                        </div>354                    </div>355                </div>356            </div>357        </div>358    </section>359 360    <!-- ════════════════════════════════════════════ -->361    <!-- ════════════════════════════════════════════ -->362    <!-- INTERACTIVE DEMO                             -->363    <!-- ════════════════════════════════════════════ -->364    <section id="demo" class="py-24 bg-ibm-surface relative overflow-hidden">365        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">366            <div class="text-center mb-6">367                <span class="text-ibm-blue font-semibold tracking-wider uppercase text-xs font-ibm-mono fade-in-up">Interaktive Demo</span>368                <h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4 text-ibm-text fade-in-up delay-100">Agenten-Pipeline in Aktion</h2>369                <p class="text-lg text-ibm-text-secondary max-w-2xl mx-auto fade-in-up delay-200">370                    Ein Meeting-Mitschnitt durchläuft das Multi-Agent System — orchestriert auf IBM Watson X.371                </p>372            </div>373 374            <!-- ═══ AGENT TOPOLOGY GRAPH (centered, standalone) ═══ -->375            <div class="max-w-3xl mx-auto mb-8 relative fade-in-up delay-200" id="graph-standalone-container">376                <div class="relative flex justify-center items-center overflow-hidden" style="height: 320px;">377                    <!-- Layered background effects -->378                    <div class="absolute inset-0 opacity-[0.03]" style="background-image: radial-gradient(circle, #0f62fe 1px, transparent 1px); background-size: 24px 24px;"></div>379                    <div class="absolute inset-0" style="background: radial-gradient(ellipse at 50% 50%, rgba(15,98,254,0.06) 0%, transparent 60%);"></div>380                    <svg viewBox="0 0 400 500" class="h-full w-auto opacity-60" id="mas-graph" style="filter: saturate(1.2);">381                    <defs>382                        <!-- ═══ FILTERS ═══ -->383                        <filter id="glow-blue" x="-80%" y="-80%" width="260%" height="260%">384                            <feGaussianBlur stdDeviation="6" result="blur"/>385                            <feMerge><feMergeNode in="blur"/><feMergeNode in="SourceGraphic"/></feMerge>386                        </filter>387                        <filter id="glow-green" x="-80%" y="-80%" width="260%" height="260%">388                            <feGaussianBlur stdDeviation="6" result="blur"/>389                            <feMerge><feMergeNode in="blur"/><feMergeNode in="SourceGraphic"/></feMerge>390                        </filter>391                        <filter id="glow-yellow" x="-80%" y="-80%" width="260%" height="260%">392                            <feGaussianBlur stdDeviation="5" result="blur"/>393                            <feMerge><feMergeNode in="blur"/><feMergeNode in="SourceGraphic"/></feMerge>394                        </filter>395                        <filter id="glow-soft" x="-100%" y="-100%" width="300%" height="300%">396                            <feGaussianBlur stdDeviation="10" result="blur"/>397                            <feMerge><feMergeNode in="blur"/><feMergeNode in="SourceGraphic"/></feMerge>398                        </filter>399 400                        <!-- ═══ GRADIENTS ═══ -->401                        <radialGradient id="grad-orch" cx="40%" cy="35%">402                            <stop offset="0%" stop-color="#4589ff"/>403                            <stop offset="100%" stop-color="#0f62fe"/>404                        </radialGradient>405                        <radialGradient id="grad-node" cx="40%" cy="35%">406                            <stop offset="0%" stop-color="#525252"/>407                            <stop offset="100%" stop-color="#262626"/>408                        </radialGradient>409                        <radialGradient id="grad-active" cx="40%" cy="35%">410                            <stop offset="0%" stop-color="#78a9ff"/>411                            <stop offset="100%" stop-color="#0f62fe"/>412                        </radialGradient>413                        <radialGradient id="grad-done" cx="40%" cy="35%">414                            <stop offset="0%" stop-color="#6fdc8c"/>415                            <stop offset="100%" stop-color="#42be65"/>416                        </radialGradient>417                        <linearGradient id="sweep-grad" x1="0" y1="1" x2="0" y2="0">418                            <stop offset="0%" stop-color="#0f62fe" stop-opacity="0.7"/>419                            <stop offset="100%" stop-color="#0f62fe" stop-opacity="0"/>420                        </linearGradient>421                        <linearGradient id="scan-grad" x1="0" y1="0" x2="1" y2="0">422                            <stop offset="0%" stop-color="#0f62fe" stop-opacity="0"/>423                            <stop offset="30%" stop-color="#0f62fe" stop-opacity="0.3"/>424                            <stop offset="50%" stop-color="#0f62fe" stop-opacity="0.5"/>425                            <stop offset="70%" stop-color="#0f62fe" stop-opacity="0.3"/>426                            <stop offset="100%" stop-color="#0f62fe" stop-opacity="0"/>427                        </linearGradient>428 429                        <!-- ═══ MOTION PATHS ═══ -->430                        <path id="mpath-meeting" d="M 200,58 L 200,208" fill="none"/>431                        <path id="mpath-trans" d="M 218,218 C 258,198 296,158 324,128" fill="none"/>432                        <path id="mpath-ctx" d="M 222,238 C 268,248 310,262 336,270" fill="none"/>433                        <path id="mpath-req" d="M 210,250 C 240,305 268,358 280,378" fill="none"/>434                        <path id="mpath-epic" d="M 190,250 C 160,305 132,358 120,378" fill="none"/>435                    </defs>436 437                    <!-- ═══ SCAN LINE ═══ -->438                    <rect x="0" y="228" width="400" height="4" fill="url(#scan-grad)" class="scan-line-fx" opacity="0.15"/>439 440                    <!-- ═══ AMBIENT PARTICLES ═══ -->441                    <circle cx="55" cy="90" r="1" fill="#0f62fe" class="ambient-dot" style="--dx:12px;--dy:-35px;--dur:7s;--delay:0s"/>442                    <circle cx="340" cy="100" r="0.8" fill="#0f62fe" class="ambient-dot" style="--dx:-8px;--dy:-28px;--dur:9s;--delay:1.5s"/>443                    <circle cx="80" cy="300" r="1.2" fill="#4589ff" class="ambient-dot" style="--dx:18px;--dy:-45px;--dur:8s;--delay:3s"/>444                    <circle cx="320" cy="380" r="0.7" fill="#0f62fe" class="ambient-dot" style="--dx:-14px;--dy:-50px;--dur:11s;--delay:2s"/>445                    <circle cx="180" cy="150" r="0.9" fill="#4589ff" class="ambient-dot" style="--dx:6px;--dy:-30px;--dur:6s;--delay:4s"/>446                    <circle cx="360" cy="220" r="1" fill="#0f62fe" class="ambient-dot" style="--dx:-10px;--dy:-38px;--dur:10s;--delay:0.8s"/>447                    <circle cx="40" cy="410" r="0.8" fill="#4589ff" class="ambient-dot" style="--dx:20px;--dy:-55px;--dur:12s;--delay:5s"/>448                    <circle cx="250" cy="450" r="1.1" fill="#0f62fe" class="ambient-dot" style="--dx:-5px;--dy:-40px;--dur:7.5s;--delay:2.5s"/>449 450                    <!-- ═══ ORBITAL RINGS ═══ -->451                    <circle cx="200" cy="230" r="152" fill="none" stroke="#262626" stroke-width="0.5" stroke-dasharray="4,12" class="orbit-ring-1" id="ring-outer"/>452                    <circle cx="200" cy="230" r="115" fill="none" stroke="#262626" stroke-width="0.5" stroke-dasharray="2,8" class="orbit-ring-2" id="ring-inner"/>453                    <circle cx="200" cy="230" r="72" fill="none" stroke="#1e1e3a" stroke-width="0.5" stroke-dasharray="1,6" class="orbit-ring-3"/>454 455                    <!-- Ring tick marks -->456                    <g class="orbit-ring-1">457                        <circle cx="200" cy="78" r="2" fill="#0f62fe" opacity="0.25" class="ring-tick"/>458                        <circle cx="352" cy="230" r="2" fill="#0f62fe" opacity="0.25" class="ring-tick" style="animation-delay:0.75s"/>459                        <circle cx="200" cy="382" r="2" fill="#0f62fe" opacity="0.25" class="ring-tick" style="animation-delay:1.5s"/>460                        <circle cx="48" cy="230" r="2" fill="#0f62fe" opacity="0.25" class="ring-tick" style="animation-delay:2.25s"/>461                    </g>462 463                    <!-- ═══ CONNECTION PATHS ═══ -->464                    <path d="M 200,58 L 200,208" stroke="#393939" stroke-width="1" fill="none" class="conn-path" id="conn-meeting"/>465                    <path d="M 218,218 C 258,198 296,158 324,128" stroke="#393939" stroke-width="1" fill="none" stroke-dasharray="5,5" class="conn-path graph-conn-dash" id="conn-transcription"/>466                    <path d="M 222,238 C 268,248 310,262 336,270" stroke="#393939" stroke-width="1" fill="none" stroke-dasharray="5,5" class="conn-path graph-conn-dash" id="conn-context"/>467                    <path d="M 210,250 C 240,305 268,358 280,378" stroke="#393939" stroke-width="1" fill="none" stroke-dasharray="5,5" class="conn-path graph-conn-dash" id="conn-requirements"/>468                    <path d="M 190,250 C 160,305 132,358 120,378" stroke="#393939" stroke-width="1" fill="none" stroke-dasharray="5,5" class="conn-path graph-conn-dash" id="conn-epics"/>469                    <path d="M 200,252 L 200,443" stroke="#393939" stroke-width="1" fill="none" class="conn-path" id="conn-backlog"/>470                    <path d="M 200,467 L 200,482" stroke="#393939" stroke-width="1" fill="none" class="conn-path" id="conn-dev"/>471 472                    <!-- ═══ DECORATIVE FLOW ═══ -->473                    <circle r="1.5" fill="#0f62fe" opacity="0.1">474                        <animateMotion dur="4s" repeatCount="indefinite"><mpath href="#mpath-trans"/></animateMotion>475                    </circle>476                    <circle r="1.5" fill="#0f62fe" opacity="0.1">477                        <animateMotion dur="5s" repeatCount="indefinite"><mpath href="#mpath-ctx"/></animateMotion>478                    </circle>479                    <circle r="1.5" fill="#0f62fe" opacity="0.1">480                        <animateMotion dur="4.5s" repeatCount="indefinite"><mpath href="#mpath-req"/></animateMotion>481                    </circle>482                    <circle r="1.5" fill="#0f62fe" opacity="0.1">483                        <animateMotion dur="5.5s" repeatCount="indefinite"><mpath href="#mpath-epic"/></animateMotion>484                    </circle>485 486                    <!-- ═══ ANIMATED FLOW PARTICLES ═══ -->487                    <circle r="3.5" fill="#0f62fe" opacity="0" filter="url(#glow-blue)" id="particle-meeting">488                        <animateMotion dur="1.5s" repeatCount="indefinite"><mpath href="#mpath-meeting"/></animateMotion>489                    </circle>490                    <circle r="3.5" fill="#0f62fe" opacity="0" filter="url(#glow-blue)" id="particle-trans">491                        <animateMotion dur="1.8s" repeatCount="indefinite"><mpath href="#mpath-trans"/></animateMotion>492                    </circle>493                    <circle r="3.5" fill="#0f62fe" opacity="0" filter="url(#glow-blue)" id="particle-ctx">494                        <animateMotion dur="1.8s" repeatCount="indefinite"><mpath href="#mpath-ctx"/></animateMotion>495                    </circle>496                    <circle r="3.5" fill="#0f62fe" opacity="0" filter="url(#glow-blue)" id="particle-req">497                        <animateMotion dur="1.8s" repeatCount="indefinite"><mpath href="#mpath-req"/></animateMotion>498                    </circle>499                    <circle r="3.5" fill="#0f62fe" opacity="0" filter="url(#glow-blue)" id="particle-epic">500                        <animateMotion dur="1.8s" repeatCount="indefinite"><mpath href="#mpath-epic"/></animateMotion>501                    </circle>502 503                    <!-- ═══ MEETING NODE ═══ -->504                    <circle cx="200" cy="42" r="20" fill="#0f62fe" opacity="0.04" class="node-halo"/>505                    <circle cx="200" cy="42" r="13" fill="#161616" stroke="#393939" stroke-width="1.5" class="agent-node" id="node-meeting"/>506                    <text x="200" y="46" text-anchor="middle" fill="#525252" font-size="7.5" font-family="IBM Plex Sans, sans-serif" font-weight="600" id="label-meeting">MTG</text>507                    <text x="200" y="26" text-anchor="middle" fill="#525252" font-size="6" font-family="IBM Plex Mono, monospace" font-weight="400" opacity="0.5">INPUT</text>508 509                    <!-- ═══ ORCHESTRATOR ═══ -->510                    <g class="orch-core-beat">511                        <circle cx="200" cy="230" r="42" fill="none" stroke="#0f62fe" stroke-width="1" opacity="0.15" id="orch-pulse-outer">512                            <animate attributeName="r" values="42;52;42" dur="3s" repeatCount="indefinite"/>513                            <animate attributeName="opacity" values="0.15;0.04;0.15" dur="3s" repeatCount="indefinite"/>514                        </circle>515                        <circle cx="200" cy="230" r="30" fill="none" stroke="#0f62fe" stroke-width="1" opacity="0.2" id="orch-pulse-inner">516                            <animate attributeName="r" values="30;37;30" dur="2.5s" repeatCount="indefinite"/>517                            <animate attributeName="opacity" values="0.2;0.06;0.2" dur="2.5s" repeatCount="indefinite"/>518                        </circle>519                        <line x1="200" y1="230" x2="200" y2="188" stroke="url(#sweep-grad)" stroke-width="1.5" stroke-linecap="round" class="radar-sweep-line" opacity="0.5"/>520                        <circle cx="200" cy="230" r="22" fill="url(#grad-orch)" stroke="#0f62fe" stroke-width="2" id="core-orch"/>521                        <text x="200" y="234" text-anchor="middle" fill="#ffffff" font-size="9" font-family="IBM Plex Sans, sans-serif" font-weight="700" id="core-label">ORC</text>522                    </g>523 524                    <!-- ═══ TRANSCRIPTION ═══ -->525                    <g>526                        <circle cx="335" cy="120" r="22" fill="#0f62fe" opacity="0.04" class="node-halo"/>527                        <path d="M335,96 L354,107 L354,133 L335,144 L316,133 L316,107 Z" fill="none" stroke="#393939" stroke-width="0.6" stroke-dasharray="2,4" class="agent-ring" id="ring-transcription"/>528                        <path d="M335,104 L348.9,112 L348.9,128 L335,136 L321.1,128 L321.1,112 Z" fill="#262626" stroke="#393939" stroke-width="2" class="agent-hex" id="node-transcription"/>529                        <text x="335" y="123" text-anchor="middle" fill="#c6c6c6" font-size="9" font-family="IBM Plex Sans, sans-serif" font-weight="700" id="label-transcription">T</text>530                        <text x="335" y="100" text-anchor="middle" fill="#525252" font-size="8" font-family="IBM Plex Sans, sans-serif" font-weight="500" id="name-transcription">Transkription</text>531                        <text x="335" y="152" text-anchor="middle" fill="#393939" font-size="5.5" font-family="IBM Plex Mono, monospace">MIC</text>532                    </g>533 534                    <!-- ═══ CONTEXT ═══ -->535                    <g>536                        <circle cx="350" cy="278" r="22" fill="#0f62fe" opacity="0.04" class="node-halo"/>537                        <path d="M350,254 L369,265 L369,291 L350,302 L331,291 L331,265 Z" fill="none" stroke="#393939" stroke-width="0.6" stroke-dasharray="2,4" class="agent-ring" id="ring-context"/>538                        <path d="M350,262 L363.9,270 L363.9,286 L350,294 L336.1,286 L336.1,270 Z" fill="#262626" stroke="#393939" stroke-width="2" class="agent-hex" id="node-context"/>539                        <text x="350" y="281" text-anchor="middle" fill="#c6c6c6" font-size="9" font-family="IBM Plex Sans, sans-serif" font-weight="700" id="label-context">C</text>540                        <text x="350" y="258" text-anchor="middle" fill="#525252" font-size="8" font-family="IBM Plex Sans, sans-serif" font-weight="500" id="name-context">Context</text>541                        <text x="350" y="310" text-anchor="middle" fill="#393939" font-size="5.5" font-family="IBM Plex Mono, monospace">DB</text>542                    </g>543 544                    <!-- ═══ REQUIREMENTS ═══ -->545                    <g>546                        <circle cx="288" cy="390" r="22" fill="#0f62fe" opacity="0.04" class="node-halo"/>547                        <path d="M288,366 L307,377 L307,403 L288,414 L269,403 L269,377 Z" fill="none" stroke="#393939" stroke-width="0.6" stroke-dasharray="2,4" class="agent-ring" id="ring-requirements"/>548                        <path d="M288,374 L301.9,382 L301.9,398 L288,406 L274.1,398 L274.1,382 Z" fill="#262626" stroke="#393939" stroke-width="2" class="agent-hex" id="node-requirements"/>549                        <text x="288" y="393" text-anchor="middle" fill="#c6c6c6" font-size="9" font-family="IBM Plex Sans, sans-serif" font-weight="700" id="label-requirements">R</text>550                        <text x="288" y="369" text-anchor="middle" fill="#525252" font-size="8" font-family="IBM Plex Sans, sans-serif" font-weight="500" id="name-requirements">Requirements</text>551                        <text x="288" y="422" text-anchor="middle" fill="#393939" font-size="5.5" font-family="IBM Plex Mono, monospace">REQ</text>552                    </g>553 554                    <!-- ═══ EPICS ═══ -->555                    <g>556                        <circle cx="112" cy="390" r="22" fill="#0f62fe" opacity="0.04" class="node-halo"/>557                        <path d="M112,366 L131,377 L131,403 L112,414 L93,403 L93,377 Z" fill="none" stroke="#393939" stroke-width="0.6" stroke-dasharray="2,4" class="agent-ring" id="ring-epics"/>558                        <path d="M112,374 L125.9,382 L125.9,398 L112,406 L98.1,398 L98.1,382 Z" fill="#262626" stroke="#393939" stroke-width="2" class="agent-hex" id="node-epics"/>559                        <text x="112" y="393" text-anchor="middle" fill="#c6c6c6" font-size="9" font-family="IBM Plex Sans, sans-serif" font-weight="700" id="label-epics">E</text>560                        <text x="112" y="369" text-anchor="middle" fill="#525252" font-size="8" font-family="IBM Plex Sans, sans-serif" font-weight="500" id="name-epics">Epics</text>561                        <text x="112" y="422" text-anchor="middle" fill="#393939" font-size="5.5" font-family="IBM Plex Mono, monospace">GIT</text>562                    </g>563 564                    <!-- ═══ OUTPUT NODES ═══ -->565                    <rect x="175" y="447" width="50" height="18" rx="9" fill="#161616" stroke="#393939" stroke-width="1.5" class="agent-node" id="node-backlog"/>566                    <text x="200" y="459" text-anchor="middle" fill="#f4f4f4" font-size="7" font-family="IBM Plex Sans, sans-serif" font-weight="600" id="label-backlog">Backlog</text>567                    <rect x="172" y="475" width="56" height="16" rx="8" fill="#161616" stroke="#393939" stroke-width="1.5" class="agent-node" id="node-dev"/>568                    <text x="200" y="486" text-anchor="middle" fill="#f4f4f4" font-size="6.5" font-family="IBM Plex Sans, sans-serif" font-weight="600" id="label-dev">Dev Team</text>569                    <text x="200" y="498" text-anchor="middle" fill="#393939" font-size="5" font-family="IBM Plex Mono, monospace" opacity="0.5">OUTPUT</text>570 571                    <!-- ═══ ORC CONNECTION DOTS ═══ -->572                    <circle cx="215" cy="218" r="2.5" fill="#393939" class="conn-dot" id="dot-trans"/>573                    <circle cx="220" cy="236" r="2.5" fill="#393939" class="conn-dot" id="dot-ctx"/>574                    <circle cx="208" cy="248" r="2.5" fill="#393939" class="conn-dot" id="dot-req"/>575                    <circle cx="192" cy="248" r="2.5" fill="#393939" class="conn-dot" id="dot-epic"/>576                    </svg>577                    <!-- Status overlay -->578                    <div class="absolute bottom-3 right-4 flex items-center gap-2 opacity-50">579                        <span class="w-1.5 h-1.5 rounded-full bg-ibm-blue/50 animate-pulse"></span>580                        <span class="text-[10px] text-ibm-text-muted font-ibm-mono tracking-wider uppercase" id="graph-status">idle</span>581                    </div>582                </div>583            </div>584 585            <!-- Progress Stepper -->586            <div class="max-w-5xl mx-auto mb-8 fade-in-up delay-300">587                <div class="flex items-center justify-between" id="progress-stepper">588                    <div class="flex items-center gap-2 stepper-stage" data-stage="0">589                        <div class="w-8 h-8 flex items-center justify-center text-xs font-bold font-ibm-mono border border-ibm-surface-light text-ibm-text-secondary">1</div>590                        <span class="text-xs font-medium text-ibm-text-secondary hidden sm:inline">Transkription</span>591                    </div>592                    <div class="flex-1 h-px bg-ibm-surface-light mx-3 stepper-line"></div>593                    <div class="flex items-center gap-2 stepper-stage" data-stage="1">594                        <div class="w-8 h-8 flex items-center justify-center text-xs font-bold font-ibm-mono border border-ibm-surface-light text-ibm-text-secondary">2</div>595                        <span class="text-xs font-medium text-ibm-text-secondary hidden sm:inline">Context</span>596                    </div>597                    <div class="flex-1 h-px bg-ibm-surface-light mx-3 stepper-line"></div>598                    <div class="flex items-center gap-2 stepper-stage" data-stage="2">599                        <div class="w-8 h-8 flex items-center justify-center text-xs font-bold font-ibm-mono border border-ibm-surface-light text-ibm-text-secondary">3</div>600                        <span class="text-xs font-medium text-ibm-text-secondary hidden sm:inline">Requirements</span>601                    </div>602                    <div class="flex-1 h-px bg-ibm-surface-light mx-3 stepper-line"></div>603                    <div class="flex items-center gap-2 stepper-stage" data-stage="3">604                        <div class="w-8 h-8 flex items-center justify-center text-xs font-bold font-ibm-mono border border-ibm-surface-light text-ibm-text-secondary">4</div>605                        <span class="text-xs font-medium text-ibm-text-secondary hidden sm:inline">Epics</span>606                    </div>607                    <div class="flex-1 h-px bg-ibm-surface-light mx-3 stepper-line"></div>608                    <div class="flex items-center gap-2 stepper-stage" data-stage="4">609                        <div class="w-8 h-8 flex items-center justify-center text-xs font-bold font-ibm-mono border border-ibm-surface-light text-ibm-text-secondary">5</div>610                        <span class="text-xs font-medium text-ibm-text-secondary hidden sm:inline">Backlog</span>611                    </div>612                </div>613            </div>614 615            <!-- Main Demo Area -->616            <div class="grid grid-cols-1 lg:grid-cols-12 gap-6 items-start max-w-7xl mx-auto">617 618                <!-- LEFT: Transcript Preview + Controls -->619                <div class="lg:col-span-5 space-y-4">620                    <!-- Transcript -->621                    <div class="bg-ibm-dark border border-ibm-surface-light p-5 fade-in-up delay-100">622                        <div class="flex items-center justify-between mb-3">623                            <h3 class="text-sm font-bold text-ibm-text flex items-center gap-2">624                                <i data-lucide="file-text" class="w-4 h-4 text-ibm-blue"></i>625                                Meeting-Transkript626                            </h3>627                            <span class="text-xs text-ibm-text-muted font-ibm-mono">Q3 Planung · 47:12 min</span>628                        </div>629                        <div class="text-xs text-ibm-text-secondary space-y-2 max-h-56 overflow-y-auto chat-scroll leading-relaxed font-ibm-mono" id="transcript-area">630                            <p><span class="text-ibm-blue">Anna (PO):</span> Okay Leute, Q3-Planung. Danke dass ihr alle da seid. Ich mach's kurz: Wir haben 12 Wochen bis zum Release, und ehrlich gesagt — der Druck aus den Fachbereichen wird langsam ungemütlich. Marco, wie sieht's technisch aus? Basis steht?</p>631                            <p><span class="text-ibm-blue">Marco (TL):</span> Basis steht. Keycloak für Auth ist drin, REST-APIs dokumentiert, CI/CD rennt seit letztem Sprint stabil. Wir haben die letzten zwei Wochen nur Foundation-Arbeit gemacht, das war auch nötig. Aber — ich sag's gleich — das Rollen-Rechte-Konzept wird uns zerlegen, wenn wir das unterschätzen.</p>632                            <p><span class="text-ibm-warning">Dr. Weber:</span> Bevor wir ins Technische gehen — kann ich kurz was loswerden? Ich hab heute Morgen wieder drei Excel-Sheets auf dem Schreibtisch gehabt. Urlaubsanträge. Per E-Mail. Mit CC an fünf Leute, von denen keiner zuständig ist. Wir machen das seit sechs Monaten so. Das ist kein Prozess, das ist Chaos.</p>633                            <p><span class="text-ibm-success">Thomas (HR):</span> Kann ich nur unterschreiben. Ich krieg jeden Tag Anträge, bei denen ich nicht mal weiß, ob der Vorgesetzte schon zugestimmt hat. Letzte Woche hab ich einen Urlaub genehmigt, der war drei Tage später — da war der Kollege schon im Flieger. Wir brauchen Sichtbarkeit.</p>634                            <p><span class="text-ibm-blue">Anna (PO):</span> Warte, Thomas — was genau brauchst du? Nur zur Klarheit.</p>635                            <p><span class="text-ibm-success">Thomas (HR):</span> Ich brauch ein Dashboard. Kein statisches PDF, kein Excel-Export — ein Live-Dashboard. Ich will sehen: wie viele Anträge sind offen, bei wem hängen sie fest, welche überziehen die SLA? Wenn ein Antrag länger als 48 Stunden bei einem Genehmiger liegt, will ich das auf einen Blick sehen. Ohne Dashboard ist der ganze Workflow für HR wertlos.</p>636                            <p><span class="text-ibm-warning">Dr. Weber:</span> Das ist genau der Punkt. Und es geht ja nicht nur um Urlaub. Wir haben Reisekosten, Beschaffungen über 5.000 Euro — da hängt Budget dran. Wenn der CFO nicht freigibt, darf keiner bestellen. Und aktuell erfahre ich das, wenn die Rechnung kommt.</p>637                            <p><span class="text-ibm-blue">Lisa (UX):</span> Darf ich da kurz einhaken? Bevor wir jetzt drei Workflows bauen, die keiner versteht — ich hab noch kein einziges UX-Konzept gesehen. Wer macht das? Wer testet das mit echten Nutzern?</p>638                            <p><span class="text-ibm-blue">Anna (PO):</span> Lisa hat recht. Lisa, was brauchst du?</p>639                            <p><span class="text-ibm-blue">Lisa (UX):</span> Ich brauch zwei Click-Dummies. Variante A: Step-by-Step — Nutzer klickt sich durch den Genehmigungsprozess, jeder Schritt erklärt sich selbst. Variante B: Inline-Genehmigung direkt im Dashboard — keine Popups, kein Kontextwechsel. Die testen wir mit fünf Fachbereichsleitern aus Operations, HR und Finance. Ohne User-Testing bauen wir am Bedarf vorbei. Punkt.</p>640                            <p><span class="text-ibm-blue">Marco (TL):</span> Ja, geb ich dir recht. Aber Lisa — der Workflow hängt am Rollen-Modell. Ich muss wissen, wer was genehmigen darf, bevor ich den Flow baue. Das ist das klassische Huhn-Ei-Problem. Anna, wie siehst du die Abhängigkeiten?</p>641                            <p><span class="text-ibm-blue">Anna (PO):</span> Das ist der Elefant im Raum. Rollen, Workflow, Dashboard — das hängt alles zusammen. Marco, skizzier mal kurz was du technisch brauchst, dann priorisieren wir.</p>642                            <p><span class="text-ibm-blue">Marco (TL):</span> Also: Workflow braucht Rollen. Kein Rollen-Modell — kein Workflow. Dashboard braucht Workflow-Daten, sonst ist's ne leere Tabelle. Und Rollen müssen gegen das Active Directory gespiegelt werden. Wir reden von 400 Usern in 6 Abteilungen mit unterschiedlichen Freigabestufen. Das ist kein simples RBAC, das ist hierarchisch. Abteilungsleiter sieht seine Leute, Bereichsleiter sieht alle, Geschäftsführung sieht alles. Plus Stellvertreter-Regelung — wenn der Dr. Weber im Urlaub ist, muss sein Stellvertreter automatisch seine Pending-List sehen.</p>643                            <p><span class="text-ibm-warning">Dr. Weber:</span> Stellvertreter ist absolut kritisch. Das war der Hauptgrund, warum unser letztes Tool gescheitert ist. Ich war zwei Wochen in Singapur, Vertretung war nicht hinterlegt, 17 Anträge lagen auf Halde. Die Fachbereiche sind fast durchgedreht. Das darf nicht nochmal passieren.</p>644                            <p><span class="text-ibm-blue">Marco (TL):</span> Verstanden. Schreib ich auf. Noch ein Punkt: Thomas, dein Dashboard — du meintest Live. Heißt das Echtzeit? Polling? WebSockets?</p>645                            <p><span class="text-ibm-success">Thomas (HR):</span> Ich will kein F5 drücken, Marco. Wenn ein Genehmiger was freigibt, will ich das in meinem Dashboard sehen. Und ich brauch am Ende des Monats einen automatischen Bericht: Durchlaufzeiten, SLA-Quoten, top 5 Engpässe. Das geht dann an die Geschäftsleitung.</p>646                            <p><span class="text-ibm-blue">Marco (TL):</span> Okay, also Reporting on top. Verarbeitet. Jetzt wird's technisch: Thomas, dein „kein F5 drücken" heißt für mich Event-Stream. Und der hängt wiederum am Audit-Trail.</p>647                            <p><span class="text-ibm-warning">Dr. Weber:</span> Komma, halt — Audit-Trail ist Pflicht. ISO 27001. Jede Genehmigung, jede Ablehnung, jede Änderung muss protokolliert sein. Wer, wann, was, warum. Ohne Audit-Trail kriegen wir kein Zertifikat, und ohne Zertifikat dürfen wir das System nicht produktiv nehmen.</p>648                            <p><span class="text-ibm-blue">Marco (TL):</span> Eben. Audit-Trail heißt Event-Log. Jede Aktion feuert ein Event. Das könnten wir mit einem Outbox-Pattern machen — dann ist der Audit-Trail gleich der Event-Stream fürs Dashboard und die Notifications. Zwei Fliegen, eine Klappe.</p>649                            <p><span class="text-ibm-blue">Anna (PO):</span> Notifications — Lisa, du hattest was dazu?</p>650                            <p><span class="text-ibm-blue">Lisa (UX):</span> Ja. User brauchen Status-Updates. Antrag eingereicht, genehmigt, abgelehnt — jedes Mal eine Notification, idealerweise mit Begründung bei Ablehnung. Ich seh drei Kanäle: In-App Notification-Center, E-Mail für Externe oder Selten-Nutzer, Slack für interne Power-User.</p>651                            <p><span class="text-ibm-success">Thomas (HR):</span> Slack ist nice-to-have für Q3. E-Mail und In-App sind Pflicht. Wir können Slack in Q4 nachziehen.</p>652                            <p><span class="text-ibm-blue">Marco (TL):</span> Okay, Slack=Q4. Notifications brauchen aber den Event-Bus, und der braucht den Audit-Trail, und der braucht den Workflow. Das ist eine Kette. Das können wir nicht parallelisieren — das muss sequenziell.</p>653                            <p><span class="text-ibm-blue">Anna (PO):</span> Verstehe. Also Architektur-Reihenfolge: Rollen → Workflow → Audit-Trail → Notifications. Dashboard und SAP können parallel laufen, oder?</p>654                            <p><span class="text-ibm-blue">Marco (TL):</span> Dashboard ja — das kann ich mit Mock-Daten aufsetzen, solange der Workflow nicht live ist. SAP... da wird's spannend. Thomas, du hattest SAP-Integration erwähnt?</p>655                            <p><span class="text-ibm-success">Thomas (HR):</span> Ja. Die Stammdaten — Kostenstellen, Vorgesetzte, Abteilungszugehörigkeit — müssen aus SAP kommen. Ich hab keine Lust, 400 Mitarbeiter manuell im System zu pflegen. Das muss automatisch synchronisieren.</p>656                            <p><span class="text-ibm-blue">Marco (TL):</span> SAP heißt RFC BAPI. Das ist kein REST. Ich muss einen Adapter bauen, der BAPI-Calls in unsere API-Welt übersetzt. Und SAP ist nicht-idempotent — wenn ein Call fehlschlägt, brauchst du Retry-Logik mit Exponential Backoff. Aufwand: 5-8 Personentage allein für den Adapter.</p>657                            <p><span class="text-ibm-blue">Anna (PO):</span> 5-8 PT — okay, nehmen wir in den Plan. Ist das autark, oder hängt das an was?</p>658                            <p><span class="text-ibm-blue">Marco (TL):</span> SAP-Adapter ist komplett autark. Der kann parallel zu allem laufen, sobald die API-Schicht steht. Und die steht ja schon.</p>659                            <p><span class="text-ibm-blue">Anna (PO):</span> Gut. Was ist mit Mobile? Lisa?</p>660                            <p><span class="text-ibm-blue">Lisa (UX):</span> 70% unserer Genehmiger checken Anträge unterwegs. Die sitzen nicht am Desktop. Ich brauch mindestens ein responsives Layout für Tablet. Mobil completely — das ist Q4. Aber Tablet muss Q3 kommen, sonst verlieren wir die Hälfte der User.</p>661                            <p><span class="text-ibm-blue">Anna (PO):</span> Okay, Tablet als Stretch-Goal für Q3, Mobile Q4. Marco, was fehlt technisch noch?</p>662                            <p><span class="text-ibm-blue">Marco (TL):</span> Zwei Sachen. Erstens: API-Rate-Limiting. Wenn 400 Leute gleichzeitig ihr Dashboard pollen — und wir haben Echtzeit noch nicht — killen die unsere Datenbank. Zweitens: Admin-UI. Wir können nicht für jeden neuen Antragstyp ein Ticket beim Dev-Team aufmachen. Die Fachbereiche müssen neue Antragstypen und Genehmigungsstufen selbst konfigurieren können. Sonst bin ich der Flaschenhals, und das will keiner.</p>663                            <p><span class="text-ibm-warning">Dr. Weber:</span> Admin-UI ist richtig und wichtig. Wenn Operations einen neuen Beschaffungstyp braucht — sagen wir IT-Hardware über 10.000 — dann muss das in fünf Minuten konfiguriert sein, nicht in fünf Tagen.</p>664                            <p><span class="text-ibm-blue">Anna (PO):</span> Admin-UI für Workflows — aufgenommen. Rate-Limiting seh ich als Teil des API-Layers. Thomas, letztes Wort von dir?</p>665                            <p><span class="text-ibm-success">Thomas (HR):</span> Zwei Sachen noch — ich will keinen Perfect-Launch, ich will was das funktioniert. Lieber 3 Workflows die laufen als 10 die haken. Und ich will nach 6 Wochen einen Review — was läuft, was nicht, wo müssen wir nachsteuern?</p>666                            <p><span class="text-ibm-blue">Anna (PO):</span> Fair. Also iterative Delivery, nicht Big Bang. Marco, Aufwandsschätzung bis Freitag?</p>667                            <p><span class="text-ibm-blue">Marco (TL):</span> *seufzt* Anna, das war ein Meeting. Ich hab hier grob gezählt: 12 Requirements in 5 Themen-Clustern. Das sind mindestens 8 Epics. Ich brauch bis Mittwoch. Und Kaffee.</p>668                            <p><span class="text-ibm-blue">Anna (PO):</span> Deal. Kaffee geht auf mich. Nächster Termin Mittwoch 10 Uhr — dann mit Aufwandsschätzung und priorisiertem Backlog.</p>669                            <p class="text-ibm-text-muted italic">... Meetingende 14:49 · 47 Minuten · 6 Teilnehmer · 42 Sprechbeiträge ...</p>670                        </div>671                    </div>672 673                    <!-- Controls -->674                    <div class="flex flex-wrap gap-3">675                        <button onclick="startSimulation()" id="btn-start" class="flex-1 bg-ibm-blue hover:bg-ibm-blue-hover text-white px-4 py-3 font-bold text-sm transition-colors duration-200 flex items-center justify-center gap-2 disabled:opacity-40 disabled:cursor-not-allowed">676                            <i data-lucide="play" class="w-4 h-4"></i>677                            Pipeline starten678                        </button>679                        <button onclick="advanceManually()" id="btn-next" class="hidden flex-1 bg-ibm-surface-light hover:bg-[#4a4a4a] text-ibm-text px-4 py-3 font-semibold text-sm transition-colors duration-200 flex items-center justify-center gap-2">680                            <i data-lucide="chevron-right" class="w-4 h-4"></i>681                            Nächster Schritt682                        </button>683                        <button onclick="resetSimulation()" id="btn-reset" class="bg-ibm-dark border border-ibm-surface-light text-ibm-text-secondary hover:text-ibm-text px-4 py-3 text-sm font-medium transition-colors duration-200 flex items-center gap-2">684                            <i data-lucide="rotate-ccw" class="w-4 h-4"></i>685                            Reset686                        </button>687                    </div>688                </div>689 690                <!-- MIDDLE: Agent Chat Window -->691                <div class="lg:col-span-7">692                    <div class="bg-ibm-dark border border-ibm-surface-light overflow-hidden flex flex-col h-[560px] fade-in-up delay-200">693                        <!-- Chat Header -->694                        <div class="bg-ibm-surface px-4 py-3 flex items-center justify-between border-b border-ibm-surface-light shrink-0">695                            <div class="flex items-center gap-2">696                                <div class="flex gap-1.5 mr-3">697                                    <div class="w-2.5 h-2.5 bg-red-400"></div>698                                    <div class="w-2.5 h-2.5 bg-yellow-400"></div>699                                    <div class="w-2.5 h-2.5 bg-green-400"></div>700                                </div>701                                <div class="text-xs text-ibm-text-secondary font-ibm-mono flex items-center gap-2">702                                    <i data-lucide="layers" class="w-3 h-3 text-ibm-blue"></i>703                                    IBM Watson X — Agent Playground704                                </div>705                            </div>706                            <div class="text-xs font-ibm-mono text-ibm-blue flex items-center gap-2 bg-ibm-blue/10 px-2 py-1 border border-ibm-blue/20">707                                <i data-lucide="radio" class="w-3 h-3"></i> Supervisor Active708                            </div>709                        </div>710 711                        <!-- Chat Messages -->712                        <div class="flex-1 overflow-y-auto p-5 space-y-4 chat-scroll" id="chat-container">713                            <div class="flex justify-center items-center h-full" id="chat-empty">714                                <div class="text-center">715                                    <i data-lucide="cpu" class="w-10 h-10 text-ibm-surface-light mx-auto mb-3"></i>716                                    <p class="text-ibm-text-muted text-sm">Klicken Sie „Pipeline starten", um die Simulation zu beginnen.</p>717                                </div>718                            </div>719                        </div>720 721                        <!-- Input Bar -->722                        <div class="bg-ibm-surface p-4 border-t border-ibm-surface-light shrink-0">723                            <div class="bg-ibm-dark px-3 py-2 flex items-center gap-3 border border-ibm-surface-light text-ibm-text-muted">724                                <i data-lucide="terminal" class="w-4 h-4"></i>725                                <span class="text-xs font-ibm-mono" id="input-status">Supervisor steht bereit...</span>726                            </div>727                        </div>728                    </div>729                </div>730 731 732 733            </div>734        </div>735    </section>736 737    <!-- ════════════════════════════════════════════ -->738    <!-- ════════════════════════════════════════════ -->739    <!-- ARCHITEKTUR                                  -->740    <!-- ════════════════════════════════════════════ -->741    <section id="architektur" class="py-24 bg-ibm-dark">742        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">743            <div class="text-center mb-16">744                <span class="text-ibm-blue font-semibold tracking-wider uppercase text-xs font-ibm-mono fade-in-up">Architektur</span>745                <h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4 text-ibm-text fade-in-up delay-100">746                    Wie arbeitet das Multi-Agent System?747                </h2>748                <p class="text-lg text-ibm-text-secondary max-w-2xl mx-auto fade-in-up delay-200">749                    Spezialisierte Agenten arbeiten parallel und koordiniert — orchestriert durch einen Supervisor auf IBM Watson X.750                </p>751            </div>752 753            <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-5 gap-6">754                <!-- Orchestrator -->755                <div class="bg-ibm-surface border border-ibm-blue/30 p-6 group transition-colors duration-300 hover:border-ibm-blue fade-in-up delay-100">756                    <div class="w-10 h-10 bg-ibm-blue/10 flex items-center justify-center mb-4">757                        <i data-lucide="cpu" class="w-5 h-5 text-ibm-blue"></i>758                    </div>759                    <h3 class="text-sm font-bold text-ibm-text mb-1">Orchestrator</h3>760                    <p class="text-xs text-ibm-blue font-ibm-mono mb-3">Supervisor Agent</p>761                    <p class="text-xs text-ibm-text-secondary leading-relaxed">762                        Zerlegt komplexe Anfragen, delegiert an spezialisierte Sub-Agenten und führt Ergebnisse zusammen.763                    </p>764                </div>765 766                <!-- Transcription -->767                <div class="bg-ibm-surface border border-ibm-surface-light p-6 group transition-colors duration-300 hover:border-ibm-success fade-in-up delay-200">768                    <div class="w-10 h-10 bg-[#1a2e1e] flex items-center justify-center mb-4">769                        <i data-lucide="mic" class="w-5 h-5 text-ibm-success"></i>770                    </div>771                    <h3 class="text-sm font-bold text-ibm-text mb-1">Transkription</h3>772                    <p class="text-xs text-ibm-success font-ibm-mono mb-3">Speech-to-Structure</p>773                    <p class="text-xs text-ibm-text-secondary leading-relaxed">774                        Wandelt Meeting-Aufnahmen in Text um, identifiziert Sprecher und extrahiert thematische Cluster.775                    </p>776                </div>777 778                <!-- Context -->779                <div class="bg-ibm-surface border border-ibm-surface-light p-6 group transition-colors duration-300 hover:border-ibm-blue-light fade-in-up delay-300">780                    <div class="w-10 h-10 bg-[#1a2740] flex items-center justify-center mb-4">781                        <i data-lucide="database" class="w-5 h-5 text-ibm-blue-light"></i>782                    </div>783                    <h3 class="text-sm font-bold text-ibm-text mb-1">Context Engine</h3>784                    <p class="text-xs text-ibm-blue-light font-ibm-mono mb-3">RAG-basierte Anreicherung</p>785                    <p class="text-xs text-ibm-text-secondary leading-relaxed">786                        Reichert das Transkript mit Firmen-Wissen an: Tech-Stack, Compliance, AD, SAP-Architektur.787                    </p>788                </div>789 790                <!-- Requirements -->791                <div class="bg-ibm-surface border border-ibm-surface-light p-6 group transition-colors duration-300 hover:border-ibm-warning fade-in-up delay-400">792                    <div class="w-10 h-10 bg-[#2e2a1a] flex items-center justify-center mb-4">793                        <i data-lucide="list-checks" class="w-5 h-5 text-ibm-warning"></i>794                    </div>795                    <h3 class="text-sm font-bold text-ibm-text mb-1">Requirements</h3>796                    <p class="text-xs text-ibm-warning font-ibm-mono mb-3">Extraktion & Validierung</p>797                    <p class="text-xs text-ibm-text-secondary leading-relaxed">798                        Extrahiert atomare, testbare Anforderungen aus dem angereicherten Kontext mit REQ-IDs.799                    </p>800                </div>801 802                <!-- Epics -->803                <div class="bg-ibm-surface border border-ibm-surface-light p-6 group transition-colors duration-300 hover:border-ibm-error fade-in-up delay-500">804                    <div class="w-10 h-10 bg-[#2e1a1a] flex items-center justify-center mb-4">805                        <i data-lucide="git-branch" class="w-5 h-5 text-ibm-error"></i>806                    </div>807                    <h3 class="text-sm font-bold text-ibm-text mb-1">Epic Engine</h3>808                    <p class="text-xs text-ibm-error font-ibm-mono mb-3">Zerlegung & Priorisierung</p>809                    <p class="text-xs text-ibm-text-secondary leading-relaxed">810                        Gruppiert Requirements in Epics, erstellt Tasks und priorisiert nach Abhängigkeiten.811                    </p>812                </div>813            </div>814 815            <div class="mt-12 bg-ibm-surface border border-ibm-surface-light p-6 max-w-3xl mx-auto fade-in-up">816                <div class="flex items-center gap-3 mb-3">817                    <i data-lucide="info" class="w-4 h-4 text-ibm-blue"></i>818                    <span class="text-xs font-bold text-ibm-text font-ibm-mono">ARCHITEKTUR-PRINZIP</span>819                </div>820                <p class="text-sm text-ibm-text-secondary leading-relaxed">821                    Alle Agenten arbeiten auf <span class="text-ibm-text">IBM Watson X</span> mit einem zentralen, versionierten Kontext.822                    Der <span class="text-ibm-blue">Orchestrator</span> steuert die Pipeline, delegiert Tasks, validiert Zwischenergebnisse und konsolidiert das finale Backlog.823                    Agenten kommunizieren asynchron — keine Blockierung, maximale Parallelisierung.824                </p>825            </div>826        </div>827    </section>828 829    <!-- ════════════════════════════════════════════ -->830    <!-- FOOTER                                       -->831    <!-- ════════════════════════════════════════════ -->832    <footer class="py-12 bg-ibm-dark border-t border-ibm-surface-light">833        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">834            <div class="flex flex-col sm:flex-row items-center justify-center gap-2 sm:gap-4 mb-3">835                <span class="text-xl font-bold text-ibm-text">IBM Watson X</span>836                <span class="hidden sm:inline text-ibm-surface-light">|</span>837                <span class="text-ibm-text-secondary font-medium">Multi-Agent Requirements Engineering</span>838            </div>839            <p class="text-sm text-ibm-text-muted">&copy; 2026</p>840        </div>841    </footer>842 843    <!-- ════════════════════════════════════════════ -->844    <!-- ════════════════════════════════════════════ -->845    <!-- SCRIPTS                                      -->846    <!-- ════════════════════════════════════════════ -->847 848    <!-- ── Simulation Engine ── -->849    <script>850        'use strict';851        852        // ═══ STATE ═══853        const state = {854            running: false,855            currentStage: -1,       // -1 = idle, 0-3 = pipeline stages, 4 = complete856            autoAdvance: true,857            chatMessages: [],858            stageTimers: []         // for clearing timeouts on reset859        };860 861        // ═══ DOM REFS ═══862        const chatContainer = document.getElementById('chat-container');863        const chatEmpty = document.getElementById('chat-empty');864        const btnStart = document.getElementById('btn-start');865        const btnNext = document.getElementById('btn-next');866        const btnReset = document.getElementById('btn-reset');867        const inputStatus = document.getElementById('input-status');868 869        // ═══ AGENT DATA ═══870        const agents = {871            orchestrator: { name: 'Orchestrator', icon: 'cpu', color: '#0f62fe', bgClass: 'bg-ibm-blue/10 border-ibm-blue/20', textClass: 'text-ibm-blue' },872            transcription: { name: 'Transkription', icon: 'mic', color: '#42be65', bgClass: 'bg-[#1a2e1e] border-[#42be65]/20', textClass: 'text-ibm-success' },873            context: { name: 'Context Engine', icon: 'database', color: '#4589ff', bgClass: 'bg-[#1a2740] border-[#4589ff]/20', textClass: 'text-ibm-blue-light' },874            requirements: { name: 'Requirements', icon: 'list-checks', color: '#f1c21b', bgClass: 'bg-[#2e2a1a] border-[#f1c21b]/20', textClass: 'text-ibm-warning' },875            epics: { name: 'Epic Engine', icon: 'git-branch', color: '#da1e28', bgClass: 'bg-[#2e1a1a] border-[#da1e28]/20', textClass: 'text-ibm-error' }876        };877 878        // ═══ PIPELINE SCRIPT ═══879        const pipeline = [880            // Stage 0: Transcription881            {882                stage: 0,883                stageName: 'Transkription',884                messages: [885                    { from: 'orchestrator', text: 'Meeting-Aufnahme empfangen. <span class="text-ibm-text-muted">Dauer: 47:12 min, 42 Sprechbeiträge, 5 Teilnehmer.</span> Starte Transkription...' },886                    { from: 'transcription', text: '<span class="text-ibm-success font-bold">✓ Transkription abgeschlossen.</span><br><br><span class="text-ibm-text-secondary">Dauer:</span> 47:12 min, 42 Sprechbeiträge<br><span class="text-ibm-text-secondary">Erkannte Teilnehmer:</span> Anna (Product Owner), Marco (Tech Lead), Dr. Weber (Operations), Lisa (UX), Thomas (HR)<br><br><span class="text-ibm-text-secondary">Zentrale Themen-Cluster:</span><br>• Genehmigungs-Workflow & Admin-UI<br>• Rollen-Rechte-Konzept (RBAC, Stellvertreter)<br>• HR-Dashboard & Reporting (Echtzeit, SLA)<br>• SAP-Integration (Stammdaten, BAPI-Adapter)<br>• Notifications (In-App, E-Mail, Slack Q4)<br>• Compliance & Audit-Trail (ISO 27001)<br>• UX-Konzept & User-Testing<br>• API-Rate-Limiting & Infrastruktur' },887                ]888            },889            // Orchestrator between 0-1890            {891                stage: 0.5,892                stageName: 'Orchestrator',893                messages: [894                    { from: 'orchestrator', text: 'Transkript analysiert. <span class="text-ibm-text-secondary">12 potenzielle Anforderungen in 5 Themen-Clustern.</span><br><br>Starte Context-Anreicherung — lade Firmen-Wissen zu Active Directory, SAP, ISO 27001 und Tech-Stack.' },895                ]896            },897            // Stage 1: Context898            {899                stage: 1,900                stageName: 'Context',901                messages: [902                    { from: 'context', text: '<span class="text-ibm-blue-light font-bold">✓ Kontext geladen.</span><br><br><span class="text-ibm-text">Active Directory:</span> <span class="text-ibm-text-secondary">400 User, 6 Abteilungen, Freigabestufen-Hierarchie</span><br><span class="text-ibm-text">SAP:</span> <span class="text-ibm-text-secondary">RFC BAPI für Stammdaten, nicht-idempotent, Retry-Logik nötig</span><br><span class="text-ibm-text">Compliance:</span> <span class="text-ibm-text-secondary">ISO 27001 — Audit-Trail Pflicht für jede Genehmigungsaktion</span><br><span class="text-ibm-text">Tech-Stack:</span> <span class="text-ibm-text-secondary">Keycloak Auth, REST-APIs, CI/CD, Event-Stream für Notifications</span>' },903                ]904            },905            // Orchestrator between 1-2906            {907                stage: 1.5,908                stageName: 'Orchestrator',909                messages: [910                    { from: 'orchestrator', text: 'Kontext angereichert. Extrahiere strukturierte Anforderungen aus dem angereicherten Transkript.' },911                ]912            },913            // Stage 2: Requirements914            {915                stage: 2,916                stageName: 'Requirements',917                messages: [918                    { from: 'requirements', text: '<span class="text-ibm-warning font-bold">✓ 12 Requirements extrahiert.</span><br><br><div class="space-y-1 text-sm"><span class="text-ibm-text-secondary font-ibm-mono">REQ-01</span> Genehmigungs-Workflow (Urlaub, Reisekosten, Beschaffungen >5K)<br><span class="text-ibm-text-secondary font-ibm-mono">REQ-02</span> Rollen-Rechte-Konzept (RBAC, 400 User, 6 Abt.)<br><span class="text-ibm-text-secondary font-ibm-mono">REQ-03</span> HR-Dashboard (offene Anträge, SLA, Filter, Echtzeit)<br><span class="text-ibm-text-secondary font-ibm-mono">REQ-04</span> Audit-Trail (ISO 27001, Event-Log)<br><span class="text-ibm-text-secondary font-ibm-mono">REQ-05</span> SAP-Integration (Stammdaten, BAPI-Adapter)<br><span class="text-ibm-text-secondary font-ibm-mono">REQ-06</span> Notifications (In-App + E-Mail, Slack Q4)<br><span class="text-ibm-text-secondary font-ibm-mono">REQ-07</span> Stellvertreter-Regelung (automatische Delegation)<br><span class="text-ibm-text-secondary font-ibm-mono">REQ-08</span> UX-Click-Dummies + User-Testing<br><span class="text-ibm-text-secondary font-ibm-mono">REQ-09</span> Admin-UI für Workflow-Konfiguration<br><span class="text-ibm-text-secondary font-ibm-mono">REQ-10</span> API-Rate-Limiting (400 concurrent)<br><span class="text-ibm-text-secondary font-ibm-mono">REQ-11</span> Reporting (Durchlaufzeiten, SLA, Engpässe)<br><span class="text-ibm-text-secondary font-ibm-mono">REQ-12</span> Responsive Layout Tablet</div>' },919                ]920            },921            // Orchestrator between 2-3922            {923                stage: 2.5,924                stageName: 'Orchestrator',925                messages: [926                    { from: 'orchestrator', text: '12 Requirements validiert. Gruppiere nach Abhängigkeiten und Fachdomänen. Zerlege in Epics mit Task-Vorschlägen.' },927                ]928            },929            // Stage 3: Epics930            {931                stage: 3,932                stageName: 'Epics',933                messages: [934                    { from: 'epics', text: '<span class="text-ibm-error font-bold">✓ 8 Epics mit Tasks erstellt.</span><br><br><div class="space-y-2 text-sm"><div><span class="text-ibm-error font-bold font-ibm-mono">EPIC-01</span> <span class="text-ibm-text">Rollen & Berechtigungen</span><br><span class="text-ibm-text-secondary">REQ-02, REQ-07 • 6 Tasks • Phase 1</span></div><div><span class="text-ibm-error font-bold font-ibm-mono">EPIC-02</span> <span class="text-ibm-text">Genehmigungs-Workflow</span><br><span class="text-ibm-text-secondary">REQ-01, REQ-09 • 5 Tasks • Phase 2</span></div><div><span class="text-ibm-error font-bold font-ibm-mono">EPIC-03</span> <span class="text-ibm-text">HR-Dashboard & Reporting</span><br><span class="text-ibm-text-secondary">REQ-03, REQ-11 • 4 Tasks • Phase 2</span></div><div><span class="text-ibm-error font-bold font-ibm-mono">EPIC-04</span> <span class="text-ibm-text">Compliance & Audit</span><br><span class="text-ibm-text-secondary">REQ-04 • 3 Tasks • Phase 1</span></div><div><span class="text-ibm-error font-bold font-ibm-mono">EPIC-05</span> <span class="text-ibm-text">Integrationen</span><br><span class="text-ibm-text-secondary">REQ-05 • 3 Tasks • Phase 3</span></div><div><span class="text-ibm-error font-bold font-ibm-mono">EPIC-06</span> <span class="text-ibm-text">Notifications</span><br><span class="text-ibm-text-secondary">REQ-06 • 4 Tasks • Phase 3</span></div><div><span class="text-ibm-error font-bold font-ibm-mono">EPIC-07</span> <span class="text-ibm-text">UX & Testing</span><br><span class="text-ibm-text-secondary">REQ-08, REQ-12 • 3 Tasks • Phase 1</span></div><div><span class="text-ibm-error font-bold font-ibm-mono">EPIC-08</span> <span class="text-ibm-text">Infrastruktur</span><br><span class="text-ibm-text-secondary">REQ-10 • 2 Tasks • Phase 1</span></div></div>' },935                ]936            },937            // Final Orchestrator938            {939                stage: 4,940                stageName: 'Backlog',941                messages: [942                    { from: 'orchestrator', text: '<span class="text-ibm-text font-bold">Pipeline abgeschlossen.</span><br><br><span class="text-ibm-text-secondary">Verarbeitungszeit:</span> <span class="text-ibm-success">2:34 min</span><br><span class="text-ibm-text-secondary">Manueller Vergleich:</span> <span class="text-ibm-text-muted">~3 Arbeitstage</span><br><br><span class="text-ibm-text">✓ 12 Requirements extrahiert</span><br><span class="text-ibm-text">✓ 8 Epics mit 30 Tasks erstellt</span><br><span class="text-ibm-text">✓ 3 Phasen priorisiert</span><br><br><span class="text-ibm-blue">Backlog ready to build.</span>' },943                ]944            }945        ];946 947        // ═══ HELPERS ═══948        function delay(ms) {949            return new Promise(resolve => {950                const t = setTimeout(resolve, ms);951                state.stageTimers.push(t);952            });953        }954 955        function clearAllTimers() {956            state.stageTimers.forEach(t => clearTimeout(t));957            state.stageTimers = [];958        }959 960        function updateProgressStepper(stage) {961            document.querySelectorAll('.stepper-stage').forEach((el, i) => {962                const num = el.querySelector('div');963                const line = document.querySelectorAll('.stepper-line')[i > 0 ? i - 1 : 0];964                if (i < stage) {965                    num.className = 'w-8 h-8 flex items-center justify-center text-xs font-bold font-ibm-mono bg-ibm-success text-ibm-dark';966                    if (i > 0) {967                        const prevLine = document.querySelectorAll('.stepper-line')[i - 1];968                        if (prevLine) prevLine.className = 'flex-1 h-px bg-ibm-success mx-3 stepper-line';969                    }970                } else if (i === stage) {971                    num.className = 'w-8 h-8 flex items-center justify-center text-xs font-bold font-ibm-mono bg-ibm-blue text-white';972                    el.querySelector('span').className = 'text-xs font-medium text-ibm-blue hidden sm:inline';973                }974            });975 976            // Stage 4 (complete): all green977            if (stage >= 4) {978                document.querySelectorAll('.stepper-stage').forEach((el, i) => {979                    if (i <= 3) {980                        el.querySelector('div').className = 'w-8 h-8 flex items-center justify-center text-xs font-bold font-ibm-mono bg-ibm-success text-ibm-dark';981                    }982                });983                document.querySelectorAll('.stepper-line').forEach(l => {984                    l.className = 'flex-1 h-px bg-ibm-success mx-3 stepper-line';985                });986                document.querySelector('[data-stage="4"] div').className = 'w-8 h-8 flex items-center justify-center text-xs font-bold font-ibm-mono bg-ibm-success text-ibm-dark';987                document.querySelector('[data-stage="4"] span').className = 'text-xs font-medium text-ibm-success hidden sm:inline';988            }989        }990 991        // ═══ MAS GRAPH ANIMATION — Atomic Structure ═══992        function glowNode(id, color, glowFilter) {993            const el = document.getElementById(id);994            if (!el) return;995            el.setAttribute('fill', color === 'blue' ? 'url(#grad-active)' : color === 'green' ? 'url(#grad-done)' : color === 'yellow' ? '#f1c21b' : '#262626');996            el.setAttribute('stroke', color === 'blue' ? '#0f62fe' : color === 'green' ? '#42be65' : color === 'yellow' ? '#f1c21b' : '#393939');997            el.setAttribute('stroke-width', color === 'idle' ? '1.5' : '2.5');998            el.setAttribute('filter', color === 'blue' ? 'url(#glow-blue)' : color === 'green' ? 'url(#glow-green)' : color === 'yellow' ? 'url(#glow-yellow)' : 'none');999        }1000 1001        function glowRing(id, color) {1002            const el = document.getElementById(id);1003            if (!el) return;1004            el.setAttribute('stroke', color === 'blue' ? '#0f62fe' : color === 'green' ? '#42be65' : color === 'yellow' ? '#f1c21b' : '#393939');1005            el.setAttribute('stroke-width', color === 'idle' ? '0.5' : '1.5');1006        }1007 1008        function glowConn(id, color, width) {1009            const el = document.getElementById(id);1010            if (!el) return;1011            el.setAttribute('stroke', color === 'blue' ? '#0f62fe' : color === 'green' ? '#42be65' : color === 'yellow' ? '#f1c21b' : '#393939');1012            el.setAttribute('stroke-width', width || (color === 'idle' ? '1' : '2'));1013            el.setAttribute('filter', color !== 'idle' ? 'url(#glow-soft)' : 'none');1014        }1015 1016        function glowParticle(id, show, color) {1017            const el = document.getElementById(id);1018            if (!el) return;1019            el.setAttribute('opacity', show ? '1' : '0');1020            if (show) {1021                el.setAttribute('fill', color === 'green' ? '#42be65' : '#0f62fe');1022                el.setAttribute('filter', color === 'green' ? 'url(#glow-green)' : 'url(#glow-blue)');1023            }1024        }1025 1026        function glowLabel(id, color) {1027            const el = document.getElementById(id);1028            if (!el) return;1029            // Output nodes (backlog, dev) need white text on green bg1030            const isOutput = id === 'label-backlog' || id === 'label-dev';1031            el.setAttribute('fill', color === 'blue' ? '#ffffff' : color === 'green' ? (isOutput ? '#ffffff' : '#42be65') : color === 'yellow' ? '#f1c21b' : (isOutput ? '#f4f4f4' : '#525252'));1032        }1033 1034        function glowNameLabel(id, color) {1035            const el = document.getElementById(id);1036            if (!el) return;1037            el.setAttribute('fill', color === 'idle' ? '#525252' : color === 'green' ? '#42be65' : '#f4f4f4');1038        }1039 1040        function setCoreState(color) {1041            const core = document.getElementById('core-orch');1042            const label = document.getElementById('core-label');1043            const outer = document.getElementById('orch-pulse-outer');1044            const inner = document.getElementById('orch-pulse-inner');1045            1046            if (color === 'idle') {1047                if (core) core.setAttribute('fill', 'url(#grad-orch)');1048                if (outer) outer.setAttribute('stroke', '#0f62fe');1049                if (outer) outer.setAttribute('opacity', '0.3');1050                if (inner) inner.setAttribute('stroke', '#0f62fe');1051                if (inner) inner.setAttribute('opacity', '0.2');1052            } else if (color === 'pulse') {1053                if (outer) { outer.setAttribute('stroke', '#4589ff'); outer.setAttribute('opacity', '0.8'); }1054                if (inner) { inner.setAttribute('stroke', '#0f62fe'); inner.setAttribute('opacity', '0.6'); }1055            } else if (color === 'done') {1056                if (core) core.setAttribute('fill', 'url(#grad-done)');1057                if (outer) { outer.setAttribute('stroke', '#42be65'); outer.setAttribute('opacity', '0.6'); }1058                if (inner) { inner.setAttribute('stroke', '#42be65'); inner.setAttribute('opacity', '0.4'); }1059            }1060        }1061 1062        function updateMASGraph(stage) {1063            const graphStatus = document.getElementById('graph-status');1064            1065            // Reset ALL to idle1066            const agents = ['meeting', 'transcription', 'context', 'requirements', 'epics', 'backlog', 'dev'];1067            agents.forEach(a => {1068                glowNode('node-' + a, 'idle');1069                glowLabel('label-' + a, 'idle');1070                if (a !== 'meeting' && a !== 'backlog' && a !== 'dev') {1071                    glowRing('ring-' + a, 'idle');1072                    glowNameLabel('name-' + a, 'idle');1073                }1074            });1075            1076            ['conn-meeting', 'conn-transcription', 'conn-context', 'conn-requirements', 'conn-epics', 'conn-backlog', 'conn-dev'].forEach(c => glowConn(c, 'idle'));1077            ['particle-meeting', 'particle-trans', 'particle-ctx', 'particle-req', 'particle-epic'].forEach(p => glowParticle(p, false, 'blue'));1078            ['dot-trans', 'dot-ctx', 'dot-req', 'dot-epic'].forEach(d => glowConn(d, 'idle', '1'));1079            ['ring-outer', 'ring-inner'].forEach(r => {1080                const el = document.getElementById(r);1081                if (el) el.setAttribute('stroke', '#262626');1082            });1083            setCoreState('idle');1084 1085            // Control background graph opacity1086            const masGraph = document.getElementById('mas-graph');1087            if (stage < 0) {1088                if (masGraph) masGraph.style.opacity = '0.60';1089                if (graphStatus) graphStatus.textContent = 'idle';1090                return;1091            }1092            if (masGraph) masGraph.style.opacity = '0.85';1093 1094            // ── STAGE 0: Transcription active ──1095            if (stage >= 0) {1096                glowNode('node-meeting', 'green');1097                glowLabel('label-meeting', 'green');1098                glowConn('conn-meeting', 'green');1099                glowParticle('particle-meeting', true, 'green');1100                1101                glowNode('node-transcription', 'blue');1102                glowLabel('label-transcription', 'blue');1103                glowRing('ring-transcription', 'blue');1104                glowNameLabel('name-transcription', 'blue');1105                glowConn('conn-transcription', 'blue');1106                glowParticle('particle-trans', true, 'blue');1107                glowConn('dot-trans', 'blue', '2');1108                1109                setCoreState('pulse');1110                if (graphStatus) graphStatus.textContent = 'transcribing';1111            }1112            1113            // ── STAGE 0.5: Orchestrator pulse ──1114            if (stage >= 0.5) {1115                glowNode('node-transcription', 'green');1116                glowLabel('label-transcription', 'green');1117                glowRing('ring-transcription', 'green');1118                glowNameLabel('name-transcription', 'green');1119                glowConn('conn-transcription', 'green');1120                glowParticle('particle-trans', true, 'green');1121                1122                glowNode('node-context', 'yellow');1123                glowLabel('label-context', 'yellow');1124                glowRing('ring-context', 'yellow');1125                glowNameLabel('name-context', 'yellow');1126                1127                setCoreState('pulse');1128                if (graphStatus) graphStatus.textContent = 'enriching';1129            }1130            1131            // ── STAGE 1: Context active ──1132            if (stage >= 1) {1133                glowNode('node-context', 'blue');1134                glowLabel('label-context', 'blue');1135                glowRing('ring-context', 'blue');1136                glowNameLabel('name-context', 'blue');1137                glowConn('conn-context', 'blue');1138                glowParticle('particle-ctx', true, 'blue');1139                glowConn('dot-ctx', 'blue', '2');1140                1141                setCoreState('pulse');1142                if (graphStatus) graphStatus.textContent = 'context loaded';1143            }1144            1145            // ── STAGE 1.5 ──1146            if (stage >= 1.5) {1147                glowNode('node-context', 'green');1148                glowLabel('label-context', 'green');1149                glowRing('ring-context', 'green');1150                glowNameLabel('name-context', 'green');1151                glowConn('conn-context', 'green');1152                1153                glowNode('node-requirements', 'yellow');1154                glowLabel('label-requirements', 'yellow');1155                glowRing('ring-requirements', 'yellow');1156                glowNameLabel('name-requirements', 'yellow');1157                1158                setCoreState('pulse');1159                if (graphStatus) graphStatus.textContent = 'extracting';1160            }1161            1162            // ── STAGE 2: Requirements active ──1163            if (stage >= 2) {1164                glowNode('node-requirements', 'blue');1165                glowLabel('label-requirements', 'blue');1166                glowRing('ring-requirements', 'blue');1167                glowNameLabel('name-requirements', 'blue');1168                glowConn('conn-requirements', 'blue');1169                glowParticle('particle-req', true, 'blue');1170                glowConn('dot-req', 'blue', '2');1171                1172                setCoreState('pulse');1173                if (graphStatus) graphStatus.textContent = 'requirements ready';1174            }1175            1176            // ── STAGE 2.5 ──1177            if (stage >= 2.5) {1178                glowNode('node-requirements', 'green');1179                glowLabel('label-requirements', 'green');1180                glowRing('ring-requirements', 'green');1181                glowNameLabel('name-requirements', 'green');1182                glowConn('conn-requirements', 'green');1183                1184                glowNode('node-epics', 'yellow');1185                glowLabel('label-epics', 'yellow');1186                glowRing('ring-epics', 'yellow');1187                glowNameLabel('name-epics', 'yellow');1188                1189                setCoreState('pulse');1190                if (graphStatus) graphStatus.textContent = 'decomposing';1191            }1192            1193            // ── STAGE 3: Epics active ──1194            if (stage >= 3) {1195                glowNode('node-epics', 'blue');1196                glowLabel('label-epics', 'blue');1197                glowRing('ring-epics', 'blue');1198                glowNameLabel('name-epics', 'blue');1199                glowConn('conn-epics', 'blue');1200                glowParticle('particle-epic', true, 'blue');

Showing the first 1,200 of 1566 lines. Download the file for the rest.