        /* === WISSENSSEITE === */
        .ws-inner {
            max-width: 1080px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .ws-head {
            text-align: center;
            margin-bottom: 2rem;
        }
        .ws-head h2 {
            font-size: clamp(1.65rem, 3.5vw, 2.25rem);
            font-weight: 900;
            letter-spacing: -0.02em;
            margin-bottom: 0.5rem;
        }
        .ws-head h2 span { color: var(--accent); }
        .ws-kicker {
            display: block;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.38);
            margin-bottom: 0.55rem;
        }

        /* Hub */
        .ws-hub {
            padding: 3.5rem 0 4rem;
        }
        .ws-hub-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0.85rem;
        }
        .ws-hub-grid--3 {
            grid-template-columns: repeat(3, minmax(0, 1fr));
            max-width: 920px;
            margin-left: auto;
            margin-right: auto;
        }
        .ws-hub-grid--5 {
            grid-template-columns: repeat(5, minmax(0, 1fr));
        }
        .ws-hub-card--tools {
            border-color: rgba(255, 0, 77, 0.22);
            background: linear-gradient(145deg, rgba(255, 0, 77, 0.07) 0%, rgba(255, 255, 255, 0.02) 55%);
        }
        .ws-hub-card--tools::before { opacity: 1; }
        .ws-hub-card {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
            padding: 1.35rem 1.25rem 1.2rem;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.025);
            text-decoration: none;
            color: inherit;
            overflow: hidden;
            transition: border-color 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
        }
        .ws-hub-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 90% 80% at 100% 0%, rgba(255, 0, 77, 0.08) 0%, transparent 55%);
            opacity: 0;
            transition: opacity 0.28s ease;
            pointer-events: none;
        }
        .ws-hub-card:hover {
            border-color: rgba(255, 0, 77, 0.28);
            transform: translateY(-3px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
        }
        .ws-hub-card:hover::before { opacity: 1; }
        .ws-hub-card--lex {
            border-color: rgba(255, 0, 77, 0.2);
            background: linear-gradient(145deg, rgba(255, 0, 77, 0.06) 0%, rgba(255, 255, 255, 0.02) 55%);
        }
        .ws-hub-card--lex::before { opacity: 1; }
        .ws-hub-icon {
            width: 2.35rem;
            height: 2.35rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(255, 0, 77, 0.1);
            border: 1px solid rgba(255, 0, 77, 0.2);
            color: var(--accent);
        }
        .ws-hub-icon svg { width: 1.15rem; height: 1.15rem; }
        .ws-hub-card h3 {
            font-size: 1rem;
            font-weight: 800;
            line-height: 1.2;
        }
        .ws-hub-card p {
            font-size: 0.78rem;
            color: var(--text-light);
            line-height: 1.55;
            flex: 1;
        }
        .ws-hub-cta {
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--accent);
            margin-top: 0.15rem;
        }

        /* Interaktiv-Katalog */
        .ws-interaktiv {
            padding: 0 0 4rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .ws-int-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            justify-content: flex-start;
            margin-bottom: 1.25rem;
        }
        .ws-int-filter {
            padding: 0.42rem 0.75rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: rgba(255, 255, 255, 0.55);
            font-family: inherit;
            font-size: 0.68rem;
            font-weight: 700;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
        }
        .ws-int-filter:hover {
            border-color: rgba(255, 0, 77, 0.28);
            color: rgba(255, 255, 255, 0.82);
        }
        .ws-int-filter.is-active {
            border-color: rgba(255, 0, 77, 0.35);
            background: rgba(255, 0, 77, 0.1);
            color: #fff;
        }
        .ws-int-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.75rem;
        }
        .ws-int-card {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            padding: 1rem 1rem 0.9rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.025);
            text-decoration: none;
            color: inherit;
            transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
        }
        .ws-int-card:hover {
            border-color: rgba(255, 0, 77, 0.28);
            transform: translateY(-2px);
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
        }
        .ws-int-card.is-hidden { display: none; }
        .ws-int-card--checkliste {
            border-color: rgba(74, 222, 128, 0.16);
            background: linear-gradient(145deg, rgba(74, 222, 128, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
        }
        .ws-int-card--checkliste:hover { border-color: rgba(74, 222, 128, 0.35); }
        .ws-int-tag {
            display: inline-block;
            align-self: flex-start;
            padding: 0.15rem 0.45rem;
            border-radius: 999px;
            font-size: 0.52rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.45);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .ws-int-card--checkliste .ws-int-tag {
            color: #4ade80;
            background: rgba(74, 222, 128, 0.1);
            border-color: rgba(74, 222, 128, 0.22);
        }
        .ws-int-title {
            font-size: 0.82rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.92);
            line-height: 1.35;
            margin: 0;
        }
        .ws-int-desc {
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.48);
            line-height: 1.55;
            margin: 0;
            flex: 1;
        }
        .ws-int-cta {
            margin-top: 0.35rem;
            font-size: 0.62rem;
            font-weight: 700;
            color: var(--accent);
        }
        .ws-int-card--checkliste .ws-int-cta { color: #4ade80; }
        .ws-int-empty {
            text-align: center;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.42);
            margin: 1rem 0 0;
        }
        .ws-inline-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }
        .ws-inline-link:hover { color: #fff; }

        /* Ratgeber */
        .ws-ratgeber {
            padding: 0 0 4rem;
        }
        .ws-rg-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.85rem;
        }
        .ws-rg-card {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
            padding: 1.25rem 1.3rem 1.15rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.02);
            text-decoration: none;
            color: inherit;
            transition: border-color 0.25s ease, transform 0.25s ease;
        }
        .ws-rg-card:hover {
            border-color: rgba(255, 0, 77, 0.25);
            transform: translateY(-2px);
        }
        .ws-rg-tag {
            position: absolute;
            top: 0.9rem;
            right: 1rem;
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.3);
        }
        .ws-rg-icon {
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.04);
            color: var(--accent);
        }
        .ws-rg-icon svg { width: 1rem; height: 1rem; }
        .ws-rg-card h3 {
            font-size: 0.95rem;
            font-weight: 800;
            padding-right: 4rem;
        }
        .ws-rg-card p {
            font-size: 0.78rem;
            color: var(--text-light);
            line-height: 1.55;
            flex: 1;
        }
        .ws-rg-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            margin-top: 0.35rem;
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 0.02em;
        }
        .ws-rg-cta::after {
            content: '→';
            transition: transform 0.2s ease;
        }
        .ws-rg-card:hover .ws-rg-cta::after {
            transform: translateX(3px);
        }

        /* Verwalterwechsel-Block */
        .ws-rg-wechsel {
            margin-bottom: 2rem;
            padding: 1.25rem 1.35rem 1.35rem;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            background: linear-gradient(135deg, rgba(255, 0, 77, 0.04) 0%, rgba(255, 255, 255, 0.02) 55%);
        }
        .ws-rg-wechsel-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }
        .ws-rg-wechsel-kicker {
            display: block;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 0.3rem;
        }
        .ws-rg-wechsel-copy p {
            font-size: 0.82rem;
            color: var(--text-light);
            line-height: 1.55;
            max-width: 36rem;
        }
        .ws-rg-wechsel-all {
            flex-shrink: 0;
            padding: 0.5rem 0.9rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text);
            font-size: 0.72rem;
            font-weight: 600;
            text-decoration: none;
            white-space: nowrap;
            transition: border-color 0.2s, background 0.2s, color 0.2s;
        }
        .ws-rg-wechsel-all:hover {
            border-color: rgba(255, 0, 77, 0.35);
            background: rgba(255, 0, 77, 0.08);
            color: #fff;
        }
        .ws-rg-wechsel .ws-rg-grid {
            gap: 0.75rem;
        }
        .ws-rg-wechsel .ws-rg-card {
            background: rgba(0, 0, 0, 0.18);
        }

        .ws-rg-guides-head {
            margin-bottom: 0.85rem;
        }
        .ws-rg-guides-kicker {
            display: block;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 0.25rem;
        }
        .ws-rg-guides-head p {
            font-size: 0.8rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* Checklisten – Übersicht */
        .ws-checklisten {
            padding: 0 0 4rem;
        }

        /* ── Checklisten: Karten-Übersicht + Fokus-Ansicht ── */
        .ws-cl-shell {
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: linear-gradient(160deg, rgba(74, 222, 128, 0.04) 0%, rgba(0, 0, 0, 0.18) 100%);
            padding: 1.15rem;
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
        }
        .ws-cl-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.75rem;
        }
        .ws-cl-pick {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.55rem;
            min-height: 8.5rem;
            padding: 1rem 1.05rem;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: inherit;
            font-family: inherit;
            text-align: left;
            cursor: pointer;
            transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
        }
        .ws-cl-pick:hover {
            border-color: rgba(74, 222, 128, 0.32);
            background: rgba(74, 222, 128, 0.06);
            transform: translateY(-2px);
        }
        .ws-cl-pick.is-active {
            border-color: rgba(74, 222, 128, 0.42);
            background: rgba(74, 222, 128, 0.1);
            box-shadow: 0 10px 28px rgba(74, 222, 128, 0.12);
        }
        .ws-cl-pick.is-complete {
            border-color: rgba(74, 222, 128, 0.35);
        }
        .ws-cl-pick-tag {
            padding: 0.12rem 0.45rem;
            border-radius: 999px;
            border: 1px solid rgba(74, 222, 128, 0.22);
            background: rgba(74, 222, 128, 0.08);
            color: rgba(74, 222, 128, 0.9);
            font-size: 0.52rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .ws-cl-pick-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.15rem;
            height: 2.15rem;
            border-radius: 11px;
            background: rgba(74, 222, 128, 0.1);
            border: 1px solid rgba(74, 222, 128, 0.18);
        }
        .ws-cl-pick-icon svg {
            width: 1.05rem;
            height: 1.05rem;
            fill: rgba(74, 222, 128, 0.85);
        }
        .ws-cl-pick-title {
            font-size: 0.82rem;
            font-weight: 800;
            line-height: 1.35;
            color: rgba(255, 255, 255, 0.92);
            flex: 1;
        }
        .ws-cl-pick-foot {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            width: 100%;
            margin-top: auto;
        }
        .ws-cl-pick-bar {
            flex: 1;
            height: 4px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }
        .ws-cl-pick-fill {
            height: 100%;
            width: 0%;
            border-radius: 999px;
            background: linear-gradient(90deg, #4ade80, #22c55e);
            transition: width 0.35s ease;
        }
        .ws-cl-pick-count {
            font-size: 0.68rem;
            font-weight: 700;
            font-variant-numeric: tabular-nums;
            color: rgba(255, 255, 255, 0.45);
            white-space: nowrap;
        }
        .ws-cl-pick.is-complete .ws-cl-pick-count {
            color: rgba(74, 222, 128, 0.9);
        }
        .ws-cl-pick-sep { opacity: 0.4; margin: 0 0.05rem; }

        /* Fokus-Ansicht */
        .ws-cl-active[hidden] { display: none; }
        .ws-cl-shell.is-reading .ws-cl-browse { display: none; }
        .ws-cl-active-bar {
            padding: 0 0 0.85rem;
        }
        .ws-cl-back {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.48rem 0.85rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.78);
            font-family: inherit;
            font-size: 0.72rem;
            font-weight: 700;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
        }
        .ws-cl-back svg {
            width: 1rem;
            height: 1rem;
            fill: currentColor;
        }
        .ws-cl-back:hover {
            border-color: rgba(74, 222, 128, 0.32);
            background: rgba(74, 222, 128, 0.08);
            color: #fff;
        }

        .ws-cl-panels { position: relative; min-width: 0; }
        .ws-cl-panel {
            display: none;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            background: rgba(0, 0, 0, 0.22);
            overflow: hidden;
        }
        .ws-cl-panel.is-active { display: block; }

        .ws-cl-panel-head {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            grid-template-rows: auto auto;
            gap: 0.65rem 1rem;
            padding: 1.15rem 1.25rem 0.85rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(0, 0, 0, 0.15);
        }
        .ws-cl-panel-meta { min-width: 0; }
        .ws-cl-panel-meta h3 {
            font-size: 1.05rem;
            font-weight: 800;
            color: var(--text);
            margin: 0.25rem 0 0.35rem;
            line-height: 1.3;
            text-align: left;
        }
        .ws-cl-panel-tag {
            display: inline-block;
            padding: 0.15rem 0.5rem;
            border-radius: 999px;
            border: 1px solid rgba(74, 222, 128, 0.22);
            background: rgba(74, 222, 128, 0.08);
            color: rgba(74, 222, 128, 0.9);
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
        }
        .ws-cl-progress-label {
            font-size: 0.74rem;
            color: var(--text-light);
            font-variant-numeric: tabular-nums;
            margin: 0;
            text-align: left;
        }
        .ws-cl-head-actions {
            display: flex;
            align-items: flex-start;
            gap: 0.4rem;
            flex-shrink: 0;
        }
        .ws-cl-progress-bar {
            grid-column: 1 / -1;
            height: 5px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }
        .ws-cl-progress-fill {
            height: 100%;
            border-radius: 999px;
            background: linear-gradient(90deg, #4ade80, #22c55e);
            width: 0%;
            transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .ws-cl-pdf,
        .ws-cl-reset {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.45rem 0.75rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            color: var(--text-light);
            font-size: 0.72rem;
            font-weight: 600;
            cursor: pointer;
            transition: border-color 0.2s, color 0.2s, background 0.2s;
        }
        .ws-cl-pdf:hover,
        .ws-cl-reset:hover {
            border-color: rgba(74, 222, 128, 0.35);
            color: #4ade80;
            background: rgba(74, 222, 128, 0.08);
        }
        .ws-cl-pdf svg,
        .ws-cl-reset svg {
            width: 0.85rem;
            height: 0.85rem;
            fill: currentColor;
        }

        .ws-cl-body { padding: 0.5rem 0 0.25rem; }
        .ws-cl-section { padding: 0.75rem 1.15rem; }
        .ws-cl-section + .ws-cl-section {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .ws-cl-section-head {
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            margin: 0 0 0.65rem;
            text-align: left;
        }
        .ws-cl-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
        }
        .ws-cl-item {
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(255, 255, 255, 0.02);
            transition: border-color 0.2s ease, background 0.2s ease;
        }
        .ws-cl-item.is-done {
            border-color: rgba(74, 222, 128, 0.18);
            background: rgba(74, 222, 128, 0.04);
        }
        .ws-cl-label {
            display: flex;
            align-items: flex-start;
            gap: 0.85rem;
            padding: 0.85rem 0.95rem;
            border-radius: 12px;
            cursor: pointer;
            -webkit-user-select: none;
            user-select: none;
        }
        .ws-cl-label:hover .ws-cl-checkmark {
            border-color: rgba(74, 222, 128, 0.45);
            background: rgba(74, 222, 128, 0.08);
        }
        .ws-cl-checkbox {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }
        .ws-cl-checkmark {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 1.4rem;
            height: 1.4rem;
            border-radius: 8px;
            border: 2px solid rgba(255, 255, 255, 0.25);
            background: rgba(255, 255, 255, 0.03);
            flex-shrink: 0;
            margin-top: 0.05rem;
            transition: border-color 0.2s, background 0.2s, box-shadow 0.25s;
        }
        .ws-cl-checkmark svg {
            width: 0.75rem;
            height: 0.75rem;
            stroke: #fff;
            opacity: 0;
            transform: scale(0.5);
            transition: opacity 0.2s, transform 0.2s;
        }
        .ws-cl-checkbox:checked ~ .ws-cl-checkmark {
            border-color: #4ade80;
            background: #4ade80;
            box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.15);
        }
        .ws-cl-checkbox:checked ~ .ws-cl-checkmark svg {
            opacity: 1;
            transform: scale(1);
        }
        .ws-cl-item-text {
            font-size: 0.84rem;
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.55;
            transition: color 0.2s, text-decoration-color 0.2s;
        }
        .ws-cl-item.is-done .ws-cl-item-text {
            color: rgba(255, 255, 255, 0.38);
            text-decoration: line-through;
            text-decoration-color: rgba(74, 222, 128, 0.35);
        }
        .ws-cl-done-msg {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            padding: 0.95rem 1.25rem;
            border-top: 1px solid rgba(74, 222, 128, 0.2);
            background: rgba(74, 222, 128, 0.06);
            font-size: 0.82rem;
            color: rgba(74, 222, 128, 0.9);
        }
        .ws-cl-done-msg[hidden] { display: none; }
        .ws-cl-done-msg svg {
            width: 1.1rem;
            height: 1.1rem;
            fill: rgba(74, 222, 128, 0.85);
            flex-shrink: 0;
        }
        .ws-cl-hint {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            margin-top: 1rem;
            padding-top: 0.85rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.32);
        }
        .ws-cl-hint svg {
            width: 0.9rem;
            height: 0.9rem;
            fill: rgba(255, 255, 255, 0.28);
            flex-shrink: 0;
        }

        /* FAQ-Teaser */
        .ws-faq-teaser {
            padding: 0 0 4rem;
        }
        .ws-faq-teaser-inner {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
            gap: 2rem;
            align-items: start;
            padding: 1.75rem 1.85rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: linear-gradient(135deg, rgba(255, 0, 77, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%);
        }
        .ws-faq-copy h2 {
            font-size: clamp(1.35rem, 2.5vw, 1.75rem);
            font-weight: 900;
            margin-bottom: 0.45rem;
        }
        .ws-faq-copy h2 span { color: var(--accent); }
        .ws-faq-copy p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin-bottom: 1.1rem;
            line-height: 1.55;
        }
        .ws-faq-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
        }
        .ws-faq-links a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            padding: 0.75rem 0.95rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(0, 0, 0, 0.15);
            text-decoration: none;
            color: var(--text);
            font-size: 0.82rem;
            font-weight: 600;
            transition: border-color 0.2s ease, background 0.2s ease;
        }
        .ws-faq-links a:hover {
            border-color: rgba(255, 0, 77, 0.28);
            background: rgba(255, 0, 77, 0.05);
        }
        .ws-faq-links svg {
            width: 1rem;
            height: 1rem;
            fill: var(--accent);
            flex-shrink: 0;
        }

        /* Lexikon – Master-Detail (Navigation + Artikel) */
        .ws-inner--lex { max-width: 1080px; transition: max-width 0.35s ease; }
        .ws-inner--lex:has(.lex-box--interactive) { max-width: 1200px; }
        .ws-lexikon { padding: 3rem 0 5rem; }

        .lex-box {
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            background: rgba(255, 255, 255, 0.02);
            overflow: hidden;
        }
        .lex-box:has(.lex-viz--cost) {
            overflow: visible;
        }

        /* Intro + Toolbar */
        .lex-intro {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1.25rem;
            padding: 1.35rem 1.35rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            background: linear-gradient(180deg, rgba(255, 0, 77, 0.04) 0%, transparent 100%);
        }
        .lex-intro-main {
            flex: 1;
            min-width: 0;
        }
        .lex-intro-kicker {
            display: block;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.38);
            margin-bottom: 0.45rem;
        }
        .lex-intro-title {
            font-size: clamp(1.45rem, 3vw, 1.95rem);
            font-weight: 900;
            letter-spacing: -0.02em;
            margin: 0 0 0.35rem;
            line-height: 1.15;
            text-align: left;
        }
        .lex-intro-title span {
            color: var(--accent);
            display: inline;
            transform: none;
        }
        .lex-intro-title span:hover {
            text-shadow: none;
            transform: none;
        }
        .lex-intro-lead {
            margin: 0;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.52);
            line-height: 1.55;
            max-width: 36rem;
        }
        .lex-intro-stats {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            flex-shrink: 0;
            text-align: right;
        }
        .lex-intro-stat {
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.45);
            white-space: nowrap;
        }
        .lex-intro-stat strong {
            font-size: 1.05rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.88);
            margin-right: 0.2rem;
        }
        .lex-intro-stat--live strong { color: var(--accent); }

        .lex-toolbar {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(160px, 200px);
            gap: 0.75rem;
            align-items: end;
            padding: 0.85rem 1.35rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(0, 0, 0, 0.12);
        }
        .lex-search-wrap {
            position: relative;
            display: block;
            min-width: 0;
        }
        .lex-search-icon {
            position: absolute;
            left: 0.85rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1rem;
            height: 1rem;
            fill: rgba(255, 255, 255, 0.38);
            pointer-events: none;
            z-index: 1;
        }
        .lex-search {
            display: block;
            width: 100%;
            height: 2.65rem;
            padding: 0 0.85rem 0 2.45rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(0, 0, 0, 0.28);
            color: var(--text);
            font-size: 0.84rem;
            font-family: inherit;
            line-height: 1.2;
        }
        .lex-search:focus {
            outline: none;
            border-color: rgba(255, 0, 77, 0.42);
            box-shadow: 0 0 0 3px rgba(255, 0, 77, 0.1);
        }
        .lex-search::placeholder { color: rgba(255, 255, 255, 0.35); }
        .lex-filter-wrap {
            display: flex;
            flex-direction: column;
            gap: 0.32rem;
            min-width: 0;
        }
        .lex-filter-label {
            display: block;
            font-size: 0.58rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.42);
            text-align: left;
            line-height: 1.2;
        }
        .lex-filter-select {
            display: block;
            width: 100%;
            height: 2.65rem;
            padding: 0 2rem 0 0.75rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(0, 0, 0, 0.28);
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.82rem;
            font-family: inherit;
            line-height: 1.2;
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
        }
        .lex-filter-select:focus {
            outline: none;
            border-color: rgba(255, 0, 77, 0.42);
            box-shadow: 0 0 0 3px rgba(255, 0, 77, 0.1);
        }

        /* Kachel-Grid – interaktive Begriffe */
        .lex-tiles-wrap {
            padding: 1rem 1.35rem 1.1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(0, 0, 0, 0.08);
        }
        .lex-tiles-wrap.is-empty .lex-tiles-grid,
        .lex-tiles-wrap.is-empty .lex-tiles-foot { display: none; }
        .lex-tiles-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem 1rem;
            margin-bottom: 0.85rem;
            padding: 0.65rem 0.85rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(255, 255, 255, 0.03);
        }
        .lex-tiles-label {
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent);
            text-align: left;
            line-height: 1.2;
        }
        .lex-tiles-hint {
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.42);
            text-align: right;
            line-height: 1.4;
            max-width: 22rem;
        }
        .lex-tiles-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 0.65rem;
        }
        @media (max-width: 1100px) {
            .lex-tiles-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
        }
        .lex-tile {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            min-height: 6.5rem;
            padding: 0.85rem 0.9rem;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
            text-decoration: none;
            color: inherit;
            transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
        }
        .lex-tile:hover {
            border-color: rgba(255, 0, 77, 0.28);
            background: rgba(255, 0, 77, 0.05);
            transform: translateY(-2px);
        }
        .lex-tile.is-active {
            border-color: rgba(255, 0, 77, 0.42);
            background: rgba(255, 0, 77, 0.1);
            box-shadow: 0 10px 28px rgba(255, 0, 77, 0.14);
        }
        .lex-tile.is-hidden,
        .lex-tile.is-overfold { display: none; }
        .lex-tile-kind {
            align-self: flex-start;
            padding: 0.12rem 0.42rem;
            border-radius: 999px;
            font-size: 0.52rem;
            font-weight: 800;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: rgba(255, 0, 77, 0.85);
            border: 1px solid rgba(255, 0, 77, 0.22);
            background: rgba(255, 0, 77, 0.08);
        }
        .lex-tile.is-active .lex-tile-kind {
            color: #fff;
            background: rgba(255, 0, 77, 0.35);
            border-color: rgba(255, 0, 77, 0.45);
        }
        .lex-tile-title {
            font-size: 0.78rem;
            font-weight: 800;
            line-height: 1.35;
            color: rgba(255, 255, 255, 0.92);
        }
        .lex-tile.is-active .lex-tile-title { color: #fff; }
        .lex-tile-desc {
            font-size: 0.65rem;
            line-height: 1.45;
            color: rgba(255, 255, 255, 0.42);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .lex-tile.is-active .lex-tile-desc { color: rgba(255, 255, 255, 0.58); }
        .lex-tiles-foot {
            display: flex;
            justify-content: center;
            margin-top: 0.85rem;
        }
        .lex-tiles-more {
            padding: 0.55rem 1.15rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.72);
            font-family: inherit;
            font-size: 0.72rem;
            font-weight: 700;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
        }
        .lex-tiles-more:hover {
            border-color: rgba(255, 0, 77, 0.32);
            background: rgba(255, 0, 77, 0.08);
            color: #fff;
        }
        .lex-tiles-more[hidden] { display: none; }
        .lex-tiles-empty {
            margin: 0.5rem 0 0;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.42);
            text-align: center;
        }
        .lex-tiles-empty[hidden] { display: none; }

        /* Browse vs. Lesemodus */
        .lex-read[hidden] { display: none; }
        .lex-box--reading .lex-intro,
        .lex-box--reading .lex-browse,
        .lex-box--reading .lex-toolbar { display: none; }
        .lex-box--reading .lex-read { display: block; }
        .lex-read-bar {
            padding: 0.75rem 1.35rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(0, 0, 0, 0.12);
        }
        .lex-back {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.45rem 0.75rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.78);
            font-family: inherit;
            font-size: 0.72rem;
            font-weight: 700;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
        }
        .lex-back svg {
            width: 1rem;
            height: 1rem;
            fill: currentColor;
        }
        .lex-back:hover {
            border-color: rgba(255, 0, 77, 0.32);
            background: rgba(255, 0, 77, 0.08);
            color: #fff;
        }
        .lex-box--reading .lex-detail {
            padding: 1.25rem 1.35rem 1.5rem;
        }
        .lex-box--reading.lex-box--interactive .lex-detail {
            padding: 1rem 1.35rem 1.5rem;
        }

        /* Vollbreite bei interaktiven Artikeln */
        .lex-box.lex-box--interactive { max-width: 100%; }

        .lex-layout {
            display: grid;
            grid-template-columns: minmax(240px, 270px) minmax(0, 1fr);
            min-height: 420px;
            align-items: start;
        }

        .lex-nav {
            display: flex;
            flex-direction: column;
            min-height: 0;
            border-right: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(0, 0, 0, 0.14);
        }
        @media (min-width: 769px) {
            .lex-nav {
                position: sticky;
                top: 1rem;
                max-height: min(calc(100vh - 2rem), 720px);
            }
        }
        .lex-nav-meta {
            margin: 0;
            padding: 0.75rem 0.85rem 0.45rem;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.38);
            flex-shrink: 0;
        }

        .lex-terms {
            flex: 1;
            min-height: 0;
            overflow-y: auto;
            overscroll-behavior: contain;
            display: flex;
            flex-direction: column;
            padding: 0;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
        }
        .lex-terms-section {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.55rem 0.85rem 0.35rem;
            font-size: 0.58rem;
            font-weight: 800;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.38);
            flex-shrink: 0;
        }
        .lex-terms-section.is-hidden { display: none; }
        .lex-terms-section--interactive {
            color: rgba(252, 211, 77, 0.72);
            background: transparent;
            border-bottom: none;
            padding-bottom: 0.2rem;
        }
        .lex-terms-section-dot {
            width: 0.35rem;
            height: 0.35rem;
            border-radius: 50%;
            background: #fbbf24;
            box-shadow: 0 0 6px rgba(251, 191, 36, 0.45);
            flex-shrink: 0;
        }
        .lex-terms-section-icon {
            display: none;
        }
        .lex-terms-section--divider {
            padding: 0.65rem 0.85rem 0.3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 0.15rem;
        }
        .lex-terms-section--divider span {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .lex-terms-section--divider span::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.06);
        }

        .lex-term {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.58rem 0.85rem;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            border-left: 2px solid transparent;
            border-radius: 0;
            background: transparent;
            text-decoration: none;
            color: inherit;
            text-align: left;
            transition: background 0.15s ease, border-color 0.15s ease;
        }
        .lex-term--interactive {
            align-items: center;
            gap: 0.45rem;
            background: transparent;
            border-left-color: transparent;
        }
        .lex-term:hover {
            background: rgba(255, 255, 255, 0.04);
        }
        .lex-term.is-active {
            border-left-color: var(--accent);
            background: rgba(255, 0, 77, 0.08);
        }
        .lex-term.is-hidden { display: none; }
        .lex-term--interactive:hover {
            background: rgba(255, 255, 255, 0.035);
            border-left-color: rgba(251, 191, 36, 0.35);
        }
        .lex-term--interactive.is-active {
            border-left-color: var(--accent);
            background: rgba(255, 0, 77, 0.08);
        }
        .lex-term--interactive.is-active .lex-term-pill {
            border-color: rgba(251, 191, 36, 0.55);
            color: #fde68a;
        }
        .lex-term-dot {
            flex-shrink: 0;
            width: 0.3rem;
            height: 0.3rem;
            border-radius: 50%;
            background: #fbbf24;
            opacity: 0.75;
        }
        .lex-term--interactive.is-active .lex-term-dot {
            opacity: 1;
            box-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
        }
        .lex-term-pill {
            flex-shrink: 0;
            margin-left: auto;
            padding: 0.14rem 0.42rem;
            font-size: 0.5rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            line-height: 1.2;
            white-space: nowrap;
            border-radius: 999px;
            border: 1px solid rgba(251, 191, 36, 0.32);
            color: rgba(252, 211, 77, 0.82);
            background: transparent;
        }
        .lex-term-icon,
        .lex-term-main,
        .lex-term-kind {
            display: none;
        }
        .lex-term-title {
            font-size: 0.78rem;
            font-weight: 600;
            line-height: 1.35;
            color: rgba(255, 255, 255, 0.82);
        }
        .lex-term:not(.lex-term--interactive) .lex-term-title {
            flex: 1;
            min-width: 0;
        }
        .lex-term--interactive .lex-term-title {
            flex: 1;
            min-width: 0;
            color: rgba(255, 255, 255, 0.88);
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .lex-term--featured .lex-term-title {
            color: #fff;
        }
        .lex-term.is-active .lex-term-title { color: #fff; font-weight: 700; }

        .lex-empty {
            display: none;
            margin: 0;
            padding: 1.25rem 0.85rem;
            text-align: center;
            font-size: 0.78rem;
            color: var(--text-light);
        }
        .lex-empty.is-visible { display: block; }

        .lex-detail {
            min-height: 420px;
            background: rgba(0, 0, 0, 0.08);
            overflow: auto;
        }
        .lex-detail.has-entry .lex-detail-placeholder { display: none; }
        .lex-detail-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.65rem;
            min-height: 420px;
            padding: 2rem 1.5rem;
            text-align: center;
        }
        .lex-detail-placeholder-icon {
            width: 2.25rem;
            height: 2.25rem;
            color: rgba(255, 255, 255, 0.18);
        }
        .lex-detail-placeholder p {
            margin: 0;
            max-width: 16rem;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.38);
            line-height: 1.55;
        }

        .lex-articles { position: relative; }
        .lex-article {
            display: none;
            padding: 1.25rem 1.35rem 1.35rem;
        }
        .lex-article.is-active { display: block; }

        .lex-article-head {
            margin-bottom: 1rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }
        .lex-article-cat {
            display: inline-block;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 0.4rem;
        }
        .lex-article-title {
            font-size: clamp(1.15rem, 2.5vw, 1.4rem);
            font-weight: 900;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin: 0 0 0.4rem;
            text-align: left;
        }
        .lex-article-lead {
            margin: 0;
            font-size: 0.88rem;
            color: var(--text-light);
            line-height: 1.55;
            text-align: left;
        }
        .lex-article-viz {
            margin-bottom: 1.15rem;
        }

        /* Lexikon – interaktive Grafiken (LumenOS-Panel-Stil, Lexikon-Farben) */
        .lex-viz {
            position: relative;
            overflow: hidden;
            padding: 0;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: linear-gradient(165deg, rgba(18, 18, 22, 0.98) 0%, rgba(10, 10, 12, 0.99) 100%);
            box-shadow:
                0 0 0 1px rgba(255, 255, 255, 0.04) inset,
                0 20px 70px rgba(0, 0, 0, 0.45);
        }
        .lex-viz-panel-beam {
            position: absolute;
            top: 0;
            left: 10%;
            right: 10%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28) 50%, transparent);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.06);
            pointer-events: none;
            z-index: 1;
        }
        .lex-viz-panel-beam::after {
            content: '';
            position: absolute;
            top: -36px;
            left: 50%;
            transform: translateX(-50%);
            width: 65%;
            height: 72px;
            background: radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        .lex-viz-header {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 0.75rem;
            padding: 1rem 1rem 0.75rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .lex-viz-header-brand {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            min-width: 0;
            flex: 1;
        }
        .lex-viz-header-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.35rem;
            height: 2.35rem;
            flex-shrink: 0;
            border-radius: 12px;
            background: rgba(255, 0, 77, 0.1);
            border: 1px solid rgba(255, 0, 77, 0.28);
            color: var(--accent);
            box-shadow: 0 0 20px rgba(255, 0, 77, 0.1);
        }
        .lex-viz-header-icon svg { width: 1.15rem; height: 1.15rem; }
        .lex-viz-header-text { min-width: 0; }
        .lex-viz-expand-btn {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.45rem 0.75rem;
            font-family: inherit;
            font-size: 0.68rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.72);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }
        .lex-viz-expand-btn:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.18);
            transform: translateY(-1px);
        }
        .lex-viz-expand-icon { display: block; opacity: 0.8; }
        .lex-viz-body {
            padding: 0.85rem 1rem 1rem;
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        /* Normal: Grafik oben, Info unten */
        .lex-viz-fs-layout {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .lex-viz-fs-sidebar {
            display: contents;
        }
        .lex-viz:not(.lex-viz--building) {
            padding-bottom: 0.15rem;
        }
        .lex-viz:not(.lex-viz--building) > .lex-viz-body {
            padding: 0.85rem 1rem 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }
        .lex-viz:not(.lex-viz--building) > :not(.lex-viz-panel-beam):not(.lex-viz-header):not(.lex-viz-body) {
            margin-left: 1rem;
            margin-right: 1rem;
        }
        .lex-viz:not(.lex-viz--building) > .lex-viz-header + .lex-viz-body { margin-top: 0; }
        .lex-viz:not(.lex-viz--building) > .lex-viz-body > .lex-viz-footnote { margin: 0; }
        .lex-viz:not(.lex-viz--building) > .lex-viz-body > .lex-viz-segment { margin: 0; }
        .lex-viz:not(.lex-viz--building) > .lex-viz-body > .lex-viz-info { margin: 0; }
        .lv-view-hint { margin: 0 0 0.65rem; }
        .lex-viz-kicker {
            display: block;
            font-size: 0.58rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 0.25rem;
        }
        .lex-viz-lead {
            margin: 0;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.58);
            line-height: 1.55;
            letter-spacing: -0.01em;
        }

        /* Segmented Control (Lumen-BA-Stil) */
        .lex-viz-segment {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.45rem;
            margin-bottom: 0.85rem;
            padding: 0.35rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.02);
        }
        .lex-viz-segment--compact { grid-template-columns: repeat(3, 1fr); }
        .lex-viz-segment--cols-2 { grid-template-columns: 1fr 1fr; }
        .lex-viz-segment-btn {
            padding: 0.62rem 0.55rem;
            font-family: inherit;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: -0.01em;
            border-radius: 10px;
            border: 1px solid transparent;
            background: transparent;
            color: rgba(255, 255, 255, 0.52);
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }
        .lex-viz-segment-btn:hover {
            color: rgba(255, 255, 255, 0.82);
            background: rgba(255, 255, 255, 0.04);
        }
        .lex-viz-segment-btn.is-active {
            background: rgba(255, 0, 77, 0.1);
            border-color: rgba(255, 0, 77, 0.32);
            color: #fff;
            box-shadow: 0 0 0 1px rgba(255, 0, 77, 0.08) inset;
        }

        /* Canvas / Stage */
        .lex-viz-stage {
            position: relative;
            margin-bottom: 0.85rem;
            padding: 0.75rem;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        /* Interaktiv-Hinweis – fest im Panel, kein Floating */
        .lex-viz-hint-bubble {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.45rem 0.75rem;
            width: 100%;
            box-sizing: border-box;
            margin: 0 0 0.85rem;
            padding: 0.65rem 0.85rem;
            font-family: inherit;
            font-size: 0.74rem;
            font-weight: 500;
            line-height: 1.45;
            color: var(--text-light);
            text-align: left;
            background: rgba(255, 0, 77, 0.06);
            border: 1px solid rgba(255, 0, 77, 0.22);
            border-radius: 12px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
            pointer-events: auto;
            animation: lexVizHintFade 0.35s ease both;
        }
        .lex-viz-hint-bubble-inner {
            flex: 1;
            min-width: min(100%, 14rem);
        }
        .lex-viz-hint-kicker {
            display: block;
            margin-bottom: 0.2rem;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: var(--accent);
        }
        .lex-viz-hint-bubble p { margin: 0; }
        .lex-viz-hint-mark {
            color: var(--accent);
            font-weight: 600;
        }
        .lex-viz-hint-ok {
            flex-shrink: 0;
            display: inline-block;
            margin: 0;
            padding: 0.3rem 0.85rem;
            font-family: inherit;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.01em;
            border: 1px solid rgba(255, 0, 77, 0.28);
            border-radius: 999px;
            background: rgba(255, 0, 77, 0.1);
            color: rgba(255, 255, 255, 0.92);
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
        }
        .lex-viz-hint-ok:hover {
            border-color: rgba(255, 0, 77, 0.45);
            background: rgba(255, 0, 77, 0.16);
            color: #fff;
        }
        .lex-viz-hint-ok:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }
        @keyframes lexVizHintFade {
            from { opacity: 0; }
            to   { opacity: 1; }
        }
        @media (max-width: 520px) {
            .lex-viz-hint-bubble {
                flex-direction: column;
                align-items: stretch;
            }
            .lex-viz-hint-ok {
                align-self: flex-end;
            }
        }
        .lex-viz-info {
            padding: 0.75rem 0.85rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            transition: border-color 0.2s ease, background 0.2s ease;
        }
        .lex-viz-info-title {
            display: block;
            font-size: 0.82rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 0.3rem;
            letter-spacing: -0.02em;
        }
        .lex-viz-info-text {
            margin: 0;
            font-size: 0.76rem;
            color: rgba(255, 255, 255, 0.58);
            line-height: 1.6;
        }
        .lex-viz-legend {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem 1rem;
            margin: 0.75rem 0 0;
            padding: 0.65rem 0 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            list-style: none;
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.48);
        }
        .lex-viz-swatch {
            display: inline-block;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            margin-right: 0.35rem;
            vertical-align: middle;
            box-shadow: 0 0 6px currentColor;
        }
        .lex-viz-swatch--ge  { background: rgba(96, 165, 250, 0.95); color: rgba(96, 165, 250, 0.5); }
        .lex-viz-swatch--se  { background: rgba(255, 0, 77, 0.95); color: rgba(255, 0, 77, 0.4); }
        .lex-viz-swatch--snr { background: rgba(167, 139, 250, 0.95); color: rgba(167, 139, 250, 0.4); }
        .lex-viz-swatch--gz  { background: rgba(251, 191, 36, 0.95); color: rgba(251, 191, 36, 0.4); }
        .lex-viz-footnote {
            margin: 0.65rem 0 0;
            padding-top: 0.65rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.38);
            line-height: 1.5;
        }
        .lex-viz-slider-wrap {
            display: grid;
            grid-template-columns: 1fr auto;
            grid-template-rows: auto auto;
            gap: 0.4rem 0.75rem;
            align-items: center;
            margin-bottom: 0.85rem;
            padding: 0.75rem 0.85rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .lex-viz-slider-wrap--compact { margin-bottom: 0.75rem; }
        .lex-viz-slider-label {
            grid-column: 1 / -1;
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.42);
        }
        .lex-viz-slider {
            width: 100%;
            accent-color: var(--accent);
            cursor: pointer;
        }
        .lex-viz-slider-out {
            font-size: 0.88rem;
            font-weight: 800;
            color: var(--accent);
            white-space: nowrap;
            letter-spacing: -0.02em;
        }
        .lv-view[hidden] { display: none; }
        .lex-viz-info-badge {
            display: inline-block;
            margin-top: 0.4rem;
            padding: 0.2rem 0.6rem;
            border-radius: 999px;
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.72);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .lex-viz-info-badge[hidden] { display: none; }

        /* Gebäude-Grafik – Lumen item-card Stil, Lexikon-Farben */
        .lv-building {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: auto auto auto 1fr auto auto;
            grid-template-areas:
                "dach dach dach dach"
                "fassade fassade fassade fassade"
                "fenster fenster fenster fenster"
                "whg1 whg2 whg3 whg4"
                "treppen treppen heizung heizung"
                "balkon balkon stellplatz stellplatz";
            gap: 0.45rem;
            max-width: 480px;
            margin: 0 auto;
        }
        .lv-zone {
            position: relative;
            min-height: 2.85rem;
            padding: 0.5rem 0.4rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            font-family: inherit;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: rgba(255, 255, 255, 0.03);
        }
        .lv-zone[data-zone="fenster"] { min-height: 2.2rem; }
        .lv-zone[data-zone="fassade"] { min-height: 2.1rem; }
        .lv-zone[data-zone="dach"]    { min-height: 2.35rem; }
        .lv-zone:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.14);
        }
        .lv-zone-label {
            font-size: 0.66rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            line-height: 1.25;
        }
        .lv-zone--ge  { background: rgba(96, 165, 250, 0.1);  border-color: rgba(96, 165, 250, 0.22);  color: rgba(191, 219, 254, 0.95); }
        .lv-zone--se  { background: rgba(255, 0, 77, 0.08);   border-color: rgba(255, 0, 77, 0.22);   color: rgba(255, 180, 200, 0.95); }
        .lv-zone--snr { background: rgba(167, 139, 250, 0.1);  border-color: rgba(167, 139, 250, 0.22); color: rgba(221, 214, 254, 0.95); }
        .lv-zone--gz  { background: rgba(251, 191, 36, 0.08);  border-color: rgba(251, 191, 36, 0.22);  color: rgba(253, 230, 138, 0.95); }
        .lv-zone--ge:hover  { border-color: rgba(96, 165, 250, 0.38); }
        .lv-zone--se:hover  { border-color: rgba(255, 0, 77, 0.38); }
        .lv-zone--snr:hover { border-color: rgba(167, 139, 250, 0.38); }
        .lv-zone--gz:hover  { border-color: rgba(251, 191, 36, 0.38); }
        .lv-zone.is-dimmed { opacity: 0.2; filter: grayscale(0.45); }
        .lv-zone.is-active {
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset, 0 8px 24px rgba(0, 0, 0, 0.25);
            transform: translateY(-2px) scale(1.02);
            z-index: 1;
        }
        .lex-viz--building[data-viz-mode="gemeinschaft"] .lv-zone--se,
        .lex-viz--building[data-viz-mode="gemeinschaft"] .lv-zone--snr,
        .lex-viz--building[data-viz-mode="gemeinschaft"] .lv-zone--gz,
        .lex-viz--building[data-viz-mode="sonder"] .lv-zone--ge,
        .lex-viz--building[data-viz-mode="sonder"] .lv-zone--snr,
        .lex-viz--building[data-viz-mode="sonder"] .lv-zone--gz { opacity: 0.2; }

        /* SVG Grundriss */
        .lv-fp-wrap {
            margin-bottom: 0.85rem;
            padding: 0.75rem 0.65rem;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(255, 255, 255, 0.07);
            overflow-x: auto;
            overflow-y: visible;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
        }
        .lv-fp-svg {
            width: 100%;
            max-width: 500px;
            min-width: min(100%, 260px);
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .lv-fw-ge  { fill: rgba(96, 165, 250, 0.68); }
        .lv-fw-se  { fill: rgba(255, 0, 77, 0.52); }
        /* Zone-Gruppen – nur .lv-fp-hit empfängt Klicks */
        .lv-fp-zone { cursor: pointer; outline: none; }
        .lv-fp-svg .lv-fp-room-bg,
        .lv-fp-svg .lv-fw-ge,
        .lv-fp-svg .lv-fw-se,
        .lv-fp-svg line,
        .lv-fp-svg circle:not(.lv-fp-hit),
        .lv-fp-svg ellipse,
        .lv-fp-svg text,
        .lv-fp-svg .lv-fp-badge,
        .lv-fp-svg .lv-fp-fill,
        .lv-fp-svg .lv-fp-label {
            pointer-events: none;
        }
        .lv-fp-hit {
            pointer-events: all;
            fill: transparent;
            cursor: pointer;
        }
        .lv-fp-zone .lv-fp-fill { transition: filter 0.18s ease, opacity 0.18s ease; }
        .lv-fp-zone:hover .lv-fp-fill  { filter: brightness(1.3); }
        .lv-fp-zone:focus-visible .lv-fp-fill { filter: brightness(1.3) drop-shadow(0 0 4px rgba(255,255,255,0.3)); }
        .lv-fp-zone.is-active .lv-fp-fill { filter: brightness(1.45) saturate(1.2); }
        /* Badge-Pill im SVG */
        .lv-fp-badge       { pointer-events: none; }
        .lv-fp-badge-bg-ge  { fill: rgba(96, 165, 250, 0.82); }
        .lv-fp-badge-bg-se  { fill: rgba(255, 0, 77, 0.82); }
        .lv-fp-badge-bg-gz  { fill: rgba(251, 191, 36, 0.82); }
        .lv-fp-badge-text {
            fill: #fff;
            font-weight: 800;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            text-anchor: middle;
            dominant-baseline: central;
        }
        /* Allgemeine Labels */
        .lv-fp-label {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            font-weight: 700;
            pointer-events: none;
            dominant-baseline: central;
        }
        .lv-fp-label--ge  { fill: rgba(147, 210, 255, 0.92); }
        .lv-fp-label--se  { fill: rgba(255, 160, 190, 0.92); }
        .lv-fp-label--gz  { fill: rgba(253, 210, 110, 0.92); }
        .lv-fp-room-label {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            fill: rgba(255, 255, 255, 0.32);
            font-weight: 600;
            pointer-events: none;
            dominant-baseline: central;
            text-anchor: middle;
        }

        /* Vollbild / Vergrößern */
        .lex-viz-backdrop {
            position: fixed;
            inset: 0;
            z-index: 9998;
            background: #000;
            opacity: 0.86;
            animation: lexVizBackdropIn 0.2s ease both;
        }
        @keyframes lexVizBackdropIn {
            from { opacity: 0; }
            to   { opacity: 0.86; }
        }
        body.lex-viz-fs-open { overflow: hidden; }
        .lex-viz--building.is-fullscreen {
            position: fixed;
            inset: 0;
            z-index: 9999;
            width: 100%;
            max-width: none;
            height: 100%;
            max-height: none;
            margin: 0;
            overflow: hidden;
            border-radius: 0;
            border: none;
            padding: 0;
            background: #0c0c0e;
            box-shadow: none;
            /* Kein transform / will-change / Animation → scharfes Rendering */
            transform: none;
            animation: none;
            will-change: auto;
            filter: none;
            display: flex;
            flex-direction: column;
        }
        .lex-viz--building.is-fullscreen .lex-viz-header {
            flex-shrink: 0;
            position: relative;
            top: auto;
            z-index: 2;
            padding: 1rem 1.25rem 0.85rem;
            background: #0c0c0e;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }
        .lex-viz--building.is-fullscreen .lex-viz-body {
            flex: 1;
            min-height: 0;
            overflow: hidden;
            padding: 0.75rem 1.25rem 1rem;
            display: flex;
            flex-direction: column;
        }
        .lex-viz--building.is-fullscreen .lex-viz-hint-bubble {
            flex-shrink: 0;
            max-width: none;
            margin-left: 0;
            margin-right: 0;
        }
        /* Vollbild: Grafik links, Info rechts – kein Scrollen nötig */
        .lex-viz--building.is-fullscreen .lex-viz-fs-layout {
            flex: 1;
            min-height: 0;
            display: grid;
            grid-template-columns: minmax(0, 1fr) min(19rem, 32vw);
            gap: 1rem 1.25rem;
            align-items: start;
        }
        .lex-viz--building.is-fullscreen .lex-viz-fs-main {
            min-height: 0;
            max-height: calc(100dvh - 5.75rem);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            padding-right: 0.25rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .lex-viz--building.is-fullscreen .lex-viz-fs-sidebar {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            position: sticky;
            top: 0;
            align-self: start;
            max-height: calc(100dvh - 5.75rem);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            padding: 0.15rem 0 0.15rem 1rem;
            border-left: 1px solid rgba(255, 255, 255, 0.07);
        }
        .lex-viz--building.is-fullscreen .lex-viz-info {
            max-width: none;
            margin: 0;
            padding: 0.85rem 1rem;
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.1);
        }
        .lex-viz--building.is-fullscreen .lex-viz-info-title {
            font-size: 0.9rem;
            margin-bottom: 0.45rem;
        }
        .lex-viz--building.is-fullscreen .lex-viz-info-text {
            font-size: 0.8rem;
            line-height: 1.65;
        }
        .lex-viz--building.is-fullscreen .lex-viz-info-badge {
            display: inline-block;
            margin-top: 0.5rem;
            font-size: 0.68rem;
        }
        .lex-viz--building.is-fullscreen .lex-viz-legend {
            max-width: none;
            margin: 0;
            padding: 0.65rem 0 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            flex-direction: column;
            align-items: flex-start;
            gap: 0.4rem;
        }
        /* Vollbild: gleiche Größe wie normal, nur etwas Luft – kein Vollspalten-Zoom */
        .lex-viz--building.is-fullscreen .lex-viz-fs-main > .lex-viz-segment,
        .lex-viz--building.is-fullscreen .lex-viz-fs-main > .lv-view {
            width: 100%;
            max-width: 520px;
        }
        .lex-viz--building.is-fullscreen .lex-viz-stage {
            padding: 0.75rem;
            max-width: 520px;
            width: 100%;
            margin: 0 auto;
        }
        .lex-viz--building.is-fullscreen .lv-building {
            max-width: 480px;
            width: 100%;
            gap: 0.45rem;
            margin: 0 auto;
        }
        .lex-viz--building.is-fullscreen .lv-zone {
            min-height: 2.85rem;
            padding: 0.5rem 0.4rem;
        }
        .lex-viz--building.is-fullscreen .lv-zone[data-zone="fenster"] { min-height: 2.2rem; }
        .lex-viz--building.is-fullscreen .lv-zone-label { font-size: 0.66rem; }
        .lex-viz--building.is-fullscreen .lv-zone.is-active {
            transform: translateY(-2px);
        }
        .lex-viz--building.is-fullscreen .lv-fp-wrap {
            max-width: 520px;
            width: 100%;
            margin: 0 auto;
            overflow: visible;
            padding: 0.75rem 0.65rem;
        }
        .lex-viz--building.is-fullscreen .lv-fp-svg {
            width: 100%;
            max-width: 500px;
            height: auto;
            margin: 0 auto;
            display: block;
        }
        .lex-viz--building.is-fullscreen .lex-viz-expand-btn {
            background: rgba(255, 0, 77, 0.12);
            border-color: rgba(255, 0, 77, 0.32);
            color: #fff;
        }
        @media (max-width: 720px) {
            .lex-viz--building.is-fullscreen .lex-viz-fs-layout {
                grid-template-columns: 1fr;
            }
            .lex-viz--building.is-fullscreen .lex-viz-fs-sidebar {
                position: relative;
                border-left: none;
                border-top: 1px solid rgba(255, 255, 255, 0.07);
                padding: 0.75rem 0 0;
                max-height: none;
            }
            .lex-viz--building.is-fullscreen .lex-viz-fs-main {
                max-height: none;
            }
            .lex-viz--building.is-fullscreen {
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }
            .lex-viz--building.is-fullscreen .lex-viz-body {
                overflow: visible;
                flex: 1 0 auto;
                min-height: auto;
            }
        }
        /* Gebäude-Grafik – Normalansicht responsive */
        @media (max-width: 520px) {
            .lex-viz-expand-label { display: none; }
            .lex-viz-expand-btn { padding: 0.45rem; }
            .lex-viz--building .lex-viz-header {
                flex-wrap: wrap;
                padding: 0.85rem 0.85rem 0.75rem;
            }
            .lex-viz--building .lex-viz-header-brand { flex: 1 1 calc(100% - 3rem); }
            .lex-viz--building .lex-viz-lead {
                font-size: 0.82rem;
                line-height: 1.55;
            }
            .lex-viz--building .lex-viz-body { padding: 0.75rem 0.85rem 1rem; }
            .lex-viz--building.is-fullscreen .lex-viz-header { padding: 0.85rem 0.85rem 0.75rem; }
            .lex-viz--building.is-fullscreen .lex-viz-body { padding: 0.75rem 0.85rem 1.25rem; }
            .lex-viz-segment--compact { grid-template-columns: 1fr; }
            .lex-viz-segment--cols-2 { grid-template-columns: 1fr 1fr; }
            .lex-viz--building .lex-viz-segment-btn {
                font-size: 0.72rem;
                padding: 0.55rem 0.5rem;
            }
            .lex-viz--building .lex-viz-info-title { font-size: 0.85rem; }
            .lex-viz--building .lex-viz-info-text { font-size: 0.78rem; line-height: 1.6; }
            .lex-viz--building .lex-viz-legend {
                font-size: 0.72rem;
                gap: 0.35rem 0.75rem;
            }
            .lv-building {
                gap: 0.35rem;
                max-width: 100%;
            }
            .lv-zone {
                min-height: 2.45rem;
                padding: 0.4rem 0.28rem;
            }
            .lv-zone[data-zone="fenster"] { min-height: 2rem; }
            .lv-zone[data-zone="fassade"] { min-height: 1.95rem; }
            .lv-zone-label {
                font-size: 0.6rem;
                line-height: 1.2;
            }
            .lv-fp-wrap {
                padding: 0.5rem 0.35rem;
                margin-bottom: 0.65rem;
            }
            .lex-viz--building.is-fullscreen .lv-fp-wrap,
            .lex-viz--building.is-fullscreen .lex-viz-stage,
            .lex-viz--building.is-fullscreen .lex-viz-fs-main > .lex-viz-segment,
            .lex-viz--building.is-fullscreen .lex-viz-fs-main > .lv-view {
                max-width: 100%;
            }
            .lex-viz--building.is-fullscreen .lv-fp-svg {
                max-width: min(500px, 100%);
            }
        }
        @media (max-width: 380px) {
            .lv-building {
                grid-template-columns: repeat(2, 1fr);
                grid-template-areas:
                    "dach dach"
                    "fassade fassade"
                    "fenster fenster"
                    "whg1 whg2"
                    "whg3 whg4"
                    "treppen heizung"
                    "balkon stellplatz";
            }
            .lv-zone-label { font-size: 0.56rem; }
            .lex-viz--building .lex-viz-segment-btn {
                font-size: 0.68rem;
                padding: 0.5rem 0.4rem;
            }
        }
        @media (min-width: 521px) and (max-width: 900px) {
            .lex-viz--building.is-fullscreen .lex-viz-fs-layout {
                grid-template-columns: minmax(0, 1fr) min(17rem, 34vw);
            }
        }

        .lex-viz-lumen-card .lv-weg-stage,
        .lex-viz-lumen-card .lv-vote-grid {
            padding: 0;
            border: none;
            background: transparent;
            border-radius: 0;
            box-shadow: none;
        }
        .lex-viz-lumen-card .lv-vote-result {
            background: transparent;
            border: none;
            padding: 0;
        }
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* LumenOS-inspirierte Innenkarten (Lexikon-Viz, ohne building-split) */
        .lex-viz-lumen-card {
            position: relative;
            padding: 0.85rem 0.9rem;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.025);
            box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
        }
        .lex-viz-lumen-card--accent {
            border-color: rgba(245, 158, 11, 0.22);
            background: linear-gradient(165deg, rgba(245, 158, 11, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
            box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.06) inset;
        }
        .lex-viz-lumen-card--flat {
            border: none;
            background: transparent;
            box-shadow: none;
            padding: 0;
        }
        .lex-viz-lumen-card--compact { padding: 0.75rem 0.85rem; }
        .lex-viz-lumen-card-head { margin-bottom: 0.75rem; }
        .lex-viz-lumen-card-kicker {
            display: block;
            font-size: 0.58rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.38);
            margin-bottom: 0.2rem;
        }
        .lex-viz-lumen-card-title {
            display: block;
            font-size: 0.82rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.92);
            letter-spacing: -0.02em;
            margin: 0 0 0.25rem;
        }
        .lex-viz-lumen-card-desc {
            margin: 0;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.48);
            line-height: 1.55;
        }
        .lex-viz-field {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            min-width: 0;
            width: 100%;
        }
        .lex-viz-field-label {
            display: block;
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.42);
            line-height: 1.3;
        }
        .lex-viz-field-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
            gap: 0.65rem;
            margin-bottom: 0.75rem;
        }
        /* LumenOS-Input-Group: Feld + Suffix in einer Zeile */
        .lex-viz-input-group {
            display: flex;
            align-items: stretch;
            width: 100%;
            min-width: 0;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.04);
            overflow: hidden;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .lex-viz-input-group:focus-within {
            border-color: rgba(255, 0, 77, 0.35);
            box-shadow: 0 0 0 2px rgba(255, 0, 77, 0.1);
        }
        .lex-viz-input-group .lex-viz-input {
            flex: 1 1 auto;
            width: auto;
            min-width: 0;
            border: none;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            padding: 0.55rem 0.65rem;
        }
        .lex-viz-input-group .lex-viz-input:focus {
            border: none;
            box-shadow: none;
            background: transparent;
        }
        .lex-viz-input-suffix {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            padding: 0 0.65rem;
            font-size: 0.72rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.45);
            background: rgba(255, 255, 255, 0.03);
            border-left: 1px solid rgba(255, 255, 255, 0.08);
            white-space: nowrap;
        }
        .lex-viz-input-group--compact {
            max-width: 7.25rem;
        }
        .lex-viz-input-group--compact .lex-viz-input {
            padding: 0.45rem 0.5rem;
            font-size: 0.75rem;
        }
        .lex-viz-input-group--compact .lex-viz-input-suffix {
            padding: 0 0.45rem;
            font-size: 0.65rem;
        }
        .lv-cost-my-pick,
        .lv-cost-custom-fields {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            margin-bottom: 0.75rem;
        }
        .lv-cost-my-pick .lex-viz-select,
        .lv-cost-field .lex-viz-input-group {
            width: 100%;
            max-width: none;
        }
        .lex-viz-field-inline {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            min-width: 0;
        }
        .lex-viz-field-inline--total {
            grid-column: 1 / -1;
            max-width: 10rem;
        }
        .lex-viz-input,
        .lex-viz-select {
            width: 100%;
            min-width: 0;
            padding: 0.48rem 0.55rem;
            font-family: inherit;
            font-size: 0.78rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.92);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        }
        .lex-viz-input {
            width: 4.5rem;
            text-align: right;
            -moz-appearance: textfield;
        }
        .lex-viz-input::-webkit-outer-spin-button,
        .lex-viz-input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        .lex-viz-input:focus,
        .lex-viz-select:focus {
            outline: none;
            border-color: rgba(255, 0, 77, 0.35);
            background: rgba(255, 255, 255, 0.06);
            box-shadow: 0 0 0 2px rgba(255, 0, 77, 0.1);
        }
        .lex-viz-input-unit {
            font-size: 0.62rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.38);
            white-space: nowrap;
        }
        .lex-viz-select { width: 100%; cursor: pointer; }
        .lex-viz--cost .lv-cost-cell-key {
            min-width: 5.5rem;
        }
        .lex-viz-result {
            text-align: center;
            padding: 0.85rem 0.75rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .lex-viz-result-label {
            display: block;
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.42);
            margin-bottom: 0.25rem;
        }
        .lex-viz-result-value {
            display: block;
            font-size: 1.65rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: var(--accent);
            line-height: 1.1;
        }
        .lex-viz-result-sub {
            display: block;
            margin-top: 0.2rem;
            font-size: 0.72rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.55);
        }
        .lex-viz-result-formula {
            margin: 0.55rem 0 0;
            font-size: 0.68rem;
            font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.55;
            word-break: break-word;
        }
        .lex-viz-slider-wrap--lumen {
            margin-bottom: 0;
            padding: 0;
            border: none;
            background: transparent;
            grid-template-columns: 1fr auto;
        }
        /* Kostenverteilung – Layout */
        .lv-cost-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(15rem, 21rem);
            gap: 0.85rem;
            align-items: start;
            position: relative;
        }
        .lv-cost-main {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            min-width: 0;
        }
        .lv-cost-main > .lex-viz-segment {
            margin-bottom: 0;
        }

        /* Gesamtkosten-Karte */
        .lv-cost-total-card {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .lv-cost-total-hero {
            text-align: center;
            padding: 0.15rem 0 0.25rem;
        }
        .lv-cost-total-label {
            margin: 0 0 0.35rem;
            font-size: 0.72rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.55);
        }
        .lv-cost-total-out {
            display: block;
            font-size: clamp(1.75rem, 4vw, 2.15rem);
            font-weight: 900;
            letter-spacing: -0.03em;
            color: var(--accent);
            line-height: 1.05;
        }
        .lv-cost-total-card .lex-viz-slider {
            width: 100%;
            min-height: 1.5rem;
        }
        .lv-cost-total-exact {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            max-width: 14rem;
            margin: 0 auto;
            width: 100%;
        }
        .lex-viz-input--amount,
        .lv-cost-total-exact .lex-viz-input-group .lex-viz-input {
            font-size: 0.85rem;
        }

        /* Einheiten-Karten */
        .lv-cost-units {
            display: grid;
            gap: 0.55rem;
        }
        .lv-cost-unit {
            padding: 0.65rem 0.75rem 0.7rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(255, 255, 255, 0.025);
            transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
        }
        .lv-cost-unit.is-my-unit {
            border-color: rgba(255, 0, 77, 0.28);
            background: rgba(255, 0, 77, 0.05);
            box-shadow: 0 0 0 1px rgba(255, 0, 77, 0.06) inset;
        }
        .lv-cost-unit-head {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            margin-bottom: 0.55rem;
        }
        .lv-cost-unit-badge {
            flex-shrink: 0;
            width: 1.75rem;
            height: 1.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-size: 0.72rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.88);
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .lv-cost-unit.is-my-unit .lv-cost-unit-badge {
            color: var(--accent);
            border-color: rgba(255, 0, 77, 0.25);
            background: rgba(255, 0, 77, 0.1);
        }
        .lv-cost-unit-title {
            flex: 1 1 auto;
            min-width: 0;
            display: flex;
            flex-wrap: wrap;
            align-items: baseline;
            gap: 0.35rem;
        }
        .lv-cost-name {
            font-size: 0.78rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.82);
            letter-spacing: -0.01em;
        }
        .lv-cost-unit.is-my-unit .lv-cost-name {
            color: var(--accent);
        }
        .lv-cost-meta-pct {
            font-size: 0.68rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.42);
        }
        .lv-cost-val {
            flex-shrink: 0;
            font-size: 0.82rem;
            font-weight: 900;
            color: var(--accent);
            letter-spacing: -0.02em;
            white-space: nowrap;
        }
        .lv-cost-unit-fields {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem 0.65rem;
            margin-bottom: 0.55rem;
        }
        .lv-cost-field {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            min-width: 0;
        }
        .lv-cost-field-label {
            font-size: 0.58rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.38);
        }
        .lv-cost-unit-track {
            margin-top: 0.05rem;
        }
        .lv-cost-unit-bar {
            height: 0.35rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            overflow: hidden;
        }
        .lv-cost-unit-bar-fill {
            display: block;
            height: 100%;
            width: 0;
            border-radius: inherit;
            background: linear-gradient(90deg, rgba(255, 0, 77, 0.55), rgba(255, 0, 77, 0.85));
            transition: width 0.35s ease;
        }
        .lv-cost-sum-strip {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.45rem 0.65rem;
            margin-top: 0.75rem;
            padding-top: 0.65rem;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
        }
        .lv-cost-sum-label {
            font-size: 0.68rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.55);
            margin-right: auto;
        }
        .lv-cost-sum-chip {
            font-size: 0.68rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.72);
            padding: 0.25rem 0.55rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        /* Schlüssel-Modus: inaktive Spalte abdunkeln */
        .lex-viz--cost[data-cost-mode="flaeche"] .lv-cost-cell-key[data-key="mea"] { opacity: 0.38; }
        .lex-viz--cost[data-cost-mode="mea"] .lv-cost-cell-key[data-key="flaeche"] { opacity: 0.38; }
        .lex-viz--cost[data-cost-mode="flaeche"] .lv-cost-cell-key[data-key="flaeche"],
        .lex-viz--cost[data-cost-mode="mea"] .lv-cost-cell-key[data-key="mea"] {
            opacity: 1;
        }
        .lex-viz--cost[data-cost-mode="flaeche"] .lv-cost-cell-key[data-key="flaeche"] .lv-cost-field-label,
        .lex-viz--cost[data-cost-mode="mea"] .lv-cost-cell-key[data-key="mea"] .lv-cost-field-label {
            color: var(--accent);
        }

        /* Rechner-Seitenleiste – per JS fixiert (CSS-sticky scheitert an overflow-x auf html/body) */
        .lex-viz.lex-viz--cost {
            overflow: visible;
        }
        .lv-cost-aside-wrap {
            align-self: start;
            min-width: 0;
        }
        .lv-cost-aside {
            z-index: 2;
        }
        .lv-cost-aside.is-pinned {
            position: fixed;
            z-index: 900;
            max-height: calc(100vh - var(--header-offset, 72px) - 1.7rem);
            overflow-y: auto;
            overscroll-behavior: contain;
            box-shadow:
                0 0 0 1px rgba(255, 0, 77, 0.12) inset,
                0 16px 48px rgba(0, 0, 0, 0.45);
        }
        .lv-cost-my-result {
            text-align: center;
            padding: 0.9rem 0.75rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .lv-cost-my-result-label {
            display: block;
            font-size: 0.62rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.42);
            margin-bottom: 0.25rem;
        }
        .lv-cost-my-amount {
            display: block;
            font-size: 1.65rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: var(--accent);
            line-height: 1.1;
        }
        .lv-cost-my-pct {
            display: block;
            margin-top: 0.2rem;
            font-size: 0.72rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.55);
        }
        .lv-cost-my-formula {
            margin: 0.55rem 0 0;
            font-size: 0.68rem;
            font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.55;
            word-break: break-word;
        }

        /* Kosten-Rechner – kompakte Leiste am Handy */
        .lv-cost-mobile-dock {
            display: none;
        }
        .lv-cost-mobile-dock[hidden] {
            display: none !important;
        }

        /* Hausgeld-Flow */
        .lex-viz--flow .lv-flow-stack {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            margin-bottom: 0;
        }
        .lex-viz--flow .lex-viz-info {
            margin: 0;
        }
        .lv-flow-stack {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            margin-bottom: 0.85rem;
        }
        .lv-flow-seg {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.75rem;
            min-height: calc(var(--seg-pct, 30) * 0.01 * 3.2rem + 1.4rem);
            padding: 0.65rem 0.85rem;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.03);
            font-family: inherit;
            cursor: pointer;
            text-align: left;
            transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
        }
        .lv-flow-seg:hover {
            border-color: rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.05);
            transform: translateY(-1px);
        }
        .lv-flow-seg.is-active {
            border-color: rgba(255,0,77,0.35);
            box-shadow: 0 0 0 1px rgba(255,0,77,0.08) inset;
            transform: translateY(-1px);
        }
        .lv-flow-seg--betrieb { background: rgba(96,165,250,0.1); border-color: rgba(96,165,250,0.18); }
        .lv-flow-seg--ruecklage { background: rgba(74,222,128,0.08); border-color: rgba(74,222,128,0.16); }
        .lv-flow-seg--verwaltung { background: rgba(255,255,255,0.04); }
        .lv-flow-seg-label { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.82); letter-spacing: -0.01em; }
        .lv-flow-seg-val { font-size: 0.72rem; font-weight: 800; color: var(--accent); white-space: nowrap; letter-spacing: -0.02em; }

        /* WEG-Kreis */
        .lex-viz--weg .lv-weg-stage {
            margin-bottom: 0;
        }
        .lv-weg-stage {
            margin-bottom: 0.85rem;
            padding: 0.75rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .lv-weg-owners {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.35rem;
        }
        .lv-weg-owner {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.45rem 0.55rem;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.03);
            font-family: inherit;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
            text-align: left;
        }
        .lv-weg-owner:hover {
            border-color: rgba(255,0,77,0.28);
            background: rgba(255,255,255,0.05);
            transform: translateY(-1px);
        }
        .lv-weg-owner.is-active {
            border-color: rgba(255,0,77,0.38);
            background: rgba(255,0,77,0.08);
            box-shadow: 0 0 0 1px rgba(255,0,77,0.06) inset;
        }
        .lv-weg-owner-num {
            width: 1.25rem;
            height: 1.25rem;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            font-size: 0.58rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .lv-weg-owner-name { font-size: 0.62rem; font-weight: 600; color: rgba(255,255,255,0.75); }

        /* Abstimmung */
        .lex-viz--vote .lv-vote-grid {
            margin-bottom: 0;
        }
        .lex-viz--vote .lv-vote-result {
            margin-bottom: 0;
        }
        .lex-viz--vote .lv-vote-verdict {
            margin: 0.65rem 0 0;
        }
        .lv-vote-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0.4rem;
            margin-bottom: 0.85rem;
            padding: 0.75rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .lv-vote-seat {
            padding: 0.4rem 0.3rem;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.03);
            text-align: center;
            transition: border-color 0.2s ease, background 0.2s ease;
        }
        .lv-vote-seat-label {
            display: block;
            font-size: 0.58rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.38);
            margin-bottom: 0.28rem;
        }
        .lv-vote-btns { display: flex; flex-direction: column; gap: 0.18rem; }
        .lv-vote-btn {
            padding: 0.18rem 0.12rem;
            font-family: inherit;
            font-size: 0.55rem;
            font-weight: 700;
            border-radius: 6px;
            border: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.03);
            color: rgba(255,255,255,0.52);
            cursor: pointer;
            transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
        }
        .lv-vote-btn:hover { border-color: rgba(255,255,255,0.14); color: rgba(255,255,255,0.75); }
        .lv-vote-btn.is-active.lv-vote-btn--yes { background: rgba(74,222,128,0.18); border-color: rgba(74,222,128,0.4); color: #4ade80; }
        .lv-vote-btn.is-active.lv-vote-btn--no { background: rgba(248,113,113,0.15); border-color: rgba(248,113,113,0.38); color: #f87171; }
        .lv-vote-btn.is-active.lv-vote-btn--skip { background: rgba(251,191,36,0.2); border-color: rgba(251,191,36,0.48); color: #fbbf24; }
        .lv-vote-seat--yes { border-color: rgba(74,222,128,0.38); background: rgba(74,222,128,0.07); }
        .lv-vote-seat--no { border-color: rgba(248,113,113,0.38); background: rgba(248,113,113,0.07); }
        .lv-vote-seat--skip { border-color: rgba(251,191,36,0.42); background: rgba(251,191,36,0.09); }
        .lv-vote-seat--skip .lv-vote-seat-label { color: #fbbf24; }
        .lv-vote-result {
            display: flex;
            gap: 1.25rem;
            justify-content: center;
            margin-bottom: 0.65rem;
            padding: 0.65rem 0.75rem;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .lv-vote-stat {
            text-align: center;
            font-size: 0.62rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }
        .lv-vote-stat-num {
            display: block;
            font-size: 1.15rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 0.1rem;
        }
        .lv-vote-stat--yes .lv-vote-stat-num { color: #4ade80; }
        .lv-vote-stat--no .lv-vote-stat-num { color: #f87171; }
        .lv-vote-stat--skip .lv-vote-stat-num { color: #fbbf24; }
        .lv-vote-stat--present .lv-vote-stat-num { color: #60a5fa; }
        .lv-vote-verdict {
            margin: 0;
            text-align: center;
            font-size: 0.78rem;
            font-weight: 700;
            color: rgba(255,255,255,0.75);
        }
        .lv-vote-verdict[data-verdict="yes"],
        .lv-vote-verdict[data-verdict="yes-unanimous"],
        .lv-vote-verdict[data-verdict="yes-majority"] { color: #4ade80; }
        .lv-vote-verdict[data-verdict="no"],
        .lv-vote-verdict[data-verdict="no-unanimous"],
        .lv-vote-verdict[data-verdict="no-majority"],
        .lv-vote-verdict[data-verdict="tie"] { color: #f87171; }
        .lv-vote-verdict[data-verdict="quorum-fail"] { color: #fbbf24; }
        .lv-vote-verdict[data-verdict="abstain-only"] { color: #fbbf24; }

        @media (max-width: 720px) {
            /* —— Lexikon-Viz allgemein (ohne building-split) —— */
            .lex-viz:not(.lex-viz--building) .lex-viz-header {
                padding: 0.85rem 0.85rem 0.7rem;
            }
            .lex-viz:not(.lex-viz--building) .lex-viz-body {
                padding: 0.75rem 0.85rem 1rem;
            }
            .lex-viz:not(.lex-viz--building) .lex-viz-lead {
                font-size: 0.82rem;
                line-height: 1.55;
            }
            .lex-viz:not(.lex-viz--building) .lex-viz-segment-btn {
                min-height: 2.75rem;
                padding: 0.65rem 0.55rem;
                font-size: 0.78rem;
            }
            .lex-viz:not(.lex-viz--building) .lex-viz-slider {
                min-height: 2rem;
                touch-action: pan-y;
            }
            .lex-viz:not(.lex-viz--building) .lex-viz-input,
            .lex-viz:not(.lex-viz--building) .lex-viz-select {
                min-height: 2.75rem;
                font-size: 1rem;
            }
            .lex-viz:not(.lex-viz--building) .lex-viz-input-group .lex-viz-input {
                min-height: 2.75rem;
            }

            /* —— Kostenverteilung —— */
            .lv-cost-layout {
                grid-template-columns: 1fr;
            }
            .lv-cost-aside-wrap {
                order: -1;
                min-height: 0 !important;
            }
            .lv-cost-aside.is-pinned {
                position: static;
                top: auto !important;
                left: auto !important;
                width: auto !important;
                max-height: none;
                overflow-y: visible;
                box-shadow: none;
            }
            .lv-cost-mobile-dock {
                display: block;
                position: fixed;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 950;
                padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
                background: rgba(10, 10, 12, 0.96);
                backdrop-filter: blur(14px);
                -webkit-backdrop-filter: blur(14px);
                border-top: 1px solid rgba(255, 0, 77, 0.28);
                box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.45);
            }
            .lv-cost-mobile-dock-inner {
                display: flex;
                flex-wrap: wrap;
                align-items: baseline;
                justify-content: center;
                gap: 0.35rem 0.65rem;
                max-width: 36rem;
                margin: 0 auto;
            }
            .lv-cost-mobile-dock-label {
                font-size: 0.62rem;
                font-weight: 800;
                letter-spacing: 0.08em;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.45);
            }
            .lv-cost-mobile-dock-amount {
                font-size: 1.35rem;
                font-weight: 900;
                letter-spacing: -0.03em;
                color: var(--accent);
            }
            .lv-cost-mobile-dock-pct {
                flex: 1 1 100%;
                text-align: center;
                font-size: 0.68rem;
                font-weight: 700;
                color: rgba(255, 255, 255, 0.52);
            }
            .lex-viz--cost.has-mobile-dock .lex-viz-body {
                padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
            }
            .lv-cost-unit {
                padding: 0.75rem 0.8rem 0.8rem;
            }
            .lv-cost-unit-fields {
                gap: 0.65rem;
            }

            /* —— Hausgeld-Flow —— */
            .lv-flow-seg {
                min-height: 3.25rem;
                padding: 0.8rem 0.9rem;
            }
            .lv-flow-seg-label {
                font-size: 0.78rem;
            }
            .lv-flow-seg-val {
                font-size: 0.82rem;
            }

            /* —— WEG-Kreis —— */
            .lv-weg-owners {
                grid-template-columns: 1fr 1fr;
                gap: 0.45rem;
            }
            .lv-weg-owner {
                min-height: 2.75rem;
                padding: 0.6rem 0.65rem;
            }
            .lv-weg-owner-num {
                width: 1.5rem;
                height: 1.5rem;
                font-size: 0.65rem;
            }
            .lv-weg-owner-name {
                font-size: 0.72rem;
            }

            /* —— Abstimmungs-Demo —— */
            .lv-vote-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.55rem;
                padding: 0.65rem;
            }
            .lv-vote-seat {
                padding: 0.55rem 0.4rem;
            }
            .lv-vote-seat-label {
                font-size: 0.62rem;
                margin-bottom: 0.35rem;
            }
            .lv-vote-btns {
                flex-direction: row;
                gap: 0.28rem;
            }
            .lv-vote-btn {
                flex: 1 1 0;
                min-height: 2.75rem;
                padding: 0.45rem 0.25rem;
                font-size: 0.72rem;
                border-radius: 8px;
            }
            .lv-vote-result {
                flex-wrap: wrap;
                gap: 0.75rem 1.25rem;
            }
            .lv-vote-stat-num {
                font-size: 1.35rem;
            }
        }
        @media (hover: none) and (pointer: coarse) {
            .lex-viz:not(.lex-viz--building) button {
                -webkit-tap-highlight-color: rgba(255, 0, 77, 0.12);
            }
            .lex-viz:not(.lex-viz--building) .lv-flow-seg:active,
            .lex-viz:not(.lex-viz--building) .lv-vote-btn:active,
            .lex-viz:not(.lex-viz--building) .lv-weg-owner:active,
            .lex-viz:not(.lex-viz--building) .lex-viz-segment-btn:active {
                transform: scale(0.98);
            }
        }
        @media (max-width: 560px) {
            .lex-viz-field-row { grid-template-columns: 1fr; }
            .lv-cost-unit-fields { grid-template-columns: 1fr; }
            .lv-cost-my-amount { font-size: 1.4rem; }
            .lex-viz-result-value { font-size: 1.4rem; }
            .lv-vote-grid { grid-template-columns: 1fr; }
            .lv-weg-owners { grid-template-columns: 1fr; }
        }

        .lex-article-body {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .lex-block h4 {
            font-size: 0.85rem;
            font-weight: 800;
            margin: 0 0 0.4rem;
            color: rgba(255, 255, 255, 0.92);
            text-align: left;
        }
        .lex-block-content p {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.65;
            margin: 0 0 0.45rem;
            text-align: left;
        }
        .lex-block-content p:last-child { margin-bottom: 0; }
        .lex-block-content strong { color: rgba(255, 255, 255, 0.95); }
        .lex-block-content em {
            color: rgba(255, 255, 255, 0.55);
            font-style: italic;
        }
        .lex-block-content ol,
        .lex-block-content ul:not(.lex-list),
        .ws-guide-text ol.guide-ol,
        .ws-guide-text ul.guide-ul {
            margin: 0.35rem 0 0.5rem;
            padding-left: 1.65rem;
            list-style-position: outside;
        }
        .lex-block-content ol,
        .lex-block-content ol.guide-ol,
        .ws-guide-text ol.guide-ol {
            list-style-type: decimal;
        }
        .lex-block-content ul:not(.lex-list),
        .lex-block-content ul.guide-ul,
        .ws-guide-text ul.guide-ul {
            list-style-type: disc;
        }
        .lex-block-content li,
        .ws-guide-text ol.guide-ol li,
        .ws-guide-text ul.guide-ul li {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.65;
            margin-bottom: 0.4rem;
            text-align: left;
        }
        .lex-block-content li:last-child,
        .ws-guide-text ol.guide-ol li:last-child,
        .ws-guide-text ul.guide-ul li:last-child {
            margin-bottom: 0;
        }
        .lex-block-content li strong,
        .ws-guide-text li strong {
            color: rgba(255, 255, 255, 0.95);
        }

        .lex-list {
            margin: 0.25rem 0 0;
            padding: 0;
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }
        .lex-list li {
            position: relative;
            padding-left: 1rem;
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.5;
            text-align: left;
        }
        .lex-list li::before {
            content: '·';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 900;
        }

        .lex-article-foot {
            margin-top: 1.15rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
        }
        .lex-related-label {
            display: block;
            font-size: 0.62rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.38);
            margin-bottom: 0.5rem;
        }
        .lex-related-links {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }
        .lex-related-chip {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.35rem 0.7rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.04);
            color: var(--text);
            text-decoration: none;
        }
        .lex-related-chip:hover {
            border-color: rgba(255, 0, 77, 0.35);
            background: rgba(255, 0, 77, 0.08);
        }

        @media (max-width: 768px) {
            .ws-lexikon { padding: 2rem 0 4rem; }
            .lex-intro {
                flex-direction: column;
                gap: 0.85rem;
                padding: 1.15rem 1rem 0.85rem;
            }
            .lex-intro-stats {
                flex-direction: row;
                gap: 1rem;
                text-align: left;
            }
            .lex-toolbar {
                grid-template-columns: 1fr;
                padding: 0.75rem 1rem;
                align-items: stretch;
            }
            .lex-filter-wrap {
                width: 100%;
            }
            .lex-tiles-wrap {
                padding: 0.85rem 1rem 1rem;
            }
            .lex-tiles-head {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.35rem;
                margin-bottom: 0.65rem;
            }
            .lex-tiles-hint {
                text-align: left;
                max-width: none;
            }
            .lex-tiles-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.55rem;
            }
            .lex-tile {
                min-height: 5.75rem;
                padding: 0.75rem 0.8rem;
            }
            .lex-layout {
                grid-template-columns: 1fr;
            }
            .lex-nav {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                max-height: none;
            }
            .lex-box.lex-box--interactive .lex-nav {
                display: none;
            }
            .lex-terms {
                max-height: min(42vh, 320px);
            }
            .lex-detail {
                min-height: 280px;
            }
            .lex-detail-placeholder {
                min-height: 280px;
            }
        }

        /* CTA */
        .ws-cta {
            padding: 0 0 5rem;
        }
        .ws-cta-inner {
            text-align: center;
            padding: 2rem 1.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.02);
        }
        .ws-cta-inner h2 {
            font-size: clamp(1.35rem, 2.5vw, 1.75rem);
            font-weight: 900;
            margin-bottom: 0.45rem;
        }
        .ws-cta-inner h2 span { color: var(--accent); }
        .ws-cta-inner p {
            font-size: 0.88rem;
            color: var(--text-light);
            margin-bottom: 1.15rem;
        }
        .ws-cta-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
            justify-content: center;
        }

        @media (max-width: 960px) {
            .ws-hub-grid,
            .ws-hub-grid--3,
            .ws-hub-grid--5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .ws-int-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .ws-cl-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .ws-faq-teaser-inner { grid-template-columns: 1fr; }
        }
        @media (max-width: 640px) {
            .ws-inner { padding: 0 1.25rem; }
            .ws-hub-grid,
            .ws-hub-grid--3,
            .ws-hub-grid--5,
            .ws-int-grid,
            .ws-rg-grid,
            .ws-cl-grid { grid-template-columns: 1fr; }
        }

        /* ── Guide-Accordion ── */
        .ws-guide-accordion {
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
        }
        .ws-guide-item {
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.02);
            overflow: hidden;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .ws-guide-item:hover {
            border-color: rgba(255, 255, 255, 0.13);
        }
        .ws-guide-item.is-open {
            border-color: rgba(255, 0, 77, 0.25);
            box-shadow: 0 0 0 1px rgba(255, 0, 77, 0.1);
            background: rgba(255, 0, 77, 0.02);
        }
        .ws-guide-item.is-folded { display: none; }
        .ws-guide-foot {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
            padding-top: 0.25rem;
        }
        .ws-guide-more {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            padding: 0.6rem 1.2rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.78);
            font-family: inherit;
            font-size: 0.75rem;
            font-weight: 700;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
        }
        .ws-guide-more:hover {
            border-color: rgba(255, 0, 77, 0.32);
            background: rgba(255, 0, 77, 0.08);
            color: #fff;
        }
        .ws-guide-more-icon {
            width: 0.95rem;
            height: 0.95rem;
            flex-shrink: 0;
            transition: transform 0.25s ease;
        }
        .ws-guide-more.is-expanded .ws-guide-more-icon {
            transform: rotate(180deg);
        }
        .ws-guide-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.1rem 1.25rem;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            color: var(--text);
        }
        .ws-guide-trigger-left {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            min-width: 0;
        }
        .ws-guide-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 10px;
            background: rgba(255, 0, 77, 0.1);
            flex-shrink: 0;
        }
        .ws-guide-icon svg {
            width: 1.2rem;
            height: 1.2rem;
            fill: var(--accent);
        }
        .ws-guide-trigger-text {
            display: flex;
            flex-direction: column;
            gap: 0.18rem;
            min-width: 0;
        }
        .ws-guide-tag {
            font-size: 0.6rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.32);
        }
        .ws-guide-title {
            font-size: 0.95rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1.3;
        }
        .ws-guide-desc {
            font-size: 0.78rem;
            color: var(--text-light);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .ws-guide-chevron {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 1.75rem;
            height: 1.75rem;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.05);
            flex-shrink: 0;
            transition: background 0.2s;
        }
        .ws-guide-chevron svg {
            width: 1rem;
            height: 1rem;
            stroke: rgba(255, 255, 255, 0.55);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .ws-guide-item.is-open .ws-guide-chevron svg {
            transform: rotate(180deg);
        }
        .ws-guide-item.is-open .ws-guide-chevron {
            background: rgba(255, 0, 77, 0.12);
        }
        .ws-guide-body {
            overflow: hidden;
        }
        .ws-guide-body[hidden] { display: none; }
        .ws-guide-content {
            padding: 0 1.25rem 1.35rem 1.25rem;
            padding-left: calc(1.25rem + 2.5rem + 0.9rem);
        }
        .ws-guide-section {
            margin-bottom: 1rem;
        }
        .ws-guide-section:last-of-type { margin-bottom: 0; }
        .ws-guide-section h4 {
            font-size: 0.82rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .ws-guide-text {
            font-size: 0.83rem;
            color: var(--text-light);
            line-height: 1.65;
        }
        .ws-guide-text p { margin: 0 0 0.6rem; }
        .ws-guide-text p:last-child { margin-bottom: 0; }
        .ws-guide-text strong { color: var(--text); font-weight: 700; }
        .ws-guide-text em { color: rgba(255, 255, 255, 0.55); font-style: italic; }
        .ws-guide-text li { line-height: 1.55; }
        .ws-guide-disclaimer {
            display: flex;
            align-items: flex-start;
            gap: 0.55rem;
            margin-top: 1.1rem;
            padding: 0.75rem 0.95rem;
            border-radius: 10px;
            border: 1px solid rgba(251, 191, 36, 0.2);
            background: rgba(251, 191, 36, 0.05);
            font-size: 0.72rem;
            color: rgba(251, 191, 36, 0.75);
            line-height: 1.55;
        }
        .ws-guide-disclaimer svg {
            width: 0.95rem;
            height: 0.95rem;
            fill: rgba(251, 191, 36, 0.7);
            flex-shrink: 0;
            margin-top: 0.05rem;
        }

        /* Verwalter-Pyramide / Sichtbarkeits-Trichter (Ratgeber) */
        .hv-scope {
            margin-top: 0.35rem;
        }
        .hv-scope-intro {
            margin: 0 0 1.25rem;
            font-size: 0.82rem;
            line-height: 1.6;
            color: var(--text-light);
        }
        .hv-scope-funnel {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.55rem;
            position: relative;
            padding: 0.5rem 0 0.25rem;
        }
        .hv-scope-funnel::before {
            content: '';
            position: absolute;
            inset: 0;
            margin: 0 auto;
            width: min(100%, 720px);
            background:
                linear-gradient(135deg, transparent 49.5%, rgba(255, 255, 255, 0.06) 50%, transparent 50.5%) 0 0 / 50% 100% no-repeat,
                linear-gradient(225deg, transparent 49.5%, rgba(255, 255, 255, 0.06) 50%, transparent 50.5%) 100% 0 / 50% 100% no-repeat;
            pointer-events: none;
            opacity: 0.35;
        }
        .hv-scope-layer {
            display: grid;
            grid-template-columns: 3.4rem minmax(0, 1fr);
            gap: 0.85rem;
            width: var(--scope-width, 100%);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.09);
            padding: 0.95rem 1rem 1rem;
            background: rgba(255, 255, 255, 0.025);
            position: relative;
            z-index: 1;
        }
        .hv-scope-layer--owner {
            --scope-width: 46%;
            border-color: rgba(255, 0, 77, 0.32);
            background: linear-gradient(165deg, rgba(255, 0, 77, 0.14) 0%, rgba(255, 255, 255, 0.02) 55%);
            box-shadow: 0 10px 28px rgba(255, 0, 77, 0.1);
        }
        .hv-scope-layer--beirat {
            --scope-width: 68%;
            border-color: rgba(251, 191, 36, 0.24);
            background: linear-gradient(165deg, rgba(251, 191, 36, 0.09) 0%, rgba(255, 255, 255, 0.02) 55%);
        }
        .hv-scope-layer--base {
            --scope-width: 100%;
            border-color: rgba(255, 255, 255, 0.12);
            background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.16) 100%);
            grid-template-columns: 3.4rem minmax(0, 1fr);
        }
        .hv-scope-layer-side {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.35rem;
            padding-top: 0.15rem;
        }
        .hv-scope-layer-num {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            font-size: 0.78rem;
            font-weight: 800;
            color: var(--text);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }
        .hv-scope-layer--owner .hv-scope-layer-num {
            color: var(--accent);
            border-color: rgba(255, 0, 77, 0.35);
            background: rgba(255, 0, 77, 0.12);
        }
        .hv-scope-layer--beirat .hv-scope-layer-num {
            color: rgba(251, 191, 36, 0.95);
            border-color: rgba(251, 191, 36, 0.3);
            background: rgba(251, 191, 36, 0.1);
        }
        .hv-scope-layer-tag {
            font-size: 0.52rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.38);
            writing-mode: vertical-rl;
            transform: rotate(180deg);
        }
        .hv-scope-layer-head {
            margin-bottom: 0.65rem;
            text-align: center;
        }
        .hv-scope-layer--base .hv-scope-layer-head {
            text-align: left;
        }
        .hv-scope-layer-head h5 {
            margin: 0 0 0.15rem;
            font-size: 0.86rem;
            font-weight: 800;
            color: var(--text);
            line-height: 1.35;
        }
        .hv-scope-layer-head p {
            margin: 0;
            font-size: 0.71rem;
            color: rgba(255, 255, 255, 0.42);
        }
        .hv-scope-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.35rem 0.85rem;
        }
        .hv-scope-layer--owner .hv-scope-list,
        .hv-scope-layer--beirat .hv-scope-list {
            grid-template-columns: 1fr;
        }
        .hv-scope-list li {
            position: relative;
            padding-left: 0.95rem;
            font-size: 0.72rem;
            line-height: 1.45;
            color: rgba(255, 255, 255, 0.82);
        }
        .hv-scope-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.45em;
            width: 0.35rem;
            height: 0.35rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.28);
        }
        .hv-scope-layer--owner .hv-scope-list li::before {
            background: rgba(255, 0, 77, 0.65);
        }
        .hv-scope-layer--beirat .hv-scope-list li::before {
            background: rgba(251, 191, 36, 0.65);
        }
        .hv-scope-panels {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.65rem;
        }
        .hv-scope-panel {
            padding: 0.75rem 0.8rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(0, 0, 0, 0.18);
        }
        .hv-scope-panel h6 {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            margin: 0 0 0.55rem;
            font-size: 0.68rem;
            font-weight: 800;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.55);
        }
        .hv-scope-panel-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.35rem;
            height: 1.35rem;
            border-radius: 6px;
            font-size: 0.72rem;
            font-weight: 800;
            color: var(--accent);
            background: rgba(255, 0, 77, 0.1);
            flex-shrink: 0;
        }
        .hv-scope-list--dense {
            grid-template-columns: 1fr;
            gap: 0.28rem;
        }
        .hv-scope-list--dense li {
            font-size: 0.67rem;
            line-height: 1.42;
            color: rgba(255, 255, 255, 0.72);
        }
        .hv-scope-quote {
            margin: 1.15rem 0 0.75rem;
            padding: 0.95rem 1.05rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-left: 3px solid rgba(255, 0, 77, 0.45);
            background: rgba(255, 255, 255, 0.03);
        }
        .hv-scope-quote p {
            margin: 0 0 0.45rem;
            font-size: 0.77rem;
            font-style: italic;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.6;
        }
        .hv-scope-quote cite {
            display: block;
            font-size: 0.65rem;
            font-style: normal;
            color: rgba(255, 255, 255, 0.38);
        }
        .hv-scope-foot {
            margin: 0;
            font-size: 0.78rem;
            line-height: 1.55;
        }

        /* ── LumenOS-Wissenssektion ── */
        .ws-lumen {
            padding: 4rem 0 3rem;
        }
        .ws-head--center {
            text-align: center;
        }
        .ws-head--center .section-subtitle {
            margin-left: auto;
            margin-right: auto;
            max-width: 38rem;
        }
        .ws-lumen-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 2rem;
        }
        .ws-lumen-card {
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 1.35rem 1.4rem 1.5rem;
            transition: border-color 0.2s, background 0.2s;
        }
        .ws-lumen-card:hover {
            background: rgba(255, 255, 255, 0.055);
            border-color: rgba(255, 0, 77, 0.22);
        }
        .ws-lumen-icon {
            width: 2.2rem;
            height: 2.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: rgba(255, 0, 77, 0.1);
            color: var(--accent);
            margin-bottom: 0.9rem;
        }
        .ws-lumen-icon svg {
            width: 1.1rem;
            height: 1.1rem;
        }
        .ws-lumen-card h3 {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 0.75rem;
        }
        .ws-lumen-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
        }
        .ws-lumen-list li {
            font-size: 0.78rem;
            color: var(--text-light);
            line-height: 1.5;
            padding-left: 1rem;
            position: relative;
        }
        .ws-lumen-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.55em;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--accent);
            opacity: 0.55;
        }
        .ws-lumen-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            padding: 1.1rem 1.4rem;
            border-radius: 14px;
            background: rgba(255, 0, 77, 0.04);
            border: 1px solid rgba(255, 0, 77, 0.1);
        }
        .ws-lumen-hint {
            font-size: 0.78rem;
            color: var(--text-light);
            line-height: 1.6;
            max-width: 42rem;
            margin: 0;
        }
        @media (max-width: 860px) {
            .ws-lumen-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 560px) {
            .ws-lumen-grid { grid-template-columns: 1fr; }
            .ws-lumen-footer { flex-direction: column; align-items: flex-start; }
        }

        /* ── Rechtlicher Disclaimer ── */
        .ws-disclaimer {
            padding: 0 0 2.5rem;
        }
        .ws-disclaimer-inner {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            border-radius: 12px;
            border: 1px solid rgba(251, 191, 36, 0.18);
            background: rgba(251, 191, 36, 0.04);
        }
        .ws-disclaimer-inner svg {
            width: 1rem;
            height: 1rem;
            fill: rgba(251, 191, 36, 0.65);
            flex-shrink: 0;
            margin-top: 0.1rem;
        }
        .ws-disclaimer-inner p {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.45);
            line-height: 1.6;
            margin: 0;
        }
        .ws-disclaimer-inner strong {
            color: rgba(251, 191, 36, 0.7);
            font-weight: 700;
        }

        /* ── Responsive für neue Sektionen ── */
        @media (max-width: 768px) {
            .ws-rg-wechsel-head {
                flex-direction: column;
                align-items: stretch;
            }
            .ws-rg-wechsel-all {
                align-self: flex-start;
            }
            .ws-rg-grid { grid-template-columns: 1fr; }
            .ws-cl-shell { padding: 0.75rem; border-radius: 16px; }
            .ws-cl-panel-head {
                grid-template-columns: 1fr;
            }
            .ws-cl-head-actions {
                width: 100%;
                justify-content: stretch;
            }
            .ws-cl-pdf, .ws-cl-reset { flex: 1; justify-content: center; }
            .ws-cl-section { padding: 0.65rem 0.85rem; }
            .ws-guide-content { padding-left: 1.25rem; }
            .ws-guide-desc { display: none; }
            .hv-scope-layer {
                --scope-width: 100% !important;
                grid-template-columns: 1fr;
            }
            .hv-scope-layer-side {
                flex-direction: row;
                justify-content: flex-start;
            }
            .hv-scope-layer-tag {
                writing-mode: horizontal-tb;
                transform: none;
            }
            .hv-scope-list { grid-template-columns: 1fr; }
            .hv-scope-panels { grid-template-columns: 1fr; }
            .hv-scope-layer-head { text-align: left; }
        }
        @media (max-width: 480px) {
            .ws-guide-trigger { padding: 0.9rem 1rem; }
            .ws-guide-icon { width: 2rem; height: 2rem; }
            .ws-guide-icon svg { width: 1rem; height: 1rem; }
        }

        /* === Erweiterte Lexikon-Viz (Flow, WEG, Vote, neue Typen) === */

        /* Hausgeld-Flow erweitert */
        .lv-flow-presets {
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
            margin-bottom: 0.75rem;
        }
        .lv-flow-preset {
            padding: 0.35rem 0.65rem;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.03);
            color: rgba(255,255,255,0.72);
            font-family: inherit;
            font-size: 0.68rem;
            font-weight: 700;
            cursor: pointer;
            transition: border-color 0.2s ease, background 0.2s ease;
        }
        .lv-flow-preset:hover,
        .lv-flow-preset.is-active {
            border-color: rgba(255,0,77,0.35);
            background: rgba(255,0,77,0.08);
            color: #fff;
        }
        .lv-flow-total-card {
            margin: 0.75rem 0;
            padding: 0.85rem 1rem;
            border-radius: 12px;
            background: rgba(255,0,77,0.06);
            border: 1px solid rgba(255,0,77,0.16);
            text-align: center;
        }
        .lv-flow-total-kicker {
            display: block;
            font-size: 0.62rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(255,255,255,0.45);
            margin-bottom: 0.25rem;
        }
        .lv-flow-total-amount {
            display: block;
            font-size: 1.65rem;
            font-weight: 900;
            color: var(--accent);
            letter-spacing: -0.03em;
            line-height: 1.1;
        }
        .lv-flow-total-card .lv-flow-yearly {
            margin: 0.35rem 0 0;
            font-size: 0.68rem;
        }
        .lv-flow-seg-meta {
            display: block;
            width: 100%;
            font-size: 0.58rem;
            font-weight: 600;
            color: rgba(255,255,255,0.38);
        }
        .lv-flow-seg--flat {
            border-style: dashed;
        }
        .lv-flow-bar-seg--verwaltung { background: rgba(255,255,255,0.35); }
        .lex-viz--flow .lv-flow-stack {
            display: flex;
            flex-direction: column;
            gap: 0.45rem;
        }
        .lv-flow-item {
            display: flex;
            flex-direction: column;
        }
        .lv-flow-item .lv-flow-seg {
            width: 100%;
        }
        .lv-flow-item.is-open .lv-flow-seg {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }
        .lv-flow-item--betrieb.is-open .lv-flow-seg { border-bottom-color: rgba(96,165,250,0.12); }
        .lv-flow-item--ruecklage.is-open .lv-flow-seg { border-bottom-color: rgba(74,222,128,0.1); }
        .lv-flow-item--verwaltung.is-open .lv-flow-seg { border-bottom-color: rgba(255,255,255,0.06); }
        .lv-flow-panel {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.28s ease;
        }
        .lv-flow-item.is-open .lv-flow-panel {
            grid-template-rows: 1fr;
        }
        .lv-flow-panel[hidden] {
            display: none !important;
        }
        .lv-flow-panel[aria-hidden="true"] {
            pointer-events: none;
        }
        .lv-flow-panel-inner {
            overflow: hidden;
            min-height: 0;
        }
        .lv-flow-item.is-open .lv-flow-panel-inner {
            padding: 0.65rem 0.85rem 0.75rem;
            border: 1px solid rgba(255,255,255,0.08);
            border-top: none;
            border-radius: 0 0 12px 12px;
            background: rgba(255,255,255,0.02);
        }
        .lv-flow-item--betrieb.is-open .lv-flow-panel-inner {
            border-color: rgba(96,165,250,0.22);
            background: rgba(96,165,250,0.05);
        }
        .lv-flow-item--ruecklage.is-open .lv-flow-panel-inner {
            border-color: rgba(74,222,128,0.18);
            background: rgba(74,222,128,0.04);
        }
        .lv-flow-item--verwaltung.is-open .lv-flow-panel-inner {
            border-color: rgba(251,191,36,0.2);
            background: rgba(251,191,36,0.04);
        }
        .lv-flow-panel-text {
            margin: 0;
            font-size: 0.76rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.68);
        }
        .lv-flow-item.is-open .lv-flow-panel .lv-flow-examples {
            margin-top: 0.55rem;
        }
        .lex-viz--flow .lv-flow-seg {
            display: grid;
            grid-template-columns: 1fr auto auto;
            grid-template-rows: auto auto;
            column-gap: 0.55rem;
            row-gap: 0.22rem;
            align-items: center;
            min-height: auto;
            padding: 0.7rem 0.75rem;
        }
        .lex-viz--flow .lv-flow-seg-body,
        .lex-viz--flow .lv-flow-seg-row {
            display: contents;
        }
        .lex-viz--flow .lv-flow-seg-label {
            grid-column: 1;
            grid-row: 1;
            align-self: center;
            min-width: 0;
        }
        .lex-viz--flow .lv-flow-seg-val {
            grid-column: 2;
            grid-row: 1;
            align-self: center;
            font-size: 0.82rem;
            line-height: 1.5rem;
            flex-shrink: 0;
        }
        .lex-viz--flow .lv-flow-seg-chevron {
            grid-column: 3;
            grid-row: 1;
            align-self: center;
            margin-top: 0;
            width: 1.5rem;
            height: 1.5rem;
        }
        .lex-viz--flow .lv-flow-seg-meta {
            grid-column: 1 / -1;
            grid-row: 2;
            margin-top: 0;
        }
        .lv-flow-seg-cta {
            color: rgba(255,0,77,0.75);
            font-weight: 700;
        }
        .lv-flow-seg.is-active .lv-flow-seg-cta {
            color: var(--accent);
        }
        .lv-flow-seg-chevron {
            flex-shrink: 0;
            width: 1.5rem;
            height: 1.5rem;
            margin-top: 0.1rem;
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
            transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
        }
        .lv-flow-seg-chevron::before {
            content: '';
            position: absolute;
            inset: 0;
            margin: auto;
            width: 0.35rem;
            height: 0.35rem;
            border-right: 2px solid rgba(255,255,255,0.55);
            border-bottom: 2px solid rgba(255,255,255,0.55);
            transform: rotate(-45deg) translate(-1px, -1px);
        }
        .lv-flow-seg:hover .lv-flow-seg-chevron,
        .lv-flow-seg.is-active .lv-flow-seg-chevron {
            background: rgba(255,0,77,0.1);
            border-color: rgba(255,0,77,0.28);
        }
        .lv-flow-seg.is-active .lv-flow-seg-chevron {
            transform: rotate(90deg);
        }
        .lv-flow-seg.is-active .lv-flow-seg-chevron::before {
            border-color: var(--accent);
        }
        .lv-flow-seg--betrieb.is-active {
            border-color: rgba(96,165,250,0.45);
            box-shadow: 0 0 0 1px rgba(96,165,250,0.12) inset;
        }
        .lv-flow-seg--ruecklage.is-active {
            border-color: rgba(74,222,128,0.42);
            box-shadow: 0 0 0 1px rgba(74,222,128,0.1) inset;
        }
        .lv-flow-seg--verwaltung.is-active {
            border-color: rgba(251,191,36,0.38);
            box-shadow: 0 0 0 1px rgba(251,191,36,0.1) inset;
        }
        .lv-flow-detail-kicker {
            display: block;
            font-size: 0.58rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: rgba(255,255,255,0.38);
            margin-bottom: 0.35rem;
        }
        .lex-viz--flow .lv-flow-detail {
            position: relative;
            margin-top: 0.15rem;
            padding-top: 0.85rem;
            border-radius: 12px;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .lex-viz--flow .lv-flow-detail::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            border-radius: 12px 12px 0 0;
            background: var(--accent);
            opacity: 0.85;
        }
        .lex-viz--flow .lv-flow-detail[data-flow-detail="betrieb"]::before { background: #60a5fa; }
        .lex-viz--flow .lv-flow-detail[data-flow-detail="ruecklage"]::before { background: #4ade80; }
        .lex-viz--flow .lv-flow-detail[data-flow-detail="verwaltung"]::before { background: #fbbf24; }
        .lex-viz--flow .lv-flow-detail.is-flow-detail-pulse {
            box-shadow: 0 0 0 1px rgba(255,0,77,0.15), 0 8px 24px rgba(0,0,0,0.18);
        }
        .lv-flow-flat-badge {
            display: inline-block;
            margin-left: 0.25rem;
            padding: 0.1rem 0.35rem;
            border-radius: 999px;
            font-size: 0.52rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            background: rgba(251,191,36,0.12);
            border: 1px solid rgba(251,191,36,0.28);
            color: #fbbf24;
            vertical-align: middle;
        }
        .lv-flow-yearly {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.48);
            margin: 0.35rem 0 0.65rem;
        }
        .lv-flow-bar {
            display: flex;
            height: 0.45rem;
            border-radius: 999px;
            overflow: hidden;
            margin-bottom: 0.65rem;
            background: rgba(255,255,255,0.06);
        }
        .lv-flow-bar-seg { transition: flex-basis 0.25s ease; min-width: 2px; }
        .lv-flow-bar-seg--betrieb { background: rgba(96,165,250,0.75); }
        .lv-flow-bar-seg--ruecklage { background: rgba(74,222,128,0.75); }
        .lv-flow-bar-seg--verwaltung { background: rgba(255,255,255,0.35); }
        .lv-flow-examples {
            margin: 0.55rem 0 0;
            padding-left: 1.1rem;
            font-size: 0.74rem;
            color: rgba(255,255,255,0.58);
            line-height: 1.55;
        }
        .lv-flow-examples li { margin-bottom: 0.15rem; }

        /* WEG erweitert */
        .lv-weg-owner-meta {
            display: flex;
            flex-direction: column;
            gap: 0.05rem;
            min-width: 0;
        }
        .lv-weg-owner-m2 {
            font-size: 0.55rem;
            color: rgba(255,255,255,0.42);
            font-weight: 600;
        }
        .lv-weg-scenario {
            margin-top: 0.85rem;
            padding-top: 0.85rem;
            border-top: 1px solid rgba(255,255,255,0.07);
        }
        .lv-weg-share-card {
            margin-top: 0.75rem;
            padding: 0.75rem 0.85rem;
            border-radius: 12px;
            background: rgba(255,0,77,0.06);
            border: 1px solid rgba(255,0,77,0.16);
        }
        .lv-weg-share-kicker {
            display: block;
            font-size: 0.62rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(255,255,255,0.45);
            margin-bottom: 0.25rem;
        }
        .lv-weg-share-amount {
            display: block;
            font-size: 1.35rem;
            font-weight: 900;
            color: var(--accent);
            letter-spacing: -0.03em;
        }
        .lv-weg-share-pct {
            display: block;
            font-size: 0.72rem;
            color: rgba(255,255,255,0.55);
            margin-top: 0.15rem;
        }

        /* Vote erweitert */
        .lv-vote-toolbar,
        .lv-vote-presets {
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
            margin-bottom: 0.65rem;
        }
        .lv-vote-preset {
            padding: 0.35rem 0.6rem;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.03);
            color: rgba(255,255,255,0.7);
            font-family: inherit;
            font-size: 0.65rem;
            font-weight: 700;
            cursor: pointer;
        }
        .lv-vote-preset:hover { border-color: rgba(255,0,77,0.3); }
        .lv-vote-bars {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            margin-bottom: 0.55rem;
        }
        .lv-vote-bar {
            height: 0.35rem;
            border-radius: 999px;
            background: rgba(255,255,255,0.06);
            overflow: hidden;
        }
        .lv-vote-bar-fill {
            display: block;
            height: 100%;
            width: 0;
            border-radius: inherit;
            transition: width 0.3s ease;
        }
        .lv-vote-bar--yes .lv-vote-bar-fill { background: #4ade80; }
        .lv-vote-bar--no .lv-vote-bar-fill { background: #f87171; }
        .lv-vote-bar--skip .lv-vote-bar-fill { background: #fbbf24; }
        .lv-vote-seat.is-absent { opacity: 0.72; border-style: dashed; }
        .lv-vote-proxy-badge {
            display: block;
            font-size: 0.48rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: #fbbf24;
            margin-bottom: 0.2rem;
        }
        .lv-vote-proxy-intro {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.58);
            line-height: 1.55;
            margin-bottom: 0.65rem;
        }
        .lv-vote-umlauf-head { margin-bottom: 0.75rem; }
        .lv-vote-umlauf-topic {
            display: block;
            font-size: 0.72rem;
            font-weight: 700;
            color: rgba(255,255,255,0.78);
            margin-bottom: 0.5rem;
        }
        .lv-vote-deadline-label {
            font-size: 0.62rem;
            color: rgba(255,255,255,0.45);
        }
        .lv-vote-deadline-bar {
            height: 0.35rem;
            border-radius: 999px;
            background: rgba(255,255,255,0.08);
            margin: 0.35rem 0 0.5rem;
            overflow: hidden;
        }
        .lv-vote-deadline-fill {
            display: block;
            height: 100%;
            width: 7%;
            background: linear-gradient(90deg, #fbbf24, #ff004d);
            border-radius: inherit;
            transition: width 0.3s ease;
        }
        .lv-vote-next-day {
            padding: 0.4rem 0.75rem;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.12);
            background: rgba(255,255,255,0.04);
            color: rgba(255,255,255,0.78);
            font-family: inherit;
            font-size: 0.68rem;
            font-weight: 700;
            cursor: pointer;
        }

        /* Jahresabrechnung / Sonderumlage shared */
        .lv-settle-flow {
            list-style: none;
            margin: 0 0 0.85rem;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.45rem;
        }
        .lv-settle-flow-step {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            padding: 0.6rem 0.55rem;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.07);
            background: rgba(255,255,255,0.02);
            font-size: 0.58rem;
            line-height: 1.45;
            color: rgba(255,255,255,0.48);
        }
        .lv-settle-flow-step strong {
            font-size: 0.65rem;
            color: rgba(255,255,255,0.82);
        }
        .lv-settle-flow-step--result {
            border-color: rgba(255,0,77,0.18);
            background: rgba(255,0,77,0.04);
        }
        .lv-settle-flow-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.15rem;
            height: 1.15rem;
            border-radius: 999px;
            background: rgba(255,255,255,0.06);
            font-size: 0.58rem;
            font-weight: 800;
            color: rgba(255,255,255,0.55);
            margin-bottom: 0.1rem;
        }
        .lv-settle-flow-step--result .lv-settle-flow-num {
            background: rgba(255,0,77,0.15);
            color: var(--accent);
        }
        .lv-settle-wege-hint {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            padding: 0.65rem 0.75rem;
            margin-bottom: 0.85rem;
            border-radius: 10px;
            border: 1px solid rgba(96,165,250,0.16);
            background: rgba(96,165,250,0.06);
            font-size: 0.68rem;
            color: rgba(255,255,255,0.58);
        }
        .lv-settle-wege-kicker {
            font-size: 0.58rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(255,255,255,0.38);
        }
        .lv-settle-wege-total strong,
        .lv-settle-wege-share strong { color: rgba(255,255,255,0.88); }
        .lv-settle-section {
            padding-top: 0.75rem;
            margin-top: 0.75rem;
            border-top: 1px solid rgba(255,255,255,0.07);
        }
        .lv-settle-section:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
        .lv-settle-section-title {
            margin: 0 0 0.55rem;
            font-size: 0.72rem;
            font-weight: 800;
            color: rgba(255,255,255,0.78);
            letter-spacing: -0.01em;
        }
        .lv-settle-positions {
            list-style: none;
            margin: 0 0 0.55rem;
            padding: 0;
        }
        .lv-settle-pos {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.65rem;
            padding: 0.45rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            font-size: 0.72rem;
        }
        .lv-settle-pos-main { display: flex; flex-direction: column; gap: 0.08rem; min-width: 0; }
        .lv-settle-pos-label { font-weight: 700; color: rgba(255,255,255,0.78); }
        .lv-settle-pos-hint { font-size: 0.58rem; color: rgba(255,255,255,0.38); }
        .lv-settle-pos-amt { font-weight: 800; color: rgba(255,255,255,0.72); white-space: nowrap; }
        .lv-settle-pos-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.65rem;
            padding: 0.55rem 0.65rem;
            margin-bottom: 0.65rem;
            border-radius: 10px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            font-size: 0.72rem;
            font-weight: 700;
            color: rgba(255,255,255,0.72);
        }
        .lv-settle-cost-total { font-size: 0.88rem; font-weight: 900; color: #60a5fa; }
        .lv-settle-cost-slider-wrap { margin-bottom: 0; }
        .lv-settle-paid-line {
            margin: 0.45rem 0 0;
            font-size: 0.72rem;
            color: rgba(255,255,255,0.55);
        }
        .lv-settle-paid-line strong { color: rgba(255,255,255,0.88); font-weight: 800; }
        .lv-settle-compare {
            margin-top: 0.65rem;
            padding: 0.75rem 0.85rem;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
        }
        .lv-settle-compare-row {
            display: grid;
            grid-template-columns: 3.5rem 1fr auto;
            gap: 0.55rem;
            align-items: center;
        }
        .lv-settle-compare-label {
            font-size: 0.62rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: rgba(255,255,255,0.42);
        }
        .lv-settle-compare-track {
            height: 0.4rem;
            border-radius: 999px;
            background: rgba(255,255,255,0.06);
            overflow: hidden;
        }
        .lv-settle-compare-fill {
            display: block;
            height: 100%;
            border-radius: inherit;
            transition: width 0.3s ease;
        }
        .lv-settle-compare-fill--paid { background: #4ade80; }
        .lv-settle-compare-fill--cost { background: #60a5fa; }
        .lv-settle-compare-val {
            font-size: 0.68rem;
            font-weight: 800;
            color: rgba(255,255,255,0.72);
            white-space: nowrap;
        }
        .lv-settle-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.65rem;
            margin-bottom: 0.65rem;
        }
        .lv-settle-field { display: flex; flex-direction: column; gap: 0.35rem; }
        .lv-settle-presets {
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
        }
        .lv-settle-preset {
            padding: 0.35rem 0.65rem;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.03);
            color: rgba(255,255,255,0.72);
            font-family: inherit;
            font-size: 0.68rem;
            font-weight: 700;
            cursor: pointer;
        }
        .lv-settle-preset:hover { border-color: rgba(255,0,77,0.3); }
        .lv-settle-preset.is-active {
            border-color: rgba(255,0,77,0.35);
            background: rgba(255,0,77,0.08);
            color: #fff;
        }
        .lv-settle-result {
            margin-top: 0.75rem;
            text-align: center;
        }
        .lv-settle-result-kicker {
            display: block;
            font-size: 0.62rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(255,255,255,0.42);
            margin-bottom: 0.35rem;
        }
        .lv-settle-result-amount {
            display: block;
            font-size: 1.6rem;
            font-weight: 900;
            letter-spacing: -0.03em;
            color: #4ade80;
        }
        .lv-settle-result.is-nachzahlung .lv-settle-result-amount { color: #f87171; }
        .lv-settle-result.is-even .lv-settle-result-amount { color: rgba(255,255,255,0.85); }
        .lv-settle-result-label {
            display: block;
            font-size: 0.78rem;
            font-weight: 700;
            color: rgba(255,255,255,0.72);
            margin-top: 0.25rem;
        }
        .lv-settle-formula {
            font-size: 0.68rem;
            color: rgba(255,255,255,0.42);
            margin: 0.55rem 0 0;
        }
        .lv-levy-breakdown { margin-top: 0.75rem; }
        .lv-levy-flow {
            list-style: none;
            margin: 0 0 0.85rem;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.45rem;
        }
        .lv-levy-flow-step {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            padding: 0.6rem 0.55rem;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.07);
            background: rgba(255,255,255,0.02);
            font-size: 0.58rem;
            line-height: 1.45;
            color: rgba(255,255,255,0.48);
        }
        .lv-levy-flow-step strong {
            font-size: 0.65rem;
            color: rgba(255,255,255,0.82);
        }
        .lv-levy-flow-step--result {
            border-color: rgba(255,0,77,0.18);
            background: rgba(255,0,77,0.04);
        }
        .lv-levy-flow-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.15rem;
            height: 1.15rem;
            border-radius: 999px;
            background: rgba(255,255,255,0.06);
            font-size: 0.58rem;
            font-weight: 800;
            color: rgba(255,255,255,0.55);
            margin-bottom: 0.1rem;
        }
        .lv-levy-flow-step--result .lv-levy-flow-num {
            background: rgba(255,0,77,0.15);
            color: var(--accent);
        }
        .lv-levy-topic {
            margin: 0 0 0.75rem;
            padding: 0.55rem 0.65rem;
            border-radius: 10px;
            border: 1px solid rgba(251,191,36,0.2);
            background: rgba(251,191,36,0.06);
            font-size: 0.72rem;
            font-weight: 700;
            color: rgba(255,255,255,0.78);
        }
        .lv-levy-mode-section { margin-top: 0.85rem; }
        .lv-levy-mode-segment { margin-top: 0.35rem; }
        .lv-levy-mea-explainer {
            margin: 0.65rem 0;
            padding: 0.65rem 0.75rem;
            border-radius: 10px;
            border: 1px solid rgba(96,165,250,0.18);
            background: rgba(96,165,250,0.06);
            font-size: 0.68rem;
            line-height: 1.55;
            color: rgba(255,255,255,0.58);
        }
        .lv-levy-mea-explainer strong {
            display: block;
            font-size: 0.72rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 0.25rem;
        }
        .lv-levy-mea-explainer p { margin: 0 0 0.35rem; }
        .lv-levy-mea-explainer p:last-child { margin-bottom: 0; }
        .lv-levy-mea-explainer--flaeche {
            border-color: rgba(74,222,128,0.18);
            background: rgba(74,222,128,0.05);
        }
        .lv-levy-key-hint {
            margin: 0.35rem 0 0;
            font-size: 0.68rem;
            color: rgba(255,255,255,0.48);
        }
        .lv-levy-key-hint strong { color: rgba(255,255,255,0.78); }
        .lv-levy-formula {
            font-size: 0.68rem;
            color: rgba(255,255,255,0.52);
            margin: 0.45rem 0 0.65rem;
            padding: 0.5rem 0.65rem;
            border-radius: 8px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
        }
        .lv-levy-units-wrap {
            padding-top: 0.65rem;
            border-top: 1px solid rgba(255,255,255,0.06);
        }
        .lv-levy-units-kicker {
            display: block;
            font-size: 0.58rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(255,255,255,0.38);
            margin-bottom: 0.45rem;
        }
        .lv-levy-units {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }
        .lv-levy-unit {
            display: grid;
            grid-template-columns: 1fr auto auto;
            gap: 0.55rem;
            align-items: center;
            padding: 0.45rem 0.55rem;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.06);
            background: rgba(255,255,255,0.02);
            font-size: 0.68rem;
        }
        .lv-levy-unit.is-yours {
            border-color: rgba(255,0,77,0.28);
            background: rgba(255,0,77,0.06);
        }
        .lv-levy-unit-name { font-weight: 700; color: rgba(255,255,255,0.78); }
        .lv-levy-unit-key { color: rgba(255,255,255,0.42); white-space: nowrap; }
        .lv-levy-unit-amt { font-weight: 800; color: rgba(255,255,255,0.82); white-space: nowrap; }
        .lv-levy-unit.is-yours .lv-levy-unit-amt { color: var(--accent); }
        .lv-levy-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.75rem;
            padding: 0.55rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            font-size: 0.78rem;
            color: rgba(255,255,255,0.62);
        }
        .lv-levy-row strong { color: #fff; font-weight: 800; }
        .lv-levy-row--accent strong { color: var(--accent); }
        .lv-levy-row--you {
            border-bottom: none;
            padding-top: 0.75rem;
            font-size: 0.85rem;
        }
        .lv-levy-row--you strong { font-size: 1.1rem; color: var(--accent); }
        .lv-levy-hint {
            font-size: 0.68rem;
            color: rgba(255,255,255,0.42);
            line-height: 1.55;
            margin: 0.65rem 0 0;
        }

        /* Heizkosten */
        .lv-heat-read-flow {
            list-style: none;
            margin: 0 0 0.85rem;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.45rem;
        }
        .lv-heat-read-step {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            padding: 0.6rem 0.55rem;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.07);
            background: rgba(255,255,255,0.02);
            font-size: 0.58rem;
            line-height: 1.45;
            color: rgba(255,255,255,0.48);
        }
        .lv-heat-read-step strong {
            font-size: 0.65rem;
            color: rgba(255,255,255,0.82);
        }
        .lv-heat-read-step--result {
            border-color: rgba(255,0,77,0.18);
            background: rgba(255,0,77,0.04);
        }
        .lv-heat-read-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.15rem;
            height: 1.15rem;
            border-radius: 999px;
            background: rgba(255,255,255,0.06);
            font-size: 0.58rem;
            font-weight: 800;
            color: rgba(255,255,255,0.55);
            margin-bottom: 0.1rem;
        }
        .lv-heat-read-step--result .lv-heat-read-num {
            background: rgba(255,0,77,0.15);
            color: var(--accent);
        }
        .lv-heat-doc {
            margin-bottom: 0.75rem;
            padding: 0 !important;
            overflow: hidden;
        }
        .lv-heat-doc-head {
            padding: 0.75rem 0.85rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            background: rgba(251,146,60,0.06);
        }
        .lv-heat-doc-kicker {
            display: block;
            font-size: 0.58rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(255,255,255,0.38);
            margin-bottom: 0.2rem;
        }
        .lv-heat-doc-title {
            display: block;
            font-size: 0.88rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 0.15rem;
        }
        .lv-heat-doc-meta {
            display: block;
            font-size: 0.65rem;
            color: rgba(255,255,255,0.48);
        }
        .lv-heat-doc-rows {
            margin: 0;
            padding: 0.5rem 0.85rem 0.75rem;
        }
        .lv-heat-doc-row {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 0.65rem;
            align-items: baseline;
            padding: 0.45rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            font-size: 0.72rem;
        }
        .lv-heat-doc-row--sub {
            padding-left: 0.85rem;
            font-size: 0.65rem;
        }
        .lv-heat-doc-row--sub dt { color: rgba(255,255,255,0.45); }
        .lv-heat-doc-row--total {
            border-bottom: none;
            padding-top: 0.65rem;
            margin-top: 0.15rem;
            border-top: 1px solid rgba(255,0,77,0.2);
        }
        .lv-heat-doc-row dt {
            margin: 0;
            color: rgba(255,255,255,0.62);
        }
        .lv-heat-doc-row dd {
            margin: 0;
            font-weight: 800;
            color: rgba(255,255,255,0.88);
            text-align: right;
        }
        .lv-heat-doc-row--total dd { color: var(--accent); font-size: 0.95rem; }
        .lv-heat-doc-step {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1rem;
            height: 1rem;
            border-radius: 999px;
            background: rgba(255,255,255,0.08);
            font-size: 0.55rem;
            font-weight: 800;
            color: rgba(255,255,255,0.55);
            margin-right: 0.25rem;
            vertical-align: middle;
        }
        .lv-heat-note {
            margin-bottom: 0.85rem;
            padding: 0.65rem 0.75rem;
            border-radius: 10px;
            border: 1px solid rgba(96,165,250,0.18);
            background: rgba(96,165,250,0.06);
            font-size: 0.68rem;
            line-height: 1.55;
            color: rgba(255,255,255,0.58);
        }
        .lv-heat-note strong {
            display: block;
            font-size: 0.72rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 0.25rem;
        }
        .lv-heat-note p { margin: 0; }
        .lv-heat-flow {
            list-style: none;
            margin: 0 0 0.85rem;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.45rem;
        }
        .lv-heat-flow-step {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            padding: 0.6rem 0.55rem;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.07);
            background: rgba(255,255,255,0.02);
            font-size: 0.58rem;
            line-height: 1.45;
            color: rgba(255,255,255,0.48);
        }
        .lv-heat-flow-step strong {
            font-size: 0.65rem;
            color: rgba(255,255,255,0.82);
        }
        .lv-heat-flow-step--result {
            border-color: rgba(255,0,77,0.18);
            background: rgba(255,0,77,0.04);
        }
        .lv-heat-flow-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.15rem;
            height: 1.15rem;
            border-radius: 999px;
            background: rgba(255,255,255,0.06);
            font-size: 0.58rem;
            font-weight: 800;
            color: rgba(255,255,255,0.55);
            margin-bottom: 0.1rem;
        }
        .lv-heat-flow-step--result .lv-heat-flow-num {
            background: rgba(255,0,77,0.15);
            color: var(--accent);
        }
        .lv-heat-split-section { margin-top: 0.75rem; }
        .lv-heat-presets {
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
            margin: 0.35rem 0 0.55rem;
        }
        .lv-heat-preset {
            padding: 0.35rem 0.65rem;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.03);
            color: rgba(255,255,255,0.72);
            font-family: inherit;
            font-size: 0.65rem;
            font-weight: 700;
            cursor: pointer;
        }
        .lv-heat-preset.is-active {
            border-color: rgba(255,0,77,0.35);
            background: rgba(255,0,77,0.08);
            color: #fff;
        }
        .lv-heat-pools {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
            margin-top: 0.75rem;
        }
        .lv-heat-pool {
            padding: 0.65rem 0.75rem;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.02);
        }
        .lv-heat-pool--verbrauch { border-color: rgba(251,146,60,0.22); background: rgba(251,146,60,0.06); }
        .lv-heat-pool--grund { border-color: rgba(96,165,250,0.22); background: rgba(96,165,250,0.06); }
        .lv-heat-pool-label {
            display: block;
            font-size: 0.58rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: rgba(255,255,255,0.42);
            margin-bottom: 0.2rem;
        }
        .lv-heat-pool-val {
            display: block;
            font-size: 1.05rem;
            font-weight: 900;
            color: #fff;
        }
        .lv-heat-pool-sub {
            display: block;
            font-size: 0.58rem;
            color: rgba(255,255,255,0.45);
            margin-top: 0.15rem;
            line-height: 1.4;
        }
        .lv-heat-section-title {
            margin: 0 0 0.65rem;
            font-size: 0.72rem;
            font-weight: 800;
            color: rgba(255,255,255,0.78);
        }
        .lv-heat-split-bar {
            display: flex;
            height: 0.5rem;
            border-radius: 999px;
            overflow: hidden;
            margin: 0.65rem 0;
            background: rgba(255,255,255,0.06);
        }
        .lv-heat-bar { transition: flex-basis 0.25s ease; min-width: 2px; }
        .lv-heat-bar--verbrauch { background: #fb923c; }
        .lv-heat-bar--grund { background: #60a5fa; }
        .lv-heat-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.5rem;
        }
        .lv-heat-card {
            padding: 0.65rem 0.75rem;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.02);
        }
        .lv-heat-card-label {
            display: block;
            font-size: 0.62rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: rgba(255,255,255,0.42);
            margin-bottom: 0.25rem;
        }
        .lv-heat-card--verbrauch { border-color: rgba(251,146,60,0.2); }
        .lv-heat-card--grund { border-color: rgba(96,165,250,0.2); }
        .lv-heat-card-val {
            display: block;
            font-size: 1rem;
            font-weight: 900;
            color: #fff;
        }
        .lv-heat-card-formula {
            font-size: 0.58rem;
            color: rgba(255,255,255,0.48);
            line-height: 1.45;
            margin: 0.35rem 0 0.45rem;
            padding: 0.4rem 0.5rem;
            border-radius: 6px;
            background: rgba(255,255,255,0.03);
        }
        .lv-heat-input-row {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            font-size: 0.62rem;
            color: rgba(255,255,255,0.52);
            margin-bottom: 0.35rem;
        }
        .lv-heat-card-meta {
            display: block;
            font-size: 0.58rem;
            color: rgba(255,255,255,0.42);
        }
        .lv-heat-card-meta strong { color: rgba(255,255,255,0.68); }
        .lv-heat-card-sub {
            display: block;
            font-size: 0.62rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.45;
            margin-top: 0.35rem;
        }
        .lv-heat-card-sub .lex-viz-input {
            width: 4.5rem;
            min-height: 1.75rem;
            padding: 0.15rem 0.35rem;
            font-size: 0.72rem;
            display: inline-block;
            vertical-align: middle;
        }
        .lv-heat-result {
            margin-top: 0.75rem;
            text-align: center;
        }
        .lv-heat-result-kicker {
            display: block;
            font-size: 0.62rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(255,255,255,0.42);
        }
        .lv-heat-result-amount {
            display: block;
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--accent);
            margin: 0.25rem 0;
        }
        .lv-heat-formula {
            font-size: 0.68rem;
            color: rgba(255,255,255,0.42);
            margin: 0;
        }

        /* Shared LumenOS-Mock-Shell (Beleg, Plan, Rechner) */
        .lv-lumen-shell,
        .lv-beleg-lumen,
        .lv-plan-lumen {
            border-color: rgba(245, 158, 11, 0.22);
            background: linear-gradient(165deg, rgba(245, 158, 11, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.06) inset;
        }
        .lv-lumen-head,
        .lv-beleg-lumen-head,
        .lv-plan-lumen-head {
            margin-bottom: 0.85rem;
        }
        .lv-lumen-tag,
        .lv-beleg-lumen-tag,
        .lv-plan-lumen-tag {
            display: inline-block;
            margin-bottom: 0.35rem;
            padding: 0.2rem 0.5rem;
            border-radius: 999px;
            font-size: 0.52rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #fcd34d;
            background: rgba(245, 158, 11, 0.12);
            border: 1px solid rgba(245, 158, 11, 0.28);
        }
        .lv-lumen-title,
        .lv-beleg-lumen-title,
        .lv-plan-lumen-title {
            display: block;
            font-size: 0.88rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.94);
            letter-spacing: -0.02em;
            margin: 0 0 0.25rem;
        }
        .lv-lumen-desc,
        .lv-beleg-lumen-desc,
        .lv-plan-lumen-desc {
            display: block;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.48);
            line-height: 1.55;
        }
        .lv-lumen-mock,
        .lv-beleg-lumen-mock,
        .lv-plan-lumen-mock {
            display: flex;
            flex-direction: column;
            border-radius: 14px;
            border: 1px solid rgba(245, 158, 11, 0.22);
            background: rgba(0, 0, 0, 0.32);
            overflow: hidden;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
            margin-bottom: 0.85rem;
        }
        .lv-lumen-shell > .lv-lumen-mock:last-child,
        .lv-beleg-lumen > .lv-beleg-lumen-mock:last-child,
        .lv-plan-lumen > .lv-plan-lumen-mock:last-child {
            margin-bottom: 0;
        }
        .lv-lumen-chrome,
        .lv-beleg-lumen-chrome,
        .lv-plan-lumen-chrome {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.45rem 0.65rem;
            background: rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .lv-lumen-dot,
        .lv-beleg-lumen-dot,
        .lv-plan-lumen-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.16);
        }
        .lv-lumen-dot:first-child,
        .lv-beleg-lumen-dot:first-child,
        .lv-plan-lumen-dot:first-child { background: rgba(248, 113, 113, 0.65); }
        .lv-lumen-dot:nth-child(2),
        .lv-beleg-lumen-dot:nth-child(2),
        .lv-plan-lumen-dot:nth-child(2) { background: rgba(251, 191, 36, 0.65); }
        .lv-lumen-dot:nth-child(3),
        .lv-beleg-lumen-dot:nth-child(3),
        .lv-plan-lumen-dot:nth-child(3) { background: rgba(74, 222, 128, 0.55); }
        .lv-lumen-chrome em,
        .lv-beleg-lumen-chrome em,
        .lv-plan-lumen-chrome em {
            margin-left: 0.35rem;
            font-style: normal;
            font-size: 0.56rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.38);
            letter-spacing: 0.02em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .lv-lumen-body,
        .lv-beleg-lumen-body,
        .lv-plan-lumen-body {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            padding: 0.7rem 0.75rem 0.85rem;
        }
        .lv-lumen-shell .lex-viz-footnote {
            margin: 0.65rem 0 0;
            padding-top: 0.65rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.38);
            line-height: 1.55;
        }
        .lv-lumen-body .lex-viz-lumen-card:not(.lex-viz-lumen-card--flat) {
            border: 1px solid rgba(255, 255, 255, 0.07);
            background: rgba(255, 255, 255, 0.025);
            box-shadow: none;
        }
        .lv-lumen-body .lex-viz-lumen-card--accent {
            border-color: rgba(245, 158, 11, 0.2);
            background: rgba(245, 158, 11, 0.06);
        }
        .lv-lumen-shell .lex-viz-segment-btn.is-active {
            background: rgba(245, 158, 11, 0.12);
            border-color: rgba(245, 158, 11, 0.32);
            color: #fff;
            box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.08) inset;
        }
        .lv-lumen-shell .lex-viz-slider {
            accent-color: #fbbf24;
        }
        .lv-lumen-shell .lex-viz-slider-out {
            color: #fcd34d;
        }
        .lv-lumen-shell .lv-settle-result-amount,
        .lv-lumen-shell .lv-heat-result-amount,
        .lv-lumen-shell .lv-flow-total-amount,
        .lv-lumen-shell .lv-weg-share-amount,
        .lv-lumen-shell .lv-cost-total-out,
        .lv-lumen-shell .lv-cost-my-amount {
            color: #fcd34d;
        }

        /* Belegprüfung – LumenOS-Mock (wie Kundenportal pf-beleg-*) */
        .lex-viz--beleg .lv-beleg-lumen {
            border-color: rgba(245, 158, 11, 0.22);
            background: linear-gradient(165deg, rgba(245, 158, 11, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.06) inset;
        }
        .lv-beleg-lumen-head {
            margin-bottom: 0.85rem;
        }
        .lv-beleg-lumen-tag {
            display: inline-block;
            margin-bottom: 0.35rem;
            padding: 0.2rem 0.5rem;
            border-radius: 999px;
            font-size: 0.52rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #fcd34d;
            background: rgba(245, 158, 11, 0.12);
            border: 1px solid rgba(245, 158, 11, 0.28);
        }
        .lv-beleg-lumen-title {
            display: block;
            font-size: 0.88rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.94);
            letter-spacing: -0.02em;
            margin: 0 0 0.25rem;
        }
        .lv-beleg-lumen-desc {
            display: block;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.48);
            line-height: 1.55;
        }
        .lv-beleg-lumen-mock {
            display: flex;
            flex-direction: column;
            border-radius: 14px;
            border: 1px solid rgba(245, 158, 11, 0.22);
            background: rgba(0, 0, 0, 0.32);
            overflow: hidden;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
            margin-bottom: 0.85rem;
        }
        .lv-beleg-lumen-chrome {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.45rem 0.65rem;
            background: rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .lv-beleg-lumen-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.16);
        }
        .lv-beleg-lumen-dot:first-child { background: rgba(248, 113, 113, 0.65); }
        .lv-beleg-lumen-dot:nth-child(2) { background: rgba(251, 191, 36, 0.65); }
        .lv-beleg-lumen-dot:nth-child(3) { background: rgba(74, 222, 128, 0.55); }
        .lv-beleg-lumen-chrome em {
            margin-left: 0.35rem;
            font-style: normal;
            font-size: 0.56rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.38);
            letter-spacing: 0.02em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .lv-beleg-lumen-body {
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            padding: 0.7rem 0.75rem 0.85rem;
        }
        .lv-beleg-lumen-kpis {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.35rem;
        }
        .lv-beleg-lumen-kpi {
            padding: 0.38rem 0.42rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .lv-beleg-lumen-kpi small {
            display: block;
            font-size: 0.48rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: rgba(255, 255, 255, 0.38);
            margin-bottom: 0.12rem;
        }
        .lv-beleg-lumen-kpi strong {
            font-size: 0.78rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.88);
        }
        .lv-beleg-lumen-kpi--hi {
            background: rgba(245, 158, 11, 0.12);
            border-color: rgba(245, 158, 11, 0.24);
        }
        .lv-beleg-lumen-kpi--hi strong { color: #fcd34d; }
        .lv-beleg-lumen-table {
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 10px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.18);
        }
        .lv-beleg-lumen-row {
            display: grid;
            grid-template-columns: 1fr auto auto;
            gap: 0.75rem;
            align-items: center;
            padding: 0.48rem 0.85rem;
            font-size: 0.72rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .lv-beleg-lumen-row:last-child { border-bottom: none; }
        .lv-beleg-lumen-row--head {
            background: rgba(255, 255, 255, 0.03);
            font-size: 0.58rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.28);
        }
        .lv-beleg-lumen-row--active {
            background: rgba(245, 158, 11, 0.06);
            transition: background 0.25s ease;
        }
        .lv-beleg-lumen-row--active.is-highlight {
            background: rgba(245, 158, 11, 0.12);
            box-shadow: inset 3px 0 0 #fbbf24;
        }
        .lv-beleg-lumen-row--open {
            cursor: pointer;
            transition: background 0.2s ease, box-shadow 0.2s ease;
        }
        .lv-beleg-lumen-row--open:hover {
            background: rgba(245, 158, 11, 0.1);
        }
        .lv-beleg-lumen-row--open:focus-visible {
            outline: 2px solid rgba(251, 191, 36, 0.45);
            outline-offset: -2px;
        }
        .lv-beleg-row-pos {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            min-width: 0;
        }
        .lv-beleg-row-name {
            color: rgba(255, 255, 255, 0.78);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .lv-beleg-row-pdf {
            display: inline-flex;
            align-items: center;
            gap: 0.2rem;
            flex-shrink: 0;
            padding: 0.12rem 0.35rem;
            border-radius: 4px;
            border: 1px solid rgba(245, 158, 11, 0.28);
            background: rgba(245, 158, 11, 0.1);
            color: #fcd34d;
            font-size: 0.52rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            line-height: 1;
        }
        .lv-beleg-row-amt {
            color: rgba(255, 255, 255, 0.55);
            font-weight: 600;
            white-space: nowrap;
        }
        .lv-beleg-lumen-row--muted { opacity: 0.55; }
        .lv-beleg-lumen-row:not(.lv-beleg-lumen-row--head) > span:first-child { color: rgba(255, 255, 255, 0.78); }
        .lv-beleg-lumen-row:not(.lv-beleg-lumen-row--head) > span:nth-child(2) { color: rgba(255, 255, 255, 0.55); font-weight: 600; }
        .lv-beleg-row-status {
            font-weight: 700;
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.45);
        }
        .lv-beleg-row-status.is-wip { color: #fbbf24; }
        .lv-beleg-row-status.is-ok { color: #4ade80; }
        .lv-beleg-row-status.is-ask { color: #fb923c; }
        .lv-beleg-lumen-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.45rem 0.85rem;
            font-size: 0.62rem;
            color: rgba(255, 255, 255, 0.38);
        }
        .lv-beleg-lumen-meta strong {
            color: rgba(255, 255, 255, 0.72);
            font-weight: 700;
        }
        .lv-beleg-open-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            margin-left: auto;
            padding: 0.32rem 0.55rem;
            border-radius: 8px;
            border: 1px solid rgba(245, 158, 11, 0.35);
            background: rgba(245, 158, 11, 0.12);
            color: #fcd34d;
            font-family: inherit;
            font-size: 0.58rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
        }
        .lv-beleg-open-btn:hover {
            background: rgba(245, 158, 11, 0.2);
            border-color: rgba(245, 158, 11, 0.5);
            transform: translateY(-1px);
        }
        .lv-beleg-pdf-modal {
            position: fixed;
            inset: 0;
            z-index: 10050;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .lv-beleg-pdf-modal[hidden] { display: none !important; }
        body.lv-beleg-pdf-open { overflow: hidden; }
        .lv-beleg-pdf-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.72);
            backdrop-filter: blur(4px);
        }
        .lv-beleg-pdf-dialog {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            width: min(680px, 100%);
            max-height: min(88vh, 920px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(23, 23, 23, 0.98);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
            overflow: hidden;
        }
        .lv-beleg-pdf-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .lv-beleg-pdf-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0;
            font-size: 0.82rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.92);
        }
        .lv-beleg-pdf-title svg { color: #fbbf24; flex-shrink: 0; }
        .lv-beleg-pdf-close {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            transition: background 0.2s ease, color 0.2s ease;
        }
        .lv-beleg-pdf-close:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }
        .lv-beleg-pdf-body {
            flex: 1;
            min-height: 0;
            overflow: auto;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.25);
        }
        .lv-beleg-invoice {
            max-width: 560px;
            margin: 0 auto;
            padding: 1.35rem 1.5rem 1.5rem;
            border-radius: 6px;
            background: #f8f8fa;
            color: #1a1a1f;
            font-size: 0.72rem;
            line-height: 1.5;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
        }
        .lv-beleg-invoice-head {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin-bottom: 1.25rem;
            padding-bottom: 0.85rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }
        .lv-beleg-invoice-from {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
        }
        .lv-beleg-invoice-from strong {
            font-size: 0.88rem;
            color: #111;
        }
        .lv-beleg-invoice-from span { color: rgba(0, 0, 0, 0.55); font-size: 0.65rem; }
        .lv-beleg-invoice-meta {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.2rem;
            font-size: 0.65rem;
            color: rgba(0, 0, 0, 0.55);
        }
        .lv-beleg-invoice-badge {
            display: inline-block;
            padding: 0.15rem 0.45rem;
            border-radius: 4px;
            background: #1a1a1f;
            color: #fff;
            font-size: 0.58rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .lv-beleg-invoice-to {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
            margin-bottom: 1rem;
        }
        .lv-beleg-invoice-to small {
            font-size: 0.58rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: rgba(0, 0, 0, 0.4);
        }
        .lv-beleg-invoice-to strong { font-size: 0.82rem; color: #111; }
        .lv-beleg-invoice-to span { color: rgba(0, 0, 0, 0.55); font-size: 0.65rem; }
        .lv-beleg-invoice-subject {
            margin: 0 0 0.85rem;
            font-size: 0.68rem;
            font-weight: 600;
            color: rgba(0, 0, 0, 0.72);
        }
        .lv-beleg-invoice-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 0.85rem;
            font-size: 0.65rem;
        }
        .lv-beleg-invoice-table th,
        .lv-beleg-invoice-table td {
            padding: 0.4rem 0.35rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.07);
            text-align: left;
        }
        .lv-beleg-invoice-table th {
            font-size: 0.58rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            color: rgba(0, 0, 0, 0.4);
        }
        .lv-beleg-invoice-table td:nth-child(n+2) { text-align: right; white-space: nowrap; }
        .lv-beleg-invoice-totals {
            margin: 0 0 1rem;
            padding-top: 0.35rem;
        }
        .lv-beleg-invoice-totals div {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.2rem 0;
            font-size: 0.65rem;
            color: rgba(0, 0, 0, 0.55);
        }
        .lv-beleg-invoice-totals dd { margin: 0; font-weight: 600; color: rgba(0, 0, 0, 0.72); }
        .lv-beleg-invoice-total {
            margin-top: 0.35rem;
            padding-top: 0.45rem;
            border-top: 2px solid rgba(0, 0, 0, 0.12);
            font-size: 0.75rem !important;
            color: #111 !important;
        }
        .lv-beleg-invoice-total dd {
            font-size: 0.88rem;
            font-weight: 800;
            color: #111 !important;
        }
        .lv-beleg-invoice-foot {
            padding-top: 0.65rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }
        .lv-beleg-invoice-foot p {
            margin: 0 0 0.25rem;
            font-size: 0.62rem;
            color: rgba(0, 0, 0, 0.45);
        }
        .lv-beleg-lumen-flow-label {
            margin: 0 0 0.65rem;
            font-size: 0.62rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(245, 158, 11, 0.75);
        }
        .lv-beleg-lumen-steps {
            display: flex;
            align-items: stretch;
            gap: 0.35rem;
            margin-bottom: 0.85rem;
        }
        .lv-beleg-lumen-step {
            flex: 1;
            min-width: 0;
            display: flex;
            align-items: center;
            gap: 0.55rem;
            padding: 0.65rem 0.7rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
            color: inherit;
            font-family: inherit;
            cursor: pointer;
            transition: border-color 0.22s, background 0.22s;
            text-align: left;
        }
        .lv-beleg-lumen-step:hover {
            border-color: rgba(245, 158, 11, 0.28);
            background: rgba(245, 158, 11, 0.05);
        }
        .lv-beleg-lumen-step.is-done {
            border-color: rgba(74, 222, 128, 0.22);
        }
        .lv-beleg-lumen-step.is-done .lv-beleg-lumen-step-n {
            background: rgba(74, 222, 128, 0.14);
            border-color: rgba(74, 222, 128, 0.32);
            color: #4ade80;
        }
        .lv-beleg-lumen-step.is-active {
            border-color: rgba(245, 158, 11, 0.38);
            background: rgba(245, 158, 11, 0.1);
            box-shadow: 0 4px 16px rgba(245, 158, 11, 0.1);
        }
        .lv-beleg-lumen-step-n {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.14);
            border: 1px solid rgba(245, 158, 11, 0.32);
            color: #fbbf24;
            font-size: 0.72rem;
            font-weight: 800;
            flex-shrink: 0;
        }
        .lv-beleg-lumen-step-text strong {
            display: block;
            font-size: 0.72rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.3;
        }
        .lv-beleg-lumen-arrow {
            flex-shrink: 0;
            align-self: center;
            font-size: 0.82rem;
            color: rgba(245, 158, 11, 0.55);
            font-weight: 700;
            line-height: 1;
        }
        .lv-beleg-lumen-detail {
            padding: 0.85rem 1rem;
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.06);
            margin-bottom: 0.65rem;
        }
        .lv-beleg-detail-title {
            display: block;
            font-size: 0.82rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.92);
            margin: 0 0 0.35rem;
        }
        .lv-beleg-detail-text {
            margin: 0 0 0.55rem;
            font-size: 0.74rem;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.6;
        }
        .lv-beleg-lumen-status {
            display: inline-block;
            padding: 0.25rem 0.55rem;
            border-radius: 999px;
            font-size: 0.58rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            background: rgba(245, 158, 11, 0.12);
            color: #fbbf24;
        }
        .lv-beleg-lumen-status[data-status="ok"] {
            background: rgba(74, 222, 128, 0.12);
            color: #4ade80;
        }
        .lv-beleg-lumen-status[data-status="ask"] {
            background: rgba(251, 146, 60, 0.12);
            color: #fb923c;
        }
        .lv-beleg-lumen-actions {
            display: flex;
            gap: 0.5rem;
        }
        .lv-beleg-lumen-actions[hidden] { display: none !important; }
        .lv-beleg-lumen-action {
            flex: 1;
            padding: 0.6rem 0.75rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-family: inherit;
            font-size: 0.72rem;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }
        .lv-beleg-lumen-action:hover {
            transform: translateY(-1px);
        }
        .lv-beleg-lumen-action--ok {
            background: rgba(74, 222, 128, 0.12);
            border-color: rgba(74, 222, 128, 0.3);
            color: #4ade80;
        }
        .lv-beleg-lumen-action--ask {
            background: rgba(251, 191, 36, 0.1);
            border-color: rgba(251, 191, 36, 0.28);
            color: #fbbf24;
        }

        /* Wirtschaftsplan – LumenOS-Mock (Finanzen / Vorjahr → Plan) */
        .lex-viz--plan .lv-plan-lumen {
            border-color: rgba(245, 158, 11, 0.22);
            background: linear-gradient(165deg, rgba(245, 158, 11, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.06) inset;
        }
        .lv-plan-lumen-head { margin-bottom: 0.85rem; }
        .lv-plan-lumen-tag {
            display: inline-block;
            margin-bottom: 0.35rem;
            padding: 0.2rem 0.5rem;
            border-radius: 999px;
            font-size: 0.52rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #fcd34d;
            background: rgba(245, 158, 11, 0.12);
            border: 1px solid rgba(245, 158, 11, 0.28);
        }
        .lv-plan-lumen-title {
            display: block;
            font-size: 0.88rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.94);
            letter-spacing: -0.02em;
            margin: 0 0 0.25rem;
        }
        .lv-plan-lumen-desc {
            display: block;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.48);
            line-height: 1.55;
        }
        .lv-plan-lumen-mock {
            display: flex;
            flex-direction: column;
            border-radius: 14px;
            border: 1px solid rgba(245, 158, 11, 0.22);
            background: rgba(0, 0, 0, 0.32);
            overflow: hidden;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }
        .lv-plan-lumen-chrome {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.45rem 0.65rem;
            background: rgba(255, 255, 255, 0.04);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .lv-plan-lumen-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.16);
        }
        .lv-plan-lumen-dot:first-child { background: rgba(248, 113, 113, 0.65); }
        .lv-plan-lumen-dot:nth-child(2) { background: rgba(251, 191, 36, 0.65); }
        .lv-plan-lumen-dot:nth-child(3) { background: rgba(74, 222, 128, 0.55); }
        .lv-plan-lumen-chrome em {
            margin-left: 0.35rem;
            font-style: normal;
            font-size: 0.56rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.38);
            letter-spacing: 0.02em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .lv-plan-lumen-body {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            padding: 0.7rem 0.75rem 0.85rem;
        }
        .lv-plan-lumen-kpis {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.35rem;
        }
        .lv-plan-lumen-kpi {
            padding: 0.38rem 0.42rem;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .lv-plan-lumen-kpi small {
            display: block;
            font-size: 0.48rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            color: rgba(255, 255, 255, 0.38);
            margin-bottom: 0.12rem;
        }
        .lv-plan-lumen-kpi strong {
            font-size: 0.78rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.88);
        }
        .lv-plan-lumen-kpi--hi {
            background: rgba(245, 158, 11, 0.12);
            border-color: rgba(245, 158, 11, 0.24);
        }
        .lv-plan-lumen-kpi--hi strong { color: #fcd34d; }
        .lv-plan-kpi-delta.is-up { color: #fb923c; }
        .lv-plan-kpi-delta.is-down { color: #4ade80; }
        .lv-plan-kpi-delta.is-flat { color: rgba(255, 255, 255, 0.55); }
        .lv-plan-positions {
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 10px;
            overflow: hidden;
            background: rgba(0, 0, 0, 0.18);
        }
        .lv-plan-pos {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(4.5rem, 0.65fr) minmax(0, 1.25fr);
            gap: 0.5rem 0.65rem;
            align-items: center;
            padding: 0.55rem 0.75rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .lv-plan-pos:last-child { border-bottom: none; }
        .lv-plan-pos--head {
            background: rgba(255, 255, 255, 0.03);
            font-size: 0.58rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.28);
            padding: 0.42rem 0.75rem;
        }
        .lv-plan-pos-label {
            font-size: 0.7rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.35;
        }
        .lv-plan-pos-ist,
        .lv-plan-pos-plan {
            display: flex;
            flex-direction: column;
            gap: 0.28rem;
            min-width: 0;
        }
        .lv-plan-pos-ist-val {
            font-size: 0.68rem;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.45);
            white-space: nowrap;
        }
        .lv-plan-pos-plan-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.35rem;
        }
        .lv-plan-val {
            font-size: 0.72rem;
            font-weight: 800;
            color: #fcd34d;
            white-space: nowrap;
        }
        .lv-plan-pos-delta {
            font-size: 0.55rem;
            font-weight: 700;
            white-space: nowrap;
        }
        .lv-plan-pos-delta.is-up { color: #fb923c; }
        .lv-plan-pos-delta.is-down { color: #4ade80; }
        .lv-plan-pos-delta.is-flat { color: rgba(255, 255, 255, 0.35); }
        .lv-plan-slider {
            width: 100%;
            height: 0.35rem;
            margin: 0;
            accent-color: #fbbf24;
            cursor: pointer;
        }
        .lv-plan-lumen-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.62rem;
            color: rgba(255, 255, 255, 0.38);
        }
        .lv-plan-units-wrap {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            margin-left: auto;
        }
        .lv-plan-units-wrap span { font-weight: 600; }
        .lv-plan-units {
            width: 3.25rem;
            padding: 0.28rem 0.4rem;
            border-radius: 8px;
            border: 1px solid rgba(245, 158, 11, 0.28);
            background: rgba(245, 158, 11, 0.08);
            color: #fcd34d;
            font-family: inherit;
            font-size: 0.72rem;
            font-weight: 800;
            text-align: center;
        }
        .lv-plan-summary {
            padding: 0.75rem 0.85rem;
            border-radius: 10px;
            background: rgba(245, 158, 11, 0.06);
            border: 1px solid rgba(245, 158, 11, 0.18);
        }
        .lv-plan-summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.55);
            padding: 0.2rem 0;
        }
        .lv-plan-summary-row strong {
            font-size: 0.88rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.92);
        }
        .lv-plan-summary-row--hg strong {
            color: #fcd34d;
            font-size: 1rem;
        }
        .lv-plan-bar {
            display: flex;
            height: 0.45rem;
            border-radius: 999px;
            overflow: hidden;
            margin-top: 0.55rem;
            background: rgba(255, 255, 255, 0.06);
        }
        .lv-plan-bar span { min-width: 2px; transition: flex 0.25s ease; }
        .lv-plan-bar-legend {
            display: flex;
            gap: 0.85rem;
            margin-top: 0.45rem;
            font-size: 0.58rem;
            color: rgba(255, 255, 255, 0.38);
        }
        .lv-plan-bar-legend span {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
        }
        .lv-plan-legend-dot {
            width: 0.45rem;
            height: 0.45rem;
            border-radius: 2px;
        }
        .lv-plan-legend-dot--ist { background: rgba(255, 255, 255, 0.25); }
        .lv-plan-legend-dot--plan { background: #fcd34d; }

        /* Teilungserklärung */
        .lv-teilung-doc {
            padding: 1rem;
            border-radius: 12px;
            border: 1px dashed rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.02);
        }
        .lv-teilung-doc-title {
            display: block;
            font-size: 0.85rem;
            font-weight: 900;
            letter-spacing: -0.02em;
            margin-bottom: 0.75rem;
            color: rgba(255,255,255,0.88);
        }
        .lv-teilung-blocks {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem;
        }
        .lv-teilung-block {
            padding: 0.65rem 0.75rem;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.08);
            background: rgba(255,255,255,0.03);
            color: rgba(255,255,255,0.65);
            font-family: inherit;
            font-size: 0.68rem;
            font-weight: 700;
            text-align: left;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .lv-teilung-block:hover,
        .lv-teilung-block.is-active {
            border-color: rgba(255,0,77,0.35);
            background: rgba(255,0,77,0.08);
            color: #fff;
        }

        /* Verwaltervertrag */
        .lv-vertrag-controls {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.65rem;
            margin-bottom: 0.85rem;
        }
        .lv-vertrag-field { display: flex; flex-direction: column; gap: 0.35rem; }
        .lv-vertrag-check {
            grid-column: 1 / -1;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.72rem;
            color: rgba(255,255,255,0.62);
            cursor: pointer;
        }
        .lv-vertrag-track {
            position: relative;
            height: 2.5rem;
            border-radius: 12px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            margin-bottom: 0.65rem;
            overflow: hidden;
        }
        .lv-vertrag-fill {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 35%;
            background: linear-gradient(90deg, rgba(255,0,77,0.25), rgba(255,0,77,0.08));
            transition: width 0.3s ease;
        }
        .lv-vertrag-marker {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.58rem;
            font-weight: 800;
            color: rgba(255,255,255,0.72);
            white-space: nowrap;
        }
        .lv-vertrag-marker--start { left: 0.5rem; }
        .lv-vertrag-marker--notice { left: 55%; }
        .lv-vertrag-marker--end { right: 0.5rem; }
        .lv-vertrag-summary {
            font-size: 0.72rem;
            color: rgba(255,255,255,0.58);
            line-height: 1.55;
            margin: 0;
        }
        .lv-vertrag-sim-kuend {
            margin-top: 0.75rem;
            width: 100%;
            padding: 0.55rem 0.75rem;
            border-radius: 10px;
            border: 1px solid rgba(255,0,77,0.28);
            background: rgba(255,0,77,0.08);
            color: #fff;
            font-family: inherit;
            font-size: 0.72rem;
            font-weight: 700;
            cursor: pointer;
        }

        @media (max-width: 720px) {
            .lv-settle-flow { grid-template-columns: 1fr 1fr; }
            .lv-levy-flow,
            .lv-heat-read-flow { grid-template-columns: 1fr 1fr; }
            .lv-heat-flow { grid-template-columns: 1fr; }
            .lv-heat-pools { grid-template-columns: 1fr; }
            .lv-levy-unit { grid-template-columns: 1fr; gap: 0.2rem; }
            .lv-settle-compare-row { grid-template-columns: 2.75rem 1fr auto; }
            .lv-settle-grid,
            .lv-heat-cards,
            .lv-vertrag-controls,
            .lv-beleg-lumen-steps { flex-direction: column; }
            .lv-beleg-lumen-arrow { display: none; }
            .lv-beleg-lumen-meta { flex-direction: column; align-items: flex-start; }
            .lv-beleg-open-btn { margin-left: 0; margin-top: 0.25rem; }
            .lv-beleg-lumen-row { grid-template-columns: minmax(0, 1fr) auto auto; font-size: 0.68rem; }
            .lv-beleg-row-pos { flex-wrap: wrap; }
            .lv-plan-pos { grid-template-columns: 1fr; gap: 0.35rem; }
            .lv-plan-pos--head { display: none; }
            .lv-plan-units-wrap { margin-left: 0; width: 100%; justify-content: space-between; }
            .lv-plan-lumen-kpis { grid-template-columns: 1fr; }
            .lv-vote-toolbar { overflow-x: auto; flex-wrap: nowrap; }
            .lv-vertrag-marker--notice { left: 40%; font-size: 0.52rem; }
        }

        /* ── Aufteilungsplan Explorer ── */
        .lv-ap-root {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .lv-ap-plan {
            display: grid;
            grid-template-columns: 1fr 0.63fr 1fr;
            grid-template-rows: minmax(0, 1.2fr) minmax(0, 0.8fr);
            aspect-ratio: 2.1 / 1;
            min-height: 150px;
            max-height: 240px;
            width: 100%;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            overflow: hidden;
            background: rgba(255,255,255,0.02);
        }

        .lv-ap-room--pos-w1     { grid-area: 1 / 1 / 2 / 2; }
        .lv-ap-room--pos-stairs { grid-area: 1 / 2 / 3 / 3; }
        .lv-ap-room--pos-w2     { grid-area: 1 / 3 / 2 / 4; }
        .lv-ap-room--pos-k1     { grid-area: 2 / 1 / 3 / 2; }
        .lv-ap-room--pos-k2     { grid-area: 2 / 3 / 3 / 4; }

        .lv-ap-room {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.15rem;
            min-width: 0;
            min-height: 0;
            width: 100%;
            height: 100%;
            padding: 0.35rem 0.25rem;
            border: none;
            border-radius: 0;
            cursor: pointer;
            font-family: inherit;
            text-align: center;
            transition: filter 0.15s, outline 0.1s;
            outline: 2px solid transparent;
            outline-offset: -2px;
            box-sizing: border-box;
        }
        .lv-ap-room:focus-visible { outline-color: rgba(255,255,255,0.45); }

        .lv-ap-room--se {
            background: rgba(245,158,11,0.13);
            border: 1px solid rgba(245,158,11,0.22);
        }
        .lv-ap-room--se:hover, .lv-ap-room--se.is-active {
            background: rgba(245,158,11,0.26);
        }
        .lv-ap-room--se.is-active { outline: 2px solid rgba(245,158,11,0.7); z-index: 1; }

        .lv-ap-room--ge {
            background: rgba(96,165,250,0.10);
            border: 1px solid rgba(96,165,250,0.22);
        }
        .lv-ap-room--ge:hover, .lv-ap-room--ge.is-active {
            background: rgba(96,165,250,0.22);
        }
        .lv-ap-room--ge.is-active { outline: 2px solid rgba(96,165,250,0.7); z-index: 1; }

        .lv-ap-room--annex {
            opacity: 0.88;
        }

        .lv-ap-room-num {
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.03em;
            line-height: 1;
            color: rgba(255,255,255,0.82);
        }
        .lv-ap-room--se .lv-ap-room-num { color: #fcd34d; }
        .lv-ap-room--ge .lv-ap-room-num { color: #93c5fd; }

        .lv-ap-room-label {
            font-size: 0.56rem;
            font-weight: 600;
            color: rgba(255,255,255,0.58);
            line-height: 1.2;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .lv-ap-room-area {
            font-size: 0.5rem;
            color: rgba(255,255,255,0.38);
        }

        .lv-ap-info {
            padding: 0.65rem 0.75rem;
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 10px;
            background: rgba(255,255,255,0.025);
            font-size: 0.7rem;
            color: rgba(255,255,255,0.62);
            line-height: 1.5;
        }

        .lv-ap-info-default[hidden],
        .lv-ap-info-detail[hidden] {
            display: none !important;
        }

        .lv-ap-info-default:not([hidden]) {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            color: rgba(255,255,255,0.38);
            font-size: 0.68rem;
        }
        .lv-ap-info-default p {
            margin: 0;
            line-height: 1.45;
        }

        .lv-ap-info-detail:not([hidden]) {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .lv-ap-info-icon {
            width: 1.25rem;
            height: 1.25rem;
            flex-shrink: 0;
            margin-top: 0.05rem;
            opacity: 0.38;
        }

        .lv-ap-info-type {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.35rem 0.5rem;
            font-size: 0.62rem;
            font-weight: 700;
            line-height: 1.45;
            color: rgba(255,255,255,0.55);
        }

        .lv-ap-info-text {
            margin: 0;
            font-size: 0.68rem;
            line-height: 1.55;
            color: rgba(255,255,255,0.62);
        }

        .lv-ap-badge {
            display: inline-block;
            padding: 0.12rem 0.45rem;
            border-radius: 4px;
            font-size: 0.58rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        .lv-ap-badge--se {
            background: rgba(245,158,11,0.2);
            color: #fcd34d;
            border: 1px solid rgba(245,158,11,0.35);
        }
        .lv-ap-badge--ge {
            background: rgba(96,165,250,0.18);
            color: #93c5fd;
            border: 1px solid rgba(96,165,250,0.3);
        }

        .lv-ap-legend {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }
        .lv-ap-leg {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.6rem;
            font-weight: 600;
            color: rgba(255,255,255,0.42);
        }
        .lv-ap-leg::before {
            content: '';
            display: inline-block;
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 3px;
        }
        .lv-ap-leg--se::before { background: rgba(245,158,11,0.35); }
        .lv-ap-leg--ge::before { background: rgba(96,165,250,0.35); }

        @media (max-width: 480px) {
            .lv-ap-plan {
                min-height: 130px;
                max-height: 200px;
            }
            .lv-ap-room-label { font-size: 0.5rem; }
            .lv-ap-room-num { font-size: 0.62rem; }
        }

        /* ── Teileigentum Explorer (WE / TE / GE) ── */
        .lv-te-root {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .lv-te-building {
            display: grid;
            grid-template-columns: 1fr 0.55fr 1fr;
            grid-template-rows: 0.45fr 1fr 1fr 1fr;
            aspect-ratio: 1.35 / 1;
            min-height: 180px;
            max-height: 260px;
            width: 100%;
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 10px;
            overflow: hidden;
            background: rgba(255,255,255,0.02);
        }

        .lv-te-pos-dach   { grid-area: 1 / 1 / 2 / 4; }
        .lv-te-pos-stairs { grid-area: 2 / 2 / 5 / 3; }
        .lv-te-pos-w3     { grid-area: 2 / 1 / 3 / 2; }
        .lv-te-pos-w4     { grid-area: 2 / 3 / 3 / 4; }
        .lv-te-pos-w1     { grid-area: 3 / 1 / 4 / 2; }
        .lv-te-pos-w2     { grid-area: 3 / 3 / 4 / 4; }
        .lv-te-pos-laden  { grid-area: 4 / 1 / 5 / 2; }
        .lv-te-pos-buero  { grid-area: 4 / 3 / 5 / 4; }

        .lv-te-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.12rem;
            min-width: 0;
            min-height: 0;
            width: 100%;
            height: 100%;
            padding: 0.3rem 0.2rem;
            border: none;
            cursor: pointer;
            font-family: inherit;
            text-align: center;
            transition: filter 0.15s, outline 0.1s;
            outline: 2px solid transparent;
            outline-offset: -2px;
            box-sizing: border-box;
        }
        .lv-te-unit:focus-visible { outline-color: rgba(255,255,255,0.45); }

        .lv-te-unit--we {
            background: rgba(245,158,11,0.14);
            border: 1px solid rgba(245,158,11,0.28);
        }
        .lv-te-unit--we:hover, .lv-te-unit--we.is-active {
            background: rgba(245,158,11,0.28);
        }
        .lv-te-unit--we.is-active { outline: 2px solid rgba(245,158,11,0.75); z-index: 1; }

        .lv-te-unit--te {
            background: rgba(167,139,250,0.14);
            border: 1px solid rgba(167,139,250,0.32);
        }
        .lv-te-unit--te:hover, .lv-te-unit--te.is-active {
            background: rgba(167,139,250,0.28);
        }
        .lv-te-unit--te.is-active { outline: 2px solid rgba(167,139,250,0.75); z-index: 1; }

        .lv-te-unit--ge {
            background: rgba(96,165,250,0.10);
            border: 1px solid rgba(96,165,250,0.22);
        }
        .lv-te-unit--ge:hover, .lv-te-unit--ge.is-active {
            background: rgba(96,165,250,0.22);
        }
        .lv-te-unit--ge.is-active { outline: 2px solid rgba(96,165,250,0.7); z-index: 1; }

        .lv-te-unit-tag {
            font-size: 0.58rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            line-height: 1;
        }
        .lv-te-unit--we .lv-te-unit-tag { color: #fcd34d; }
        .lv-te-unit--te .lv-te-unit-tag { color: #c4b5fd; }
        .lv-te-unit--ge .lv-te-unit-tag { color: #93c5fd; }

        .lv-te-unit-label {
            font-size: 0.56rem;
            font-weight: 600;
            color: rgba(255,255,255,0.62);
            line-height: 1.2;
        }
        .lv-te-unit-floor {
            font-size: 0.48rem;
            color: rgba(255,255,255,0.35);
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }
        .lv-te-pos-dach .lv-te-unit-label { font-size: 0.52rem; }

        .lv-te-info {
            padding: 0.65rem 0.75rem;
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 10px;
            background: rgba(255,255,255,0.025);
        }

        .lv-te-info-default[hidden],
        .lv-te-info-detail[hidden] {
            display: none !important;
        }

        .lv-te-info-default:not([hidden]) {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.68rem;
            color: rgba(255,255,255,0.38);
            line-height: 1.45;
        }
        .lv-te-info-default p { margin: 0; }

        .lv-te-info-detail:not([hidden]) {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .lv-te-info-icon {
            width: 1.25rem;
            height: 1.25rem;
            flex-shrink: 0;
            margin-top: 0.05rem;
            opacity: 0.38;
        }

        .lv-te-info-type {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.35rem 0.5rem;
        }

        .lv-te-info-meta {
            font-size: 0.58rem;
            font-weight: 600;
            color: rgba(255,255,255,0.35);
        }

        .lv-te-info-text {
            margin: 0;
            font-size: 0.68rem;
            line-height: 1.55;
            color: rgba(255,255,255,0.62);
        }

        .lv-te-badge {
            display: inline-block;
            padding: 0.12rem 0.45rem;
            border-radius: 4px;
            font-size: 0.58rem;
            font-weight: 700;
            white-space: nowrap;
        }
        .lv-te-badge--we {
            background: rgba(245,158,11,0.2);
            color: #fcd34d;
            border: 1px solid rgba(245,158,11,0.35);
        }
        .lv-te-badge--te {
            background: rgba(167,139,250,0.2);
            color: #c4b5fd;
            border: 1px solid rgba(167,139,250,0.35);
        }
        .lv-te-badge--ge {
            background: rgba(96,165,250,0.18);
            color: #93c5fd;
            border: 1px solid rgba(96,165,250,0.3);
        }

        .lv-te-legend {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 0.85rem;
        }
        .lv-te-leg {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.6rem;
            font-weight: 600;
            color: rgba(255,255,255,0.42);
        }
        .lv-te-leg::before {
            content: '';
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 3px;
        }
        .lv-te-leg--we::before { background: rgba(245,158,11,0.4); }
        .lv-te-leg--te::before { background: rgba(167,139,250,0.45); }
        .lv-te-leg--ge::before { background: rgba(96,165,250,0.4); }

        @media (max-width: 480px) {
            .lv-te-building {
                min-height: 150px;
                max-height: 210px;
            }
            .lv-te-unit-label { font-size: 0.5rem; }
            .lv-te-legend { flex-direction: column; gap: 0.35rem; }
        }

        /* Kauf-Nebenkosten-Rechner */
        .lv-kauf-card { display: flex; flex-direction: column; gap: 1rem; }
        .lv-kauf-field { display: flex; flex-direction: column; gap: 0.35rem; }
        .lv-kauf-field-label { font-size: 0.8125rem; font-weight: 600; color: var(--lex-muted, #64748b); }
        .lv-kauf-select {
            width: 100%; padding: 0.55rem 0.75rem; border-radius: 0.5rem;
            border: 1px solid rgba(148, 163, 184, 0.35); background: rgba(15, 23, 42, 0.4);
            color: inherit; font-size: 0.9375rem;
        }
        .lv-kauf-option {
            padding: 0.55rem 0.75rem;
            border-radius: 0.5rem;
            background: rgba(15, 23, 42, 0.25);
            border: 1px solid rgba(148, 163, 184, 0.2);
        }
        .lv-kauf-check {
            display: flex;
            align-items: flex-start;
            gap: 0.65rem;
            margin: 0;
            cursor: pointer;
        }
        .lv-kauf-check-body {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
            flex: 1;
            min-width: 0;
        }
        .lv-kauf-check-title {
            font-size: 0.875rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.3;
        }
        .lv-kauf-check-hint {
            font-size: 0.75rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.48);
            line-height: 1.35;
        }
        .lv-kauf-check input {
            flex-shrink: 0;
            width: 1rem;
            height: 1rem;
            margin: 0.15rem 0 0;
            accent-color: #4ade80;
        }
        .lv-kauf-breakdown {
            list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5rem;
        }
        .lv-kauf-row {
            display: grid; grid-template-columns: 1fr auto auto; gap: 0.5rem 1rem; align-items: center;
            padding: 0.55rem 0.75rem; border-radius: 0.5rem; background: rgba(15, 23, 42, 0.25);
            font-size: 0.875rem;
        }
        .lv-kauf-row-label { font-weight: 500; }
        .lv-kauf-row-meta { font-size: 0.75rem; color: var(--lex-muted, #94a3b8); white-space: nowrap; }
        .lv-kauf-row-amt { font-weight: 600; text-align: right; white-space: nowrap; }
        .lv-kauf-total {
            padding: 0.85rem 1rem; border-radius: 0.65rem;
            background: linear-gradient(135deg, rgba(74, 222, 128, 0.12), rgba(59, 130, 246, 0.08));
            border: 1px solid rgba(74, 222, 128, 0.25);
        }
        .lv-kauf-total-main, .lv-kauf-total-sub {
            display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
        }
        .lv-kauf-total-main { font-size: 1rem; margin-bottom: 0.35rem; }
        .lv-kauf-total-main strong { font-size: 1.25rem; color: #4ade80; }
        .lv-kauf-total-sub { font-size: 0.8125rem; color: var(--lex-muted, #94a3b8); margin-bottom: 0.5rem; }
        .lv-kauf-pct-line { margin: 0; font-size: 0.8125rem; color: var(--lex-muted, #94a3b8); }
        .lv-kauf-presets, .lv-zins-presets {
            display: flex; flex-wrap: wrap; gap: 0.5rem;
        }
        .lv-kauf-preset, .lv-zins-preset {
            padding: 0.35rem 0.65rem; border-radius: 999px; font-size: 0.75rem;
            border: 1px solid rgba(148, 163, 184, 0.35); background: transparent; color: inherit; cursor: pointer;
        }
        .lv-kauf-preset.is-active, .lv-zins-preset.is-active {
            border-color: #4ade80; background: rgba(74, 222, 128, 0.12);
        }

        /* Rücklagen-Zinsrechner */
        .lv-zins-card { display: flex; flex-direction: column; gap: 1rem; }
        .lv-zins-sliders { display: flex; flex-direction: column; gap: 0.65rem; }
        .lv-zins-result {
            padding: 0.85rem 1rem; border-radius: 0.65rem;
            background: rgba(59, 130, 246, 0.08); border: 1px solid rgba(59, 130, 246, 0.2);
        }
        .lv-zins-result-main {
            display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap;
        }
        .lv-zins-result-label { font-size: 0.875rem; font-weight: 500; }
        .lv-zins-end { font-size: 1.35rem; color: #60a5fa; }
        .lv-zins-formula { margin: 0.5rem 0 0; font-size: 0.75rem; color: var(--lex-muted, #94a3b8); line-height: 1.4; }
        .lv-zins-compare { padding: 0.75rem !important; gap: 0.5rem; display: flex; flex-direction: column; }
        .lv-zins-compare-row {
            display: flex; justify-content: space-between; font-size: 0.8125rem;
        }
        .lv-zins-bar {
            display: flex; height: 0.5rem; border-radius: 999px; overflow: hidden;
            background: rgba(15, 23, 42, 0.35); margin-top: 0.25rem;
        }
        .lv-zins-bar-contrib { background: #60a5fa; min-width: 2px; }
        .lv-zins-bar-interest { background: #4ade80; min-width: 2px; }
        .lv-zins-bar-legend {
            display: flex; gap: 1rem; font-size: 0.6875rem; color: var(--lex-muted, #94a3b8);
        }
        .lv-zins-dot {
            display: inline-block; width: 0.5rem; height: 0.5rem; border-radius: 50%; margin-right: 0.25rem; vertical-align: middle;
        }
        .lv-zins-dot--contrib { background: #60a5fa; }
        .lv-zins-dot--interest { background: #4ade80; }

        @media (max-width: 520px) {
            .lv-kauf-row { grid-template-columns: 1fr auto; }
            .lv-kauf-row-meta { grid-column: 1; }
            .lv-kauf-row-amt { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
        }
