/* ============================================
   ConnectX - Custom CSS v2
   ============================================ */

/* ---------- Theme Tokens ---------- */
:root {
    --cx-primary-50: #eff6ff;
    --cx-primary-100: #dbeafe;
    --cx-primary-200: #bfdbfe;
    --cx-primary-300: #93c5fd;
    --cx-primary-400: #60a5fa;
    --cx-primary-500: #1e3a5f;
    --cx-primary-600: #162d4a;
    --cx-primary-700: #0f2035;
    --cx-primary-800: #0a1625;
    --cx-primary-900: #050b14;

    --cx-secondary-50: #fef2f2;
    --cx-secondary-100: #fee2e2;
    --cx-secondary-500: #dc2626;
    --cx-secondary-600: #b91c1c;
    --cx-secondary-700: #991b1b;
    --cx-secondary-900: #450a0a;

    --cx-accent-50: #f0fdf4;
    --cx-accent-100: #dcfce7;
    --cx-accent-400: #4ade80;
    --cx-accent-500: #16a34a;
    --cx-accent-600: #15803d;
    --cx-accent-700: #166534;
    --cx-accent-900: #052e16;

    --cx-surface-50: #f8fafc;
    --cx-surface-100: #f1f5f9;
    --cx-surface-200: #e2e8f0;
    --cx-surface-300: #cbd5e1;
    --cx-surface-400: #94a3b8;
    --cx-surface-500: #64748b;
    --cx-surface-600: #475569;
    --cx-surface-700: #334155;
    --cx-surface-800: #1e293b;
    --cx-surface-900: #0f172a;
    --cx-surface-950: #020617;

    --cx-radius: 1rem;
    --cx-radius-sm: 0.625rem;
    --cx-radius-lg: 1.25rem;
    --cx-radius-xl: 1.5rem;

    --cx-shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --cx-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --cx-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --cx-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --cx-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);

    --cx-glass-bg: rgba(255,255,255,0.7);
    --cx-glass-border: rgba(255,255,255,0.3);
}

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

body {
    font-family: 'Plus Jakarta Sans', 'Instrument Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--cx-surface-50);
    color: var(--cx-surface-900);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

.dark body, .dark {
    background-color: var(--cx-surface-900);
    color: var(--cx-surface-100);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
table { border-collapse: collapse; width: 100%; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--cx-surface-300); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--cx-surface-400); }
.dark ::-webkit-scrollbar-thumb { background: var(--cx-surface-600); }
.dark ::-webkit-scrollbar-thumb:hover { background: var(--cx-surface-500); }

/* ============================================
   COMPONENTS
   ============================================ */

/* ---------- Page Panel ---------- */
.page-panel {
    border-radius: var(--cx-radius-lg);
    border: 1px solid var(--cx-surface-200);
    background: #fff;
    padding: 1.75rem;
    box-shadow: var(--cx-shadow);
    transition: box-shadow 0.25s, border-color 0.25s;
}
.page-panel:hover {
    box-shadow: var(--cx-shadow-md);
}
.dark .page-panel {
    border-color: var(--cx-surface-700);
    background: rgba(30,41,59,0.6);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* ---------- Stat Card ---------- */
.stat-card {
    border-radius: var(--cx-radius-lg);
    border: 1px solid var(--cx-surface-200);
    background: #fff;
    padding: 1.5rem;
    box-shadow: var(--cx-shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s;
    background: linear-gradient(135deg, rgba(30,58,95,0.03), transparent);
}
.stat-card:hover::before {
    opacity: 1;
}
.stat-card:hover {
    box-shadow: var(--cx-shadow-lg);
    transform: translateY(-2px);
    border-color: var(--cx-surface-300);
}
.dark .stat-card {
    border-color: var(--cx-surface-700);
    background: rgba(30,41,59,0.5);
    backdrop-filter: blur(12px);
}
.dark .stat-card:hover {
    border-color: var(--cx-surface-600);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ---------- Card (alias) ---------- */
.card {
    border-radius: var(--cx-radius-lg);
    border: 1px solid var(--cx-surface-200);
    background: #fff;
    padding: 1.75rem;
    box-shadow: var(--cx-shadow);
    transition: box-shadow 0.25s;
}
.card:hover { box-shadow: var(--cx-shadow-md); }
.dark .card {
    border-color: var(--cx-surface-700);
    background: rgba(30,41,59,0.6);
    backdrop-filter: blur(12px);
}

/* ---------- Input Field ---------- */
.input-field {
    width: 100%;
    border-radius: var(--cx-radius-sm);
    border: 1.5px solid var(--cx-surface-200);
    background: #fff;
    padding: 0.6875rem 1rem;
    font-size: 0.875rem;
    color: var(--cx-surface-900);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}
.input-field::placeholder { color: var(--cx-surface-400); }
.input-field:focus {
    border-color: var(--cx-primary-500);
    box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
    background: #fff;
}
.dark .input-field {
    border-color: var(--cx-surface-600);
    background: var(--cx-surface-800);
    color: var(--cx-surface-100);
}
.dark .input-field::placeholder { color: var(--cx-surface-500); }
.dark .input-field:focus {
    border-color: var(--cx-primary-400);
    box-shadow: 0 0 0 3px rgba(96,165,250,0.1);
}

select.input-field {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

/* ---------- Label ---------- */
.label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--cx-surface-700);
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}
.dark .label { color: var(--cx-surface-300); }

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--cx-radius-sm);
    background: linear-gradient(135deg, var(--cx-primary-500), var(--cx-primary-600));
    color: #fff;
    padding: 0.6875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(30,58,95,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
    letter-spacing: -0.01em;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--cx-primary-600), var(--cx-primary-700));
    box-shadow: 0 4px 12px rgba(30,58,95,0.35), inset 0 1px 0 rgba(255,255,255,0.1);
    transform: translateY(-1px);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(30,58,95,0.25);
}
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--cx-radius-sm);
    background: linear-gradient(135deg, var(--cx-secondary-500), var(--cx-secondary-600));
    color: #fff;
    padding: 0.6875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(220,38,38,0.25);
}
.btn-secondary:hover {
    background: linear-gradient(135deg, var(--cx-secondary-600), var(--cx-secondary-700));
    box-shadow: 0 4px 12px rgba(220,38,38,0.35);
    transform: translateY(-1px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--cx-radius-sm);
    background: transparent;
    padding: 0.6875rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    color: var(--cx-surface-700);
    transition: all 0.2s;
}
.btn-ghost:hover { background: var(--cx-surface-100); }
.dark .btn-ghost { color: var(--cx-surface-300); }
.dark .btn-ghost:hover { background: var(--cx-surface-700); }

/* ---------- Badges ---------- */
.badge-success {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 9999px;
    background: rgba(22,163,74,0.1);
    padding: 0.2rem 0.625rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cx-accent-600);
    letter-spacing: 0.01em;
}
.dark .badge-success {
    background: rgba(74,222,128,0.12);
    color: var(--cx-accent-400);
}

.badge-danger {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 9999px;
    background: rgba(220,38,38,0.1);
    padding: 0.2rem 0.625rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cx-secondary-600);
    letter-spacing: 0.01em;
}
.dark .badge-danger {
    background: rgba(248,113,113,0.12);
    color: var(--cx-secondary-400);
}

.badge-warning {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 9999px;
    background: rgba(217,119,6,0.1);
    padding: 0.2rem 0.625rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #b45309;
    letter-spacing: 0.01em;
}
.dark .badge-warning {
    background: rgba(251,191,36,0.12);
    color: #fbbf24;
}

.badge-info {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 9999px;
    background: rgba(30,58,95,0.1);
    padding: 0.2rem 0.625rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cx-primary-500);
    letter-spacing: 0.01em;
}
.dark .badge-info {
    background: rgba(96,165,250,0.12);
    color: var(--cx-primary-300);
}

/* ---------- Table Row ---------- */
.table-row {
    border-bottom: 1px solid var(--cx-surface-100);
    transition: all 0.15s;
}
.table-row:hover { background: var(--cx-surface-50); }
.table-row:last-child { border-bottom: none; }
.dark .table-row { border-color: rgba(51,65,85,0.5); }
.dark .table-row:hover { background: rgba(51,65,85,0.2); }

/* ============================================
   SIDEBAR
   ============================================ */
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 16rem;
    z-index: 40;
    background: linear-gradient(180deg, var(--cx-surface-900) 0%, #0c1320 100%);
    color: var(--cx-surface-300);
    display: flex;
    flex-direction: column;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.sidebar-section-label {
    padding: 1.25rem 1.25rem 0.375rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cx-surface-500);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5625rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: var(--cx-radius-sm);
    margin: 0.0625rem 0.75rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(148,163,184,0.9);
    letter-spacing: -0.01em;
}
.sidebar-link:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.sidebar-link-active {
    background: linear-gradient(135deg, var(--cx-primary-500), rgba(30,58,95,0.8)) !important;
    color: #fff !important;
    box-shadow: 0 2px 10px rgba(30,58,95,0.4);
}

.sidebar-user-info {
    margin-top: auto;
    padding: 0.875rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Sidebar overlay (mobile) */
#sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 35;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}
#sidebar-overlay.active { display: block; }

/* ============================================
   SIDEBAR COLLAPSE
   ============================================ */
body.sidebar-collapsed #sidebar { width: 72px; }
body.sidebar-collapsed #sidebar .sidebar-link span,
body.sidebar-collapsed #sidebar .sidebar-section-label,
body.sidebar-collapsed #sidebar .sidebar-logo-text,
body.sidebar-collapsed #sidebar .sidebar-user-info,
body.sidebar-collapsed #sidebar .sidebar-brand-text { display: none; }
body.sidebar-collapsed #sidebar .sidebar-link { justify-content: center; padding-left: 0; padding-right: 0; margin-left: 0.375rem; margin-right: 0.375rem; }
body.sidebar-collapsed #sidebar .sidebar-logo { justify-content: center; padding-left: 0; padding-right: 0; }
@media (min-width: 1024px) {
    body.sidebar-collapsed #main-content { margin-left: 72px; }
    body.sidebar-collapsed #topbar { left: 72px; }
}

@media (max-width: 1023px) {
    #sidebar { transform: translateX(-100%); }
    #sidebar.open { transform: translateX(0); }
    body.sidebar-collapsed #sidebar { width: 16rem; transform: translateX(-100%); }
    body.sidebar-collapsed #sidebar.open { transform: translateX(0); }
    body.sidebar-collapsed #main-content { margin-left: 0; }
    body.sidebar-collapsed #topbar { left: 0; }
}

/* ============================================
   TOPBAR
   ============================================ */
#topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4rem;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background: rgba(248,250,252,0.8);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--cx-surface-200);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1024px) {
    #topbar {
        left: 16rem;
        padding: 0 1.75rem;
    }
}
.dark #topbar {
    background: rgba(15,23,42,0.8);
    border-color: rgba(51,65,85,0.5);
}

#main-content {
    margin-left: 0;
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 100vh;
    overflow-x: hidden;
}

@media (min-width: 1024px) {
    #main-content {
        margin-left: 16rem;
    }
}

/* ============================================
   TEXT COLOR UTILITIES (dark mode)
   ============================================ */
.dark .text-surface-900,
.dark .text-surface-900 { color: #fff; }
.dark .text-surface-700 { color: var(--cx-surface-300); }
.dark .text-surface-600 { color: var(--cx-surface-400); }
.dark .text-surface-500 { color: var(--cx-surface-400); }
.dark .text-surface-400 { color: var(--cx-surface-500); }

/* ============================================
   SERVICE TABS
   ============================================ */
.service-tab {
    color: var(--cx-surface-600);
    transition: all 0.2s;
}
.service-tab:hover {
    background: var(--cx-surface-100);
}
.service-tab.active {
    background: var(--cx-primary-500);
    color: #fff;
    box-shadow: 0 2px 8px rgba(30,58,95,0.3);
}
.dark .service-tab {
    color: var(--cx-surface-400);
}
.dark .service-tab:hover {
    background: var(--cx-surface-700);
}

/* ============================================
    ANIMATIONS
    ============================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
.animate-slide-up { animation: slideUp 0.4s ease-out both; }
.animate-fade-in { animation: fadeIn 0.3s ease-out both; }

/* ============================================
   PAGINATION
   ============================================ */
.pagination { display: flex; gap: 0.25rem; align-items: center; }
.pagination .page-item { display: inline-flex; }
.pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.625rem;
    border-radius: var(--cx-radius-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--cx-surface-700);
    background: #fff;
    border: 1px solid var(--cx-surface-200);
    transition: all 0.2s;
}
.pagination .page-link:hover { background: var(--cx-surface-50); border-color: var(--cx-surface-300); }
.pagination .page-item.active .page-link {
    background: var(--cx-primary-500);
    color: #fff;
    border-color: var(--cx-primary-500);
    box-shadow: 0 2px 6px rgba(30,58,95,0.25);
}
.pagination .page-item.disabled .page-link {
    color: var(--cx-surface-400);
    cursor: not-allowed;
}
.dark .pagination .page-link {
    background: var(--cx-surface-800);
    border-color: var(--cx-surface-700);
    color: var(--cx-surface-300);
}
.dark .pagination .page-link:hover { background: var(--cx-surface-700); }
.dark .pagination .page-item.active .page-link { background: var(--cx-primary-500); color: #fff; border-color: var(--cx-primary-500); }

/* ============================================
   DROPDOWN
   ============================================ */
.dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    min-width: 13rem;
    border-radius: var(--cx-radius);
    border: 1px solid var(--cx-surface-200);
    background: #fff;
    box-shadow: var(--cx-shadow-xl);
    z-index: 50;
    display: none;
    padding: 0.375rem 0;
    animation: slideDown 0.15s ease-out;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown-menu.show { display: block; }
.dark .dropdown-menu {
    border-color: var(--cx-surface-700);
    background: var(--cx-surface-800);
}
.dropdown-menu a, .dropdown-menu button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    color: var(--cx-surface-700);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.1s;
}
.dropdown-menu a:hover, .dropdown-menu button:hover { background: var(--cx-surface-50); }
.dark .dropdown-menu a, .dark .dropdown-menu button { color: var(--cx-surface-300); }
.dark .dropdown-menu a:hover, .dark .dropdown-menu button:hover { background: var(--cx-surface-700); }

/* ============================================
   FLASHER NOTIFICATIONS
   ============================================ */
.flasher-container { position: fixed; top: 5rem; right: 1.5rem; z-index: 100; display: flex; flex-direction: column; gap: 0.5rem; }
.flasher-message {
    padding: 0.75rem 1.25rem;
    border-radius: var(--cx-radius);
    font-size: 0.8125rem;
    font-weight: 500;
    box-shadow: var(--cx-shadow-lg);
    animation: flasher-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 24rem;
}
.flasher-success { background: #059669; color: #fff; }
.flasher-error { background: #dc2626; color: #fff; }
.flasher-warning { background: #d97706; color: #fff; }
.flasher-info { background: var(--cx-primary-500); color: #fff; }

@keyframes flasher-in {
    from { opacity: 0; transform: translateX(1rem) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

/* ============================================
   DASHBOARD EXTRAS
   ============================================ */

/* Premium wallet card shimmer on hover */
.wallet-shimmer {
    position: relative;
    overflow: hidden;
}
.wallet-shimmer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.12) 45%,
        rgba(255,255,255,0.18) 50%,
        rgba(255,255,255,0.12) 55%,
        transparent 60%
    );
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

/* Quick action cards */
.quick-action-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: var(--cx-radius-lg);
    border: 1px solid var(--cx-surface-200);
    background: #fff;
    padding: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.quick-action-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 0 2px 2px 0;
    background: var(--cx-surface-200);
    transition: all 0.3s;
}
.quick-action-card:hover {
    box-shadow: var(--cx-shadow-lg);
    transform: translateY(-2px);
    border-color: transparent;
}
.quick-action-card:hover::before {
    width: 4px;
}
.dark .quick-action-card {
    border-color: var(--cx-surface-700);
    background: rgba(30,41,59,0.5);
}
.dark .quick-action-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* Quick action accent colors */
.qa-primary::before { background: var(--cx-primary-500); }
.qa-secondary::before { background: var(--cx-secondary-500); }
.qa-accent::before { background: var(--cx-accent-500); }

/* Live activity section */
.activity-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cx-accent-500);
    box-shadow: 0 0 6px rgba(22,163,74,0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}
