@import url("https://fonts.googleapis.com/css2?family=Lora:wght@500;600;700&family=Noto+Sans:wght@400;500;600;700;800;900&family=Roboto+Slab:wght@400;500;600;700&display=swap");

:root {
  color-scheme: dark;
  --bg: #0f071f;
  --surface: #140b28;
  --surface-2: #261d42;
  --surface-3: #332653;
  --line: rgba(129, 139, 190, 0.34);
  --text: #fbf7ff;
  --muted: #b7acc4;
  --faint: #7d7194;
  --ember: #f257a8;
  --ember-2: #2b1d48;
  --teal: #91d6ec;
  --sky: #91d6ec;
  --amber: #ffe07d;
  --green: #a8d595;
  --red: #e9505f;
  --blue: #535d82;
  --shadow: 0 20px 62px rgba(4, 2, 14, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0f071f;
  color: var(--text);
  font-family: "Noto Sans", sans-serif;
  font-feature-settings: normal;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.auth-locked {
  overflow: hidden;
}

.auth-locked .app-shell,
.auth-locked .mobile-menu-button {
  visibility: hidden;
}

.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(145, 214, 236, 0.16), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(242, 87, 168, 0.12), transparent 32%),
    var(--bg);
}

.auth-locked .auth-gate {
  display: grid;
}

.auth-card {
  width: min(420px, 100%);
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.94);
  box-shadow: var(--shadow);
}

.auth-logo {
  width: 156px;
  height: auto;
  object-fit: contain;
}

.auth-logo-light {
  display: none;
}

.auth-password {
  display: grid;
  gap: 8px;
}

.auth-password span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-password input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0 14px;
  outline: none;
}

.auth-password input:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(83, 105, 255, 0.14);
}

.auth-error {
  min-height: 18px;
  margin: -4px 0 0;
  color: #ffb0b7;
  font-size: 12px;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

.app-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 0 14px 24px;
  border-right: 1px solid var(--line);
  background: rgba(15, 7, 31, 0.96);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 68px;
}

.brand-logo {
  width: 148px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-logo-light,
.auth-logo-light {
  display: none;
}

.light-mode .brand-logo-dark,
.light-mode .auth-logo-dark {
  display: none;
}

.light-mode .brand-logo-light,
.light-mode .auth-logo-light {
  display: block;
}

.quick-search svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-search {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.92);
  color: var(--muted);
}

.quick-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.quick-search input::placeholder {
  color: var(--faint);
}

.theme-switch {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  padding: 0;
  cursor: pointer;
}

.theme-switch:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.theme-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-icon-dark {
  display: none;
}

.light-mode .theme-icon-dark {
  display: block;
}

.light-mode .theme-icon-light {
  display: none;
}

.nav-group {
  display: grid;
  gap: 8px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  padding: 0 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.nav-item:hover,
.nav-item.active {
  background: rgba(51, 38, 83, 0.92);
  color: var(--text);
}

.sidebar-footer {
  margin-top: auto;
  display: grid;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.sidebar-footer p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
}

.sidebar-footer strong {
  display: block;
  font-size: 13px;
}

.nav-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  color: currentColor;
}

.nav-icon svg,
.mobile-menu-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-label {
  margin: 24px 14px 4px;
  color: var(--faint);
  font-size: 12px;
}

.nav-spacer {
  height: 20px;
  border: 0;
  background: transparent;
}

.trial-button {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: var(--ember);
  color: var(--text);
  font-weight: 800;
}

.user-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.user-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #090511;
}

.user-card small {
  display: block;
  color: var(--muted);
}

.workspace {
  min-width: 0;
  padding: 0 0 56px;
}

.workspace-topbar {
  position: sticky;
  top: 0;
  z-index: 95;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(260px, 620px) auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 28px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 90%, #000000 10%);
  backdrop-filter: blur(16px);
}

.global-search {
  width: min(620px, 100%);
  background: rgba(255, 255, 255, 0.06);
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.account-menu {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 0 0 0 14px;
  cursor: pointer;
}

.account-menu > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-weight: 800;
}

.account-menu strong {
  font-size: 13px;
  font-weight: 700;
}

.account-menu svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-button {
  position: static;
  width: 42px;
  height: 42px;
  display: none;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 11, 40, 0.94);
  color: var(--text);
  box-shadow: var(--shadow);
}

.nav-backdrop {
  display: none;
}

.topbar,
.section-head,
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar {
  margin-bottom: 24px;
}

.section > .section-head {
  margin: 0 44px 20px;
}

.section.plain-page > .section-head {
  margin-top: 32px;
}

.raw-section > .section-head {
  margin: 0 0 20px;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.08;
  max-width: 850px;
}

h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.12;
  font-weight: 700;
}

h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
}

.topbar-actions,
.filter-row,
.festival-control,
.segmented {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.icon-btn,
.primary-action,
.secondary-action,
.chip,
.segmented button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  min-height: 34px;
  padding: 0 13px;
  cursor: pointer;
  white-space: nowrap;
}

.icon-btn {
  width: 40px;
  padding: 0;
  font-size: 19px;
}

.primary-action {
  background: linear-gradient(90deg, var(--ember), #ff9a96);
  border-color: rgba(242, 87, 168, 0.72);
  color: white;
  font-weight: 800;
}

.secondary-action {
  color: var(--text);
}

.chip,
.segmented button {
  color: var(--muted);
}

.chip.active,
.segmented button.active {
  background: rgba(51, 38, 83, 0.92);
  color: var(--text);
  border-color: rgba(242, 87, 168, 0.72);
}

.section[hidden] {
  display: none;
}

.section {
  animation: show 160ms ease-out;
}

.section,
.artist-tabs,
.artist-profile-content {
  max-width: 1220px;
}

.section,
.artist-tabs,
.artist-profile-content {
  margin-left: 0;
  margin-right: auto;
}

.artist-profile-shell {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(15, 7, 31, 0.96);
}

.artist-profile-header {
  position: relative;
  min-height: clamp(320px, 31vw, 410px);
  overflow: hidden;
  background: #0f071f;
}

.artist-profile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: none;
}

.artist-profile-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 8, 12, 0.92) 0, rgba(6, 8, 12, 0.72) 110px, rgba(6, 8, 12, 0) 250px);
}

.artist-profile-content {
  position: relative;
  z-index: 1;
  min-height: clamp(320px, 31vw, 410px);
  padding: 34px 44px;
  display: grid;
  align-content: end;
}

.profile-kicker,
.profile-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-kicker {
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.profile-title-row h2 {
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 0.95;
}

.round-action,
.follow-btn,
.list-btn {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(15, 7, 31, 0.52);
  color: var(--text);
  padding: 0 13px;
  cursor: pointer;
}

.round-action {
  width: 38px;
  padding: 0;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.verified-dot {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 2px solid var(--text);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.follow-btn,
.list-btn {
  font-size: 14px;
  font-weight: 800;
}

.profile-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 240px));
  gap: 16px;
  margin-top: 28px;
}

.profile-stat-card {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  text-align: center;
}

.profile-stat-card small {
  color: #d6d0df;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-stat-card strong {
  display: block;
  margin-top: 4px;
  font-size: 26px;
  line-height: 1;
}

.artist-tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 58px;
  padding: 0 44px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  background: rgba(15, 7, 31, 0.96);
}

.artist-tab {
  position: relative;
  min-height: 58px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.artist-tab.active {
  color: var(--text);
}

.artist-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--ember);
}

.band-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 44px 24px;
}

.band-subtabs button {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(242, 87, 168, 0.26);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.band-subtabs button.active {
  border-color: transparent;
  background: var(--ember);
  color: #fff;
}

.overview-signal-section,
.social-kpi-section {
  margin: 0 44px 34px;
}

.overview-signal-list {
  display: grid;
  gap: 12px;
}

.overview-signal-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.88);
}

.overview-signal-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(145, 214, 236, 0.16);
  color: var(--teal);
  font-size: 18px;
  font-weight: 900;
}

.overview-signal-icon::before {
  font-size: 18px;
  line-height: 1;
}

.overview-signal-icon.fire::before {
  content: "🔥";
}

.overview-signal-icon.audience::before {
  content: "◉";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow:
    -7px 6px 0 -4px currentColor,
    7px 6px 0 -4px currentColor;
  font-size: 8px;
}

.overview-signal-card.good .overview-signal-icon {
  background: rgba(168, 213, 149, 0.16);
  color: var(--green);
}

.overview-signal-card.warn .overview-signal-icon {
  background: rgba(255, 224, 125, 0.16);
  color: var(--amber);
}

.overview-signal-card.danger .overview-signal-icon {
  background: #e11d48;
  color: #ffffff;
}

.overview-signal-card > div > strong {
  display: block;
  font-size: 15px;
}

.overview-signal-card p {
  margin: 3px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.overview-signal-card p strong {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: 700;
}

.social-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.social-kpi-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 11, 40, 0.88);
}

.social-kpi-card small,
.data-points small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.social-kpi-card strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  line-height: 1;
}

.social-kpi-card small {
  font-weight: 500;
  letter-spacing: 0;
}

.growth-pill {
  align-self: start;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(168, 213, 149, 0.16);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.growth-pill.down {
  background: #e11d48;
  color: #ffffff;
}

.raw-section {
  margin: 34px 44px 0;
}

.top-track-card {
  display: grid;
  grid-template-columns: auto 64px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  max-width: 720px;
  margin: 18px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 11, 40, 0.88);
}

.top-track-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.top-track-card strong,
.top-track-card span {
  display: block;
}

.track-rank {
  color: var(--muted);
  font-weight: 900;
  font-size: 22px;
}

.raw-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.raw-card {
  min-height: 176px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.88);
  box-shadow: 0 18px 46px rgba(4, 2, 14, 0.18);
}

.raw-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.raw-card-head h3 {
  font-size: 20px;
}

.streaming-card {
  min-height: 136px;
  padding: 18px 20px;
}

.streaming-card .raw-card-head {
  margin-bottom: 16px;
}

.streaming-card .data-points {
  gap: 0;
}

.streaming-card .data-points > div {
  padding: 0 16px;
  border-left: 1px solid rgba(145, 155, 177, 0.34);
}

.streaming-card .data-points > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.streaming-card .data-points small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
}

.streaming-card .data-points strong {
  font-size: clamp(16px, 1.5vw, 20px);
}

.dwp-snapshot {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.88);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.dwp-snapshot:hover {
  border-color: rgba(145, 214, 236, 0.52);
  transform: translateY(-1px);
}

.dwp-snapshot-brand img {
  width: 116px;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.dwp-snapshot-brand span {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.dwp-snapshot-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.dwp-snapshot-data article {
  padding: 16px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.dwp-snapshot-data article:first-child {
  border-left: 0;
}

.dwp-snapshot-data small,
.dwp-snapshot-data strong {
  display: block;
}

.dwp-snapshot-data small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.dwp-snapshot-data strong {
  margin-top: 8px;
  font-size: clamp(17px, 1.8vw, 22px);
  overflow-wrap: anywhere;
}

.platform-dot {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-3);
  color: var(--text);
  font-weight: 900;
}

.platform-dot svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-dot img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.platform-dot.pandora svg,
.platform-dot.festival svg {
  fill: currentColor;
  stroke: none;
}

.platform-dot.spotify {
  background: #1db954;
  color: #ffffff;
}

.platform-dot.tiktok {
  background: #000000;
  color: #fff;
}

.platform-dot.youtube {
  background: #ff0000;
  color: white;
}

.platform-dot.youtubemusic {
  background: #ff0000;
  color: #ffffff;
}

.platform-dot.instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 72%, #515bd4 100%);
  color: #ffffff;
}

.platform-dot.instagram img {
  width: 30px;
  height: 30px;
}

.platform-dot.applemusic {
  background: linear-gradient(135deg, #fa243c, #fb5c74);
  color: #ffffff;
}

.platform-dot.x {
  background: #000000;
  color: #ffffff;
}

.platform-dot.facebook {
  background: #1877f2;
  color: #ffffff;
}

.platform-dot.billboard {
  background: #111111;
  color: #ffffff;
}

.platform-dot.billboard img {
  width: 30px;
  height: 30px;
}

.platform-dot.pollstr {
  background: #000;
  color: #12c7f4;
}

.platform-dot.pollstr img {
  width: 27px;
  height: 27px;
}

.platform-dot.bandsintown {
  background: #e8eef7;
  color: #1f2937;
}

.platform-dot.bandsintown img {
  width: 24px;
  height: 24px;
}

.platform-dot.pandora,
.platform-dot.shazam {
  background: var(--teal);
  color: #0f071f;
}

.platform-dot.ticketing,
.platform-dot.festival {
  background: var(--amber);
  color: #1a0d20;
}

.data-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 18px;
}

.data-points strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.live-grid .raw-card-head h3 {
  font-size: 20px;
}

.live-grid .data-points strong {
  font-size: 18px;
  line-height: 1.15;
}

.live-grid .festival-history-card .data-points strong {
  font-size: 17px;
  font-weight: 700;
}

.data-points .wide-data-point {
  grid-column: span 2;
}

.live-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.live-grid .data-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.similar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.similar-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}

.similar-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.similar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.04) 62%);
}

.similar-card div {
  position: absolute;
  z-index: 1;
  left: 16px;
  right: 16px;
  bottom: 16px;
}

.similar-card strong,
.similar-card span {
  display: block;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.similar-card strong {
  color: #fff;
  font-size: 18px;
}

.similar-card span {
  color: rgba(255, 255, 255, 0.9);
}

@keyframes show {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-panel {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(20, 11, 40, 0.88);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 7, 31, 0.96) 0%, rgba(15, 7, 31, 0.72) 45%, rgba(51, 38, 83, 0.38) 100%),
    linear-gradient(0deg, rgba(15, 7, 31, 0.94), rgba(15, 7, 31, 0.08) 55%);
}

.command-section h2 {
  font-size: 18px;
  line-height: 1.15;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 300px;
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  align-content: end;
  max-width: 980px;
}

.artist-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  margin-bottom: 14px;
}

.artist-meta span,
.pill {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-title-row h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 0.9;
}

.score-badge {
  width: 78px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 8px solid color-mix(in srgb, var(--teal) 72%, transparent);
  background: rgba(0, 0, 0, 0.5);
  font-size: 22px;
  font-weight: 900;
}

.hero-copy {
  margin: 18px 0 0;
  color: #e1ddd8;
  max-width: 760px;
  font-size: 13px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 44px;
}

.metric {
  min-height: 112px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 11, 40, 0.88);
}

.metric small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 10px;
}

.metric strong {
  display: block;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1;
}

.metric span {
  display: inline-block;
  margin-top: 10px;
  color: var(--green);
  font-size: 13px;
}

.metric.negative span {
  color: var(--red);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: 16px;
  margin: 0 44px;
}

.panel,
.rail-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 11, 40, 0.88);
  padding: 18px;
}

.panel.wide {
  min-width: 0;
  grid-column: 1 / -1;
}

.panel-head {
  margin-bottom: 16px;
}

select,
.festival-control input[type="range"] {
  accent-color: var(--ember);
}

select {
  min-height: 38px;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.96);
  color: var(--text);
  padding: 0 11px;
}

.chart-frame {
  min-height: 292px;
}

.chart-frame svg,
.mini-chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.axis-label {
  fill: var(--muted);
  font-size: 11px;
}

.offer-stack {
  display: grid;
  gap: 14px;
}

.offer-number {
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.confidence-bar,
.heat-bar,
.fit-bar {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.confidence-bar span,
.heat-bar span,
.fit-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ember), #ff9a96, var(--amber));
}

.decision-list,
.market-grid,
.signal-feed,
.signal-room,
.deal-grid,
.simulator-grid,
.market-deep,
.watch-stack,
.compare-stack {
  display: grid;
  gap: 12px;
}

.decision-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-list li,
.signal,
.market-row,
.watch-item,
.compare-item,
.fit-card,
.deal-card,
.deep-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.88);
  padding: 13px;
}

.decision-list strong,
.signal strong,
.market-row strong,
.watch-item strong,
.compare-item strong {
  display: block;
  margin-bottom: 4px;
}

.muted {
  color: var(--muted);
}

.market-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px;
  gap: 12px;
  align-items: center;
}

.market-row span {
  color: var(--muted);
  font-size: 13px;
}

.market-row .heat-bar {
  margin-top: 10px;
}

.audience-bars {
  display: grid;
  gap: 12px;
}

.audience-bar {
  display: grid;
  gap: 6px;
}

.audience-bar div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.audience-page-shell {
  margin: 0 44px;
}

.audience-page-shell .band-subtabs {
  margin: 0 0 32px;
}

.audience-analytics {
  display: grid;
  gap: 34px;
}

.audience-demographics {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(180px, 0.7fr) minmax(240px, 1fr);
  gap: 32px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.audience-demographics h3,
.audience-growth-panel h3 {
  font-size: 22px;
}

.audience-demographics p {
  margin: 18px 0 0;
  max-width: 420px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.audience-demographics p strong {
  color: var(--text);
}

.audience-donut {
  width: min(240px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 50%;
  background: conic-gradient(var(--audience-color) calc(var(--female) * 1%), rgba(255, 255, 255, 0.32) 0);
  display: grid;
  place-items: center;
}

.audience-donut span {
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bg);
}

.audience-bars-mini {
  height: 190px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: end;
  padding-left: 18px;
  border-left: 2px solid rgba(255, 255, 255, 0.24);
  border-bottom: 2px solid rgba(255, 255, 255, 0.24);
}

.audience-bars-mini span {
  position: relative;
  display: block;
  height: var(--h);
  min-height: 5px;
  border-radius: 3px 3px 0 0;
  background: color-mix(in srgb, var(--ember) 68%, transparent);
}

.audience-bars-mini span::after {
  content: "";
  position: absolute;
  left: 45%;
  bottom: 0;
  width: 42%;
  height: calc(var(--h) * 1.28);
  min-height: 7px;
  border-radius: 3px 3px 0 0;
  background: rgba(255, 255, 255, 0.36);
}

.audience-bars-mini b {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 11px;
}

.audience-growth-panel {
  padding: 0 0 34px;
  border-bottom: 1px solid var(--line);
}

.audience-growth-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.audience-current {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.audience-current strong,
.audience-current small {
  display: block;
}

.audience-current strong {
  font-size: 20px;
}

.audience-current small {
  color: var(--muted);
  font-weight: 700;
}

.range-pills {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.range-pills button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
}

.range-pills button:first-child {
  border-left: 0;
}

.range-pills button.active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.audience-chart-frame {
  min-height: 300px;
}

.audience-chart-frame svg {
  width: 100%;
  height: auto;
  display: block;
}

.audience-popular-row {
  display: grid;
  gap: 12px;
}

.audience-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.audience-popular-grid article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.72);
}

.audience-popular-grid img {
  width: 70px;
  height: 62px;
  border-radius: 7px;
  object-fit: cover;
}

.audience-popular-grid strong {
  display: block;
  font-size: 15px;
  line-height: 1.15;
}

.audience-popular-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.audience-locations .section-head {
  margin: 0 0 20px;
}

.audience-location-table {
  max-width: 640px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.audience-location-table > div,
.audience-location-table article {
  display: grid;
  grid-template-columns: 70px minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 58px;
  padding: 0 28px;
  border-top: 1px solid var(--line);
}

.audience-location-table > div {
  border-top: 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-weight: 800;
}

.audience-location-table article b {
  color: var(--text);
}

.bar-shell {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.bar-shell span {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.right-rail {
  display: none;
}

.watch-item,
.compare-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  cursor: pointer;
}

.watch-item img,
.compare-item img,
.artist-cell img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--surface-3);
}

.rank {
  color: var(--teal);
  font-weight: 900;
}

.table-wrap {
  margin: 16px 44px 0;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 11, 40, 0.88);
}

.artist-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.artist-table th,
.artist-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: middle;
}

.artist-table th {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.15;
  font-weight: 800;
  text-transform: uppercase;
}

.artist-table tr {
  cursor: pointer;
}

.artist-table tr:hover {
  background: rgba(255, 255, 255, 0.035);
}

.artist-cell {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.artist-cell strong {
  font-size: 14px;
  line-height: 1.15;
}

.artist-cell .muted {
  display: inline-block;
  margin-top: 3px;
  font-size: 13px;
}

.artist-score-circle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 5px solid rgba(145, 214, 236, 0.78);
  border-radius: 50%;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.artist-fit-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.tiny-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(145, 214, 236, 0.12);
  color: var(--teal);
  font-size: 12px;
  white-space: nowrap;
}

.market-deep {
  margin: 16px 44px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.deep-card {
  min-height: 210px;
}

.deep-card h3,
.fit-card h3,
.deal-card h3 {
  margin-bottom: 10px;
}

.mini-chart {
  margin-top: 14px;
}

.attendance-shell,
.festival-history-shell,
.dwp-history-shell,
.riaa-shell {
  margin: 22px 44px 0;
  display: grid;
  gap: 16px;
}

.mini-summary-grid,
.festival-history-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.mini-summary-grid article,
.festival-history-kpis article {
  min-height: 80px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.88);
}

.mini-summary-grid small,
.festival-history-kpis small,
.data-table-head,
.festival-event-head,
.dwp-history-head,
.riaa-head {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-summary-grid strong,
.festival-history-kpis strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 24px);
  line-height: 1;
}

.festival-history-kpis span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.data-table-card,
.festival-event-list,
.dwp-history-list,
.riaa-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(20, 11, 40, 0.88);
}

.data-table-head,
.data-table-row,
.festival-event-head,
.festival-event-row,
.dwp-history-head,
.dwp-history-row,
.riaa-head,
.riaa-row {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}

.data-table-head,
.data-table-row {
  grid-template-columns: minmax(150px, 1fr) minmax(150px, 0.8fr) minmax(190px, 0.9fr) 110px;
}

.attendance-table .data-table-head,
.attendance-table .data-table-row {
  grid-template-columns: minmax(130px, 0.9fr) minmax(170px, 1fr) minmax(130px, 0.7fr) minmax(180px, 0.9fr) 100px;
}

.festival-event-head,
.festival-event-row {
  grid-template-columns: minmax(190px, 1fr) minmax(130px, 0.58fr) minmax(220px, 0.95fr) minmax(110px, 0.45fr);
}

.data-table-row,
.festival-event-row,
.dwp-history-row {
  font-size: 15px;
}

.data-table-row strong,
.festival-event-row strong,
.dwp-history-row strong,
.data-table-row span,
.festival-event-row span b,
.dwp-history-row span b {
  font-size: 14px;
}

.dwp-history-head,
.dwp-history-row {
  grid-template-columns: minmax(150px, 1fr) minmax(120px, 0.7fr) minmax(190px, 0.9fr) minmax(170px, 0.9fr);
}

.riaa-head,
.riaa-row {
  grid-template-columns: 70px minmax(180px, 1.2fr) minmax(90px, 0.55fr) minmax(140px, 0.8fr) minmax(140px, 0.75fr) minmax(110px, 0.65fr);
}

.data-table-row:hover,
.festival-event-row:hover,
.dwp-history-row:hover,
.riaa-row:hover {
  background: rgba(255, 255, 255, 0.035);
}

.data-table-row:last-child,
.festival-event-row:last-child,
.dwp-history-row:last-child,
.riaa-row:last-child {
  border-bottom: 0;
}

.status-pill,
.festival-event-row em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  line-height: 1;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
  text-align: center;
}

.date-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  line-height: 1;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  white-space: nowrap;
  text-align: center;
}

.status-pill.sold,
.status-pill.hot,
.festival-event-row em {
  background: rgba(168, 213, 149, 0.16);
  color: var(--green);
}

.status-pill.good {
  background: rgba(145, 214, 236, 0.16);
  color: var(--teal);
}

.status-pill.warm {
  background: rgba(255, 224, 125, 0.14);
  color: var(--amber);
}

.status-pill.soft,
.festival-event-row em.down {
  background: #e11d48;
  color: #ffffff;
}

.dwp-history-hero {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.88);
}

.dwp-history-hero img {
  width: 118px;
  max-height: 80px;
  object-fit: contain;
  object-position: left center;
}

.dwp-history-hero h3 {
  margin-top: 4px;
  font-size: clamp(24px, 3vw, 36px);
}

.dwp-history-hero h3 span {
  font-style: italic;
}

.dwp-history-hero p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 8px;
}

.dwp-history-row {
  position: relative;
}

.dwp-history-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--ember), var(--blue));
  opacity: 0.82;
}

.dwp-history-row span b,
.dwp-history-row span em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.dwp-history-row > span:not(.date-pill) {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.dwp-history-row .date-pill,
.dwp-history-row .status-pill {
  line-height: 1;
}

.date-pill {
  min-height: 28px;
  padding-inline: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.festival-event-row span,
.riaa-row span {
  color: var(--muted);
}

.festival-event-row span {
  font-weight: 400;
}

.festival-event-row b,
.festival-event-row em,
.riaa-row b,
.riaa-row small {
  display: block;
}

.festival-event-row em {
  margin-top: 6px;
}

.riaa-row img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.riaa-row small {
  margin-top: 4px;
  color: var(--faint);
  font-size: 11px;
}

.simulator-grid,
.deal-grid {
  margin: 22px 44px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fit-card,
.deal-card {
  min-height: 230px;
}

.offer-range {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0;
}

.offer-range strong {
  font-size: 28px;
}

.fit-card-metrics {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 12px;
  margin: 20px 0 14px;
}

.fit-metric {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.fit-metric small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.fit-metric strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1;
}

.fit-metric.offer strong {
  font-size: clamp(20px, 2.1vw, 28px);
}

.scenario-list {
  display: grid;
  gap: 8px;
}

.scenario-list button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(51, 38, 83, 0.9);
  cursor: pointer;
}

.signal-room {
  margin: 16px 44px 0;
}

.signal-room-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.88);
  padding: 22px;
}

.signal-room-hero h3 {
  font-size: 26px;
}

.signal-room-score {
  min-height: 104px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(242, 87, 168, 0.14);
  text-align: center;
}

.signal-room-score small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.signal-room-score strong {
  display: block;
  font-size: 38px;
  line-height: 1;
}

.signal-room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.signal-card {
  cursor: pointer;
}

.signal-roster-list {
  display: grid;
  gap: 12px;
}

.signal-artist-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.88);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.signal-artist-row:hover {
  border-color: rgba(145, 214, 236, 0.5);
  transform: translateY(-1px);
}

.signal-artist-summary {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.signal-artist-summary img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.signal-artist-summary strong {
  display: block;
  font-size: 16px;
}

.signal-artist-summary span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.signal-artist-summary b {
  grid-column: 2;
  width: max-content;
  margin-top: 6px;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-artist-summary b.good {
  background: rgba(168, 213, 149, 0.16);
  color: var(--green);
}

.signal-artist-summary b.warm {
  background: rgba(255, 224, 125, 0.16);
  color: var(--amber);
}

.signal-artist-signals {
  display: grid;
  gap: 10px;
}

.signal-inline {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.signal-inline strong {
  display: block;
  font-size: 14px;
}

.signal-inline .muted {
  display: block;
  margin-top: 2px;
  font-size: 14px;
}

.lineup-shell {
  margin: 16px 44px 0;
  display: grid;
  gap: 16px;
}

.lineup-hero-card,
.lineup-board,
.lineup-insight-card,
.lineup-summary-grid article,
.lineup-pressure-grid article,
.lineup-candidate-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.88);
}

.lineup-hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.lineup-hero-card h3,
.lineup-insight-card h3,
.lineup-section-head h3 {
  font-size: 22px;
}

.lineup-hero-card p:not(.eyebrow),
.lineup-insight-card p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 8px;
}

.lineup-hero-actions,
.lineup-tool-row,
.lineup-section-head,
.lineup-pressure-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lineup-hero-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lineup-tool-row {
  flex-wrap: wrap;
}

.lineup-tool-row span,
.lineup-section-head > span {
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(145, 214, 236, 0.12);
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.lineup-summary-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lineup-summary-grid article {
  min-height: 80px;
  padding: 16px;
}

.lineup-summary-grid small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.lineup-summary-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1;
}

.lineup-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 14px;
}

.lineup-board {
  overflow: hidden;
}

.lineup-board-head,
.lineup-artist-row {
  display: grid;
  grid-template-columns: minmax(116px, 0.5fr) minmax(220px, 1.15fr) minmax(170px, 0.78fr) 86px;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.lineup-board-head {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.lineup-board-head span:last-child {
  text-align: center;
  justify-self: center;
}

.lineup-artist-row {
  cursor: pointer;
}

.lineup-artist-row:last-child {
  border-bottom: 0;
}

.lineup-artist-row:hover {
  background: rgba(255, 255, 255, 0.035);
}

.lineup-slot {
  width: max-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(145, 214, 236, 0.12);
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.lineup-artist-cell {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.lineup-artist-cell img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
}

.lineup-artist-cell strong,
.lineup-artist-row b {
  display: block;
  font-size: 15px;
}

.lineup-artist-cell small,
.lineup-artist-row small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.lineup-fit {
  width: 44px;
  height: 44px;
  justify-self: center;
  display: grid;
  place-items: center;
  border: 5px solid rgba(56, 189, 248, 0.6);
  border-radius: 50%;
  font-weight: 900;
}

.lineup-insight-card {
  align-self: start;
  padding: 18px;
}

.lineup-insight-card h3 {
  font-size: 20px;
}

.lineup-insight-card p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.45;
}

.lineup-meter {
  height: 10px;
  margin: 18px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.lineup-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ember), var(--teal));
}

.lineup-note-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lineup-note-list li {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.lineup-note-list strong,
.lineup-note-list span {
  display: block;
}

.lineup-note-list span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.lineup-pressure-card,
.lineup-candidate-card {
  display: grid;
  gap: 12px;
  margin-top: 2px;
}

.lineup-section-head {
  justify-content: space-between;
}

.lineup-pressure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lineup-pressure-grid article {
  padding: 16px;
}

.lineup-pressure-top {
  justify-content: space-between;
}

.lineup-pressure-top strong {
  font-size: 15px;
}

.lineup-pressure-top b {
  color: var(--teal);
  font-size: 20px;
}

.lineup-pressure-grid .lineup-meter {
  margin: 12px 0;
}

.lineup-candidate-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.lineup-candidate-grid article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  cursor: pointer;
}

.lineup-candidate-grid article:hover {
  background: rgba(255, 255, 255, 0.035);
}

.lineup-candidate-grid img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
}

.lineup-candidate-grid strong,
.lineup-candidate-grid small {
  display: block;
}

.lineup-candidate-grid strong {
  font-size: 14px;
}

.lineup-candidate-grid small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.lineup-candidate-grid span {
  color: var(--teal);
  font-weight: 900;
}

.home-shell {
  width: min(1220px, calc(100% - 88px));
  margin: 32px 0 52px 44px;
  display: grid;
  gap: 26px;
}

.home-page-head h1 {
  font-size: clamp(32px, 4vw, 46px);
}

.home-section {
  display: grid;
  gap: 14px;
}

.home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.home-section-head h2 {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.home-section-head button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.8);
  color: var(--text);
  padding: 9px 13px;
  cursor: pointer;
}

.home-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-recent-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.82);
  padding: 8px 12px 8px 8px;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(4, 2, 14, 0.18);
}

.home-recent-chip img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.home-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 26px;
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.home-artist-card,
.home-signal-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.88);
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.home-artist-card:hover,
.home-signal-row:hover,
.home-recent-chip:hover {
  border-color: color-mix(in srgb, var(--teal) 58%, var(--line));
  transform: translateY(-1px);
}

.home-artist-card {
  overflow: hidden;
}

.home-artist-card img {
  width: 100%;
  height: 118px;
  display: block;
  object-fit: cover;
}

.home-artist-card div {
  padding: 12px;
}

.home-artist-card h3,
.home-signal-row h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.15;
}

.home-artist-card span,
.home-signal-row p {
  color: var(--muted);
  font-size: 12px;
}

.home-signal-list {
  display: grid;
  gap: 12px;
}

.home-signal-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 12px;
}

.home-signal-row > img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.home-signal-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.home-signal-topline span {
  border-radius: 999px;
  background: rgba(145, 214, 236, 0.14);
  color: var(--teal);
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-signal-row p {
  margin: 5px 0 0;
  line-height: 1.4;
}

.home-signal-score {
  min-width: 48px;
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(168, 213, 149, 0.14);
  color: #9be78e;
  font-size: 18px;
  font-weight: 900;
}

.home-signal-score.negative {
  background: rgba(255, 221, 225, 0.14);
  color: #ff8f99;
}

.home-signal-score.neutral {
  background: rgba(255, 224, 125, 0.12);
  color: var(--amber);
}

.following-shell {
  margin: 16px 44px 0;
  display: grid;
  gap: 16px;
}

.following-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.following-summary-grid article,
.following-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.88);
  box-shadow: var(--shadow);
}

.following-summary-grid article {
  min-height: 86px;
  padding: 16px;
}

.following-summary-grid small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.following-summary-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1;
}

.following-summary-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.following-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.following-card {
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.following-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--teal) 56%, var(--line));
}

.following-card-image {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.following-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.following-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 7, 31, 0.82), rgba(15, 7, 31, 0.02) 62%);
}

.following-card-image span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 4px solid var(--teal);
  border-radius: 50%;
  background: rgba(15, 7, 31, 0.8);
  color: var(--text);
  font-weight: 900;
}

.following-card-body {
  display: grid;
  min-height: 64px;
  align-items: center;
  padding: 14px 16px;
}

.following-card-body > div:first-child small {
  color: var(--muted);
  font-size: 12px;
}

.following-card-body h3 {
  font-size: 21px;
  line-height: 1.05;
}

.following-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.signings-shell {
  margin: 16px 44px 0;
  display: grid;
  gap: 16px;
}

.signings-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signings-tabs button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(242, 87, 168, 0.22);
  color: var(--muted);
  padding: 0 16px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.signings-tabs button.active {
  background: var(--ember);
  color: #ffffff;
}

.signings-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.signings-summary-grid article,
.signings-table-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.88);
}

.signings-summary-grid article {
  min-height: 86px;
  padding: 16px;
}

.signings-summary-grid small,
.signings-table-head {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.signings-summary-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1;
}

.signings-summary-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.signings-table-card {
  overflow: hidden;
}

.signings-table-head,
.signings-table-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 0.9fr) minmax(140px, 0.8fr) 80px minmax(220px, 1.2fr);
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.signings-table-row {
  font-size: 15px;
}

.signings-table-row:last-child {
  border-bottom: 0;
}

.signings-table-row:hover {
  background: rgba(255, 255, 255, 0.035);
}

.signings-table-row strong {
  font-size: 15px;
}

.signing-artist-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.signing-artist-cell img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 7px;
  object-fit: cover;
}

.signings-table-row span {
  color: var(--muted);
}

.signings-table-row b {
  width: max-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(168, 213, 149, 0.16);
  color: var(--green);
  font-size: 13px;
  line-height: 1;
}

.charts-shell,
.tours-shell,
.festivals-shell {
  margin: 16px 44px 0;
  display: grid;
  gap: 16px;
}

.page-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.page-summary-grid article,
.chart-card,
.tour-table-card,
.festival-directory-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.88);
}

.page-summary-grid article {
  min-height: 86px;
  padding: 16px;
}

.page-summary-grid small,
.tour-table-head {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-summary-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1;
}

.page-summary-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.chart-board-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.chart-card {
  overflow: hidden;
}

.chart-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.chart-card-head h3 {
  margin: 4px 0 5px;
  font-size: 20px;
}

.chart-card-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.chart-card-head > b,
.festival-fit-score {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 8px solid var(--sky);
  border-radius: 50%;
  color: var(--text);
  font-size: 17px;
  line-height: 1;
}

.chart-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
}

.chart-row:last-child {
  border-bottom: 0;
}

.chart-row > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.chart-row strong {
  display: block;
  font-size: 15px;
}

.chart-row small {
  color: var(--muted);
  font-size: 14px;
}

.chart-row b {
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(168, 213, 149, 0.16);
  color: var(--green);
  font-size: 11px;
}

.inline-artist-link {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  padding: 0;
  cursor: pointer;
}

.inline-artist-link:hover,
.source-link:hover {
  color: var(--sky);
}

.tour-table-card {
  overflow: hidden;
}

.tour-table-head,
.tour-table-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(220px, 1fr) 140px minmax(180px, 0.9fr) 86px;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.tour-table-row {
  min-height: 92px;
}

.tour-table-row:last-child {
  border-bottom: 0;
}

.tour-artist-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.tour-artist-cell img,
.tour-empty-thumb {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(135, 209, 240, 0.35), rgba(242, 87, 168, 0.2));
}

.tour-artist-cell strong {
  display: block;
  max-width: 100%;
  font-size: 15px;
  line-height: 1.15;
}

.tour-artist-cell small,
.tour-table-row span,
.tour-table-row p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.tour-table-row p {
  margin: 0;
}

.tour-table-row > b {
  width: max-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(168, 213, 149, 0.16);
  color: var(--green);
  font-size: 13px;
}

.tour-table-row > b.negative {
  background: rgba(255, 225, 229, 1);
  color: #991b1b;
}

.festival-directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.festival-directory-section {
  display: grid;
  gap: 14px;
}

.festival-directory-section + .festival-directory-section {
  margin-top: 30px;
}

.festival-directory-section-head h2 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.festival-directory-card {
  padding: 18px;
}

.festival-directory-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 16px;
}

.festival-directory-top h3 {
  margin: 4px 0 0;
  font-size: 22px;
}

.festival-directory-top h3 a {
  color: inherit;
  text-decoration: none;
}

.festival-directory-top h3 a:hover {
  color: var(--sky);
}

.festival-directory-facts {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.festival-directory-facts div {
  display: grid;
  gap: 4px;
}

.festival-directory-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.festival-directory-facts dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.festival-directory-facts .inline-artist-link {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ember);
  font: inherit;
  font-weight: inherit;
  text-align: left;
  cursor: pointer;
}

.festival-directory-facts .inline-artist-link:hover {
  color: var(--ember);
  text-decoration: underline;
}

.festival-card-media {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
}

.festival-flyer-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.festival-flyer-link img {
  display: block;
  width: 94px;
  height: 122px;
  object-fit: cover;
}

.festival-fit-score {
  width: 50px;
  height: 50px;
  border-width: 6px;
  background: rgba(135, 209, 240, 0.08);
  font-weight: 900;
}

.source-link {
  color: var(--sky);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.signal-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  color: var(--faint);
  font-size: 11px;
}

.signal-card-meta span {
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.06);
}

.band-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 44px 0;
}

.signal-lab-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.88);
  padding: 18px;
}

.signal-lab-card.wide {
  grid-column: 1 / -1;
}

.signal-lab-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.market-signal-list {
  display: grid;
  gap: 10px;
}

.market-signal-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(160px, 1fr) 42px;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.market-signal-row strong,
.market-signal-row span {
  display: block;
}

.signal-heat {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.signal-heat span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--ember), var(--amber));
}

.signal-big-number {
  margin: 22px 0 12px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  font-weight: 900;
}

.news-shell {
  margin: 44px;
  max-width: 1180px;
  display: grid;
  gap: 22px;
}

.news-page-head h1 {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.12;
}

.news-hero {
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 7, 31, 0.86), rgba(15, 7, 31, 0.58)),
    radial-gradient(circle at 80% 20%, rgba(242, 87, 168, 0.34), transparent 32%),
    linear-gradient(135deg, #271c45, #0f071f);
}

.news-hero h1 {
  max-width: 880px;
  font-size: clamp(34px, 5vw, 58px);
  font-family: "Lora", sans-serif;
  font-weight: 700;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 18px;
}

.news-story,
.news-side-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 11, 40, 0.88);
  padding: 22px;
}

.news-story {
  display: grid;
  gap: 18px;
  font-size: 14px;
  line-height: 1.65;
}

.news-story h2,
.news-side-card h3 {
  margin-bottom: 8px;
}

.news-article-card h2,
.news-story h2 {
  font-family: "Lora", sans-serif;
}

.news-story p {
  margin: 0;
  color: #ddd6e8;
}

.news-story a.secondary-action {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.news-callout {
  border-left: 3px solid var(--ember);
  padding: 14px 16px;
  background: rgba(242, 87, 168, 0.1);
  color: var(--text);
}

.news-side {
  display: grid;
  gap: 18px;
  align-content: start;
}

.news-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

.news-intel-summary,
.band-news-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-intel-summary article,
.band-news-summary article,
.news-empty-state {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(38, 29, 66, 0.88);
}

.news-intel-summary small,
.band-news-summary small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-intel-summary strong,
.band-news-summary strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.band-news-summary {
  gap: 12px;
}

.band-news-summary article {
  min-height: 82px;
  padding: 14px 16px;
}

.band-news-summary small {
  font-size: 10px;
  letter-spacing: 0.01em;
}

.band-news-summary strong {
  margin-top: 6px;
  font-size: clamp(20px, 2vw, 26px);
}

.news-intel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.band-news-shell {
  margin: 22px 44px 0;
  display: grid;
  gap: 16px;
}

.news-signal-list {
  display: grid;
  gap: 14px;
}

.news-signal-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 78px;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 11, 40, 0.88);
  box-shadow: 0 14px 34px rgba(4, 2, 14, 0.16);
}

.news-signal-media {
  align-self: start;
  display: grid;
  gap: 8px;
}

.news-image-link {
  display: block;
  width: 112px;
  height: 86px;
  border-radius: 8px;
  overflow: hidden;
}

.news-image-link img {
  width: 112px;
  height: 86px;
  display: block;
  object-fit: cover;
  background: var(--surface-3);
  transition: transform 160ms ease;
}

.news-image-link:hover img {
  transform: scale(1.03);
}

.news-source-link {
  width: auto;
  max-width: 86px;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

.news-source-link:hover {
  color: var(--teal);
}

.news-source-logo {
  display: block;
  width: auto;
  max-width: 86px;
  max-height: 28px;
  object-fit: contain;
  object-position: left center;
}

.news-signal-main h3 {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.18;
}

.news-signal-main h3 a {
  color: inherit;
  text-decoration: none;
}

.news-signal-main h3 a:hover {
  color: var(--teal);
}

.news-signal-main p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.news-signal-main > a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.news-signal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-signal-meta span,
.news-signal-meta button {
  border-radius: 999px;
  padding: 3px 8px;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  font: inherit;
  text-transform: inherit;
}

.news-signal-meta button {
  cursor: pointer;
}

.news-signal-meta button:hover {
  color: var(--text);
  background: rgba(145, 214, 236, 0.16);
}

.news-signal-read {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(145, 214, 236, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(145, 214, 236, 0.08), transparent 46%),
    rgba(255, 255, 255, 0.045);
}

.news-signal-read-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.news-signal-read strong {
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
}

.news-signal-read p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.news-signal-read b {
  display: inline-flex;
  padding: 4px 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(145, 214, 236, 0.14);
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.news-score {
  --score: 0;
  --score-color: var(--teal);
  --score-glow: rgba(143, 211, 232, 0.26);
  min-height: 116px;
  padding: 10px 9px;
  display: grid;
  gap: 7px;
  justify-items: center;
  align-content: center;
  align-self: start;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    radial-gradient(circle at 50% 10%, var(--score-glow), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: none;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.news-score::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--score-color) 28%, transparent), transparent 48%);
  opacity: 0.58;
  pointer-events: none;
}

.news-score.hot,
.news-score.positive {
  --score-color: var(--green);
  --score-glow: rgba(34, 197, 94, 0.24);
}

.news-score.neutral {
  --score-color: var(--amber);
  --score-glow: rgba(255, 217, 119, 0.22);
}

.news-score.negative {
  --score-color: var(--red);
  --score-glow: rgba(255, 100, 126, 0.24);
}

.news-score-ring {
  width: 60px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(var(--score-color) calc(var(--score) * 1%), rgba(255, 255, 255, 0.12) 0),
    radial-gradient(circle, rgba(255, 255, 255, 0.13), transparent 68%);
  box-shadow: 0 0 28px var(--score-glow);
  position: relative;
  z-index: 1;
}

.news-score-ring::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 90%, #ffffff 4%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.news-score-ring span {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.news-score small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.news-score-meter {
  width: min(58px, 100%);
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.news-score-meter span {
  display: block;
  width: calc(var(--score) * 1%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--score-color), color-mix(in srgb, var(--score-color) 68%, #ffffff));
}

.news-stack {
  display: grid;
  gap: 22px;
}

.news-article-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(250px, 0.28fr);
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 11, 40, 0.88);
  box-shadow: var(--shadow);
}

.news-article-index {
  color: var(--teal);
  font-family: "Lora", sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.news-article-body {
  min-width: 0;
}

.news-article-body .news-meta a {
  color: inherit;
  text-decoration: none;
}

.news-article-card h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.news-dek {
  max-width: 860px;
  margin: 16px 0 0;
  color: var(--muted);
  font-family: "Roboto Slab", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

.news-copy {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  max-width: 900px;
  font-family: "Roboto Slab", sans-serif;
  font-size: 15px;
  line-height: 1.78;
}

.news-copy p {
  margin: 0;
  color: #ddd6e8;
}

.news-article-card .news-side-card {
  align-self: start;
  background: rgba(38, 29, 66, 0.88);
  box-shadow: none;
}

.signal {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
}

.signal-marker {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(24, 212, 200, 0.12);
}

.signal-marker.warn {
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(239, 181, 74, 0.12);
}

.signal-marker.danger {
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(239, 90, 77, 0.12);
}

.light-mode {
  color-scheme: light;
  --bg: #f3f6fb;
  --surface: #ffffff;
  --surface-2: #eef3f9;
  --surface-3: #e5ebf4;
  --line: #d8e0eb;
  --text: #1f2937;
  --muted: #64748b;
  --faint: #94a3b8;
  --ember: #2563eb;
  --teal: #38bdf8;
  --sky: #2563eb;
  --amber: #f59e0b;
  --green: #16a34a;
  --red: #dc2626;
  --blue: #475569;
  --shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

body.light-mode {
  background: var(--bg);
  color: var(--text);
}

.light-mode .workspace {
  background: var(--bg);
}

.light-mode .workspace-topbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
}

.light-mode .auth-gate {
  background:
    radial-gradient(circle at 18% 18%, rgba(56, 189, 248, 0.14), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(37, 99, 235, 0.08), transparent 32%),
    #f3f6fb;
}

.light-mode .auth-card {
  background: #ffffff;
  border-color: #d8e0eb;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.light-mode .auth-password input {
  background: #f8fafc;
  border-color: #d8e0eb;
  color: #1f2937;
}

.light-mode .auth-error {
  color: #dc2626;
}

.light-mode .sidebar {
  background: rgba(255, 255, 255, 0.98);
  border-right-color: var(--line);
}

.light-mode .quick-search,
.light-mode .theme-switch:hover,
.light-mode .user-card,
.light-mode .account-menu > span {
  background: #f1f5f9;
  border-color: #dbe4ef;
}

.light-mode .account-menu {
  color: var(--text);
  border-left-color: var(--line);
}

.light-mode .theme-switch {
  color: #111827;
}

.light-mode .nav-item:hover,
.light-mode .nav-item.active {
  background: #e8f1ff;
  color: #1d4ed8;
}

.light-mode .trial-button {
  color: #ffffff;
  background: #2563eb;
}

.light-mode .primary-action {
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  border-color: #2563eb;
}

.light-mode .artist-profile-shell {
  background: #ffffff;
}

.light-mode .artist-tabs {
  background: #ffffff;
  border-top-color: var(--line);
}

.light-mode .artist-tab {
  color: var(--muted);
}

.light-mode .artist-tab.active {
  color: var(--text);
}

.light-mode .artist-tab.active::after {
  background: var(--ember);
}

.light-mode .band-subtabs button {
  background: #e8eef7;
  color: #64748b;
}

.light-mode .signings-tabs button {
  background: #e8eef7;
  color: #64748b;
}

.light-mode .band-subtabs button.active {
  border-color: transparent;
  background: #2563eb;
  color: #ffffff;
}

.light-mode .signings-tabs button.active {
  border-color: transparent;
  background: #2563eb;
  color: #ffffff;
}

.light-mode .social-kpi-card,
.light-mode .top-track-card,
.light-mode .raw-card,
.light-mode .panel,
.light-mode .rail-panel,
.light-mode .metric,
.light-mode .table-wrap,
.light-mode .deep-card,
.light-mode .fit-card,
.light-mode .deal-card,
.light-mode .signal-room-hero,
.light-mode .lineup-hero-card,
.light-mode .lineup-board,
.light-mode .lineup-insight-card,
.light-mode .lineup-summary-grid article,
.light-mode .lineup-pressure-grid article,
.light-mode .lineup-candidate-grid article,
.light-mode .home-recent-chip,
.light-mode .home-artist-card,
.light-mode .home-signal-row,
.light-mode .following-summary-grid article,
.light-mode .following-card,
.light-mode .signings-summary-grid article,
.light-mode .signings-table-card,
.light-mode .page-summary-grid article,
.light-mode .chart-card,
.light-mode .tour-table-card,
.light-mode .festival-directory-card,
.light-mode .signal-lab-card,
.light-mode .mini-summary-grid article,
.light-mode .festival-history-kpis article,
.light-mode .data-table-card,
.light-mode .festival-event-list,
.light-mode .dwp-history-hero,
.light-mode .dwp-history-list,
.light-mode .riaa-list,
.light-mode .decision-list li,
.light-mode .signal,
.light-mode .signal-artist-row,
.light-mode .market-row,
.light-mode .watch-item,
.light-mode .compare-item,
.light-mode .news-story,
.light-mode .news-article-card,
.light-mode .news-intel-summary article,
.light-mode .band-news-summary article,
.light-mode .overview-signal-card,
.light-mode .news-signal-card,
.light-mode .news-empty-state,
.light-mode .news-side-card,
.light-mode .page-summary-grid article,
.light-mode .chart-card,
.light-mode .tour-table-card,
.light-mode .festival-directory-card,
.light-mode .audience-popular-grid article,
.light-mode .audience-location-table,
.light-mode .dwp-snapshot,
.light-mode .dwp-snapshot-data {
  background: #ffffff;
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.light-mode .home-section-head button {
  background: #ffffff;
  border-color: var(--line);
  color: var(--text);
}

.light-mode .home-signal-topline span {
  background: #e8effc;
  color: #2563eb;
}

.light-mode .home-signal-score {
  background: #edf7eb;
  color: #169c43;
}

.light-mode .home-signal-score.negative {
  background: #ffe0e3;
  color: #9f1d1d;
}

.light-mode .home-signal-score.neutral {
  background: #fff4d7;
  color: #9a5a00;
}

.light-mode .dwp-snapshot-data {
  background: #f8fafc;
  box-shadow: none;
}

.light-mode .festival-flyer-link {
  background: #f8fafc;
}

.light-mode .festival-fit-score {
  background: #ffffff;
}

.light-mode .audience-donut span {
  background: #ffffff;
}

.light-mode .audience-bars-mini {
  border-left-color: #d8e1ec;
  border-bottom-color: #d8e1ec;
}

.light-mode .range-pills button.active {
  background: #e8effc;
}

.light-mode .raw-card {
  background: #ffffff;
}

.light-mode .hero-panel,
.light-mode .news-hero {
  box-shadow: var(--shadow);
}

.light-mode .artist-profile-header,
.light-mode .hero-panel,
.light-mode .news-hero {
  color: #f8fafc;
}

.light-mode .artist-profile-header .profile-kicker,
.light-mode .artist-profile-header .muted,
.light-mode .hero-panel .artist-meta,
.light-mode .hero-panel .muted,
.light-mode .hero-copy,
.light-mode .news-meta {
  color: rgba(248, 250, 252, 0.76);
}

.light-mode .profile-title-row h2,
.light-mode .hero-title-row h2,
.light-mode .news-hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.36);
}

.light-mode .artist-profile-header::after {
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0, rgba(15, 23, 42, 0.68) 110px, rgba(15, 23, 42, 0) 250px);
}

.light-mode .hero-panel::after {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.72) 46%, rgba(30, 41, 59, 0.42) 100%),
    linear-gradient(0deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.08) 58%);
}

.light-mode .follow-btn,
.light-mode .list-btn {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(15, 23, 42, 0.48);
}

.light-mode .verified-dot {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.82);
}

.light-mode .secondary-action,
.light-mode .chip,
.light-mode .segmented button,
.light-mode select,
.light-mode .scenario-list button {
  background: #ffffff;
  border-color: var(--line);
  color: var(--text);
}

.light-mode .chip.active,
.light-mode .segmented button.active {
  background: #dbeafe;
  border-color: #93c5fd;
  color: #1d4ed8;
}

.light-mode .profile-stat-card {
  border: 1px solid rgba(71, 85, 105, 0.5);
  background: rgba(71, 85, 105, 0.86);
  color: #f8fafc;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
}

.light-mode .profile-stat-card small {
  color: #dbe4ef;
}

.light-mode .profile-stat-card strong {
  color: #ffffff;
}

.light-mode .muted,
.light-mode .news-story p,
.light-mode .news-copy p,
.light-mode .news-dek {
  color: var(--muted);
}

.light-mode .news-article-card .news-side-card {
  background: #f8fafc;
  box-shadow: none;
}

.light-mode .news-signal-meta span,
.light-mode .news-signal-meta button {
  background: #f1f5f9;
}

.light-mode .news-signal-read {
  border-color: #d8e1ec;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.06), transparent 48%),
    #f1f5f9;
}

.light-mode .news-signal-read b {
  background: #e8effc;
  color: #2563eb;
}

.light-mode .news-score {
  border-color: #d8e1ec;
  background:
    radial-gradient(circle at 50% 10%, var(--score-glow), transparent 60%),
    linear-gradient(180deg, #f8fafc, #eef3f8);
  box-shadow: none;
}

.light-mode .news-score::before {
  opacity: 0.42;
}

.light-mode .news-score-ring {
  background:
    conic-gradient(var(--score-color) calc(var(--score) * 1%), #dce5ef 0),
    radial-gradient(circle, #ffffff, transparent 68%);
}

.light-mode .news-score-ring::before {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #e2e8f0;
}

.light-mode .news-score-ring span {
  color: #101828;
}

.light-mode .news-score-meter {
  background: #dbe4ef;
}

.light-mode .metric small,
.light-mode .social-kpi-card small,
.light-mode .data-points small,
.light-mode .mini-summary-grid small,
.light-mode .festival-history-kpis small,
.light-mode .signings-summary-grid small,
.light-mode .following-summary-grid small,
.light-mode .page-summary-grid small,
.light-mode .tour-table-head,
.light-mode .signings-table-head,
.light-mode .data-table-head,
.light-mode .festival-event-head,
.light-mode .riaa-head {
  color: #667085;
}

.light-mode .metric span {
  color: var(--green);
}

.light-mode .bar-shell,
.light-mode .confidence-bar,
.light-mode .heat-bar,
.light-mode .fit-bar {
  background: #e9edf5;
}

.light-mode .fit-metric {
  background: #f2f5fa;
}

.light-mode .market-signal-row,
.light-mode .signal-card-meta span,
.light-mode .lineup-tool-row span,
.light-mode .lineup-section-head > span,
.light-mode .date-pill,
.light-mode .artist-fit-pill {
  background: #f1f5f9;
}

.light-mode .tiny-pill,
.light-mode .lineup-slot {
  background: #e8f1fb;
  color: #2563eb;
}

.light-mode .data-table-row:hover,
.light-mode .festival-event-row:hover,
.light-mode .riaa-row:hover,
.light-mode .lineup-artist-row:hover,
.light-mode .lineup-candidate-grid article:hover,
.light-mode .signings-table-row:hover {
  background: #f8fafc;
}

.light-mode .following-card-image::after {
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.68), rgba(15, 23, 42, 0.02) 62%);
}

.light-mode .following-card-image span {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.light-mode .artist-table tr:hover {
  background: #f8fafc;
}

.light-mode .mobile-menu-button {
  background: #ffffff;
}

.light-mode .growth-pill.down,
.light-mode .status-pill.soft,
.light-mode .festival-event-row em.down {
  background: #fee2e2;
  color: #991b1b;
}

.compact .metric {
  min-height: 88px;
  padding: 12px;
}

.compact .panel,
.compact .rail-panel {
  padding: 14px;
}

@media (max-width: 1240px) {
  .app-shell {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .social-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 980px) {
  .app-shell {
    display: block;
  }

  .mobile-menu-button {
    display: grid;
  }

  .sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 110;
    width: 240px;
    height: 100vh;
    padding: 20px 14px;
    transform: translateX(-105%);
    transition: transform 180ms ease;
    box-shadow: none;
  }

  body.nav-open .sidebar {
    transform: translateX(0);
    box-shadow: 24px 0 52px rgba(0, 0, 0, 0.32);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    border: 0;
    background: rgba(15, 23, 42, 0.34);
    cursor: pointer;
  }

  body.nav-open .nav-backdrop {
    display: block;
  }

  .brand-logo {
    width: 148px;
  }

  .nav-group {
    grid-template-columns: 1fr;
  }

  .nav-item {
    padding: 0 12px;
  }

  .sidebar-footer {
    display: grid;
  }

  .workspace {
    padding: 0 0 34px;
  }

  .workspace-topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 10px 18px;
    gap: 10px;
  }

  .account-menu {
    padding-left: 10px;
  }

  .account-menu strong,
  .account-menu svg {
    display: none;
  }

  .topbar,
  .section-head,
  .panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .stat-strip,
  .dashboard-grid,
  .market-deep,
  .simulator-grid,
  .deal-grid,
  .signal-room-grid,
  .band-signal-grid,
  .lineup-summary-grid,
  .lineup-workspace-grid,
  .lineup-pressure-grid,
  .lineup-candidate-grid,
  .home-card-grid,
  .following-summary-grid,
  .following-card-grid,
  .signings-summary-grid,
  .page-summary-grid,
  .chart-board-grid,
  .festival-directory-grid,
  .mini-summary-grid,
  .festival-history-kpis,
  .audience-popular-grid,
  .social-kpi-grid,
  .raw-grid,
  .similar-grid {
    grid-template-columns: 1fr 1fr;
  }

  .artist-profile-content,
  .artist-tabs,
  .overview-signal-section,
  .social-kpi-section,
  .raw-section,
  .band-subtabs,
  .audience-page-shell,
  .news-shell,
  .stat-strip,
  .dashboard-grid,
  .section > .section-head,
  .table-wrap,
  .market-deep,
  .attendance-shell,
  .festival-history-shell,
  .dwp-history-shell,
  .riaa-shell,
  .simulator-grid,
  .deal-grid,
  .signal-room,
  .lineup-shell,
  .home-shell,
  .following-shell,
  .signings-shell,
  .charts-shell,
  .tours-shell,
  .festivals-shell,
  .band-signal-grid {
    margin-left: 18px;
    margin-right: 18px;
  }

  .artist-profile-content,
  .artist-tabs {
    padding-left: 18px;
    padding-right: 18px;
    margin-left: 0;
    margin-right: 0;
  }

  .panel.wide {
    grid-column: 1 / -1;
  }

  .audience-demographics {
    grid-template-columns: 1fr;
  }

  .audience-donut {
    justify-self: start;
    max-width: 220px;
  }
}

@media (max-width: 640px) {
  .workspace-topbar {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 62px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .global-search {
    min-height: 40px;
  }

  .mobile-menu-button {
    width: 40px;
    height: 40px;
  }

  .theme-switch,
  .account-menu > span {
    width: 36px;
    height: 36px;
  }

  .topbar-actions {
    gap: 6px;
  }

  .nav-group,
  .stat-strip,
  .dashboard-grid,
  .market-deep,
  .simulator-grid,
  .deal-grid,
  .signal-room-grid,
  .band-signal-grid,
  .lineup-summary-grid,
  .lineup-workspace-grid,
  .lineup-pressure-grid,
  .lineup-candidate-grid,
  .home-main-grid,
  .home-card-grid,
  .following-summary-grid,
  .following-card-grid,
  .signings-summary-grid,
  .page-summary-grid,
  .chart-board-grid,
  .festival-directory-grid,
  .mini-summary-grid,
  .festival-history-kpis,
  .audience-popular-grid,
  .social-kpi-grid,
  .raw-grid,
  .news-grid,
  .news-intel-grid,
  .news-article-card,
  .similar-grid,
  .live-grid {
    grid-template-columns: 1fr;
  }

  .fit-card-metrics,
  .dwp-history-hero,
  .signal-room-hero,
  .signal-artist-row,
  .lineup-hero-card,
  .lineup-board-head,
  .lineup-artist-row,
  .lineup-section-head,
  .lineup-candidate-grid article,
  .signings-table-head,
  .signings-table-row,
  .tour-table-head,
  .tour-table-row,
  .market-signal-row,
  .news-signal-card,
  .data-table-head,
  .data-table-row,
  .festival-event-head,
  .festival-event-row,
  .dwp-history-head,
  .dwp-history-row,
  .riaa-head,
  .riaa-row {
    grid-template-columns: 1fr;
  }

  .profile-stat-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .profile-stat-card {
    min-height: 78px;
    padding: 12px 10px;
  }

  .profile-stat-card small {
    font-size: 10px;
  }

  .profile-stat-card strong {
    font-size: 24px;
  }

  .festival-directory-top {
    grid-template-columns: 1fr;
  }

  .festival-card-media {
    justify-content: space-between;
  }

  .festival-flyer-link img {
    width: 118px;
    height: 154px;
  }

  .news-intel-summary,
  .band-news-summary {
    grid-template-columns: 1fr;
  }

  .news-image-link,
  .news-image-link img {
    width: 100%;
    height: 180px;
  }

  .data-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-growth-head {
    flex-direction: column;
  }

  .audience-location-table > div,
  .audience-location-table article {
    grid-template-columns: 42px minmax(0, 1fr) 58px 72px;
    gap: 10px;
    padding: 0 14px;
  }

  .streaming-card .data-points > div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .dwp-snapshot,
  .dwp-snapshot-data {
    grid-template-columns: 1fr;
  }

  .dwp-snapshot-data article,
  .dwp-snapshot-data article:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .dwp-snapshot-data article:first-child {
    border-top: 0;
  }

  .top-track-card {
    grid-template-columns: auto 54px minmax(0, 1fr);
  }

  .top-track-card img {
    width: 54px;
    height: 54px;
  }

  .hero-panel,
  .hero-content {
    min-height: 440px;
  }

  .score-badge {
    width: 86px;
    font-size: 23px;
    border-width: 7px;
  }

  .topbar-actions {
    width: 100%;
  }

  .primary-action,
  .secondary-action {
    flex: 1;
  }

  .market-row {
    grid-template-columns: 1fr;
  }
}
