    /* ═══════════════════════════════════════════════════════════════════
       Dashboard V9 — Clean, Light-first
       Luftiger, ruhiger, klarere Hierarchie.
       Farben/Backgrounds kommen 1:1 aus --ds-* Tokens → Dark-Mode
       funktioniert ohne Extra-Overrides weiter.
       ═══════════════════════════════════════════════════════════════════ */

    :root {
      --smooth: cubic-bezier(0.22, 1, 0.36, 1);
      --sh-1: 0 1px 2px rgba(15, 23, 42, 0.04);
      --sh-2: 0 4px 16px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
      --pos: var(--ds-success);
      --pos-soft: var(--ds-success-soft);
      --neg: var(--ds-danger);
      --neg-soft: var(--ds-danger-soft);
      --warn: var(--ds-warning);
      --warn-soft: var(--ds-warning-soft);
      --info: var(--ds-info);
      --info-soft: var(--ds-info-soft);
      --accent-2: #8b5cf6;
      --accent-2-soft: rgba(139, 92, 246, 0.10);
    }
    :root:not([data-theme="light"]) {
      --sh-1: 0 1px 2px rgba(0, 0, 0, 0.20);
      --sh-2: 0 4px 14px rgba(0, 0, 0, 0.28), 0 1px 2px rgba(0, 0, 0, 0.16);
      --accent-2-soft: rgba(139, 92, 246, 0.14);
    }

    body { background: var(--ds-bg); }

    .board {
      display: block;
      max-width: 1360px;
      margin: 0 auto;
      padding: 32px 40px 80px;
      gap: 0;
    }
    @media (max-width: 900px) { .board { padding: 20px 16px 60px; } }

    /* ═══════ Greeting ═══════ */
    .gb {
      display: flex; align-items: flex-end; justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }
    .gb__left { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
    .gb__eyebrow {
      font-size: 0.76rem;
      font-weight: 500;
      color: var(--ds-text-muted);
      letter-spacing: -0.003em;
    }
    .gb__title {
      font-size: 1.9rem;
      font-weight: 700;
      letter-spacing: -0.03em;
      color: var(--ds-text);
      line-height: 1.1;
    }
    .gb__right {
      display: flex; align-items: center; gap: 8px;
      flex-shrink: 0;
    }
    @media (max-width: 640px) {
      .gb { flex-direction: column; align-items: flex-start; }
      .gb__right { width: 100%; }
      .gb__right .qa-label { display: none; }
    }

    .qa {
      display: inline-flex; align-items: center; gap: 7px;
      height: 36px;
      padding: 0 13px;
      background: var(--ds-bg-elev-2);
      border: 1px solid var(--ds-border);
      border-radius: 9px;
      color: var(--ds-text);
      font: 500 0.85rem var(--font);
      text-decoration: none;
      cursor: pointer;
      transition: all 160ms var(--smooth);
      letter-spacing: -0.003em;
    }
    .qa:hover { background: var(--ds-bg-elev-3); border-color: var(--ds-border-strong); }
    .qa svg { width: 15px; height: 15px; stroke-width: 2; color: var(--ds-text-muted); }
    .qa:hover svg { color: var(--ds-text); }
    .qa--primary {
      background: var(--ds-accent);
      border-color: var(--ds-accent);
      color: #fff;
      box-shadow: 0 1px 2px rgba(37, 99, 235, 0.14);
    }
    .qa--primary svg { color: rgba(255, 255, 255, 0.9); }
    .qa--primary:hover { background: var(--ds-accent-hover); border-color: var(--ds-accent-hover); }
    .qa--primary:hover svg { color: #fff; }
    .qa kbd {
      margin-left: 4px;
      font-family: var(--font);
      background: var(--ds-bg-elev-3);
      color: var(--ds-text-muted);
      padding: 1px 6px;
      border-radius: 4px;
      font-size: 0.7rem;
      font-weight: 600;
      border: 1px solid var(--ds-border);
    }
    .qa--primary kbd {
      background: rgba(255, 255, 255, 0.18);
      color: rgba(255, 255, 255, 0.95);
      border-color: rgba(255, 255, 255, 0.24);
    }

    /* ═══════ Status chips ═══════ */
    .status {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 28px;
    }
    .status__item {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 8px 14px;
      background: var(--ds-bg-elev-2);
      border: 1px solid var(--ds-border);
      border-radius: 999px;
      font-size: 0.85rem;
      color: var(--ds-text);
      letter-spacing: -0.003em;
    }
    .status__dot {
      width: 7px; height: 7px; border-radius: 50%;
      flex-shrink: 0;
    }
    .status__dot--blue   { background: var(--ds-accent); }
    .status__dot--green  { background: var(--pos); }
    .status__dot--amber  { background: var(--warn); }
    .status__dot--purple { background: var(--accent-2); }
    .status__item b { font-weight: 700; color: var(--ds-text); font-variant-numeric: tabular-nums; }
    .status__item a { color: var(--ds-accent); text-decoration: none; font-weight: 500; }
    .status__item a:hover { text-decoration: underline; text-underline-offset: 2px; }
    .status__item--muted { color: var(--ds-text-muted); }

    /* ═══════ KPI Cards ═══════ */
    .kpis {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 14px;
      margin-bottom: 28px;
    }
    .kpi {
      position: relative;
      display: flex; flex-direction: column; gap: 12px;
      padding: 18px 20px;
      background: var(--ds-bg-elev-2);
      border: 1px solid var(--ds-border);
      border-radius: 12px;
      text-decoration: none;
      color: inherit;
      box-shadow: var(--sh-1);
      transition: transform 180ms var(--smooth), border-color 160ms ease, box-shadow 160ms ease;
    }
    .kpi:hover {
      transform: translateY(-2px);
      border-color: var(--ds-border-strong);
      box-shadow: var(--sh-2);
    }
    .kpi__head {
      display: flex; align-items: center; justify-content: space-between;
      gap: 10px;
    }
    .kpi__label {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--ds-text-muted);
      letter-spacing: -0.003em;
    }
    .kpi__icon {
      width: 32px; height: 32px;
      border-radius: 8px;
      display: grid; place-items: center;
      flex-shrink: 0;
    }
    .kpi__icon svg { width: 15px; height: 15px; stroke-width: 2; }
    .kpi__icon--blue   { background: var(--ds-accent-soft); color: var(--ds-accent); }
    .kpi__icon--green  { background: var(--pos-soft); color: var(--pos); }
    .kpi__icon--amber  { background: var(--warn-soft); color: var(--warn); }
    .kpi__icon--purple { background: var(--accent-2-soft); color: var(--accent-2); }
    .kpi__icon--pink   { background: var(--neg-soft); color: var(--neg); }
    .kpi__icon--info   { background: var(--info-soft); color: var(--info); }
    .kpi__num {
      font-size: 2.1rem;
      font-weight: 700;
      letter-spacing: -0.035em;
      font-variant-numeric: tabular-nums;
      color: var(--ds-text);
      line-height: 1;
    }
    .kpi__foot {
      display: flex; align-items: center; gap: 6px;
      font-size: 0.78rem;
      color: var(--ds-text-muted);
    }
    .kpi__foot svg { width: 11px; height: 11px; stroke-width: 2.2; }
    .kpi__delta--pos { color: var(--pos); font-weight: 600; }
    .kpi__delta--neg { color: var(--neg); font-weight: 600; }
    .kpi__delta--mute { color: var(--ds-text-muted); }

    /* ═══════ Main Grid ═══════ */
    .main {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 380px;
      gap: 20px;
    }
    @media (max-width: 1080px) { .main { grid-template-columns: 1fr; } }

    .col { display: flex; flex-direction: column; gap: 20px; min-width: 0; }

    /* ═══════ Card ═══════ */
    .card {
      background: var(--ds-bg-elev-2);
      border: 1px solid var(--ds-border);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--sh-1);
      display: flex; flex-direction: column;
    }
    .card__head {
      display: flex; align-items: center; justify-content: space-between;
      gap: 12px;
      padding: 16px 20px;
      border-bottom: 1px solid var(--ds-border);
      flex-shrink: 0;
    }
    .card__title {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--ds-text);
      letter-spacing: -0.005em;
      margin: 0;
    }
    .card__title svg { width: 16px; height: 16px; stroke-width: 2; color: var(--ds-text-muted); }
    .card__count {
      display: inline-flex; align-items: center; justify-content: center;
      min-width: 22px; height: 20px;
      padding: 0 7px;
      background: var(--ds-bg-elev-3);
      color: var(--ds-text-muted);
      border-radius: 999px;
      font-size: 0.72rem;
      font-weight: 600;
      font-variant-numeric: tabular-nums;
    }
    .card__actions { display: flex; gap: 6px; align-items: center; }
    .card__link {
      color: var(--ds-text-muted);
      font-size: 0.82rem;
      font-weight: 500;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 3px;
      transition: color 140ms ease;
    }
    .card__link:hover { color: var(--ds-accent); }
    .card__link svg { width: 12px; height: 12px; stroke-width: 2.4; }
    .card__body { flex: 1; overflow-y: auto; }
    .card__body--pad { padding: 4px; }

    .tabs {
      display: flex; gap: 2px;
      padding: 3px;
      background: var(--ds-bg-elev-3);
      border-radius: 8px;
    }
    .tab {
      padding: 5px 11px;
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--ds-text-muted);
      background: transparent;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      letter-spacing: -0.003em;
      transition: all 140ms ease;
    }
    .tab:hover { color: var(--ds-text); }
    .tab--active {
      background: var(--ds-bg-elev-2);
      color: var(--ds-text);
      box-shadow: var(--sh-1);
    }

    .iconbtn {
      width: 30px; height: 30px;
      display: grid; place-items: center;
      background: transparent;
      border: 1px solid transparent;
      border-radius: 7px;
      color: var(--ds-text-muted);
      cursor: pointer;
      transition: all 140ms ease;
    }
    .iconbtn:hover { background: var(--ds-bg-elev-3); color: var(--ds-text); border-color: var(--ds-border); }
    .iconbtn svg { width: 14px; height: 14px; stroke-width: 2; }

    /* ═══════ Timeline ═══════ */
    .tl { display: flex; flex-direction: column; }
    .tl__row {
      display: flex; gap: 12px;
      padding: 13px 20px;
      color: inherit;
      text-decoration: none;
      border-bottom: 1px solid var(--ds-border);
      transition: background 140ms ease;
    }
    .tl__row:last-child { border-bottom: none; }
    .tl__row:hover { background: var(--ds-bg-elev-3); }
    .tl__row--link { cursor: pointer; }
    .tl__ico {
      flex-shrink: 0;
      width: 32px; height: 32px;
      border-radius: 8px;
      display: grid; place-items: center;
      background: var(--ds-bg-elev-3);
    }
    .tl__ico svg { width: 14px; height: 14px; stroke-width: 2; color: var(--ds-text-muted); }
    .tl__ico--msg     { background: var(--ds-accent-soft); }
    .tl__ico--msg svg { color: var(--ds-accent); }
    .tl__ico--contact { background: var(--accent-2-soft); }
    .tl__ico--contact svg { color: var(--accent-2); }
    .tl__ico--money     { background: var(--pos-soft); }
    .tl__ico--money svg { color: var(--pos); }
    .tl__body { flex: 1; min-width: 0; }
    .tl__title {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--ds-text);
      line-height: 1.4;
      letter-spacing: -0.003em;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .tl__sub {
      font-size: 0.78rem;
      color: var(--ds-text-muted);
      margin-top: 2px;
    }

    /* ═══════ Msg List ═══════ */
    .mg {}
    .mg__row {
      display: flex; gap: 12px;
      padding: 13px 20px;
      border-bottom: 1px solid var(--ds-border);
      text-decoration: none; color: inherit;
      transition: background 140ms ease;
    }
    .mg__row:last-child { border-bottom: none; }
    .mg__row:hover { background: var(--ds-bg-elev-3); }
    .mg__ind {
      width: 7px; height: 7px;
      border-radius: 50%;
      margin-top: 7px;
      flex-shrink: 0;
      background: transparent;
    }
    .mg__ind--new { background: var(--ds-accent); box-shadow: 0 0 0 3px var(--ds-accent-soft); }
    .mg__body { flex: 1; min-width: 0; }
    .mg__line1 {
      display: flex; align-items: center; justify-content: space-between;
      gap: 10px;
      margin-bottom: 2px;
    }
    .mg__from {
      font-weight: 600; font-size: 0.9rem; color: var(--ds-text);
      letter-spacing: -0.003em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .mg__time { font-size: 0.75rem; color: var(--ds-text-faint); font-variant-numeric: tabular-nums; flex-shrink: 0; }
    .mg__snippet {
      font-size: 0.83rem;
      color: var(--ds-text-muted);
      line-height: 1.4;
      overflow: hidden; text-overflow: ellipsis;
      display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
    }

    /* ═══════ Agenda ═══════ */
    .ag-grp {
      border-bottom: 1px solid var(--ds-border);
    }
    .ag-grp:last-child { border-bottom: none; }
    .ag-grp__hd {
      padding: 10px 20px;
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--ds-text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      background: var(--ds-bg-elev-1);
      border-bottom: 1px solid var(--ds-border);
      display: flex; align-items: center; justify-content: space-between;
    }
    .ag-grp__hd span:last-child {
      font-weight: 500;
      color: var(--ds-text-faint);
      text-transform: none;
      letter-spacing: -0.003em;
      font-size: 0.74rem;
    }
    .ag-item {
      display: flex; align-items: center; gap: 14px;
      padding: 12px 20px;
      border-bottom: 1px solid var(--ds-border);
      text-decoration: none; color: inherit;
      transition: background 140ms ease;
    }
    .ag-grp .ag-item:last-child { border-bottom: none; }
    .ag-item:hover { background: var(--ds-bg-elev-3); }
    .ag-item__time {
      flex-shrink: 0;
      display: flex; flex-direction: column; align-items: center;
      width: 46px;
      padding: 7px 0;
      background: var(--ds-bg-elev-1);
      border: 1px solid var(--ds-border);
      border-radius: 8px;
      font-variant-numeric: tabular-nums;
      line-height: 1;
    }
    .ag-item__time b { font-size: 1rem; font-weight: 700; color: var(--ds-text); letter-spacing: -0.01em; }
    .ag-item__time span { font-size: 0.66rem; font-weight: 600; color: var(--ds-text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }
    .ag-item__body { flex: 1; min-width: 0; }
    .ag-item__title { font-size: 0.9rem; font-weight: 500; color: var(--ds-text); line-height: 1.3; letter-spacing: -0.003em; }
    .ag-item__sub { font-size: 0.78rem; color: var(--ds-text-muted); margin-top: 3px; display: flex; align-items: center; gap: 5px; }
    .ag-item__sub svg { width: 11px; height: 11px; stroke-width: 2.2; }
    .ag-item__badge {
      display: inline-block;
      margin-left: 6px;
      padding: 1px 8px;
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--warn);
      background: var(--warn-soft);
      border-radius: 999px;
    }

    .bd-avatar {
      flex-shrink: 0;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--avatar-bg, var(--ds-accent-soft));
      color: #fff;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: -0.005em;
      display: grid; place-items: center;
      box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
    }

    /* ═══════ Bulletins ═══════ */
    .bu { padding: 8px; display: flex; flex-direction: column; gap: 6px; }
    .bu__item {
      padding: 14px 16px;
      background: var(--ds-bg-elev-1);
      border: 1px solid var(--ds-border);
      border-radius: 10px;
      position: relative;
      transition: border-color 140ms ease, box-shadow 140ms ease;
    }
    .bu__item:hover { border-color: var(--ds-border-strong); box-shadow: var(--sh-1); }
    .bu__title {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--ds-text);
      letter-spacing: -0.003em;
      margin-bottom: 5px;
      padding-right: 64px;
    }
    .bu__content {
      font-size: 0.84rem;
      color: var(--ds-text-muted);
      line-height: 1.5;
      white-space: pre-wrap; word-break: break-word;
    }
    .bu__meta {
      margin-top: 8px;
      font-size: 0.74rem;
      color: var(--ds-text-faint);
    }
    .bu__actions {
      position: absolute; top: 10px; right: 10px;
      display: flex; gap: 2px;
      opacity: 0; transition: opacity 140ms ease;
    }
    .bu__item:hover .bu__actions { opacity: 1; }

    /* ═══════ Finance ═══════ */
    .fin {
      padding: 4px 0;
    }
    .fin__row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 12px 20px;
      font-size: 0.9rem;
    }
    .fin__row + .fin__row { border-top: 1px solid var(--ds-border); }
    .fin__label { color: var(--ds-text-muted); display: flex; align-items: center; gap: 9px; }
    .fin__label svg { width: 13px; height: 13px; stroke-width: 2; }
    .fin__val { font-weight: 600; font-variant-numeric: tabular-nums; letter-spacing: -0.003em; }
    .fin__val--pos { color: var(--pos); }
    .fin__val--neg { color: var(--neg); }
    .fin__val--total { color: var(--ds-text); font-weight: 700; }
    .fin__row--total {
      background: var(--ds-bg-elev-1);
      border-top: 1px solid var(--ds-border-strong) !important;
    }

    /* ═══════ Empty / Skeleton ═══════ */
    .empty {
      padding: 40px 20px;
      text-align: center;
      color: var(--ds-text-muted);
    }
    .empty__icon {
      width: 42px; height: 42px;
      margin: 0 auto 12px;
      border-radius: 10px;
      display: grid; place-items: center;
      background: var(--ds-bg-elev-3);
      color: var(--ds-text-faint);
    }
    .empty__icon svg { width: 17px; height: 17px; stroke-width: 2; }
    .empty__title { font-size: 0.88rem; font-weight: 500; color: var(--ds-text-muted); }

    .skel {
      padding: 13px 20px;
      display: flex; align-items: center; gap: 12px;
      border-bottom: 1px solid var(--ds-border);
    }
    .skel:last-child { border-bottom: none; }
    .skel__a { width: 32px; height: 32px; border-radius: 8px; background: var(--ds-bg-elev-3); flex-shrink: 0; animation: pulse 1.6s infinite; }
    .skel__b { flex: 1; display: flex; flex-direction: column; gap: 6px; }
    .skel__b div { height: 10px; background: var(--ds-bg-elev-3); border-radius: 4px; animation: pulse 1.6s infinite; }
    .skel__b div:first-child { width: 60%; }
    .skel__b div:last-child { width: 40%; }
    @keyframes pulse { 0%, 100% { opacity: 0.9; } 50% { opacity: 0.5; } }

    /* ═══════ Bulletin form ═══════ */
    .bu-form {
      padding: 14px;
      display: none;
      flex-direction: column; gap: 8px;
      background: var(--ds-bg-elev-1);
      border-bottom: 1px solid var(--ds-border);
    }
    .bu-form--open { display: flex; }
    .bu-form input, .bu-form textarea {
      width: 100%;
      background: var(--ds-bg-elev-2);
      border: 1px solid var(--ds-border);
      border-radius: 8px;
      color: var(--ds-text);
      font: 0.87rem var(--font);
      padding: 9px 11px;
      outline: none;
      transition: border-color 140ms ease, box-shadow 140ms ease;
    }
    .bu-form input:focus, .bu-form textarea:focus {
      border-color: var(--ds-accent);
      box-shadow: 0 0 0 3px var(--ds-accent-ring);
    }
    .bu-form textarea { resize: vertical; min-height: 70px; font-family: var(--font); }
    .bu-form__actions { display: flex; justify-content: flex-end; gap: 6px; }
    .bu-form__btn {
      padding: 7px 13px;
      font: 600 0.82rem var(--font);
      border-radius: 7px;
      cursor: pointer;
      border: 1px solid var(--ds-border);
      background: var(--ds-bg-elev-2);
      color: var(--ds-text);
      transition: all 140ms ease;
    }
    .bu-form__btn:hover { background: var(--ds-bg-elev-3); border-color: var(--ds-border-strong); }
    .bu-form__btn--primary { background: var(--ds-accent); border-color: var(--ds-accent); color: #fff; }
    .bu-form__btn--primary:hover { background: var(--ds-accent-hover); border-color: var(--ds-accent-hover); }

    /* ═══════ Command Palette ═══════ */
    .cmd-overlay {
      position: fixed; inset: 0;
      background: var(--ds-bg-overlay);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      display: none;
      align-items: flex-start; justify-content: center;
      padding: 120px 20px 20px;
      z-index: 1000;
      opacity: 0;
      transition: opacity 180ms ease;
    }
    .cmd-overlay--open { display: flex; opacity: 1; }
    .cmd-box {
      width: 100%;
      max-width: 580px;
      background: var(--ds-bg-elev-2);
      border: 1px solid var(--ds-border);
      border-radius: 14px;
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18), 0 8px 24px rgba(15, 23, 42, 0.08);
      overflow: hidden;
      transform: translateY(-10px) scale(0.98);
      opacity: 0;
      transition: transform 180ms var(--smooth), opacity 180ms ease;
    }
    :root:not([data-theme="light"]) .cmd-box {
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.50), 0 8px 24px rgba(0, 0, 0, 0.30);
    }
    .cmd-overlay--open .cmd-box { transform: translateY(0) scale(1); opacity: 1; }
    .cmd-search {
      display: flex; align-items: center; gap: 10px;
      padding: 14px 18px;
      border-bottom: 1px solid var(--ds-border);
    }
    .cmd-search svg { width: 16px; height: 16px; color: var(--ds-text-muted); stroke-width: 2; }
    .cmd-search input {
      flex: 1;
      background: transparent;
      border: none;
      color: var(--ds-text);
      font: 0.98rem var(--font);
      outline: none;
      letter-spacing: -0.005em;
    }
    .cmd-search input::placeholder { color: var(--ds-text-muted); }
    .cmd-search kbd {
      padding: 2px 7px;
      font: 600 0.72rem var(--font);
      background: var(--ds-bg-elev-3);
      color: var(--ds-text-muted);
      border: 1px solid var(--ds-border);
      border-radius: 5px;
    }
    .cmd-results { max-height: 360px; overflow-y: auto; padding: 6px; }
    .cmd-sec {
      padding: 8px 12px 4px;
      font-size: 0.7rem; font-weight: 600;
      color: var(--ds-text-faint);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .cmd-row {
      display: flex; align-items: center; gap: 12px;
      padding: 9px 12px;
      border-radius: 8px;
      cursor: pointer;
      color: var(--ds-text);
      text-decoration: none;
      font-size: 0.88rem;
      letter-spacing: -0.003em;
    }
    .cmd-row svg { width: 14px; height: 14px; stroke-width: 2; color: var(--ds-text-muted); flex-shrink: 0; }
    .cmd-row__main { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .cmd-row__sub { color: var(--ds-text-muted); font-size: 0.8rem; margin-left: 8px; white-space: nowrap; }
    .cmd-row--sel { background: var(--ds-accent-soft); color: var(--ds-accent); }
    .cmd-row--sel svg { color: var(--ds-accent); }

    @media (prefers-reduced-motion: reduce) {
      * { transition: none !important; animation: none !important; }
    }
