        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --bg: #0a0a0a;
            --surface: #141414;
            --surface-2: #1a1a1a;
            --surface-3: #222;
            --border: #2a2a2a;
            --border-light: #333;
            --text: #e5e5e5;
            --text-dim: #999;
            --text-muted: #666;
            --accent: #dc2626;
            --accent-glow: rgba(220, 38, 38, 0.15);
            --blue: #3b82f6;
            --green: #22c55e;
            --amber: #f59e0b;
            --purple: #8b5cf6;
            --pink: #ec4899;
            --cyan: #06b6d4;
        }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            min-height: 100vh;
        }

        /* ── NAV ── */
        .nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-brand {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--text);
            text-decoration: none;
        }
        .nav-brand span { color: var(--accent); }
        .nav-back {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: color 0.2s;
        }
        .nav-back:hover { color: var(--text); }

        /* ── HERO ── */
        .hero {
            text-align: center;
            padding: 4rem 2rem 3rem;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero-badge {
            display: inline-block;
            background: var(--accent-glow);
            color: var(--accent);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.4rem 1rem;
            border-radius: 100px;
            border: 1px solid rgba(220, 38, 38, 0.3);
            margin-bottom: 1.5rem;
        }
        .hero h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1rem;
        }
        .hero p {
            color: var(--text-dim);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
        }
        .hero-stat {
            text-align: center;
        }
        .hero-stat-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text);
        }
        .hero-stat-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* ── FILTER ── */
        .filters {
            max-width: 1200px;
            margin: 0 auto 2rem;
            padding: 0 2rem;
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .filter-btn {
            background: var(--surface);
            border: 1px solid var(--border);
            color: var(--text-dim);
            padding: 0.5rem 1rem;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }
        .filter-btn:hover { border-color: var(--text-muted); color: var(--text); }
        .filter-btn.active {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }

        /* ── SCENARIO GRID ── */
        .scenario-grid {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 1.5rem;
        }
        .scenario-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            cursor: pointer;
            transition: all 0.25s;
            position: relative;
            overflow: hidden;
        }
        .scenario-card:hover {
            border-color: var(--border-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }
        .scenario-card-header {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        .scenario-card-icon {
            font-size: 2rem;
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--surface-2);
            border-radius: 10px;
        }
        .scenario-card-meta {
            flex: 1;
        }
        .scenario-card-title {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
        }
        .scenario-card-subtitle {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-style: italic;
        }
        .scenario-card-desc {
            font-size: 0.85rem;
            color: var(--text-dim);
            margin-bottom: 1rem;
            line-height: 1.5;
        }
        .scenario-card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .scenario-tag {
            font-size: 0.7rem;
            font-weight: 600;
            padding: 0.25rem 0.6rem;
            border-radius: 100px;
            background: var(--surface-2);
            color: var(--text-dim);
            border: 1px solid var(--border);
        }
        .scenario-tag.difficulty-beginner { color: var(--green); border-color: rgba(34,197,94,0.3); }
        .scenario-tag.difficulty-intermediate { color: var(--amber); border-color: rgba(245,158,11,0.3); }
        .scenario-tag.difficulty-advanced { color: var(--accent); border-color: rgba(220,38,38,0.3); }
        .scenario-tag.expansion {
            color: var(--purple);
            border-color: rgba(139,92,246,0.3);
            background: rgba(139,92,246,0.1);
        }

        /* ── SCENARIO DETAIL (full view) ── */
        .scenario-detail-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 200;
            background: var(--bg);
            overflow-y: auto;
        }
        .scenario-detail-overlay.active { display: block; }

        .scenario-detail {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }
        .scenario-detail-close {
            position: sticky;
            top: 0;
            z-index: 10;
            background: rgba(10,10,10,0.9);
            backdrop-filter: blur(12px);
            padding: 1rem 0;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--border);
        }
        .close-btn {
            background: var(--surface);
            border: 1px solid var(--border);
            color: var(--text);
            padding: 0.5rem 1.2rem;
            border-radius: 8px;
            font-size: 0.85rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            transition: all 0.2s;
        }
        .close-btn:hover { background: var(--surface-2); border-color: var(--border-light); }

        .detail-hero {
            text-align: center;
            padding: 2rem 0 3rem;
            border-bottom: 1px solid var(--border);
            margin-bottom: 2rem;
        }
        .detail-icon { font-size: 3rem; margin-bottom: 1rem; }
        .detail-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.3rem;
        }
        .detail-subtitle {
            color: var(--text-muted);
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        .detail-meta {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        .detail-meta-item {
            text-align: center;
        }
        .detail-meta-value {
            font-weight: 700;
            font-size: 0.95rem;
        }
        .detail-meta-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* ── SECTIONS ── */
        .scenario-section {
            margin-bottom: 1.5rem;
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
        }
        .section-header {
            padding: 1rem 1.5rem;
            background: var(--surface);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background 0.2s;
            user-select: none;
        }
        .section-header:hover { background: var(--surface-2); }
        .section-header h3 {
            font-size: 0.95rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        .section-header .chevron {
            transition: transform 0.3s;
            color: var(--text-muted);
            font-size: 0.8rem;
        }
        .scenario-section.open .chevron { transform: rotate(180deg); }
        .section-body {
            display: none;
            padding: 1.5rem;
            background: var(--surface-2);
            border-top: 1px solid var(--border);
        }
        .scenario-section.open .section-body { display: block; }
        .scenario-section.open .section-header { border-bottom: none; }

        /* Section content styles */
        .overview-text {
            font-size: 0.95rem;
            color: var(--text-dim);
            line-height: 1.7;
        }
        .overview-text strong { color: var(--text); }

        .token-group {
            margin-bottom: 1rem;
        }
        .token-group:last-child { margin-bottom: 0; }
        .token-group-label {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }
        .token-group-label.risks { color: #ef4444; }
        .token-group-label.positions { color: #9ca3af; }
        .token-group-label.mitigations { color: #3b82f6; }
        .token-group-label.assets { color: #f97316; }
        .token-group-label.actions { color: #60a5fa; }
        .token-group-label.expansion { color: #a78bfa; }
        .token-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .token-chip {
            font-size: 0.7rem;
            font-weight: 700;
            font-family: 'SF Mono', 'Fira Code', monospace;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            letter-spacing: 0.02em;
        }
        .token-chip.risk { background: rgba(239,68,68,0.15); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }
        .token-chip.position { background: rgba(156,163,175,0.1); color: #9ca3af; border: 1px solid rgba(156,163,175,0.3); }
        .token-chip.mitigation { background: rgba(59,130,246,0.1); color: #60a5fa; border: 1px solid rgba(59,130,246,0.3); }
        .token-chip.asset { background: rgba(249,115,22,0.1); color: #f97316; border: 1px solid rgba(249,115,22,0.3); }
        .token-chip.action { background: rgba(96,165,250,0.15); color: #93c5fd; border: 1px solid rgba(96,165,250,0.3); }
        .token-chip.exp { background: rgba(167,139,250,0.1); color: #a78bfa; border: 1px solid rgba(167,139,250,0.3); }

        .dice-guidance {
            font-size: 0.9rem;
            color: var(--text-dim);
            line-height: 1.7;
        }
        .dice-guidance code {
            background: var(--surface-3);
            padding: 0.15rem 0.4rem;
            border-radius: 4px;
            font-size: 0.8rem;
            color: var(--text);
        }

        .facilitator-script {
            font-size: 0.9rem;
            line-height: 1.8;
            color: var(--text-dim);
        }
        .script-block {
            background: var(--surface-3);
            border-left: 3px solid var(--accent);
            padding: 1rem 1.2rem;
            margin: 1rem 0;
            border-radius: 0 6px 6px 0;
            font-style: italic;
            color: var(--text);
        }
        .script-note {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-style: italic;
            margin-top: 0.5rem;
        }

        /* Injects */
        .inject-list { display: flex; flex-direction: column; gap: 1rem; }
        .inject-item {
            background: var(--surface-3);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
        }
        .inject-header {
            padding: 0.8rem 1.2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: background 0.2s;
        }
        .inject-header:hover { background: rgba(255,255,255,0.03); }
        .inject-time {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--amber);
            background: rgba(245,158,11,0.1);
            padding: 0.2rem 0.6rem;
            border-radius: 100px;
            border: 1px solid rgba(245,158,11,0.2);
        }
        .inject-title {
            font-weight: 600;
            font-size: 0.9rem;
            flex: 1;
            margin-left: 0.8rem;
        }
        .inject-reveal-btn {
            font-size: 0.75rem;
            color: var(--text-muted);
            background: none;
            border: 1px solid var(--border);
            padding: 0.3rem 0.7rem;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
        }
        .inject-reveal-btn:hover { border-color: var(--text-muted); color: var(--text); }
        .inject-body {
            display: none;
            padding: 0 1.2rem 1rem;
            font-size: 0.85rem;
            color: var(--text-dim);
            line-height: 1.6;
        }
        .inject-item.revealed .inject-body { display: block; }
        .inject-item.revealed .inject-reveal-btn { display: none; }
        .inject-facilitator-note {
            margin-top: 0.8rem;
            padding: 0.6rem 1rem;
            background: rgba(220,38,38,0.08);
            border: 1px solid rgba(220,38,38,0.2);
            border-radius: 6px;
            font-size: 0.8rem;
            color: var(--accent);
        }
        .inject-facilitator-note strong { color: #f87171; }

        .reveal-all-btn {
            margin-top: 1rem;
            background: var(--surface-3);
            border: 1px solid var(--border);
            color: var(--text-dim);
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.2s;
            width: 100%;
        }
        .reveal-all-btn:hover { border-color: var(--text-muted); color: var(--text); }

        /* Decision Points */
        .decision-list { display: flex; flex-direction: column; gap: 1.5rem; }
        .decision-item {
            background: var(--surface-3);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.2rem;
        }
        .decision-title {
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
            color: var(--text);
        }
        .decision-desc {
            font-size: 0.85rem;
            color: var(--text-dim);
            margin-bottom: 0.8rem;
            line-height: 1.6;
        }
        .decision-tokens {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 0.8rem;
        }
        .decision-token {
            background: rgba(96,165,250,0.15);
            color: #93c5fd;
            border: 1px solid rgba(96,165,250,0.3);
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-family: 'SF Mono', 'Fira Code', monospace;
        }
        .decision-consequence {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-style: italic;
            padding-top: 0.5rem;
            border-top: 1px solid var(--border);
        }

        /* Debrief */
        .debrief-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            counter-reset: debrief;
        }
        .debrief-list li {
            counter-increment: debrief;
            background: var(--surface-3);
            padding: 1rem 1.2rem 1rem 3.2rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            font-size: 0.9rem;
            color: var(--text-dim);
            position: relative;
            line-height: 1.5;
        }
        .debrief-list li::before {
            content: counter(debrief);
            position: absolute;
            left: 1.2rem;
            top: 1rem;
            font-weight: 800;
            color: var(--accent);
            font-size: 0.85rem;
        }

        /* ── FOOTER ── */
        .footer {
            text-align: center;
            padding: 3rem 2rem;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.8rem;
        }
        .footer a { color: var(--accent); text-decoration: none; }
        .footer a:hover { text-decoration: underline; }

        .expansion-notice {
            background: rgba(139,92,246,0.08);
            border: 1px solid rgba(139,92,246,0.2);
            border-radius: 8px;
            padding: 0.8rem 1.2rem;
            margin-bottom: 1.5rem;
            font-size: 0.85rem;
            color: #a78bfa;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .expansion-notice a { color: #c4b5fd; text-decoration: underline; }

        /* ── AI CTA ── */
        .ai-cta {
            max-width: 700px;
            margin: 0 auto 3rem;
            padding: 0 2rem;
        }
        .ai-cta-inner {
            text-align: center;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 3rem 2rem;
        }
        .ai-cta-badge {
            display: inline-block;
            background: rgba(139,92,246,0.15);
            color: #a78bfa;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0.3rem 0.8rem;
            border-radius: 100px;
            border: 1px solid rgba(139,92,246,0.3);
            margin-bottom: 1rem;
        }
        .ai-cta h2 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.8rem;
        }
        .ai-cta p {
            color: var(--text-dim);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        .ai-cta-form {
            display: flex;
            gap: 0.5rem;
            max-width: 450px;
            margin: 0 auto;
        }
        .ai-cta-form input[type="email"] {
            flex: 1;
            padding: 0.7rem 1rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: var(--surface-2);
            color: var(--text);
            font-size: 0.85rem;
            outline: none;
        }
        .ai-cta-form input[type="email"]:focus {
            border-color: #a78bfa;
        }
        .ai-cta-form button {
            background: #8b5cf6;
            color: #fff;
            border: none;
            padding: 0.7rem 1.2rem;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.2s;
        }
        .ai-cta-form button:hover { background: #7c3aed; }
        .ai-cta-success {
            color: #22c55e;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* ── INJECT LIBRARY ── */
        .inject-library {
            max-width: 1200px;
            margin: 0 auto 3rem;
            padding: 0 2rem;
        }
        .inject-library-header {
            text-align: center;
            margin-bottom: 2rem;
            padding-top: 3rem;
            border-top: 1px solid var(--border);
        }
        .inject-library-header h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        .inject-library-header p {
            color: var(--text-dim);
            font-size: 0.95rem;
            max-width: 600px;
            margin: 0 auto;
        }
        .inject-category-filters {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 2rem;
        }
        .inject-cat-btn {
            background: var(--surface);
            border: 1px solid var(--border);
            color: var(--text-dim);
            padding: 0.45rem 0.9rem;
            border-radius: 100px;
            font-size: 0.78rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }
        .inject-cat-btn:hover { border-color: var(--text-muted); color: var(--text); }
        .inject-cat-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
        .inject-db-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 0.8rem;
        }
        .inject-db-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1rem 1.2rem;
            display: flex;
            gap: 0.8rem;
            align-items: flex-start;
            transition: border-color 0.2s, background 0.2s;
            cursor: pointer;
        }
        .inject-db-card:hover { border-color: var(--border-light); background: var(--surface-2); }
        .inject-db-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
        .inject-db-time {
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 0.2rem 0.5rem;
            border-radius: 100px;
            white-space: nowrap;
            flex-shrink: 0;
            margin-top: 0.15rem;
        }
        .inject-db-time.escalation { color: #f87171; background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.2); }
        .inject-db-time.pressure { color: #fbbf24; background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.2); }
        .inject-db-time.compliance { color: #a78bfa; background: rgba(167,139,250,0.1); border: 1px solid rgba(167,139,250,0.2); }
        .inject-db-time.technical { color: #38bdf8; background: rgba(56,189,248,0.1); border: 1px solid rgba(56,189,248,0.2); }
        .inject-db-time.media { color: #fb923c; background: rgba(251,146,60,0.1); border: 1px solid rgba(251,146,60,0.2); }
        .inject-db-time.human { color: #4ade80; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2); }
        .inject-db-content {
            flex: 1;
        }
        .inject-db-text {
            font-size: 0.88rem;
            color: var(--text);
            line-height: 1.5;
            margin-bottom: 0.3rem;
        }
        .inject-db-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .inject-db-pairs {
            font-size: 0.72rem;
            color: var(--text-muted);
        }
        .inject-db-badges {
            display: flex;
            gap: 0.3rem;
            flex-shrink: 0;
        }
        .inject-badge {
            font-size: 0.6rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 0.15rem 0.45rem;
            border-radius: 100px;
            border: 1px solid var(--border);
            color: var(--text-dim);
        }
        .inject-badge-timing {
            color: var(--cyan);
            border-color: rgba(6,182,212,0.3);
            background: rgba(6,182,212,0.08);
        }
        .diff-beginner { color: var(--green); border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.08); }
        .diff-intermediate { color: var(--amber); border-color: rgba(245,158,11,0.3); background: rgba(245,158,11,0.08); }
        .diff-advanced { color: #f87171; border-color: rgba(248,113,113,0.3); background: rgba(248,113,113,0.08); }

        .inject-db-count {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.8rem;
            margin-top: 1.5rem;
        }

        /* ── INJECT MODAL ── */
        .inject-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 300;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(4px);
            justify-content: center;
            align-items: flex-start;
            padding: 3rem 1rem;
            overflow-y: auto;
        }
        .inject-modal-overlay.active {
            display: flex;
        }
        .inject-modal {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            max-width: 680px;
            width: 100%;
            padding: 2rem;
            position: relative;
            animation: modalSlideIn 0.25s ease;
        }
        @keyframes modalSlideIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .inject-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: var(--text-dim);
            font-size: 1.5rem;
            cursor: pointer;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, color 0.2s;
        }
        .inject-modal-close:hover { background: var(--surface-2); color: var(--text); }
        .inject-modal-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        .inject-modal-badges {
            display: flex;
            gap: 0.4rem;
        }
        .inject-modal-scenario {
            background: var(--surface-2);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 1.25rem;
            margin-bottom: 1.5rem;
        }
        .inject-modal-scenario h3 {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }
        .inject-modal-scenario p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text);
        }
        .inject-modal-section {
            margin-bottom: 1.5rem;
        }
        .inject-modal-section h4 {
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: var(--accent);
            margin-bottom: 0.6rem;
        }
        .inject-modal-section p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: var(--text-dim);
        }
        .inject-modal-questions {
            list-style: none;
            counter-reset: q;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .inject-modal-questions li {
            counter-increment: q;
            font-size: 0.9rem;
            line-height: 1.5;
            color: var(--text-dim);
            padding-left: 1.8rem;
            position: relative;
        }
        .inject-modal-questions li::before {
            content: counter(q);
            position: absolute;
            left: 0;
            top: 0;
            width: 1.3rem;
            height: 1.3rem;
            background: var(--surface-3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--text);
        }
        .inject-modal-tokens {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .inject-modal-token {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            padding: 0.3rem 0.7rem;
            border-radius: 20px;
            background: var(--surface-3);
            color: var(--text);
            border: 1px solid var(--border-light);
        }
        .inject-modal-cta {
            text-align: center;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
        }
        .inject-modal-buy {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            font-weight: 600;
            padding: 0.65rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s;
        }
        .inject-modal-buy:hover { opacity: 0.9; transform: translateY(-1px); }

        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .hero { padding: 3rem 1.5rem 2rem; }
            .hero h1 { font-size: 1.8rem; }
            .scenario-grid { grid-template-columns: 1fr; padding: 0 1rem 3rem; }
            .inject-db-grid { grid-template-columns: 1fr; }
            .inject-library { padding: 0 1rem; }
            .inject-category-filters { gap: 0.3rem; }
            .inject-modal-overlay { padding: 1rem 0.5rem; }
            .inject-modal { padding: 1.5rem; border-radius: 12px; }
            .inject-modal-scenario p { font-size: 0.92rem; }
            .ai-cta { padding: 0 1rem; }
            .scenario-detail { padding: 1rem; }
            .detail-title { font-size: 1.5rem; }
            .detail-meta { gap: 1rem; }
            .section-body { padding: 1rem; }
            .filters { padding: 0 1rem; }
        }
