/* ═══════════════════════════════════════════════════════════════════════════
   SponsoMap — Design system (shadcn-inspired)
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  color-scheme: dark;
  --background: #0a0a0a;
  --foreground: #ffffff;
  --card: #0f0f0f;
  --card-hover: #141414;
  --surface-warm: #1a140e;
  --muted: rgba(255, 255, 255, 0.04);
  --muted-foreground: #a1a1aa;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --input: rgba(255, 255, 255, 0.04);
  --ring: #f5d149;
  --primary: #f5d149;
  --primary-hover: #f7da64;
  --primary-foreground: #0a0a0a;
  --accent: #f5d149;
  --accent-soft: rgba(245, 209, 73, 0.1);
  --accent-strong: rgba(245, 209, 73, 0.2);
  --secondary: rgba(255, 255, 255, 0.06);
  --secondary-hover: rgba(255, 255, 255, 0.1);
  --destructive: #ef4444;
  --destructive-soft: rgba(239, 68, 68, 0.1);
  --success: #22c55e;
  --success-soft: rgba(34, 197, 94, 0.1);
  --warning: #eab308;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --sidebar-width: 240px;
}

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

html, body { height: 100%; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--accent); color: var(--primary-foreground); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

/* ─── Layout ───────────────────────────────────────────────────────────── */

.app {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  min-height: 100vh;
}

.sidebar {
  background: #070707;
  border-right: 1px solid var(--border);
  padding: 1.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.sidebar__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 0.75rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.sidebar__brand-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.sidebar__section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar__label {
  padding: 0 0.75rem 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
}

.sidebar__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.sidebar__item:hover {
  color: var(--foreground);
  background: var(--muted);
}

.sidebar__item--active {
  color: var(--foreground);
  background: var(--secondary);
  position: relative;
}

.sidebar__item--active::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 18px;
  border-radius: 2px;
  background: var(--accent);
}

.sidebar__item svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

.sidebar__footer {
  margin-top: auto;
  padding: 0 0.75rem;
  font-size: 0.72rem;
  color: var(--muted-foreground);
}

.sidebar__logout {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.78rem;
}
.sidebar__logout:hover { color: var(--destructive); }

.main {
  padding: 2rem 2.5rem 3rem;
  max-width: 1400px;
  width: 100%;
}

.page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-subtitle {
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.page-actions {
  display: flex;
  gap: 0.5rem;
}

/* ─── Card ─────────────────────────────────────────────────────────────── */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.card--hover:hover {
  border-color: var(--border-strong);
  background: var(--card-hover);
}

.card__header {
  padding: 1.15rem 1.35rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.card__title {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card__subtitle {
  font-size: 0.78rem;
  color: var(--muted-foreground);
}

.card__body { padding: 1.35rem; }
.card__body--tight { padding: 0.85rem 1.1rem; }
.card__footer {
  padding: 0.75rem 1.35rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

/* ─── KPI ──────────────────────────────────────────────────────────────── */

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.kpi {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  transition: border-color 0.2s;
}
.kpi:hover { border-color: var(--border-strong); }

.kpi__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  margin-bottom: 0.45rem;
}

.kpi__value {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.kpi__delta {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.kpi__delta--up { color: var(--success); }
.kpi__delta--down { color: var(--destructive); }

.kpi--accent .kpi__value { color: var(--accent); }
.kpi--success .kpi__value { color: var(--success); }
.kpi--danger .kpi__value { color: var(--destructive); }

/* ─── Button ───────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }
.btn svg { width: 15px; height: 15px; }

.btn--primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn--primary:hover { background: var(--primary-hover); }

.btn--secondary {
  background: var(--secondary);
  color: var(--foreground);
  border-color: var(--border);
}
.btn--secondary:hover { background: var(--secondary-hover); border-color: var(--border-strong); }

.btn--outline {
  background: transparent;
  color: var(--foreground);
  border-color: var(--border);
}
.btn--outline:hover { background: var(--muted); border-color: var(--border-strong); }

.btn--ghost {
  background: transparent;
  color: var(--muted-foreground);
}
.btn--ghost:hover { background: var(--muted); color: var(--foreground); }

.btn--sm { padding: 0.35rem 0.65rem; font-size: 0.78rem; }
.btn--icon { padding: 0.45rem; }

.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ─── Input ────────────────────────────────────────────────────────────── */

.input, .select {
  width: 100%;
  padding: 0.5rem 0.8rem;
  background: var(--input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--foreground);
  font-family: inherit;
  font-size: 0.88rem;
  transition: border-color 0.15s, background 0.15s;
}
.input:focus, .select:focus {
  outline: none;
  border-color: var(--ring);
  background: rgba(245, 209, 73, 0.04);
}
.input::placeholder { color: var(--muted-foreground); }

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  padding-right: 2rem;
}

.select option,
select option {
  background: var(--card);
  color: var(--foreground);
  padding: 0.4rem;
}

.search {
  position: relative;
}
.search__input { padding-left: 2.2rem; }
.search__icon {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  pointer-events: none;
  width: 15px; height: 15px;
}

.label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted-foreground);
  margin-bottom: 0.4rem;
}

.checkbox {
  appearance: none;
  width: 16px; height: 16px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: var(--input);
  cursor: pointer;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.checkbox:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.checkbox:checked::after {
  content: "";
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: solid var(--primary-foreground);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ─── Badge ────────────────────────────────────────────────────────────── */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--foreground);
  border: 1px solid var(--border);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.badge--accent { background: var(--accent-soft); color: var(--accent); border-color: var(--accent-strong); }
.badge--success { background: var(--success-soft); color: var(--success); border-color: rgba(34, 197, 94, 0.25); }
.badge--danger { background: var(--destructive-soft); color: var(--destructive); border-color: rgba(239, 68, 68, 0.25); }
.badge--outline { background: transparent; }

/* Discover card stats — shadcn-style pill badges */
.discover-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0.7rem 0;
}
.stat-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 4px 9px;
  border-radius: 7px;
  background: var(--secondary);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  line-height: 1.2;
  white-space: nowrap;
}
.stat-pill b {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.stat-pill span {
  color: var(--muted-foreground);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.stat-pill--accent { background: var(--accent-soft); border-color: var(--accent-strong); }
.stat-pill--accent b { color: var(--accent); }
.stat-pill--dim { opacity: 0.5; }
.stat-pill--dim b { color: var(--muted-foreground); }

.recency-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  font-size: 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--muted);
  color: var(--muted-foreground);
  font-variant-numeric: tabular-nums;
}
.recency-pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.recency-pill.fresh { color: var(--success); border-color: rgba(34, 197, 94, 0.25); }
.recency-pill.warm { color: var(--accent); border-color: rgba(245, 209, 73, 0.25); }
.recency-pill.cold { color: var(--muted-foreground); }

/* Engagement grades */
.grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  width: 30px; height: 22px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}
.grade-S { background: #22c55e; color: #04170a; border-color: rgba(34, 197, 94, 0.6); }
.grade-A { background: var(--accent); color: var(--primary-foreground); border-color: rgba(245, 209, 73, 0.6); }
.grade-B { background: rgba(245, 209, 73, 0.15); color: var(--accent); border-color: rgba(245, 209, 73, 0.35); }
.grade-C { background: rgba(255, 255, 255, 0.06); color: var(--muted-foreground); border-color: var(--border); }
.grade-D { background: rgba(239, 68, 68, 0.1); color: var(--destructive); border-color: rgba(239, 68, 68, 0.3); }
.grade-unknown { background: transparent; color: var(--muted-foreground); border-color: var(--border); }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.75rem;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--muted-foreground);
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ─── Table ────────────────────────────────────────────────────────────── */

.table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--muted);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
}

.table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.table tr:last-child td { border-bottom: none; }
.table tbody tr { transition: background 0.15s; }
.table tbody tr:hover { background: var(--muted); }

.table--clickable tbody tr { cursor: pointer; }

.table-num { font-variant-numeric: tabular-nums; text-align: right; }

/* ─── Avatar ───────────────────────────────────────────────────────────── */

.avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--muted);
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  object-fit: cover;
  display: inline-block;
}
.avatar--sm { width: 24px; height: 24px; }
.avatar--lg { width: 56px; height: 56px; }

.avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-strong);
  font-size: 0.75rem;
}

/* ─── Media row (avatar + text) ────────────────────────────────────────── */

.media {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.media__title {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.media__sub {
  font-size: 0.76rem;
  color: var(--muted-foreground);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── Toolbar ──────────────────────────────────────────────────────────── */

.toolbar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.toolbar__spacer { flex: 1; }
.toolbar .input, .toolbar .select { width: auto; min-width: 180px; }

/* ─── Tabs (segmented control) ─────────────────────────────────────────── */

.tabs {
  display: inline-flex;
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 3px;
  gap: 2px;
}
.tab {
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted-foreground);
  background: transparent;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.tab:hover { color: var(--foreground); }
.tab[data-active="true"], .tab.active {
  background: var(--accent);
  color: var(--primary-foreground);
}

/* ─── Chart ────────────────────────────────────────────────────────────── */

.chart-box { height: 320px; }
.chart-box--sm { height: 220px; }

/* ─── Empty state ──────────────────────────────────────────────────────── */

.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  text-align: center;
  color: var(--muted-foreground);
  gap: 0.5rem;
}
.empty__title { font-weight: 600; color: var(--foreground); }
.empty__sub { font-size: 0.85rem; }

/* ─── Pagination ───────────────────────────────────────────────────────── */

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted-foreground);
}
.pagination__controls { display: flex; gap: 0.35rem; }

/* ─── Login page ───────────────────────────────────────────────────────── */

.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse at top, var(--surface-warm), transparent 55%),
    var(--background);
}
.auth-card {
  width: 100%;
  max-width: 380px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.auth-card h1 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.auth-card p { color: var(--muted-foreground); font-size: 0.86rem; margin-bottom: 1.5rem; }
.auth-card .field { margin-bottom: 1rem; }
.auth-card .btn { width: 100%; justify-content: center; padding: 0.65rem; }
.auth-error {
  background: var(--destructive-soft);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: var(--destructive);
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

/* ─── Grid helpers ─────────────────────────────────────────────────────── */

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }

.row { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.col { display: flex; flex-direction: column; gap: 0.5rem; }

.muted { color: var(--muted-foreground); }
.mono { font-variant-numeric: tabular-nums; }
.text-sm { font-size: 0.82rem; }
.text-xs { font-size: 0.72rem; }
.text-lg { font-size: 1.05rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }

/* ─── Modal ────────────────────────────────────────────────────────────── */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  z-index: 100;
  padding: 3rem 1.25rem 1.5rem;
  overflow-y: auto;
}
.modal.is-open { display: flex; }

.modal__dialog {
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  animation: modal-in 0.18s ease-out;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__header {
  padding: 1.1rem 1.35rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modal__title {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.modal__subtitle {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}
.modal__close {
  background: transparent;
  border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.3rem;
  border-radius: var(--radius-sm);
  line-height: 0;
}
.modal__close:hover { background: var(--muted); color: var(--foreground); }

.modal__body { padding: 1.35rem; }
.modal__body .col { gap: 0.9rem; }

.modal__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.modal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1rem;
  font-size: 0.86rem;
}
.modal__grid .muted { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; }

.modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-top: 1px solid var(--border);
}

.price-field {
  position: relative;
}
.price-field input { padding-right: 2rem; }
.price-field__suffix {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  font-size: 0.85rem;
}

/* Compound input: Price | Commission% | computed € */
.price-pair {
  display: flex;
  gap: 0.3rem;
}
.price-pair .price-field { flex: 1.4; }
.price-pair .price-field:nth-child(2) { flex: 1; }
.price-pair input {
  padding: 0.3rem 0.5rem;
  padding-right: 1.6rem;
  font-size: 0.82rem;
  width: 100%;
}
.price-pair__commission {
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--muted-foreground);
  font-variant-numeric: tabular-nums;
  min-height: 0.9rem;
}
.price-pair__commission b { color: var(--accent); }

/* ─── Scrollbar ────────────────────────────────────────────────────────── */

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.08); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.16); }

/* ─── Responsive ───────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  :root { --sidebar-width: 72px; }
  .sidebar__label, .sidebar__brand span, .sidebar__item span { display: none; }
  .sidebar__footer { display: none; }
  .main { padding: 1.5rem 1rem 2.5rem; }
}
