/* ═══════════════════════════════════════════════════════════
   G2 HUB — DESIGN SYSTEM v2
   Tokens canónicos. Todo componente debe consumir estas
   variables. Nada de valores hardcodeados.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* ───── NEUTROS (11 pasos, escala Zinc) ───── */
  --gray-50:  #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
  --gray-950: #09090b;

  /* ───── BRAND — Índigo vibrante ───── */
  --brand-50:  #eef2ff;
  --brand-100: #e0e7ff;
  --brand-200: #c7d2fe;
  --brand-300: #a5b4fc;
  --brand-400: #818cf8;
  --brand-500: #6366f1;   /* primary */
  --brand-600: #4f46e5;   /* hover */
  --brand-700: #4338ca;
  --brand-800: #3730a3;
  --brand-900: #312e81;

  /* ───── SEMÁNTICOS (solo 3 para estados) ───── */
  --success-50:  #ecfdf5;
  --success-500: #10b981;
  --success-600: #059669;
  --success-700: #047857;

  --warning-50:  #fffbeb;
  --warning-500: #f59e0b;
  --warning-600: #d97706;
  --warning-700: #b45309;

  --danger-50:  #fef2f2;
  --danger-500: #ef4444;
  --danger-600: #dc2626;
  --danger-700: #b91c1c;

  /* ───── ESCALA TIPOGRÁFICA (8 tamaños fijos) ───── */
  --text-2xs: 11px;
  --text-xs:  12px;
  --text-sm:  13px;
  --text-md:  15px;    /* base */
  --text-lg:  18px;
  --text-xl:  22px;
  --text-2xl: 30px;
  --text-3xl: 44px;

  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  --weight-normal:   400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

  --leading-tight:   1.2;
  --leading-normal:  1.5;
  --leading-relaxed: 1.7;

  /* ───── ESPACIADO (escala base-4) ───── */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* ───── RADIOS (3 únicos) ───── */
  --radius-sm: 6px;    /* chips, inputs, buttons small */
  --radius-md: 10px;   /* cards, inputs large, modales */
  --radius-lg: 16px;   /* hero cards, drawer */
  --radius-full: 9999px;

  /* ───── SOMBRAS ───── */
  --shadow-1: 0 1px 2px rgba(9, 9, 11, 0.04), 0 1px 1px rgba(9, 9, 11, 0.03);
  --shadow-2: 0 4px 12px rgba(9, 9, 11, 0.06), 0 2px 4px rgba(9, 9, 11, 0.04);
  --shadow-3: 0 16px 40px rgba(9, 9, 11, 0.08), 0 4px 12px rgba(9, 9, 11, 0.06);
  --shadow-focus: 0 0 0 3px rgba(99, 102, 241, 0.18);

  /* ───── SUPERFICIES (light por default) ───── */
  --bg-app:       var(--gray-50);
  --bg-surface:   #ffffff;
  --bg-raised:    #ffffff;
  --bg-elevated:  #ffffff;
  --bg-hover:     var(--gray-100);
  --bg-pressed:   var(--gray-200);
  --bg-brand:     var(--brand-50);

  --border:        var(--gray-200);
  --border-strong: var(--gray-300);
  --border-brand:  var(--brand-200);

  --text-primary:   var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-tertiary:  var(--gray-500);
  --text-disabled:  var(--gray-400);
  --text-on-brand:  #ffffff;
  --text-brand:     var(--brand-600);

  /* ───── MOTION ───── */
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast:   120ms;
  --duration-normal: 200ms;
  --duration-slow:   300ms;

  /* ───── Z-INDEX (escala fija) ───── */
  --z-base:    0;
  --z-sticky:  20;
  --z-fixed:   50;
  --z-overlay: 100;
  --z-modal:   1000;
  --z-tooltip: 1500;
  --z-toast:   99999;

  /* ───── LAYOUT ───── */
  --sidebar-width: 260px;
  --topbar-height: 60px;
  --container-max: 1400px;
}

/* ═══════════════════════════════════════════════════════════
   DARK MODE — se activa con data-theme="dark" en <html>
   ═══════════════════════════════════════════════════════════ */
:root[data-theme="dark"] {
  --bg-app:      #09090b;
  --bg-surface:  #0f0f11;
  --bg-raised:   #18181b;
  --bg-elevated: #1f1f23;
  --bg-hover:    #1f1f23;
  --bg-pressed:  #27272a;
  --bg-brand:    rgba(99, 102, 241, 0.12);

  --border:        #27272a;
  --border-strong: #3f3f46;
  --border-brand:  rgba(99, 102, 241, 0.4);

  --text-primary:   #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-tertiary:  #71717a;
  --text-disabled:  #52525b;

  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 1px rgba(0, 0, 0, 0.2);
  --shadow-2: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.25);
  --shadow-3: 0 16px 40px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   RESET MÍNIMO
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background: var(--bg-app);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ═══════════════════════════════════════════════════════════
   UTILIDADES — las más usadas
   ═══════════════════════════════════════════════════════════ */
.ds-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}
.ds-card:hover { box-shadow: var(--shadow-2); }

.ds-card-hero {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-500));
  color: var(--text-on-brand);
  border: none;
}
.ds-card-hero * { color: var(--text-on-brand) !important; }

/* KPI card layouts */
.ds-kpi {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.ds-kpi:hover { border-color: var(--border-strong); box-shadow: var(--shadow-2); }

.ds-kpi-label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ds-kpi-value {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  line-height: var(--leading-tight);
}
.ds-kpi-delta {
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}
.ds-kpi-delta.positive { color: var(--success-600); }
.ds-kpi-delta.negative { color: var(--danger-600); }

/* CHIPS (status pills) */
.ds-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 3px var(--space-2);
  border-radius: var(--radius-full);
  font-size: var(--text-2xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.02em;
  background: var(--gray-100);
  color: var(--gray-700);
  white-space: nowrap;
}
.ds-chip.success { background: var(--success-50); color: var(--success-700); }
.ds-chip.warning { background: var(--warning-50); color: var(--warning-700); }
.ds-chip.danger  { background: var(--danger-50);  color: var(--danger-700);  }
.ds-chip.brand   { background: var(--brand-50);   color: var(--brand-700);   }
:root[data-theme="dark"] .ds-chip { background: var(--bg-elevated); color: var(--text-secondary); }
:root[data-theme="dark"] .ds-chip.success { background: rgba(16, 185, 129, 0.12); color: #6ee7b7; }
:root[data-theme="dark"] .ds-chip.warning { background: rgba(245, 158, 11, 0.12); color: #fcd34d; }
:root[data-theme="dark"] .ds-chip.danger  { background: rgba(239, 68, 68, 0.12);  color: #fca5a5; }
:root[data-theme="dark"] .ds-chip.brand   { background: rgba(99, 102, 241, 0.18); color: #c7d2fe; }

/* BUTTONS */
.ds-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  white-space: nowrap;
  user-select: none;
}
.ds-btn:focus-visible { outline: none; box-shadow: var(--shadow-focus); }
.ds-btn[disabled] { opacity: 0.5; cursor: not-allowed; }

.ds-btn-primary {
  background: var(--brand-500);
  color: var(--text-on-brand);
}
.ds-btn-primary:hover:not([disabled]) { background: var(--brand-600); }
.ds-btn-primary:active { background: var(--brand-700); }

.ds-btn-secondary {
  background: var(--bg-surface);
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.ds-btn-secondary:hover:not([disabled]) { background: var(--bg-hover); border-color: var(--gray-400); }

.ds-btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}
.ds-btn-ghost:hover:not([disabled]) { background: var(--bg-hover); color: var(--text-primary); }

.ds-btn-danger {
  background: var(--danger-500);
  color: #ffffff;
}
.ds-btn-danger:hover:not([disabled]) { background: var(--danger-600); }

.ds-btn-sm { padding: 4px var(--space-3); font-size: var(--text-xs); }
.ds-btn-lg { padding: var(--space-3) var(--space-5); font-size: var(--text-md); }

/* INPUTS */
.ds-input {
  display: block;
  width: 100%;
  padding: var(--space-2) var(--space-3);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: var(--text-sm);
  color: var(--text-primary);
  transition: all var(--duration-fast) var(--ease-out);
}
.ds-input:hover { border-color: var(--border-strong); }
.ds-input:focus { outline: none; border-color: var(--brand-500); box-shadow: var(--shadow-focus); }
.ds-input::placeholder { color: var(--text-tertiary); }

/* TABLES — estilo Linear / Stripe */
.ds-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: var(--text-sm);
}
.ds-table thead th {
  background: var(--bg-app);
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-size: var(--text-2xs);
  font-weight: var(--weight-semibold);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}
.ds-table tbody td {
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  vertical-align: middle;
}
.ds-table tbody tr:last-child td { border-bottom: none; }
.ds-table tbody tr { transition: background var(--duration-fast) var(--ease-out); }
.ds-table tbody tr:hover { background: var(--bg-hover); }
.ds-table .num { text-align: right; font-variant-numeric: tabular-nums; font-family: var(--font-mono); }

/* EMPTY STATES */
.ds-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-5);
  text-align: center;
  color: var(--text-tertiary);
  gap: var(--space-3);
}
.ds-empty svg { width: 48px; height: 48px; color: var(--gray-300); stroke-width: 1.5; }
.ds-empty h3 { font-size: var(--text-lg); color: var(--text-primary); margin: 0; }
.ds-empty p { margin: 0; max-width: 320px; }

/* SKELETON LOADER */
@keyframes ds-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.ds-skeleton {
  background: var(--gray-200);
  border-radius: var(--radius-sm);
  animation: ds-pulse 1.5s var(--ease-in-out) infinite;
}
:root[data-theme="dark"] .ds-skeleton { background: var(--bg-elevated); }

/* FADE IN ANIMATION */
@keyframes ds-fade-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ds-fade-in { animation: ds-fade-up var(--duration-slow) var(--ease-out) both; }
.ds-fade-in.stagger-1 { animation-delay: 0ms; }
.ds-fade-in.stagger-2 { animation-delay: 60ms; }
.ds-fade-in.stagger-3 { animation-delay: 120ms; }
.ds-fade-in.stagger-4 { animation-delay: 180ms; }
.ds-fade-in.stagger-5 { animation-delay: 240ms; }

/* ═══════════════════════════════════════════════════════════
   LAYOUT PRINCIPAL — Sidebar + Main
   ═══════════════════════════════════════════════════════════ */
.ds-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  min-height: 100vh;
  background: var(--bg-app);
}

.ds-sidebar {
  background: var(--bg-surface);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.ds-sidebar-brand {
  padding: var(--space-5) var(--space-5) var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-bottom: 1px solid var(--border);
}
.ds-sidebar-brand img { width: 32px; height: 32px; border-radius: var(--radius-sm); }
.ds-sidebar-brand .name {
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.ds-sidebar-brand .sub {
  font-size: var(--text-2xs);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ds-sidebar-nav {
  padding: var(--space-3) var(--space-3);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.ds-nav-group-label {
  font-size: var(--text-2xs);
  font-weight: var(--weight-semibold);
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 var(--space-3);
  margin-bottom: var(--space-2);
}

.ds-nav-group { display: flex; flex-direction: column; gap: 2px; }

.ds-nav-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  text-decoration: none;
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
}
.ds-nav-item svg { width: 18px; height: 18px; flex-shrink: 0; stroke-width: 2; }
.ds-nav-item:hover { background: var(--bg-hover); color: var(--text-primary); }
.ds-nav-item.active {
  background: var(--bg-brand);
  color: var(--brand-600);
  font-weight: var(--weight-semibold);
}
:root[data-theme="dark"] .ds-nav-item.active { color: var(--brand-400); }

.ds-sidebar-footer {
  padding: var(--space-3);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.ds-user-chip {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  background: var(--bg-hover);
}
.ds-user-chip .avatar {
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--brand-500), var(--brand-700));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}
.ds-user-chip .info { flex: 1; min-width: 0; }
.ds-user-chip .email {
  font-size: var(--text-xs);
  color: var(--text-primary);
  font-weight: var(--weight-medium);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ds-user-chip .role {
  font-size: var(--text-2xs);
  color: var(--text-tertiary);
}

.ds-main {
  padding: var(--space-5) var(--space-6);
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
}

.ds-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  gap: var(--space-4);
  flex-wrap: wrap;
}
.ds-page-title {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: var(--leading-tight);
}
.ds-page-subtitle {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  margin: var(--space-1) 0 0;
}

/* ═══════════════════════════════════════════════════════════
   GRID KPI — 1 primary + 4 secondary
   ═══════════════════════════════════════════════════════════ */
.ds-kpi-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
@media (max-width: 1100px) {
  .ds-kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ds-kpi-grid { grid-template-columns: 1fr; }
}

.ds-kpi-primary {
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
  color: #ffffff;
  border: 1px solid var(--gray-800);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 180px;
}
:root[data-theme="dark"] .ds-kpi-primary {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
  border-color: var(--brand-700);
}
.ds-kpi-primary::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, var(--brand-500) 0%, transparent 70%);
  opacity: 0.22;
  pointer-events: none;
}
.ds-kpi-primary .label {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ds-kpi-primary .value {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: 1;
  margin-top: var(--space-3);
  font-variant-numeric: tabular-nums;
}
.ds-kpi-primary .meta {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-2);
}

/* ═══════════════════════════════════════════════════════════
   DASHBOARD SECTIONS (2-col grid)
   ═══════════════════════════════════════════════════════════ */
.ds-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 900px) {
  .ds-dashboard-grid { grid-template-columns: 1fr; }
}

.ds-section-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.ds-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}
.ds-section-title {
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin: 0;
}
.ds-section-subtitle {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin: 2px 0 0;
}

/* ═══════════════════════════════════════════════════════════
   COMMAND MENU (Ctrl+K)
   ═══════════════════════════════════════════════════════════ */
.ds-cmdk-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(9, 9, 11, 0.5);
  backdrop-filter: blur(4px);
  z-index: var(--z-modal);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  animation: ds-fade-up var(--duration-fast) var(--ease-out);
}
.ds-cmdk {
  width: 100%;
  max-width: 560px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 70vh;
}
.ds-cmdk input {
  width: 100%;
  padding: var(--space-4);
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: var(--text-md);
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}
.ds-cmdk input:focus { outline: none; }
.ds-cmdk ul {
  list-style: none;
  margin: 0;
  padding: var(--space-2);
  overflow-y: auto;
  flex: 1;
}
.ds-cmdk li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-primary);
  font-size: var(--text-sm);
}
.ds-cmdk li:hover,
.ds-cmdk li.active { background: var(--bg-hover); }
.ds-cmdk li svg { width: 18px; height: 18px; color: var(--text-tertiary); flex-shrink: 0; }
.ds-cmdk-hint {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-2xs);
  color: var(--text-tertiary);
  border-top: 1px solid var(--border);
  background: var(--bg-app);
  display: flex;
  gap: var(--space-4);
}
.ds-cmdk-hint kbd {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 5px;
  font-family: var(--font-mono);
  font-size: 10px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --sidebar-width: 70px; }
  .ds-sidebar-brand .name, .ds-sidebar-brand .sub,
  .ds-nav-item span, .ds-nav-group-label,
  .ds-user-chip .info { display: none; }
  .ds-sidebar-brand { justify-content: center; }
  .ds-nav-item { justify-content: center; }
  .ds-main { padding: var(--space-4); }
}
