    /* =========================
       MINI STATUS BAR
       ========================== */

    .mini-status-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 11px;
      color: var(--gray);
      margin-bottom: 4px;
      opacity: .9;
    }

    .mini-status-bar .brand {
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
    }

    .mini-status-bar .brand-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(43, 178, 168, 0.22);
    }

    .mini-status-right {
      display: flex;
      align-items: center;
      gap: 8px;
    }
