/* ─────────────────────────────────────────
   ARTIST TRACKER
───────────────────────────────────────── */
.artist-panel { display: none; flex: 1; min-width: 0; min-height: 0; overflow: hidden; }
.artist-panel.active { display: flex; flex-direction: column; overflow: hidden; }
.artist-panel > .main { flex: 1; min-width: 0; width: 100%; }

/* Artist Header */
.artist-header {
  padding: 28px 0 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}
.artist-header-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.artist-avatar-lg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a7a5e, #2D6A4F);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(45,106,79,0.3);
}
.artist-info { flex: 1; min-width: 0; }
.artist-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
  line-height: 1.2;
}
.artist-meta-line {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.artist-meta-sep { opacity: 0.4; }
.artist-stat-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-start;
}
.artist-stat { display: flex; flex-direction: column; gap: 2px; }
.artist-stat-value {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--green);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.artist-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-3);
}
.artist-stat-delta {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
}
.artist-stat-delta.up { color: var(--emerald); }
.artist-stat-delta.dn { color: var(--coral); }

/* Artist switcher (manager mode) */
.artist-switcher-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  color: var(--text-2);
  transition: all 150ms var(--ease);
}
.artist-switcher-btn:hover { border-color: var(--border-med); color: var(--text); }
.asb-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, #4a7a5e, #2D6A4F);
}

/* Artist switcher dropdown */
.artist-switcher-wrap {
  position: relative;
}
.artist-switcher-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 220px;
  background: var(--surface);
  border: 1px solid var(--border-med);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  padding: 6px 0;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms;
}
.artist-switcher-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.asd-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 8px 14px 4px;
}
.asd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  cursor: pointer;
  transition: background 120ms var(--ease);
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-body);
  text-align: left;
}
.asd-item:hover { background: var(--green-dim); }
.asd-item.active { background: var(--green-dim); }
.asd-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.asd-name { font-size: 13px; font-weight: 600; color: var(--text); }
.asd-role { font-size: 10px; color: var(--text-3); margin-top: 1px; font-family: var(--font-mono); }
.asd-check { margin-left: auto; color: var(--green); font-size: 12px; }
.platform-links-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  transition: all 150ms var(--ease);
  vertical-align: middle;
  flex-shrink: 0;
}
.platform-links-toggle:hover { background: rgba(45,106,79,0.1); border-color: rgba(45,106,79,0.4); color: var(--text-2); }
.platform-links-toggle.open { color: var(--green); border-color: rgba(45,106,79,0.35); background: var(--green-dim); }
.platform-links { display: flex; gap: 6px; flex-wrap: wrap; }
.platform-link {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  color: var(--text-3);
  text-decoration: none;
  transition: all 150ms var(--ease);
}
.platform-link:hover { color: var(--text); border-color: var(--border-med); }

/* Artist quick-tab group */
.artist-qtabs {
  display: inline-flex;
  background: var(--surface-2);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
  border: 1px solid var(--border);
}
.artist-qtab {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  padding: 5px 12px;
  border-radius: 6px;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 150ms var(--ease);
  letter-spacing: 0;
}
.artist-qtab:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.artist-qtab.active {
  background: var(--surface);
  color: var(--green);
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1), inset 0 0 0 1px rgba(45,106,79,0.15);
}

/* Rolodex */
.rdx-search-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}
.rdx-search {
  flex: 1;
  height: 32px;
  border: 1px solid var(--border-med);
  border-radius: 8px;
  padding: 0 12px;
  font-size: 12.5px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 150ms var(--ease);
}
.rdx-search:focus { border-color: rgba(45,106,79,0.4); }
.rdx-search::placeholder { color: var(--text-3); }
.rdx-new-btn {
  height: 32px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--green-dim, rgba(45,106,79,0.08));
  color: var(--green, #2D6A4F);
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(45,106,79,0.25);
  cursor: pointer;
  white-space: nowrap;
  transition: background 150ms var(--ease), color 150ms var(--ease);
  font-family: var(--font-body);
}
.rdx-new-btn:hover { background: var(--green, #2D6A4F); color: #fff; border-color: var(--green); }
.rdx-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 220px;
  overflow-y: auto;
}
.rdx-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 150ms var(--ease);
}
.rdx-contact:hover { background: var(--surface-2); }
.rdx-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-med);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-2);
  flex-shrink: 0;
}
.rdx-info { flex: 1; min-width: 0; }
.rdx-name { font-size: 13px; font-weight: 600; color: var(--text); }
.rdx-role { font-size: 11px; color: var(--text-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rdx-email-btn {
  opacity: 0;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(45,106,79,0.2);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 150ms var(--ease);
  font-family: var(--font-body);
  flex-shrink: 0;
}
.rdx-contact:hover .rdx-email-btn { opacity: 1; }
.rdx-email-btn:hover { background: var(--green); color: #fff; }

/* Compose */
.rdx-compose {
  margin-top: 10px;
  background: var(--surface);
  border: 1px solid var(--border-med);
  border-radius: 12px;
  overflow: hidden;
  animation: mdrFadeIn 180ms ease both;
}
.rdx-compose-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.rdx-compose-to {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
}
.rdx-compose-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-3);
  font-size: 14px;
  line-height: 1;
  padding: 2px 4px;
  border-radius: 4px;
  transition: color 150ms;
}
.rdx-compose-close:hover { color: var(--text); }
.rdx-compose-subject {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  outline: none;
}
.rdx-compose-subject::placeholder { color: var(--text-3); }
.rdx-compose-body {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 14px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  outline: none;
  resize: none;
  min-height: 90px;
}
.rdx-compose-body::placeholder { color: var(--text-3); }
.rdx-compose-actions {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}
.rdx-send-btn {
  padding: 7px 18px;
  border-radius: 8px;
  background: #1a3d2b;
  color: #a8d5b5;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 150ms;
}
.rdx-send-btn:hover { background: #2D6A4F; color: #fff; }
.rdx-discard-btn {
  padding: 7px 14px;
  border-radius: 8px;
  background: none;
  border: 1px solid var(--border-med);
  color: var(--text-3);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 150ms;
}
.rdx-discard-btn:hover { color: var(--text); border-color: var(--border-med); }

/* Artist sub-tabs */
.artist-subtabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
  border-bottom: none;
  margin: 0 0 0 0;
}
.artist-subtabs::-webkit-scrollbar { display: none; }
.artist-subtab {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-3);
  padding: 10px 16px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 150ms var(--ease), border-color 150ms var(--ease);
  flex-shrink: 0;
}
.artist-subtab:hover { color: var(--text); }
.artist-subtab.active { color: var(--green); border-bottom-color: var(--green); font-weight: 600; }

/* Artist sub-panels */
.artist-subpanel { display: none; padding-top: 28px; }
.artist-subpanel.active { display: block; }

/* Overview layout */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.overview-main {}
.overview-aside {}

/* psg-card clickable */
.psg-card{cursor:pointer;transition:box-shadow 150ms var(--ease),border-color 150ms var(--ease)}
.psg-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.13);border-color:var(--border-med)}

/* Stats mini-grid */
.platform-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.psg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.psg-platform {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 5px;
}
.psg-value {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--green);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}
.psg-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-3);
  margin-top: 2px;
}
.psg-delta {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  margin-top: 2px;
}
.psg-delta.up { color: var(--emerald); }
.psg-delta.dn { color: var(--coral); }

/* ── Overview charts ───────────────────────────────── */
.ov-chart-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
.ov-chart-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 60%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px 14px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 1px 2px rgba(0,0,0,0.04),
    0 12px 40px -16px rgba(45,106,79,0.18);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}
.ov-chart-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 60% at 0% 100%, rgba(45,106,79,0.05) 0%, transparent 60%);
  border-radius: inherit;
}
[data-theme="dark"] .ov-chart-card,
.dark .ov-chart-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 60%),
    var(--surface);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 1px 2px rgba(0,0,0,0.3),
    0 12px 40px -16px rgba(0,0,0,0.5);
}
.ov-chart-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 12px;
  position: relative;
}
.ov-chart-title-wrap { display: flex; flex-direction: column; gap: 4px; }
.ov-chart-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
}
.ov-chart-title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.6px;
  line-height: 1;
}
.ov-chart-title-sub {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
  font-family: var(--font-mono);
}
.ov-chart-title-sub .ov-cs-val { font-size: 14px; font-weight: 700; color: var(--text); letter-spacing: -0.2px; }
.ov-chart-title-sub .ov-cs-delta { font-size: 9.5px; font-weight: 700; letter-spacing: 0.4px; }
.ov-cs-delta.up { color: var(--emerald, #2D6A4F); }
.ov-cs-delta.dn { color: var(--coral); }

.ov-chart-range {
  display: flex;
  gap: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
}
.ov-cr-btn {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border: 0;
  background: transparent;
  color: var(--text-3);
  cursor: pointer;
  border-radius: 999px;
  transition: background 160ms var(--ease), color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.ov-cr-btn:hover { color: var(--text-2); }
.ov-cr-btn.active {
  background: var(--surface);
  color: var(--green);
  box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 0 0 1px var(--border) inset;
}

.ov-chart-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  aspect-ratio: 600 / 180;
}
.ov-chart-main .ov-chart-svg { aspect-ratio: 600 / 220; }

.ov-chart-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 2px 0 56px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Chart pieces */
.ovc-grid-line { stroke: var(--border); stroke-width: 1; stroke-dasharray: 1 4; opacity: 0.7; }
.ovc-grid-baseline { stroke: var(--border-med, var(--border)); stroke-width: 1; }
.ovc-grid-label { font-family: var(--font-mono); font-size: 12px; font-weight: 600; fill: var(--text-3); letter-spacing: 0.6px; }
.ovc-area { fill: var(--ovc-area-fill, rgba(45,106,79,0.2)); }
.ovc-line { fill: none; stroke: var(--green); stroke-width: 2.5; stroke-linejoin: round; stroke-linecap: round; }
.ovc-dot-outer { fill: var(--green); fill-opacity: 0.18; }
.ovc-dot { fill: var(--green); stroke: var(--surface); stroke-width: 2.5; }
.ovc-callout-bg { fill: var(--surface); stroke: var(--green); stroke-width: 1.25; filter: drop-shadow(0 4px 10px rgba(45,106,79,0.18)); }
.ovc-callout-label { font-family: var(--font-mono); font-size: 11px; font-weight: 700; fill: var(--text-3); letter-spacing: 1px; text-transform: uppercase; }
.ovc-callout-val { font-family: var(--font-mono); font-size: 13px; font-weight: 700; fill: var(--green); letter-spacing: -0.1px; }
.ovc-connector { stroke: var(--green); stroke-width: 1; stroke-dasharray: 2 3; opacity: 0.6; }

/* Listeners (secondary, amber accent) */
#listenersChart .ovc-area { fill: rgba(166,124,55,0.15); }
#listenersChart .ovc-line { stroke: var(--amber); }
#listenersChart .ovc-dot { fill: var(--amber); }
#listenersChart .ovc-dot-outer { fill: var(--amber); fill-opacity: 0.18; }
#listenersChart .ovc-hover-line { stroke: var(--amber); }
#listenersChart .ovc-hover-dot { fill: var(--amber); }
#listenersChart .ovc-hover-dot-outer { fill: var(--amber); fill-opacity: 0.22; }
#listenersChart .ovc-callout-val { fill: var(--amber); }
#listenersChart .ovc-callout-bg { stroke: var(--amber); filter: drop-shadow(0 4px 10px rgba(166,124,55,0.22)); }

/* Hover crosshair */
.ovc-hover-line { stroke: var(--green); stroke-width: 1; stroke-dasharray: 3 3; opacity: 0.55; }
.ovc-hover-dot-outer { fill: var(--green); fill-opacity: 0.22; }
.ovc-hover-dot { fill: var(--green); stroke: var(--surface); stroke-width: 2.5; }
.ovc-capture { cursor: crosshair; pointer-events: all; }
#mapGlobeEl canvas { pointer-events: auto !important; }

@media (max-width: 1100px) {
  .ov-chart-grid { grid-template-columns: 1fr; }
}
/* ──────────────────────────────────────────────────── */

/* Top tracks table */
.at-section-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.at-section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.track-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 150ms var(--ease);
}
.track-row:last-child { border-bottom: none; }
.track-row:hover { background: var(--surface-2); margin: 0 -8px; padding: 10px 8px; border-radius: 8px; }
.track-row:hover .track-name { color: var(--green); }
.vault-track { transition: background 150ms var(--ease); border-radius: 8px; }
.vault-track:hover { background: var(--green-dim); }
.vault-track:hover .vault-track-title { color: var(--green); }
.track-rank {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.track-name {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 150ms var(--ease);
}
.track-streams {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-2);
  white-space: nowrap;
}
.track-bar-wrap {
  width: 60px;
  height: 4px;
  background: var(--surface-2);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.track-bar {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #2D6A4F, #2D6A4F);
}

/* Playlist cards */
.playlist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.playlist-item:last-child { border-bottom: none; }
.playlist-item:hover .playlist-name { color: var(--green); }
.playlist-badge {
  font-family: var(--font-mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
}
.playlist-badge.editorial { background: rgba(45,106,79,0.1); color: var(--green); }
.playlist-badge.algo { background: var(--surface-2); color: var(--text-3); }
.playlist-badge.user { background: var(--surface-2); color: var(--text-3); }
.playlist-info { flex: 1; min-width: 0; }
.playlist-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  transition: color 150ms var(--ease);
}
.playlist-meta {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-3);
  margin-top: 2px;
}

/* City bars */
.city-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.city-name { font-size: 12px; font-weight: 500; color: var(--text); width: 80px; flex-shrink: 0; }
.city-bar-track {
  flex: 1;
  height: 4px;
  background: var(--surface-2);
  border-radius: 2px;
  overflow: hidden;
}
.city-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, #2D6A4F, #2D6A4F);
}
.city-bar-val {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  white-space: nowrap;
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

/* Milestone items */
.milestone-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.milestone-item:last-child { border-bottom: none; }
.milestone-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald); flex-shrink: 0; margin-top: 4px;
}
.milestone-dot.amber { background: var(--amber); }
.milestone-dot.coral { background: var(--coral); }
.milestone-text { font-size: 12px; color: var(--text); line-height: 1.4; font-weight: 500; }
.milestone-date { font-family: var(--font-mono); font-size: 9px; color: var(--text-3); margin-top: 2px; }

/* Similar artists */
.similar-artist-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.similar-artist-row:last-child { border-bottom: none; }
.similar-artist-row:hover .sim-name { color: var(--green); }
.sim-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 9px; font-weight: 700; color: var(--text-3);
  flex-shrink: 0;
}
.sim-name { font-size: 12px; font-weight: 600; color: var(--text); flex: 1; transition: color 150ms var(--ease); }
.sim-listeners { font-family: var(--font-mono); font-size: 10px; color: var(--text-3); }

/* Show more toggle */
.at-show-more {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--green);
  background: none;
  border: 1px solid rgba(45,106,79,0.25);
  border-radius: 20px;
  cursor: pointer;
  padding: 6px 14px;
  margin: 10px 0 20px;
  transition: all 150ms var(--ease);
  display: inline-block;
}
.at-show-more:hover { background: var(--green-dim); border-color: var(--green); }

/* Subpanel placeholder */
.subpanel-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  text-align: center;
  border: 1px dashed var(--border);
  border-radius: 12px;
  gap: 8px;
}
.spp-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
}
.spp-title { font-size: 15px; font-weight: 600; color: var(--text); }
.spp-desc { font-size: 12px; color: var(--text-3); line-height: 1.5; max-width: 320px; text-wrap: pretty; }

