/* ════════════════════════════════════════════════════════════
   FÉNIX SEACE MONITOR — Panel CSS
   Estética: Dark Ops / Mission Control
   Fuentes: Barlow Condensed (display) + IBM Plex Mono (data)
   ════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700;800&family=IBM+Plex+Mono:wght@300;400;500;600&family=Barlow:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:         #0A0C10;
  --bg-1:       #0F1117;
  --bg-2:       #161921;
  --bg-3:       #1E2230;
  --border:     #252A38;
  --border-2:   #2E3448;
  --text:       #E2E6F0;
  --text-2:     #9AA3B8;
  --text-3:     #5C6480;
  --amber:      #F59E0B;
  --amber-dark: #B45309;
  --amber-glow: rgba(245,158,11,0.12);
  --red:        #EF4444;
  --red-glow:   rgba(239,68,68,0.1);
  --green:      #10B981;
  --green-glow: rgba(16,185,129,0.1);
  --blue:       #3B82F6;
  --blue-glow:  rgba(59,130,246,0.1);
  --yellow:     #EAB308;
  --sidebar-w:  240px;
  --header-h:   56px;
  --radius:     6px;
  --radius-lg:  10px;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;
  --shadow:     0 2px 12px rgba(0,0,0,0.4);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.6);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  margin: 0;
  padding: 0;
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-1); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-3); }

/* ── Sidebar ───────────────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-w);
  min-height: 100vh;
  background: var(--bg-1);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  transition: transform 0.25s ease;
}

.sidebar-logo {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
}
.sidebar-logo .brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--amber);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-logo .sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}

.sidebar-status {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-3);
}
.status-dot::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse-dot 2s infinite;
}
.status-dot.running::before {
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  animation: pulse-dot 0.8s infinite;
}
.status-dot.error::before {
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.nav {
  flex: 1;
  padding: 12px 0;
  overflow-y: auto;
}
.nav-section {
  padding: 8px 20px 4px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  color: var(--text-2);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.15s ease;
  border-left: 3px solid transparent;
  position: relative;
}
.nav-item:hover {
  color: var(--text);
  background: rgba(255,255,255,0.03);
}
.nav-item.active {
  color: var(--amber);
  border-left-color: var(--amber);
  background: var(--amber-glow);
}
.nav-item .icon { width: 16px; text-align: center; opacity: 0.7; }
.nav-item.active .icon { opacity: 1; }

.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-3);
  font-family: var(--font-mono);
}
.sidebar-footer a { color: var(--text-3); text-decoration: none; }
.sidebar-footer a:hover { color: var(--red); }

/* ── Main content ──────────────────────────────────────────── */
.main {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  height: var(--header-h);
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  text-transform: uppercase;
}
.topbar-right { display: flex; align-items: center; gap: 16px; }

.content {
  flex: 1;
  padding: 28px;
  overflow-x: hidden;
}

/* ── Stat cards ─────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.stat-card:hover { border-color: var(--border-2); }
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent, var(--amber));
  opacity: 0.6;
}
.stat-card.accent-red { --accent: var(--red); }
.stat-card.accent-green { --accent: var(--green); }
.stat-card.accent-blue { --accent: var(--blue); }

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  margin-bottom: 6px;
}
.stat-sub {
  font-size: 0.75rem;
  color: var(--text-3);
}
.stat-icon {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.5rem;
  opacity: 0.15;
}

/* ── Cards / Panels ─────────────────────────────────────────── */
.card {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.card-body { padding: 20px; }

/* ── Two-col grid ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 24px; }
@media (max-width: 1100px) { .grid-2 { grid-template-columns: 1fr; } }

/* ── Filters bar ────────────────────────────────────────────── */
.filters-bar {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 20px;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.filter-group input,
.filter-group select {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--text);
  padding: 7px 10px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.15s;
  min-width: 140px;
}
.filter-group input:focus,
.filter-group select:focus { border-color: var(--amber); }
.filter-group input[type="checkbox"] {
  width: 16px; height: 16px; min-width: unset;
  accent-color: var(--amber);
}
.filter-group.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding-bottom: 2px;
}
.filters-actions { display: flex; gap: 8px; align-items: flex-end; margin-left: auto; }

/* ── Table ──────────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
table { width: 100%; border-collapse: collapse; }
thead { background: var(--bg-2); }
th {
  padding: 10px 14px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  vertical-align: middle;
  color: var(--text-2);
}
tr:last-child td { border-bottom: none; }
tbody tr { transition: background 0.1s; cursor: pointer; }
tbody tr:hover { background: rgba(255,255,255,0.025); }
tbody tr:hover td { color: var(--text); }
.nomenclatura-cell {
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text) !important;
  font-weight: 500;
}
.mono { font-family: var(--font-mono); font-size: 0.75rem; }

/* ── Badges / Scores ────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 3px 8px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
}
.score-red   { background: var(--red-glow);   color: var(--red);   border: 1px solid rgba(239,68,68,0.3); }
.score-amber { background: var(--amber-glow); color: var(--amber); border: 1px solid rgba(245,158,11,0.3); }
.score-yellow{ background: rgba(234,179,8,0.1); color: var(--yellow); border: 1px solid rgba(234,179,8,0.25);}
.score-gray  { background: rgba(92,100,128,0.15); color: var(--text-3); border: 1px solid var(--border); }

.badge-seace     { background: var(--blue-glow);  color: var(--blue);  border: 1px solid rgba(59,130,246,0.2); }
.badge-perucompras{ background: var(--green-glow); color: var(--green); border: 1px solid rgba(16,185,129,0.2); }
.badge-relevante { background: var(--amber-glow); color: var(--amber); border: 1px solid rgba(245,158,11,0.2); }
.badge-ok        { background: var(--green-glow); color: var(--green); border: 1px solid rgba(16,185,129,0.2); }
.badge-error     { background: var(--red-glow);   color: var(--red);   border: 1px solid rgba(239,68,68,0.2); }
.badge-corriendo { background: var(--amber-glow); color: var(--amber); border: 1px solid rgba(245,158,11,0.2); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: #0A0C10;
}
.btn-primary:hover { background: #FBB034; box-shadow: 0 0 20px rgba(245,158,11,0.3); }
.btn-primary:disabled { background: var(--amber-dark); opacity: 0.5; cursor: not-allowed; }

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { border-color: var(--text-3); color: var(--text); background: rgba(255,255,255,0.03); }

.btn-danger { background: var(--red-glow); color: var(--red); border: 1px solid rgba(239,68,68,0.3); }
.btn-danger:hover { background: rgba(239,68,68,0.2); }

.btn-sm { padding: 5px 10px; font-size: 0.75rem; }
.btn-icon { padding: 7px; }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  justify-content: space-between;
}
.pagination-info {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-3);
}
.page-btns { display: flex; gap: 4px; }
.page-btn {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: var(--text-2);
  background: var(--bg-2);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.15s;
}
.page-btn:hover { border-color: var(--amber); color: var(--amber); }
.page-btn.active { background: var(--amber); color: #0A0C10; border-color: var(--amber); font-weight: 700; }
.page-btn.disabled { opacity: 0.3; pointer-events: none; }

/* ── Modal ──────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--bg-1);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.2s;
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  position: sticky;
  top: 0;
  background: var(--bg-1);
  z-index: 1;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.3;
}
.modal-body { padding: 24px; }
.modal-close {
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 2px;
  flex-shrink: 0;
  transition: color 0.15s;
}
.modal-close:hover { color: var(--text); }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.detail-field { display: flex; flex-direction: column; gap: 4px; }
.detail-field.full-width { grid-column: 1 / -1; }
.detail-key {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.detail-val {
  font-size: 0.85rem;
  color: var(--text);
  word-break: break-word;
}
.detail-val a { color: var(--amber); text-decoration: none; }
.detail-val a:hover { text-decoration: underline; }

/* ── Charts ─────────────────────────────────────────────────── */
.chart-container { position: relative; height: 180px; }

/* ── Run timeline ───────────────────────────────────────────── */
.run-list { display: flex; flex-direction: column; gap: 8px; }
.run-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.8rem;
}
.run-item .run-time {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-3);
  min-width: 120px;
}
.run-item .run-stats {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-2);
  margin-left: auto;
}

/* ── Top opportunities list ─────────────────────────────────── */
.op-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.op-mini:last-child { border-bottom: none; }
.op-mini-score { flex-shrink: 0; }
.op-mini-content { flex: 1; min-width: 0; }
.op-mini-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.op-mini-meta {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 2px;
}
.op-mini-valor {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--amber);
  flex-shrink: 0;
  text-align: right;
}

/* ── Keywords table ─────────────────────────────────────────── */
.kw-list { display: flex; flex-direction: column; gap: 4px; }
.kw-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8rem;
  transition: border-color 0.15s;
}
.kw-item:hover { border-color: var(--border-2); }
.kw-text { flex: 1; font-family: var(--font-mono); font-size: 0.75rem; }
.kw-cat { font-size: 0.7rem; color: var(--text-3); min-width: 80px; }
.kw-peso {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--amber);
  min-width: 40px;
  text-align: right;
}
.kw-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-3);
  transition: color 0.15s;
  font-size: 0.75rem;
}
.kw-toggle:hover { color: var(--text); }
.kw-item.inactive { opacity: 0.4; }

/* ── Scrape button con estado ───────────────────────────────── */
.scrape-btn-wrap { position: relative; }
.scrape-loading {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  border-radius: var(--radius);
  color: #0A0C10;
  font-size: 0.75rem;
  font-weight: 600;
  gap: 6px;
}
.scrape-loading.show { display: flex; }

/* ── Login page ─────────────────────────────────────────────── */
.login-page {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(245,158,11,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.04) 0%, transparent 60%);
}
.login-box {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-lg);
}
.login-logo {
  text-align: center;
  margin-bottom: 28px;
}
.login-logo .brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.login-logo .sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* ── Form elements ──────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--text);
  padding: 10px 14px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus { border-color: var(--amber); }

.error-msg {
  background: var(--red-glow);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius);
  padding: 10px 14px;
  color: var(--red);
  font-size: 0.8rem;
  margin-bottom: 16px;
}

/* ── Toast notifications ────────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 0.82rem;
  color: var(--text);
  box-shadow: var(--shadow);
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: toast-in 0.25s ease;
  max-width: 340px;
}
.toast.success { border-left: 3px solid var(--green); }
.toast.error   { border-left: 3px solid var(--red); }
.toast.info    { border-left: 3px solid var(--amber); }

@keyframes toast-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Spinners ───────────────────────────────────────────────── */
.spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(245,158,11,0.3);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Utils ──────────────────────────────────────────────────── */
.text-amber { color: var(--amber); }
.text-muted { color: var(--text-3); }
.text-green { color: var(--green); }
.text-red   { color: var(--red); }
.text-mono  { font-family: var(--font-mono); }
.flex       { display: flex; }
.items-center { align-items: center; }
.gap-2      { gap: 8px; }
.gap-3      { gap: 12px; }
.ml-auto    { margin-left: auto; }
.mb-4       { margin-bottom: 16px; }
.mb-6       { margin-bottom: 24px; }
.w-full     { width: 100%; }
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.empty-state .icon { font-size: 2.5rem; margin-bottom: 12px; opacity: 0.3; }
