/* =====================================================
   TheBREND — MAIN STYLESHEET v5.0 (CLEAN MESH)
   Fonts: Rajdhani (headers) + Roboto (body) + Share Tech Mono
   ===================================================== */

@import url('/css/fonts.css');

/* ── Brand Palette ─────────────────────────────────────────────────────────
   Primary theme: pure BLACK dominant · RED accent · WHITE text
   Invert theme:  WHITE dominant · RED accent · BLACK text
   ──────────────────────────────────────────────────────────────────────── */

:root, [data-theme="dark"] {
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;

  /* Brand accent */
  --red:      #FF0000;
  --red-dim:  rgba(255, 0, 0, 0.10);
  --red-glow: 0 0 20px rgba(255, 0, 0, 0.45);

  /* BLACK family — dominant */
  --bg:         #060606;
  --bg-2:       #0a0a0a;
  --bg-3:       #111111;
  --bg-card:    rgba(10, 10, 10, 0.97);
  --bg-input:   #0d0d0d;
  --surface:    rgba(10, 10, 10, 0.97);

  /* WHITE family — text */
  --text:       #ffffff;
  --text-dim:   rgba(255, 255, 255, 0.55);
  --text-muted: rgba(255, 255, 255, 0.25);

  /* Borders */
  --border:     rgba(255, 0, 0, 0.18);
  --border-dim: rgba(255, 255, 255, 0.07);

  /* System surfaces */
  --sys-header-bg:    rgba(0, 0, 0, 0.97);
  --sys-admin-bg:     rgba(0, 0, 0, 0.5);
  --sys-section-dark: rgba(0, 0, 0, 0.6);
  --dropdown-bg:      rgba(5, 5, 5, 0.98);

  --tr: 0.22s ease;
  --radius: 0px;
}

/* ── Invert theme: WHITE dominant · RED accent · BLACK text ─────────────── */
[data-theme="invert"] {
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;

  --red:      #CC0000;
  --red-dim:  rgba(204, 0, 0, 0.08);
  --red-glow: 0 0 16px rgba(204, 0, 0, 0.3);

  /* WHITE family — dominant */
  --bg:         #ffffff;
  --bg-2:       #f5f5f5;
  --bg-3:       #ebebeb;
  --bg-card:    rgba(255, 255, 255, 0.97);
  --bg-input:   #f0f0f0;
  --surface:    rgba(250, 250, 250, 0.98);

  /* BLACK family — text */
  --text:       #000000;
  --text-dim:   rgba(0, 0, 0, 0.5);
  --text-muted: rgba(0, 0, 0, 0.25);

  /* Borders */
  --border:     rgba(204, 0, 0, 0.15);
  --border-dim: rgba(0, 0, 0, 0.08);

  /* System surfaces */
  --sys-header-bg:    rgba(255, 255, 255, 0.97);
  --sys-admin-bg:     rgba(255, 255, 255, 0.5);
  --sys-section-dark: rgba(0, 0, 0, 0.04);
  --dropdown-bg:      rgba(248, 248, 248, 0.99);

  --tr: 0.22s ease;
  --radius: 0px;
}

/* Invert: card shadows and card overrides */
[data-theme="invert"] .card,
[data-theme="invert"] .bot-card,
[data-theme="invert"] .dept-card,
[data-theme="invert"] .modal-content,
[data-theme="invert"] .toast,
[data-theme="invert"] .auth-box {
  box-shadow: 4px 4px 0 rgba(204, 0, 0, 0.12) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}
[data-theme="invert"] .card:hover,
[data-theme="invert"] .bot-card:hover,
[data-theme="invert"] .dept-card:hover {
  border-color: var(--red) !important;
  box-shadow: 4px 4px 0 rgba(204, 0, 0, 0.25) !important;
}
[data-theme="invert"] ::-webkit-scrollbar-track { background: var(--bg-2); }
[data-theme="invert"] ::selection { background: var(--red); color: #fff; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-radius: var(--radius) !important; }
html, body { scroll-behavior: smooth; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  min-height: 100vh;
  padding-top: 68px; 
  transition: background-color var(--tr), color var(--tr);
}

body > * { position: relative; z-index: 1; } 

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text); line-height: 1.1; }
.mono { font-family: var(--font-mono); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-tag { font-family: var(--font-mono); font-size: 11px; color: var(--red); letter-spacing: 3px; display: block; margin-bottom: 10px; }
.section-title { font-family: var(--font-head); font-size: clamp(28px, 5vw, 52px); font-weight: 800; color: var(--text); margin-bottom: 16px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: 2px; margin-bottom: 7px; text-transform: uppercase; }
.form-control { width: 100%; background: var(--bg-input); border: 1px solid var(--border-dim); color: var(--text); font-family: var(--font-body); font-size: 14px; padding: 11px 14px; outline: none; transition: border-color var(--tr), box-shadow var(--tr); }
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 2px rgba(255,0,0,0.15); }
.form-control::placeholder { color: var(--text-muted); }
select.form-control option { background: var(--bg-2); color: var(--text); }

.section { padding: 80px 0; }
.section--bg-dark, .section--dark { background: var(--sys-section-dark) !important; }

.pulse-dot { width: 7px; height: 7px; background: var(--red); animation: pulse-anim 1.5s ease infinite; flex-shrink: 0; }
@keyframes pulse-anim { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.3; transform: scale(0.6); } }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease both; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border-dim); border: 1px solid var(--border-dim); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-dim); border: 1px solid var(--border-dim); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1px; background: var(--border-dim); border: 1px solid var(--border-dim); }
.grid-2 > *, .grid-3 > *, .grid-auto > * { background: var(--bg-card); }
@media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.toast { position: fixed; bottom: 24px; right: 24px; background: var(--bg-card); border: 1px solid var(--border-dim); padding: 12px 20px; font-family: var(--font-mono); font-size: 13px; z-index: 9999; opacity: 0; transform: translateY(10px); transition: all 0.3s; max-width: 320px; backdrop-filter: blur(8px); }
.toast.show { opacity: 1; transform: translateY(0); }
.toast--success { border-color: rgba(255,255,255,0.35); color: var(--text); }
.toast--error   { border-color: var(--red); color: var(--red); }
.toast--info    { border-color: var(--border-dim); color: var(--text-dim); }
[data-theme="invert"] .toast--success { border-color: rgba(0,0,0,0.2); color: var(--text); }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); }
::selection { background: var(--red); color: #fff; }

/* ── Red top-border on profile section cards ─────────────────────────────── */
.section {
  border-top: 1px solid rgba(255, 0, 0, 0.25) !important;
}

/* ── Red underline on section headers ───────────────────────────────────── */
.section-hdr {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 0, 0, 0.12);
  margin-bottom: 16px;
}

/* ── Red line on page-level tabs ─────────────────────────────────────────── */
.tab-bar, .tab-nav-bar, .inner-tabs {
  border-bottom-color: rgba(255, 0, 0, 0.15) !important;
}

/* ── Red left accent on focused / hovered inputs ─────────────────────────── */
input:focus, textarea:focus, select:focus {
  border-left-color: var(--red) !important;
}

[data-theme="invert"] .section { border-top-color: rgba(204,0,0,0.2) !important; }

.text-red    { color: var(--red); }
.text-muted  { color: var(--text-muted); }
.text-dim    { color: var(--text-dim); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-12 { gap: 12px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.hidden { display: none !important; }
.w-full { width: 100%; }

.card, .bot-card, .dept-card, .manif-card, .modal-content, .toast, .auth-box {
    box-shadow: 4px 4px 0 rgba(255, 0, 0, 0.15) !important;
    border: 1px solid var(--border) !important;
    background: var(--bg-card) !important;
    transition: all 0.2s linear !important;
}

.card:hover, .bot-card:hover, .dept-card:hover {
    border-color: var(--red) !important;
    box-shadow: 4px 4px 0 rgba(255, 0, 0, 0.4) !important;
    transform: translate(-2px, -2px) !important;
}

.btn, .btn-sm {
    background: transparent !important;
    color: var(--red) !important;
    border: 1px solid var(--red) !important;
    text-transform: uppercase !important;
    font-family: 'Share Tech Mono', monospace !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    transition: all 0.2s linear !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 28px !important;
}
.btn-sm { padding: 7px 16px !important; font-size: 12px !important; }
.btn:hover, .btn-sm:hover { background: var(--red) !important; color: var(--bg) !important; box-shadow: 4px 4px 0 rgba(255, 0, 0, 0.4) !important; }
.btn.btn--primary { background: var(--red) !important; color: #ffffff !important; }
.btn.btn--primary:hover { background: #cc0000 !important; border-color: #cc0000 !important; color: #ffffff !important; }
.btn.btn--outline { background: transparent !important; color: var(--text) !important; border-color: var(--border-dim) !important; }
.btn.btn--outline:hover { background: var(--red) !important; color: #ffffff !important; border-color: var(--red) !important; }

input, textarea, select {
    background: var(--bg-input) !important; border: 1px solid var(--border-dim) !important;
    border-bottom: 2px solid var(--red) !important; color: var(--text) !important; 
    font-family: 'Share Tech Mono', monospace !important; padding: 10px !important;
}
input:focus, textarea:focus, select:focus { outline: none !important; background: var(--bg-2) !important; box-shadow: inset 0 -2px 10px rgba(255, 0, 0, 0.1) !important; }

.badge, .role-badge { background: var(--red) !important; color: var(--bg) !important; font-family: 'Share Tech Mono', monospace !important; text-transform: uppercase !important; padding: 2px 8px !important; border: none !important; font-weight: bold !important; letter-spacing: 2px !important; }

sys-header { position: fixed !important; top: var(--degraded-offset, 0) !important; left: 0 !important; right: 0 !important; z-index: 999999 !important; display: block !important; }

/* ═══════════════════════════════════════════════════════
   MODULE: AUTH & PROFILE SCREENS
   ═══════════════════════════════════════════════════════ */

#authScreen { min-height: calc(100vh - 68px); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-box { width: 100%; max-width: 440px; background: var(--bg-card); border: 1px solid var(--border); padding: 48px 40px; position: relative; }
.auth-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--red); }
.auth-tag  { font-family: var(--font-mono); font-size: 11px; color: var(--red); letter-spacing: 3px; margin-bottom: 12px; }
.auth-title { font-family: var(--font-head); font-size: 32px; font-weight: 900; color: var(--text); margin-bottom: 8px; text-transform: uppercase; }
.auth-sub   { font-size: 13px; color: var(--text-dim); margin-bottom: 36px; line-height: 1.5; }
.auth-tabs  { display: flex; gap: 0; border-bottom: 1px solid var(--border-dim); margin-bottom: 32px; }
.auth-tab { flex: 1; padding: 10px 0; text-align: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: 1px; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.2s; background: none; border-top: none; border-left: none; border-right: none; }
.auth-tab.active { color: var(--red); border-bottom-color: var(--red); }
.auth-field { margin-bottom: 20px; }
.auth-label { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); letter-spacing: 2px; margin-bottom: 8px; display: block; }
.auth-input { width: 100%; padding: 12px 16px; background: var(--bg-input); border: 1px solid var(--border-dim); color: var(--text); font-family: var(--font-mono); font-size: 14px; outline: none; transition: border-color 0.2s; }
.auth-input:focus { border-color: var(--red); box-shadow: 0 0 10px rgba(255,0,0,0.1); }
.auth-err { font-family: var(--font-mono); font-size: 11px; color: #ff4444; margin-top: 8px; display: none; }

#profileScreen { display: block; }
.profile-cover { height: 200px; background: linear-gradient(135deg, #0a0a0a 0%, #1a0000 50%, #0a0a0a 100%); position: relative; overflow: hidden; background-size: cover; background-position: center;}
.profile-cover::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(255,0,0,0.03) 24px, rgba(255,0,0,0.03) 25px); }
.profile-body { max-width: 900px; margin: 0 auto; padding: 0 24px 60px; }
.profile-meta { display: flex; align-items: flex-end; gap: 24px; margin-top: -48px; margin-bottom: 32px; position: relative; z-index: 2; }
.profile-avatar-wrap { width: 96px; height: 96px; flex-shrink: 0; border: 3px solid var(--red); background: var(--bg-3); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 36px; font-weight: 900; color: var(--red); overflow: hidden; }
.profile-avatar-wrap img { width: 100%; height: 100%; object-fit: cover; display: none; }
.profile-info { flex: 1; padding-bottom: 4px; }
.profile-name  { font-family: var(--font-head); font-size: 28px; font-weight: 900; color: var(--text); margin-bottom: 4px; }
.profile-handle { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); letter-spacing: 1px; }
.profile-role-badge { display: inline-block; padding: 3px 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; border: 1px solid; margin-top: 8px; }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
@media (max-width: 600px) { .profile-grid { grid-template-columns: 1fr; } }
.profile-card { background: var(--bg-card); border: 1px solid var(--border-dim); padding: 24px; }
.profile-card__title { font-family: var(--font-mono); font-size: 10px; color: var(--red); letter-spacing: 2px; margin-bottom: 16px; }
.profile-stat { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border-dim); }
.profile-stat:last-child { border-bottom: none; }
.profile-stat__key { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }
.profile-stat__val { font-family: var(--font-mono); font-size: 13px; color: var(--text); font-weight: 600; }
.profile-stat__val.red { color: var(--red); }
.profile-edit-form { display: none; }
.profile-edit-form.active { display: block; }
.logout-btn { background: none; border: 1px solid var(--border-dim); color: var(--text-muted); padding: 8px 20px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; cursor: pointer; transition: all 0.2s; }
.logout-btn:hover { border-color: var(--red); color: var(--red); box-shadow: 2px 2px 0 rgba(255,0,0,0.2); }

/* ═══════════════════════════════════════════════════════
   MODULE: GOD MODE TERMINAL & UI OVERRIDES
   ═══════════════════════════════════════════════════════ */

body.bg-pattern-grid {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) !important;
    background-size: 30px 30px !important;
}
body.bg-pattern-dots {
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px) !important;
    background-size: 20px 20px !important;
}

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.terminal-box { background: var(--bg-card); border: 1px solid var(--red); box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), var(--red-glow); padding: 32px; width: 100%; max-width: 480px; position: relative; }
.terminal-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-dim); padding-bottom: 16px; }

.color-dot { width: 32px; height: 32px; border-radius: 50% !important; cursor: pointer; border: 2px solid transparent; transition: transform 0.2s; }
.color-dot:hover { transform: scale(1.1); }
.color-dot.active { border-color: #fff; transform: scale(1.1); }

.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--bg-3); border: 1px solid var(--border-dim); transition: .3s; }
.slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 3px; bottom: 3px; background-color: var(--text-muted); transition: .3s; }
input:checked + .slider { background-color: rgba(255,0,0,0.2); border-color: var(--red); }
input:checked + .slider:before { transform: translateX(20px); background-color: var(--red); box-shadow: 0 0 10px var(--red); }

/* ==========================================================================
   АДАПТИВНОСТЬ (FLUID DESIGN & RESPONSIVE) - ZERO CORE
   ========================================================================== */

/* 1. Плавная типографика (Шрифты масштабируются сами) */
html {
    font-size: clamp(14px, 1vw + 10px, 18px); /* Базовый размер шрифта */
}

/* 2. Адаптивные отступы контейнера */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px); /* На мобилках 16px, на десктопе 40px */
}

/* 3. Мобильная Шапка (Header) */
@media (max-width: 992px) {
    .sys-header-wrapper {
        padding: 0 16px !important;
    }
    .hdr-nav {
        display: none !important; /* Прячем текстовое меню на телефонах */
    }
    .hdr-actions {
        gap: 8px !important;
    }
    .hdr-profile-btn {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }
}

/* 4. Мобильный Подвал (Footer) */
@media (max-width: 768px) {
    .sys-footer {
        padding: 40px 20px 20px !important;
    }
    .ftr-container {
        grid-template-columns: 1fr !important; /* В одну колонку на смартфонах */
        gap: 30px !important;
    }
    .ftr-col-title {
        margin-bottom: 12px !important;
    }
}

/* 5. Адаптивность Главной страницы (Hero Section) */
@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 40px !important;
        min-height: auto !important;
    }
    .hero-title {
        font-size: clamp(36px, 10vw, 60px) !important; /* Уменьшаем заголовок */
        margin-bottom: 16px !important;
    }
    .hero-desc {
        font-size: 16px !important;
        margin-bottom: 30px !important;
        min-height: auto !important;
    }
    .stats-row {
        flex-direction: column !important; /* Статистика друг под другом */
        gap: 20px !important;
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 2px solid var(--red);
        padding-top: 20px;
    }
    .action-group {
        flex-direction: column !important; /* Кнопки друг под другом */
    }
    .btn-main {
        width: 100%;
    }
}

/* 6. Режим для ТВ (Огромные экраны) */
@media (min-width: 1920px) {
    .container, .hero {
        max-width: 1600px !important;
    }
    .hero-title {
        font-size: 120px !important;
    }
    .hero-desc {
        font-size: 24px !important;
        max-width: 900px !important;
    }
}

/* ==========================================================================
   MODULE: INNER PAGES — Missing classes
   ========================================================================== */

/* Page header banner (используется в donate, docs, shop, bonuses, etc.) */
.page-header {
    background: linear-gradient(180deg, rgba(255,0,0,0.04) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-dim);
    padding: 40px 0 28px;
    margin-bottom: 0;
}
.page-header__tag {
    font-family: var(--font-mono); font-size: 11px; color: var(--red);
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px;
}
.page-header__title {
    font-family: var(--font-head); font-size: clamp(32px, 5vw, 56px);
    font-weight: 900; text-transform: uppercase; color: var(--text); line-height: 1;
}
.page-header__sub {
    font-size: 14px; color: var(--text-dim); margin-top: 10px; max-width: 600px; line-height: 1.6;
}

/* Panel card / bento box (используется в profile, admin) */
.panel-card, .bento-box {
    background: var(--bg-card); border: 1px solid var(--border-dim); padding: 24px;
    transition: border-color .2s;
}
.panel-card:hover, .bento-box:hover { border-color: rgba(255,0,0,0.2); }

/* Fade-in animation */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeInUp 0.5s ease both; }

/* Section label (// prefix labels) */
.section-label {
    font-family: var(--font-mono); font-size: 11px; color: var(--red);
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
}

/* Cluster tabs (projects.html) */
.cluster-tab {
    background: none; border: 1px solid var(--border-dim); color: var(--text-dim);
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px;
    padding: 7px 16px; cursor: pointer; transition: all .2s;
}
.cluster-tab:hover { border-color: rgba(255,0,0,0.3); color: var(--text); }
.cluster-tab.active { border-color: var(--red); color: var(--red); background: rgba(255,0,0,0.05); }

/* Utility */
.btn--sm { padding: 7px 16px !important; font-size: 11px !important; }
.btn--danger { background: rgba(255,0,0,0.1) !important; border-color: var(--red) !important; color: var(--red) !important; }
.btn--danger:hover { background: var(--red) !important; color: #fff !important; }
.text-right { text-align: right; }

/* ═══════════════════════════════════════════════════════
   PHASE 3: Inline-style → utility migration (vanilla site)
   ═══════════════════════════════════════════════════════ */

/* Colors */
.text-success     { color: #00cc66; }
.text-warn        { color: #ffaa00; }
.text-warn-bright { color: #ffcc00; }
.text-red-deep    { color: #cc0000; }
.text-default     { color: var(--text); }
.text-faint       { color: rgba(255, 255, 255, 0.3); }

/* Flex / layout */
.flex-1         { flex: 1; }
.flex-2         { flex: 2; }
.justify-center { justify-content: center; }
.items-start    { align-items: flex-start; }
.position-rel   { position: relative; }
.flex-col-24    { display: flex; flex-direction: column; gap: 24px; }
.row-gap-10     { display: flex; gap: 10px; }
.row-c-gap-6    { display: flex; align-items: center; gap: 6px; }
.row-c-gap-10   { display: flex; align-items: center; gap: 10px; }

/* Spacing micro */
.mt-4   { margin-top: 4px; }
.mt-28  { margin-top: 28px; }
.mb-16  { margin-bottom: 16px; }
.m-0    { margin: 0; }

/* Typography */
.mono-red { font-family: var(--font-mono); color: var(--red); }
.mono-12  { font-family: var(--font-mono); font-size: 12px; }
.fs-12    { font-size: 12px; }
.fw-bold  { font-weight: bold; }

/* Icon sizes (inline SVG / pulse-dots) */
.icon-12 { width: 12px; height: 12px; }
.icon-14 { width: 14px; height: 14px; }
.icon-16 { width: 16px; height: 16px; }

/* Empty-state placeholders */
.empty-state    { padding: 32px; text-align: center; color: var(--text-muted); }
.empty-state-sm { padding: 24px; text-align: center; color: var(--text-muted); }