:root {
  --paper: #f7f4ee;
  --ink: #171713;
  --muted: #69665d;
  --line: #d8d0c2;
  --red: #b82822;
  --teal: #0d7771;
  --yellow: #d7b232;
  --green: #668a2c;
  --white: #fffefa;
  --shadow: 0 18px 40px rgba(23, 23, 19, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

body.consumer {
  background:
    linear-gradient(90deg, rgba(184, 40, 34, 0.05), transparent 38%),
    var(--paper);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.94);
  backdrop-filter: blur(12px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-lockup img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--white);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

nav a:hover,
.site-footer a:hover {
  color: var(--red);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: min(760px, calc(86svh - 72px));
  padding: clamp(24px, 5vw, 64px) clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 780px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 11vw, 9.8rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lede {
  max-width: 58ch;
  margin-bottom: 24px;
  color: #333028;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.hero-art {
  display: grid;
  gap: 16px;
}

.logo-banner {
  width: 100%;
  min-height: 160px;
  max-height: 310px;
  object-fit: cover;
  border: 1px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow);
}

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

.cover-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--ink);
  background: var(--white);
}

.metrics-band,
.listener-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.metrics-band article,
.listener-strip article {
  min-height: 150px;
  padding: clamp(18px, 3vw, 30px);
  border-right: 1px solid rgba(255, 254, 250, 0.18);
}

.metrics-band article:nth-child(2),
.listener-strip article:nth-child(2) {
  background: var(--red);
}

.metrics-band article:nth-child(3),
.listener-strip article:nth-child(3) {
  background: var(--teal);
}

.metrics-band article:nth-child(4),
.listener-strip article:nth-child(4) {
  background: var(--green);
}

.metric {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: 0.9;
}

.catalog-section,
.proof-section,
.campaign-section,
.archive-section,
.release-wall-section,
.gateway-section,
.related-section,
.spotlight-section,
.pathway-section {
  padding: clamp(34px, 7vw, 92px) clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.gateway-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  background: var(--white);
}

.gateway-copy {
  max-width: 900px;
}

.gateway-copy p:not(.kicker) {
  color: #333028;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.gateway-cover {
  display: block;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.gateway-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input[type="search"] {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.filter.active {
  background: var(--yellow);
}

.catalog-utility {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.directory-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.letter-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.letter-rail button {
  min-width: 34px;
  min-height: 34px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.letter-rail button.active {
  background: var(--ink);
  color: var(--white);
}

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

.artist-card,
.proof-grid article,
.panel,
.archive-list article {
  border: 1px solid var(--ink);
  background: var(--white);
}

.artist-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 16px;
}

.consumer-card {
  min-height: 390px;
}

.artist-card-cover {
  display: block;
  margin: -16px -16px 14px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.artist-card-cover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.artist-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.artist-name {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 8px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge.current {
  background: var(--teal);
  color: var(--white);
}

.badge.legacy {
  background: var(--red);
  color: var(--white);
}

.artist-note {
  min-height: 68px;
  margin-bottom: 14px;
  color: #39362f;
}

.release-list {
  display: grid;
  gap: 7px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.release-list li {
  display: grid;
  gap: 2px;
  padding: 8px;
  border-left: 4px solid var(--line);
  background: #f4f0e7;
}

.release-title {
  font-weight: 900;
}

.release-source {
  color: var(--muted);
  font-size: 0.78rem;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.link-row a {
  min-height: 34px;
  padding: 8px 9px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.link-row a.verified {
  background: var(--ink);
  color: var(--white);
}

.link-row a.search {
  background: var(--yellow);
}

.verify-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.proof-grid,
.archive-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.manifesto-panel {
  display: grid;
  gap: 16px;
  margin: 0 0 24px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 246, 229, 0.18);
  border-left: 10px solid var(--red);
  background:
    linear-gradient(135deg, rgba(227, 54, 40, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(255, 246, 229, 0.08), transparent 48%),
    #100d0b;
  color: var(--white);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

.manifesto-panel p {
  max-width: 1040px;
  margin: 0;
  color: rgba(244, 239, 230, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.26rem);
  line-height: 1.64;
}

.manifesto-panel p:first-child {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  font-weight: 900;
  line-height: 1.22;
  text-transform: uppercase;
}

.proof-grid article,
.archive-list article,
.panel {
  padding: 18px;
}

.proof-grid article:nth-child(1) {
  border-top: 8px solid var(--red);
}

.proof-grid article:nth-child(2) {
  border-top: 8px solid var(--yellow);
}

.proof-grid article:nth-child(3) {
  border-top: 8px solid var(--teal);
}

.proof-grid article:nth-child(4) {
  border-top: 8px solid var(--green);
}

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

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.spotlight-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 360px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.spotlight-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.spotlight-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
}

.spotlight-card strong,
.spotlight-card span:not(.badge) {
  padding: 0 12px;
}

.spotlight-card strong {
  color: var(--red);
  font-size: 1rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.spotlight-card span:not(.badge) {
  align-self: start;
  color: var(--muted);
  font-size: 0.88rem;
}

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

.pathway-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.pathway-card:nth-child(1) {
  border-top: 8px solid var(--red);
}

.pathway-card:nth-child(2) {
  border-top: 8px solid var(--teal);
}

.pathway-card:nth-child(3) {
  border-top: 8px solid var(--yellow);
}

.pathway-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.pathway-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pathway-links a {
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.pathway-links a:hover,
.spotlight-card:hover strong {
  color: var(--red);
}

.release-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.release-tile {
  display: grid;
  gap: 6px;
  min-height: 220px;
  padding: 14px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.release-tile:hover,
.artist-name a:hover {
  color: var(--red);
}

.release-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--paper);
}

.release-tile strong {
  color: var(--red);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.release-tile span {
  font-weight: 900;
  line-height: 1.15;
}

.release-tile small {
  align-self: end;
  color: var(--muted);
}

.artist-name a {
  color: inherit;
  text-decoration: none;
}

.artist-detail {
  min-height: 70svh;
}

.artist-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  padding: clamp(34px, 7vw, 92px) clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.artist-hero h1 {
  font-size: clamp(3rem, 8vw, 8rem);
}

.artist-cover-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.artist-cover-stack img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--ink);
  background: var(--white);
}

.artist-cover-stack img:first-child {
  grid-column: span 3;
}

.artist-release-section {
  padding: clamp(34px, 7vw, 92px) clamp(16px, 4vw, 56px);
}

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

.video-section,
.music-section {
  padding: clamp(34px, 7vw, 92px) clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: #0b0a08;
}

.music-section {
  background:
    linear-gradient(90deg, rgba(227, 54, 40, 0.16), transparent 44%),
    #100d0b;
}

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

.music-grid {
  align-items: start;
}

.video-card,
.music-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 246, 229, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 246, 229, 0.055), transparent 42%),
    var(--panel);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

.music-card {
  overflow: hidden;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.music-card iframe {
  width: 100%;
  min-height: 450px;
  border: 0;
  background: #000;
}

.music-card.spotify iframe {
  min-height: 352px;
}

.video-card strong,
.music-card strong {
  padding: 0 14px 14px;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.music-card strong {
  padding-bottom: 0;
}

.music-card span {
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

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

.related-grid a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 14px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.related-grid strong {
  color: var(--red);
  text-transform: uppercase;
}

.related-grid span {
  color: var(--muted);
}

.az-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.az-list a {
  min-height: 54px;
  padding: 14px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.az-list a:hover {
  color: var(--red);
}

.release-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) minmax(0, 1fr);
  gap: 16px;
  min-height: 250px;
  padding: 16px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.release-card > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--paper);
}

.release-card p {
  color: var(--muted);
}

.panel ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.panel li {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.panel li:last-child {
  border-bottom: 0;
}

.money {
  color: var(--red);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(16px, 4vw, 56px);
  background: var(--ink);
  color: var(--white);
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer span {
  color: rgba(255, 254, 250, 0.74);
}

@media (max-width: 1050px) {
  .hero,
  .section-head,
  .toolbar,
  .catalog-utility {
    grid-template-columns: 1fr;
  }

  .metrics-band,
  .listener-strip,
  .artist-grid,
  .proof-grid,
  .dashboard,
  .release-wall,
  .artist-hero,
  .artist-release-grid,
  .gateway-section,
  .related-grid,
  .az-list,
  .spotlight-grid,
  .pathway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters,
  .letter-rail {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

  .cover-strip,
  .metrics-band,
  .listener-strip,
  .artist-grid,
  .proof-grid,
  .dashboard,
  .archive-list,
  .release-wall,
    .artist-hero,
    .artist-release-grid,
    .release-card,
    .gateway-section,
    .related-grid,
    .video-grid,
    .music-grid,
    .az-list,
    .spotlight-grid,
    .pathway-grid {
    grid-template-columns: 1fr;
  }

  .metrics-band article,
  .listener-strip article {
    min-height: 120px;
  }

  .filter {
    flex: 1 1 calc(50% - 8px);
  }

  .artist-card {
    min-height: auto;
  }
}

/* 2026 public redesign: darker, sharper, cover-driven hardcore label feel. */
:root {
  --paper: #0b0a08;
  --ink: #f4efe6;
  --muted: #b8aa97;
  --line: #332b24;
  --red: #e33628;
  --teal: #18a88f;
  --yellow: #e3c94c;
  --green: #91b84b;
  --white: #fff6e5;
  --panel: #15120f;
  --panel-2: #201914;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
}

body,
body.consumer,
body.artist-page {
  background:
    repeating-linear-gradient(0deg, rgba(255, 246, 229, 0.035) 0 1px, transparent 1px 4px),
    linear-gradient(135deg, rgba(227, 54, 40, 0.22), transparent 28%),
    linear-gradient(315deg, rgba(24, 168, 143, 0.16), transparent 32%),
    #0b0a08;
  color: var(--ink);
}

body::selection {
  background: var(--red);
  color: var(--white);
}

a {
  text-underline-offset: 0.18em;
}

.site-header {
  min-height: 74px;
  border-bottom: 2px solid var(--red);
  background: rgba(10, 9, 8, 0.92);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.36);
}

.brand-lockup {
  color: var(--white);
}

.brand-lockup img {
  border-color: rgba(255, 246, 229, 0.24);
  background: #fff;
  filter: contrast(1.08);
}

nav {
  color: rgba(244, 239, 230, 0.78);
}

nav a:hover,
.site-footer a:hover {
  color: var(--yellow);
}

.hero,
.artist-hero {
  position: relative;
  isolation: isolate;
  border-bottom: 2px solid var(--red);
  background:
    linear-gradient(115deg, rgba(11, 10, 8, 0.98) 0%, rgba(11, 10, 8, 0.86) 54%, rgba(227, 54, 40, 0.24) 100%),
    repeating-linear-gradient(135deg, rgba(255, 246, 229, 0.08) 0 1px, transparent 1px 20px);
}

.public-hero {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.78fr);
}

.hero::after,
.artist-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 12px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--teal));
}

.kicker {
  color: var(--yellow);
}

h1,
h2,
h3 {
  color: var(--white);
  text-wrap: balance;
}

h1 {
  max-width: 8ch;
  text-shadow: 4px 4px 0 rgba(227, 54, 40, 0.62);
}

.public-hero h1 {
  max-width: 9ch;
  font-size: clamp(3.4rem, 8.4vw, 7.8rem);
}

.artist-hero h1 {
  max-width: 10ch;
}

.lede,
.gateway-copy p:not(.kicker),
.section-head p:last-child,
.artist-note,
.release-source,
.verify-note,
.pathway-card p,
.release-card p,
.related-grid span,
.spotlight-card span:not(.badge),
.site-footer span {
  color: var(--muted);
}

.lede {
  color: #e7dac8;
  font-weight: 700;
}

.button,
.filter,
.letter-rail button,
.link-row a,
.pathway-links a {
  border-color: rgba(255, 246, 229, 0.72);
  background: transparent;
  color: var(--white);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.filter:hover,
.letter-rail button:hover,
.link-row a:hover,
.pathway-links a:hover {
  transform: translateY(-1px);
  border-color: var(--yellow);
  color: var(--yellow);
}

.button.primary,
.filter.active,
.letter-rail button.active,
.link-row a.verified {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.hero-art {
  transform: rotate(-1deg) translateY(8px);
}

.logo-banner,
.cover-strip img,
.gateway-cover,
.artist-card-cover img,
.spotlight-card img,
.release-tile img,
.artist-cover-stack img,
.release-card > img {
  border-color: rgba(255, 246, 229, 0.2);
  background: #080706;
  box-shadow: var(--shadow);
}

.cover-strip img:nth-child(2) {
  transform: translateY(18px);
}

.metrics-band,
.listener-strip {
  border-top: 1px solid rgba(255, 246, 229, 0.14);
  border-bottom: 2px solid #000;
  background: #070605;
}

.metrics-band article,
.listener-strip article {
  border-right-color: rgba(255, 246, 229, 0.15);
}

.metrics-band article:nth-child(2),
.listener-strip article:nth-child(2) {
  background: #9d2019;
}

.metrics-band article:nth-child(3),
.listener-strip article:nth-child(3) {
  background: #0f6c60;
}

.metrics-band article:nth-child(4),
.listener-strip article:nth-child(4) {
  background: #556f28;
}

.metric {
  color: var(--white);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45);
}

.catalog-section,
.proof-section,
.campaign-section,
.archive-section,
.release-wall-section,
.related-section,
.spotlight-section,
.pathway-section,
.artist-release-section {
  border-bottom-color: rgba(255, 246, 229, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 246, 229, 0.04), transparent 34%),
    #0b0a08;
}

.gateway-section {
  border-top: 2px solid #000;
  border-bottom: 2px solid var(--red);
  background:
    linear-gradient(90deg, rgba(227, 54, 40, 0.2), transparent 44%),
    #130f0c;
}

.gateway-cover {
  border: 2px solid var(--white);
  box-shadow: 10px 10px 0 var(--red), var(--shadow);
}

.toolbar {
  padding: 12px;
  border: 1px solid rgba(255, 246, 229, 0.14);
  background: rgba(0, 0, 0, 0.26);
}

input[type="search"] {
  border-color: rgba(255, 246, 229, 0.42);
  background: #080706;
  color: var(--white);
}

input[type="search"]::placeholder {
  color: rgba(244, 239, 230, 0.42);
}

.directory-count {
  color: var(--yellow);
}

.artist-card,
.proof-grid article,
.panel,
.archive-list article,
.spotlight-card,
.pathway-card,
.release-tile,
.related-grid a,
.az-list a,
.release-card {
  border-color: rgba(255, 246, 229, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 246, 229, 0.055), transparent 42%),
    var(--panel);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

.artist-card,
.spotlight-card,
.release-tile,
.pathway-card,
.release-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.artist-card:hover,
.spotlight-card:hover,
.release-tile:hover,
.pathway-card:hover,
.release-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 54, 40, 0.75);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.artist-card {
  border-top: 4px solid var(--red);
}

.artist-card-cover {
  border-bottom-color: rgba(255, 246, 229, 0.16);
  background: #070605;
}

.artist-name a,
.release-title,
.release-tile span,
.spotlight-card strong,
.related-grid strong,
.az-list a {
  color: var(--white);
}

.artist-name a:hover,
.release-tile:hover,
.spotlight-card:hover strong,
.az-list a:hover {
  color: var(--yellow);
}

.badge {
  border-color: rgba(255, 246, 229, 0.24);
  background: #080706;
  color: var(--white);
}

.badge.current {
  background: var(--teal);
  color: #07110f;
}

.badge.legacy {
  background: var(--red);
  color: var(--white);
}

.release-list li {
  border-left-color: var(--red);
  background: rgba(255, 246, 229, 0.055);
}

.link-row a.search {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #14100c;
}

.proof-grid article:nth-child(1),
.pathway-card:nth-child(1) {
  border-top-color: var(--red);
}

.proof-grid article:nth-child(2),
.pathway-card:nth-child(3) {
  border-top-color: var(--yellow);
}

.proof-grid article:nth-child(3),
.pathway-card:nth-child(2) {
  border-top-color: var(--teal);
}

.proof-grid article:nth-child(4) {
  border-top-color: var(--green);
}

.release-tile {
  min-height: 250px;
  padding: 10px;
}

.release-tile strong {
  color: var(--red);
}

.release-tile small {
  color: var(--muted);
}

.related-grid a,
.az-list a {
  text-decoration: none;
}

.site-footer {
  border-top: 2px solid var(--red);
  background: #070605;
  color: var(--white);
}

.site-footer a {
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .hero-art {
    transform: none;
  }

  .public-hero {
    grid-template-columns: 1fr;
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .public-hero .lede {
    margin-bottom: 16px;
  }

  .logo-banner {
    min-height: 104px;
    max-height: 150px;
  }

  .cover-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  h1 {
    max-width: 9ch;
    margin-bottom: 12px;
    text-shadow: 3px 3px 0 rgba(227, 54, 40, 0.62);
  }

  .toolbar {
    padding: 10px;
  }

  .cover-strip img:nth-child(2) {
    transform: none;
  }

  .gateway-cover {
    box-shadow: 6px 6px 0 var(--red), var(--shadow);
  }
}
