/* ============================================================
   LXAIBOT — dashboard theme
   Dark, glassmorphism, subtle gradients, Minecraft-inspired accents
   ============================================================ */

:root {
  --bg-0: #07090f;
  --bg-1: #0b0f1a;
  --bg-2: #101625;
  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.09);
  --border-soft: rgba(255, 255, 255, 0.06);
  --text: #e8ecf4;
  --text-dim: #9aa3b5;
  --text-faint: #626c80;
  --green: #22c55e;
  --green-soft: rgba(34, 197, 94, 0.14);
  --yellow: #eab308;
  --blue: #3b82f6;
  --orange: #f97316;
  --red: #ef4444;
  --purple: #8b5cf6;
  --cyan: #06b6d4;
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', var(--font);
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { height: 100%; }

body {
  font-family: var(--font);
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(34, 197, 94, 0.09), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(59, 130, 246, 0.07), transparent 55%),
    radial-gradient(800px 800px at 60% 110%, rgba(139, 92, 246, 0.06), transparent 60%),
    var(--bg-0);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
a { color: inherit; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.10); border-radius: 8px; border: 2px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.18); background-clip: content-box; }

/* ---------- boot splash ---------- */
.boot-splash {
  height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
}
.boot-logo { font-family: var(--font-display); font-size: 42px; font-weight: 700; letter-spacing: 2px; }
.boot-logo span { color: var(--green); }
.boot-spinner {
  width: 28px; height: 28px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.12); border-top-color: var(--green);
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- auth screen ---------- */
.auth-wrap {
  min-height: 100vh; display: grid; grid-template-columns: 1.1fr 1fr;
}
.auth-hero {
  display: flex; flex-direction: column; justify-content: center; padding: 8vh 7vw;
  position: relative; overflow: hidden;
}
.auth-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(600px 500px at 40% 40%, black, transparent);
}
.brand-mark {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  letter-spacing: 3px; color: var(--text-dim); margin-bottom: 40px;
}
.brand-mark b { color: var(--green); }
.auth-hero h1 {
  font-family: var(--font-display); font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 700; line-height: 1.05; letter-spacing: -1px;
}
.auth-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--green), var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.auth-hero .tagline {
  margin-top: 18px; font-size: 18px; color: var(--text-dim); max-width: 46ch; line-height: 1.6;
}
.auth-hero .feature-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.pill {
  padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 500;
  background: var(--glass); border: 1px solid var(--border-soft); color: var(--text-dim);
  backdrop-filter: blur(8px);
}
.auth-panel {
  display: flex; align-items: center; justify-content: center; padding: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  border-left: 1px solid var(--border-soft);
}
.auth-card {
  width: 100%; max-width: 400px; padding: 36px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 22px; backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  animation: rise 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes rise { from { opacity: 0; transform: translateY(16px); } }
.auth-card h2 { font-family: var(--font-display); font-size: 26px; margin-bottom: 6px; }
.auth-card .sub { color: var(--text-dim); font-size: 14px; margin-bottom: 26px; }
.auth-switch { margin-top: 20px; text-align: center; font-size: 14px; color: var(--text-dim); }
.auth-switch a { color: var(--green); cursor: pointer; font-weight: 600; text-decoration: none; }

/* ---------- form elements ---------- */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dim); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.32); border: 1px solid var(--border);
  color: var(--text); font-size: 14px; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(34, 197, 94, 0.55); box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
}
.field textarea { resize: vertical; min-height: 74px; }
.field .hint { font-size: 12px; color: var(--text-faint); margin-top: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px; border-radius: var(--radius-sm); border: 1px solid var(--border);
  background: var(--glass-strong); color: var(--text); font-size: 14px; font-weight: 600;
  transition: transform 0.12s, background 0.15s, border-color 0.15s, opacity 0.15s;
}
.btn:hover { background: rgba(255,255,255,0.13); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.45; pointer-events: none; }
.btn.primary {
  background: linear-gradient(120deg, #16a34a, #22c55e); border-color: transparent; color: #04170a;
  box-shadow: 0 8px 24px rgba(34,197,94,0.25);
}
.btn.primary:hover { filter: brightness(1.08); }
.btn.danger { background: rgba(239,68,68,0.14); border-color: rgba(239,68,68,0.35); color: #fca5a5; }
.btn.danger:hover { background: rgba(239,68,68,0.24); }
.btn.warn { background: rgba(234,179,8,0.12); border-color: rgba(234,179,8,0.3); color: #fde047; }
.btn.blue { background: rgba(59,130,246,0.14); border-color: rgba(59,130,246,0.35); color: #93c5fd; }
.btn.sm { padding: 7px 12px; font-size: 13px; border-radius: 8px; }
.btn.block { width: 100%; }
.btn.ghost { background: transparent; }

/* ---------- app shell ---------- */
.shell { display: grid; grid-template-columns: 248px 1fr; min-height: 100vh; }
.sidebar {
  position: sticky; top: 0; height: 100vh; padding: 26px 18px;
  display: flex; flex-direction: column; gap: 6px;
  background: rgba(10, 13, 22, 0.72); border-right: 1px solid var(--border-soft);
  backdrop-filter: blur(20px);
}
.sidebar .brand {
  font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: 2px;
  padding: 4px 12px 2px;
}
.sidebar .brand b { color: var(--green); }
.sidebar .brand-tag { font-size: 11px; color: var(--text-faint); padding: 0 12px 20px; letter-spacing: 0.3px; }
.nav-section { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text-faint); padding: 16px 12px 8px; }
.nav-item {
  display: flex; align-items: center; gap: 11px; padding: 10px 12px;
  border-radius: var(--radius-sm); color: var(--text-dim); font-size: 14px; font-weight: 500;
  text-decoration: none; transition: background 0.15s, color 0.15s; border: 1px solid transparent;
}
.nav-item:hover { background: var(--glass); color: var(--text); }
.nav-item.active { background: var(--green-soft); color: #86efac; border-color: rgba(34,197,94,0.22); }
.nav-item .ico { width: 19px; text-align: center; font-size: 15px; }
.sidebar .spacer { flex: 1; }
.user-chip {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: var(--radius-sm); background: var(--glass); border: 1px solid var(--border-soft);
}
.user-chip .avatar {
  width: 32px; height: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--cyan)); color: #04170a; font-weight: 800; font-size: 14px;
}
.user-chip .name { font-size: 13px; font-weight: 600; flex: 1; overflow: hidden; text-overflow: ellipsis; }
.user-chip .logout { background: none; border: none; color: var(--text-faint); font-size: 16px; padding: 4px; }
.user-chip .logout:hover { color: var(--red); }

.main { padding: 34px 40px 60px; max-width: 1400px; width: 100%; }
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.page-head h1 { font-family: var(--font-display); font-size: 30px; font-weight: 700; letter-spacing: -0.4px; }
.page-head .sub { color: var(--text-dim); font-size: 14px; margin-top: 6px; }

/* ---------- cards & grids ---------- */
.card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  backdrop-filter: blur(14px); padding: 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.card.hover:hover { border-color: rgba(34,197,94,0.3); transform: translateY(-2px); }
.grid { display: grid; gap: 18px; }
.grid.cols-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); }

.stat-card { display: flex; flex-direction: column; gap: 8px; }
.stat-card .label { font-size: 12.5px; font-weight: 600; color: var(--text-dim); letter-spacing: 0.4px; }
.stat-card .value { font-family: var(--font-display); font-size: 32px; font-weight: 700; }
.stat-card .trend { font-size: 12px; color: var(--text-faint); }
.stat-card .value.green { color: var(--green); }
.stat-card .value.blue { color: #60a5fa; }
.stat-card .value.purple { color: #a78bfa; }
.stat-card .value.orange { color: #fb923c; }

/* ---------- status badges ---------- */
.status-badge {
  display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px;
  border-radius: 999px; font-size: 12.5px; font-weight: 600;
  border: 1px solid; white-space: nowrap;
}
.status-badge .dot { width: 8px; height: 8px; border-radius: 50%; }
.status-online   { color: #86efac; border-color: rgba(34,197,94,0.35); background: rgba(34,197,94,0.10); }
.status-online .dot { background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite; }
.status-connecting { color: #fde047; border-color: rgba(234,179,8,0.35); background: rgba(234,179,8,0.09); }
.status-connecting .dot { background: var(--yellow); animation: pulse 1s infinite; }
.status-working  { color: #93c5fd; border-color: rgba(59,130,246,0.4); background: rgba(59,130,246,0.10); }
.status-working .dot { background: var(--blue); box-shadow: 0 0 8px var(--blue); animation: pulse 1.6s infinite; }
.status-idle     { color: #fdba74; border-color: rgba(249,115,22,0.35); background: rgba(249,115,22,0.09); }
.status-idle .dot { background: var(--orange); }
.status-offline  { color: #9aa3b5; border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); }
.status-offline .dot { background: #64748b; }
.status-error    { color: #fca5a5; border-color: rgba(239,68,68,0.4); background: rgba(239,68,68,0.10); }
.status-error .dot { background: var(--red); animation: pulse 0.8s infinite; }
@keyframes pulse { 50% { opacity: 0.45; } }

/* ---------- bot cards ---------- */
.bot-card { display: flex; flex-direction: column; gap: 14px; }
.bot-card .top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.bot-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; }
.bot-card .server { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-dim); margin-top: 3px; }
.bot-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; font-size: 13px; }
.bot-meta .k { color: var(--text-faint); }
.bot-meta .v { color: var(--text); font-weight: 500; text-align: right; font-variant-numeric: tabular-nums; }
.bot-meta .v.mono { font-family: var(--font-mono); font-size: 12px; }
.bot-card .bars { display: flex; gap: 12px; }
.meter { flex: 1; }
.meter .m-label { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--text-faint); margin-bottom: 5px; }
.meter .m-track { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.07); overflow: hidden; }
.meter .m-fill { height: 100%; border-radius: 4px; transition: width 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); }
.m-fill.hp { background: linear-gradient(90deg, #ef4444, #f87171); }
.m-fill.food { background: linear-gradient(90deg, #d97706, #fbbf24); }
.bot-card .actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- console ---------- */
.console {
  background: rgba(0, 0, 0, 0.55); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
}
.console-head {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  border-bottom: 1px solid var(--border-soft); background: rgba(255,255,255,0.03);
  font-size: 13px; font-weight: 600; color: var(--text-dim);
}
.console-head .traffic { display: flex; gap: 6px; }
.console-head .traffic i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.console-body {
  padding: 14px 16px; height: 420px; overflow-y: auto;
  font-family: var(--font-mono); font-size: 12.5px; line-height: 1.75;
}
.console-line { display: flex; gap: 10px; animation: fade-in 0.2s; }
@keyframes fade-in { from { opacity: 0; } }
.console-line .ts { color: var(--text-faint); flex-shrink: 0; }
.console-line .msg { word-break: break-word; }
.console-line.lvl-info .msg { color: #c9d2e3; }
.console-line.lvl-warn .msg { color: #fde047; }
.console-line.lvl-error .msg { color: #fca5a5; }
.console-line.lvl-debug .msg { color: var(--text-faint); }
.console-line.lvl-chat .msg { color: #93c5fd; }
.console-empty { color: var(--text-faint); font-style: italic; }

.cmd-bar { display: flex; gap: 10px; padding: 12px; border-top: 1px solid var(--border-soft); background: rgba(255,255,255,0.02); }
.cmd-bar input {
  flex: 1; padding: 11px 14px; border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.4); border: 1px solid var(--border); color: var(--text);
  font-family: var(--font-mono); font-size: 13px; outline: none;
}
.cmd-bar input:focus { border-color: rgba(34,197,94,0.5); }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.cmd-chip {
  padding: 6px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 500;
  background: var(--glass); border: 1px solid var(--border-soft); color: var(--text-dim);
  cursor: pointer; transition: all 0.15s; border: 1px solid var(--border-soft);
}
.cmd-chip:hover { color: #86efac; border-color: rgba(34,197,94,0.35); background: var(--green-soft); }

/* ---------- bot detail layout ---------- */
.detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 20px; align-items: start; }
@media (max-width: 1100px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 22px; }
.detail-head .title-block h1 { font-family: var(--font-display); font-size: 26px; }
.detail-head .title-block .addr { font-family: var(--font-mono); font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.control-row { display: flex; gap: 9px; flex-wrap: wrap; }

.telemetry { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.tele-item { background: rgba(0,0,0,0.25); border: 1px solid var(--border-soft); border-radius: var(--radius-sm); padding: 13px 15px; }
.tele-item .k { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-faint); margin-bottom: 5px; }
.tele-item .v { font-family: var(--font-mono); font-size: 15px; font-weight: 600; }
.tele-item .v.small { font-size: 13px; }

.section-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; }
.section-title .aux { font-size: 12px; color: var(--text-faint); font-family: var(--font); font-weight: 500; }

/* ---------- task queue ---------- */
.task-list { display: flex; flex-direction: column; gap: 9px; }
.task-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  background: rgba(0,0,0,0.25); border: 1px solid var(--border-soft); border-radius: var(--radius-sm);
}
.task-item .idx {
  width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass-strong); font-size: 12px; font-weight: 700; color: var(--text-dim);
}
.task-item.active { border-color: rgba(59,130,246,0.4); background: rgba(59,130,246,0.07); }
.task-item.active .idx { background: rgba(59,130,246,0.25); color: #93c5fd; }
.task-item .t-label { flex: 1; font-size: 13.5px; font-weight: 500; }
.task-item .t-progress { font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); }
.task-progress-track { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.07); overflow: hidden; margin-top: 8px; }
.task-progress-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); transition: width 0.5s; }

/* ---------- inventory ---------- */
.inv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 8px; }
.inv-slot {
  aspect-ratio: 1; border-radius: var(--radius-sm); position: relative;
  background: rgba(0,0,0,0.3); border: 1px solid var(--border-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 6px; text-align: center; transition: border-color 0.15s;
}
.inv-slot:hover { border-color: rgba(34,197,94,0.4); }
.inv-slot .i-name { font-size: 9.5px; color: var(--text-dim); line-height: 1.25; overflow: hidden; max-height: 26px; }
.inv-slot .i-count {
  position: absolute; bottom: 4px; right: 6px; font-family: var(--font-mono);
  font-size: 12px; font-weight: 700; color: #fff; text-shadow: 0 1px 3px #000;
}
.inv-slot .i-dura { position: absolute; bottom: 2px; left: 4px; right: 4px; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.1); }
.inv-slot .i-dura i { display: block; height: 100%; border-radius: 2px; background: var(--green); }
.inv-slot .i-icon { font-size: 20px; margin-bottom: 2px; }
.inv-empty { color: var(--text-faint); font-size: 13px; font-style: italic; padding: 16px 0; }

/* ---------- env awareness ---------- */
.env-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.env-tag {
  font-size: 12px; padding: 5px 11px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--border-soft); color: var(--text-dim);
}
.env-tag.danger { color: #fca5a5; border-color: rgba(239,68,68,0.35); background: rgba(239,68,68,0.08); }
.env-tag.good { color: #86efac; border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.07); }

/* ---------- tables ---------- */
.table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.table th { text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-faint); padding: 10px 14px; border-bottom: 1px solid var(--border-soft); }
.table td { padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.table tr:last-child td { border-bottom: none; }
.table .mono { font-family: var(--font-mono); font-size: 12.5px; }

/* ---------- misc ---------- */
.empty-state { text-align: center; padding: 70px 20px; color: var(--text-dim); }
.empty-state .big { font-size: 44px; margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; color: var(--text); }
.empty-state p { font-size: 14px; max-width: 44ch; margin: 0 auto 22px; line-height: 1.6; }

.form-error {
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.35);
  color: #fca5a5; font-size: 13px; padding: 11px 14px; border-radius: var(--radius-sm); margin-bottom: 16px;
}

.mt-20 { margin-top: 20px; } .mb-20 { margin-bottom: 20px; } .mb-12 { margin-bottom: 12px; }

#toasts { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 10px; z-index: 100; }
.toast {
  padding: 13px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  background: rgba(16, 22, 37, 0.95); border: 1px solid var(--border); backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5); animation: toast-in 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  max-width: 380px;
}
@keyframes toast-in { from { opacity: 0; transform: translateX(30px); } }
.toast.ok { border-color: rgba(34,197,94,0.4); }
.toast.err { border-color: rgba(239,68,68,0.45); color: #fca5a5; }

/* mobile */
@media (max-width: 900px) {
  .shell { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed; z-index: 50; width: 260px; transform: translateX(-100%);
    transition: transform 0.25s;
  }
  .sidebar.open { transform: none; box-shadow: 30px 0 80px rgba(0,0,0,0.5); }
  .main { padding: 22px 18px 50px; }
  .mobile-bar {
    display: flex !important; align-items: center; gap: 14px; padding: 14px 18px;
    border-bottom: 1px solid var(--border-soft); background: rgba(10,13,22,0.8); backdrop-filter: blur(14px);
    position: sticky; top: 0; z-index: 40;
  }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-hero { padding: 8vh 8vw 4vh; }
  .auth-panel { border-left: none; padding: 20px; }
}
.mobile-bar { display: none; }
.mobile-bar .burger { background: none; border: 1px solid var(--border); border-radius: 8px; color: var(--text); padding: 7px 11px; font-size: 16px; }
.mobile-bar .m-brand { font-family: var(--font-display); font-weight: 700; letter-spacing: 2px; }
.mobile-bar .m-brand b { color: var(--green); }
