:root {
  --bg: #060608;
  --bg-elev: #0d0d12;
  --bg-soft: #131319;
  --bg-hover: #181820;
  --border: #1e1e28;
  --border-soft: #16161e;
  --border-glow: #2a2a3a;

  --text: #fafafa;
  --text-strong: #ffffff;
  --text-dim: #b4b4c0;
  --text-faint: #6e6e80;
  --text-muted: #4a4a58;

  --neon-lime: #b4ff39;
  --neon-cyan: #22e5ff;
  --neon-magenta: #ff3df0;
  --neon-violet: #b794ff;
  --neon-amber: #ffb547;
  --neon-coral: #ff5e7e;
  --neon-blue: #5b9dff;

  --glow-lime: 0 0 12px rgba(180, 255, 57, 0.45);
  --glow-cyan: 0 0 12px rgba(34, 229, 255, 0.45);
  --glow-magenta: 0 0 12px rgba(255, 61, 240, 0.45);

  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;

  --shadow-card:
    0 1px 0 rgba(255, 255, 255, 0.03) inset,
    0 0 0 1px rgba(255, 255, 255, 0.02), 0 30px 60px -20px rgba(0, 0, 0, 0.6);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      900px circle at 12% -10%,
      rgba(34, 229, 255, 0.09),
      transparent 55%
    ),
    radial-gradient(
      900px circle at 95% -10%,
      rgba(255, 61, 240, 0.07),
      transparent 55%
    ),
    radial-gradient(
      1200px circle at 50% 110%,
      rgba(180, 255, 57, 0.05),
      transparent 60%
    );
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse at top,
    rgba(0, 0, 0, 0.6),
    transparent 70%
  );
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--border-glow);
}

::selection {
  background: rgba(180, 255, 57, 0.25);
  color: var(--text-strong);
}

/* Boot */
.boot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 14px;
  color: var(--text-dim);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.boot__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-lime);
  box-shadow: 0 0 0 0 rgba(180, 255, 57, 0.5);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(180, 255, 57, 0.5);
  }
  100% {
    box-shadow: 0 0 0 24px transparent;
  }
}
@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Login */
.login {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
}
.login__card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 35%),
    var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;
}
.login__card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(180, 255, 57, 0.35),
    rgba(34, 229, 255, 0.25) 40%,
    rgba(255, 61, 240, 0.25) 75%,
    transparent
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.login__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.login__brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-lime);
  box-shadow: var(--glow-lime);
}
.login__title {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  background: linear-gradient(
    100deg,
    var(--text-strong),
    var(--neon-lime) 60%,
    var(--neon-cyan)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.login__sub {
  margin: 0;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
}
.login__error {
  background: rgba(255, 94, 126, 0.08);
  border: 1px solid rgba(255, 94, 126, 0.35);
  color: #ffc4d0;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.5;
}
.login__footer {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-faint);
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 500;
  font-size: 13.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.05s ease;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--text-strong);
  color: #060608;
}
.btn--primary:hover {
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}
.btn--ghost {
  background: transparent;
  color: var(--text-dim);
  border-color: var(--border);
}
.btn--ghost:hover {
  color: var(--text-strong);
  border-color: var(--border-glow);
  background: var(--bg-soft);
}
.btn--google {
  background: var(--text-strong);
  color: #060608;
  width: 100%;
  padding: 13px 18px;
  font-weight: 600;
  font-size: 14px;
}
.btn--google:hover {
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(180, 255, 57, 0.1);
}
.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* App shell */
.shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 6, 8, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.topbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 15px;
  color: var(--text-strong);
}
.topbar__brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neon-lime);
  box-shadow:
    0 0 0 4px rgba(180, 255, 57, 0.1),
    var(--glow-lime);
}
.topbar__divider {
  width: 1px;
  height: 18px;
  background: var(--border);
}
.topbar__crumb {
  font-size: 12.5px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
}
.topbar__user {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 12px 6px 6px;
  border-radius: var(--radius-pill);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
}
.topbar__avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-lime), var(--neon-cyan));
  color: #060608;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}

/* Live indicator */
.live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-dim);
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(180, 255, 57, 0.06);
  border: 1px solid rgba(180, 255, 57, 0.18);
}
.live__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-lime);
  box-shadow:
    0 0 0 0 rgba(180, 255, 57, 0.45),
    var(--glow-lime);
  animation: pulse 1.6s ease-out infinite;
}
.live--off {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border);
  color: var(--text-faint);
}
.live--off .live__dot {
  background: var(--text-muted);
  box-shadow: none;
  animation: none;
}

/* Main */
.main {
  flex: 1;
  padding: 28px;
  display: grid;
  gap: 22px;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  animation: float-in 0.4s ease both;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
.hero__intro {
  padding: 28px 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%),
    var(--bg-elev);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.hero__intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at 0% 0%,
    rgba(180, 255, 57, 0.06),
    transparent 50%
  );
  pointer-events: none;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon-lime);
  font-weight: 600;
  font-family: var(--mono);
}
.hero__title {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.15;
}
.hero__lede {
  margin: 0;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 60ch;
}
.hero__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero__pulse {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-elev);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.hero__pulse-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.hero__pulse-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 600;
}
.hero__pulse-value {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero__pulse-hint {
  color: var(--text-faint);
  font-size: 12.5px;
  font-family: var(--mono);
}

/* Toolbar */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.toolbar__label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 600;
}
.chips {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg-elev);
}
.chip {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--text-dim);
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.chip:hover {
  color: var(--text-strong);
}
.chip--on {
  background: var(--neon-lime);
  color: #060608;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(180, 255, 57, 0.35);
}
.chip--on:hover {
  color: #060608;
}

/* Stats grid */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.stat {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.stat:hover {
  border-color: var(--border-glow);
  transform: translateY(-1px);
}
.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.025),
    transparent 30%
  );
  pointer-events: none;
}
.stat__label {
  color: var(--text-faint);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stat__bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.stat--lime .stat__bullet {
  background: var(--neon-lime);
  box-shadow: var(--glow-lime);
}
.stat--cyan .stat__bullet {
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}
.stat--magenta .stat__bullet {
  background: var(--neon-magenta);
  box-shadow: var(--glow-magenta);
}
.stat--violet .stat__bullet {
  background: var(--neon-violet);
  box-shadow: 0 0 12px rgba(183, 148, 255, 0.45);
}
.stat__value {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-strong);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.stat--lime .stat__value {
  color: var(--neon-lime);
}
.stat--cyan .stat__value {
  color: var(--neon-cyan);
}
.stat--magenta .stat__value {
  color: var(--neon-magenta);
}
.stat--violet .stat__value {
  color: var(--neon-violet);
}
.stat__hint {
  color: var(--text-faint);
  font-size: 12.5px;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

/* Layout grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.grid-3 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 22px;
}
@media (max-width: 1100px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Card */
.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  position: relative;
}
.card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 22px 14px;
  gap: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.card__title {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  display: flex;
  align-items: center;
  gap: 10px;
}
.card__title-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-lime);
  box-shadow: var(--glow-lime);
}
.card__title-dot--cyan {
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}
.card__title-dot--magenta {
  background: var(--neon-magenta);
  box-shadow: var(--glow-magenta);
}
.card__title-dot--violet {
  background: var(--neon-violet);
  box-shadow: 0 0 12px rgba(183, 148, 255, 0.45);
}
.card__sub {
  color: var(--text-faint);
  font-size: 12.5px;
  margin-top: 4px;
  line-height: 1.5;
  max-width: 60ch;
}
.card__body {
  overflow: auto;
  max-height: 460px;
}
.card__body--tall {
  max-height: 560px;
}

/* Table */
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.tbl th,
.tbl td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: middle;
}
.tbl th {
  color: var(--text-faint);
  font-weight: 500;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--bg-soft);
  position: sticky;
  top: 0;
  z-index: 1;
}
.tbl tbody tr {
  transition: background 0.12s ease;
}
.tbl tbody tr:hover {
  background: var(--bg-hover);
}
.tbl tbody tr:last-child td {
  border-bottom: none;
}
.num {
  font-variant-numeric: tabular-nums;
  font-family: var(--mono);
  text-align: right;
  color: var(--text-strong);
  font-weight: 500;
}
.dim {
  color: var(--text-faint);
}
.mono {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--text-dim);
}
.cell-label {
  color: var(--text);
  font-weight: 500;
}

/* Bar (in-table) */
.bar {
  position: relative;
  width: 100%;
  max-width: 160px;
  height: 6px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
}
.bar__fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform-origin: left center;
}
.bar__fill--lime {
  background: linear-gradient(90deg, var(--neon-lime), #6ee07a);
  box-shadow: var(--glow-lime);
}
.bar__fill--cyan {
  background: linear-gradient(90deg, var(--neon-cyan), #6df0ff);
  box-shadow: var(--glow-cyan);
}
.bar__fill--magenta {
  background: linear-gradient(90deg, var(--neon-magenta), #ff7be8);
  box-shadow: var(--glow-magenta);
}

/* Sparkline */
.spark {
  display: block;
  width: 100%;
  height: 32px;
}
.spark__line {
  fill: none;
  stroke: var(--neon-lime);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(180, 255, 57, 0.55));
}
.spark__fill {
  fill: url(#spark-grad-lime);
  opacity: 0.45;
}

/* Pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--mono);
  border: 1px solid transparent;
}
.pill--lime {
  background: rgba(180, 255, 57, 0.1);
  color: var(--neon-lime);
  border-color: rgba(180, 255, 57, 0.3);
}
.pill--cyan {
  background: rgba(34, 229, 255, 0.1);
  color: var(--neon-cyan);
  border-color: rgba(34, 229, 255, 0.3);
}
.pill--violet {
  background: rgba(183, 148, 255, 0.1);
  color: var(--neon-violet);
  border-color: rgba(183, 148, 255, 0.3);
}
.pill--amber {
  background: rgba(255, 181, 71, 0.1);
  color: var(--neon-amber);
  border-color: rgba(255, 181, 71, 0.3);
}
.pill--magenta {
  background: rgba(255, 61, 240, 0.1);
  color: var(--neon-magenta);
  border-color: rgba(255, 61, 240, 0.3);
}
.pill--coral {
  background: rgba(255, 94, 126, 0.1);
  color: var(--neon-coral);
  border-color: rgba(255, 94, 126, 0.3);
}
.pill--blue {
  background: rgba(91, 157, 255, 0.1);
  color: var(--neon-blue);
  border-color: rgba(91, 157, 255, 0.3);
}
.pill--neutral {
  background: var(--bg-soft);
  color: var(--text-dim);
  border-color: var(--border);
}

/* Feed */
.feed {
  display: flex;
  flex-direction: column;
}
.feed__item {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  animation: slideIn 0.25s ease-out;
}
.feed__item:last-child {
  border-bottom: none;
}
.feed__item:hover {
  background: var(--bg-hover);
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.feed__time {
  font-family: var(--mono);
  color: var(--text-faint);
  font-size: 11px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.feed__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.feed__line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
}
.feed__text {
  color: var(--text-strong);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
}
.feed__meta {
  font-size: 11.5px;
  color: var(--text-faint);
  font-family: var(--mono);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Distribution rows */
.dist {
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dist__row {
  display: grid;
  grid-template-columns: 110px 1fr 60px;
  align-items: center;
  gap: 12px;
}
.dist__label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dist__count {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  text-align: right;
  color: var(--text-strong);
  font-size: 13px;
  font-weight: 500;
}
.dist__bar {
  position: relative;
  height: 8px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
}
.dist__fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Empty state */
.empty {
  padding: 48px 24px;
  text-align: center;
  color: var(--text-faint);
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.empty__title {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
}
.empty__hint {
  max-width: 42ch;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 28px 24px 40px;
  color: var(--text-faint);
  font-size: 12px;
  text-align: center;
  line-height: 1.6;
}
.footer code {
  font-family: var(--mono);
  color: var(--neon-cyan);
  background: rgba(34, 229, 255, 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(34, 229, 255, 0.15);
}

/* Code-like inline */
code.kbd {
  font-family: var(--mono);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 11.5px;
  color: var(--text-dim);
}
