/* nihilus.ca - band site, tokens aligned with nihilus.dev */
:root {
  --void: #070607;
  --iron: #110e0f;
  --steel: #211b1d;
  --raised: #2b2326;
  --edge: #30282b;
  --edge-soft: #1e191b;
  --bone: #e9e5d8;
  --ash: #928986;
  --dim: #605857;
  --blood: #6c0616;
  --blood-lit: #980c21;
  --hot: #eb1e32;
  --amber: #d57a3c;
  --signal: #a8bd89;
  --font-display: "Chakra Petch", "Space Grotesk", sans-serif;
  --font-body: "Space Grotesk", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --maxw: 1440px;
  --radius: 2px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 40% at 50% -10%, rgba(152, 12, 33, 0.18), transparent 55%),
    var(--void);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--hot); text-decoration: none; }
a:hover { color: var(--bone); }
img { max-width: 100%; height: auto; display: block; }
.app { min-height: 100vh; display: flex; flex-direction: column; }
.wrap {
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
  padding-inline: 0;
}

.site-head {
  position: sticky; top: 0; z-index: 40;
  background: rgba(7, 6, 7, 0.94);
  border-bottom: 1px solid var(--edge-soft);
}
.site-head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px clamp(18px, 3vw, 36px);
}
.brand-link { display: flex; align-items: center; gap: 0.55rem; color: var(--bone); }
.brand-link img { height: 28px; width: auto; }
.brand-link span {
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.18em; font-size: 0.78rem;
}
/* nav styles moved to sticky dropdown block */

.hero {
  padding: clamp(2rem, 6vw, 3.5rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

.hero-brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  min-height: 100%;
  gap: 1rem;
  padding: 0.25rem 0;
}
.hero-brand-col .hero-kicker {
  margin: 0;
  width: 100%;
  text-align: center;
}
.hero-brand-col .hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin: 0;
  flex: 0 0 auto;
}
.hero-brand-col .hero-logo {
  width: min(100%, 620px);
  margin: 0 auto;
}
.hero-brand-col .hero-sub {
  margin: 0;
  text-align: center;
  max-width: 28rem;
}
.hero-brand-col .hero-cta {
  justify-content: center;
  width: 100%;
  margin-top: 0;
}

.hero-logo {
  width: min(100%, 620px); margin: 0 auto 0.85rem;
  filter: drop-shadow(0 0 36px rgba(235, 30, 50, 0.18));
}
.hero-word {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(56px, 16vw, 180px); line-height: 0.9;
  letter-spacing: 0.1em; margin: 0 0 0.4rem;
  text-shadow: 0 0 42px rgba(235, 30, 50, 0.18);
}
.hero-rule {
  display: block;
  width: min(100%, 420px);
  height: 1px;
  margin: 0.85rem auto 1rem;
  background: linear-gradient(90deg, transparent 0%, var(--blood-lit) 28%, var(--hot) 50%, var(--blood-lit) 72%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.hero-rule::after {
  content: ""; position: absolute; top: 0; left: -30%; width: 30%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--hot), transparent);
  animation: scan 5.5s linear infinite;
}
@keyframes scan { to { left: 110%; } }
.hero-kicker {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--hot); margin: 0 0 0.75rem;
}
.hero-headline {
  font-family: var(--font-display); font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 600; margin: 0 auto 0.85rem; max-width: 36rem;
}
/* desktop hero-rule under logo */
.hero-brand-col .hero-rule {
  display: block;
  width: min(100%, 320px);
  margin: 0.75rem 0 1rem;
}
.hero-welcome {
  margin: 0 auto 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
}
.hero-welcome span { color: var(--hot); }
.hero-sub { color: var(--ash); max-width: 34rem; margin: 0 auto 1.75rem; font-size: 1.05rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 12px 20px; border-radius: var(--radius);
  border: 1px solid var(--blood-lit);
  background: linear-gradient(180deg, var(--blood-lit), var(--blood));
  color: var(--bone); cursor: pointer;
}
.btn:hover { color: #fff; box-shadow: 0 0 22px rgba(235, 30, 50, 0.25); }
.btn.secondary {
  background: transparent; border-color: var(--edge); color: var(--bone);
}
.btn.secondary:hover { border-color: var(--ash); color: var(--bone); }
.btn.ghost { background: transparent; border-color: transparent; color: var(--ash); padding-left: 8px; padding-right: 8px; }

main { flex: 1 1 auto; }
.section { padding: 2.5rem 0; border-top: 1px solid var(--edge-soft); }
.section-kicker {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--hot); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600; margin: 0 0 0.75rem;
}
.section-sub { color: var(--ash); max-width: 40rem; margin: 0 0 1.5rem; }
.muted { color: var(--ash); }
.dim { color: var(--dim); }
.small { font-size: 0.85rem; }
.mono { font-family: var(--font-mono); }

.grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 420px) {
  .grid-2 { gap: 0.75rem; }
  .card { padding: 0.95rem 0.9rem; }
}
.card {
  background: linear-gradient(180deg, var(--iron), rgba(17,14,15,0.65));
  border: 1px solid var(--edge); border-radius: var(--radius); padding: 1.15rem 1.2rem;
  color: inherit;
}
a.card:hover { border-color: var(--blood-lit); color: inherit; }
.card h3 {
  font-family: var(--font-display); font-size: 1.05rem; margin: 0 0 0.4rem;
  letter-spacing: 0.04em; color: var(--bone);
}
.card p { margin: 0; color: var(--ash); font-size: 0.95rem; }

.album {
  display: grid; gap: 1.25rem;
  grid-template-columns: 160px 1fr;
  align-items: start; margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .album { grid-template-columns: 1fr; }
  .album-cover { width: 140px; }
}
.album-cover {
  width: 160px; height: 160px; object-fit: cover;
  border: 1px solid var(--edge-soft);
}
.track {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 0.65rem; align-items: center;
  padding: 0.65rem 0.75rem; margin-top: 0.45rem;
  background: var(--iron); border: 1px solid var(--edge-soft); border-radius: var(--radius);
}
.track .num { font-family: var(--font-mono); font-size: 11px; color: var(--dim); }
.track .title { font-size: 0.92rem; }
.track audio { width: min(100%, 220px); height: 32px; }
@media (max-width: 720px) {
  .track { grid-template-columns: 2rem 1fr; }
  .track audio { grid-column: 1 / -1; width: 100%; }
}

.show {
  display: grid; gap: 0.35rem 1rem;
  grid-template-columns: 6.5rem 1fr auto;
  align-items: baseline;
  padding: 0.9rem 0; border-bottom: 1px solid var(--edge-soft);
}
@media (max-width: 640px) { .show { grid-template-columns: 1fr; } }
.show .when { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--hot); }
.show .where { font-weight: 600; }
.show .city { color: var(--ash); font-size: 0.92rem; }
.show .ticket { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }

.bio {
  display: grid; gap: 1rem;
  grid-template-columns: 88px 1fr;
  align-items: start;
}
.bio-mark {
  width: 88px; height: 88px; border: 1px solid var(--edge);
  background:
    repeating-linear-gradient(-28deg, transparent 0 10px, rgba(255,255,255,0.03) 10px 11px),
    var(--iron);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.4rem; color: var(--dim); letter-spacing: 0.12em;
}
.notice {
  border: 1px solid var(--edge); background: var(--iron);
  padding: 1rem 1.1rem; border-radius: var(--radius); max-width: 40rem;
}
.notice strong { display: block; margin-bottom: 0.35rem; letter-spacing: 0.06em; color: var(--bone); }

.site-foot {
  border-top: 1px solid var(--edge-soft);
  padding: 1.25rem 0 1.75rem;
  margin-top: 2rem;
}
.site-foot .wrap,
.foot-row {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(18px, 3vw, 36px);
}
.site-foot .foot-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem;
  justify-content: space-between; align-items: center;
}
.site-foot a { color: var(--ash); }
.site-foot a:hover { color: var(--bone); }


.idents {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  max-width: 28rem;
  border-top: 1px solid var(--edge-soft);
}
.idents li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--edge-soft);
}
.iname {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
}
.irole {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}

.hero-sub { max-width: 28rem; }
.section { padding: 2rem 0; }

.brand {
  gap: 0;
}
.brand img { display: none !important; }
.brand-name {
  font-size: 1.05rem;
  letter-spacing: 0.18em;
}

.brand-link img { display: none !important; }
.brand-link { gap: 0; }
.brand-link span {
  letter-spacing: 0.18em;
  font-weight: 600;
}

.wrap {
  width: min(100% - 2rem, var(--maxw));
  margin-inline: auto;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.95fr);
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
  align-items: stretch;
  justify-content: center;
  justify-items: stretch;
  width: min(100%, 1280px);
  margin-inline: auto;
  padding: clamp(1.75rem, 5vw, 3rem) 0 clamp(1.5rem, 4vw, 2.5rem);
}
/* <=1100: stack hero, logo | CTA beside each other via named areas */
@media (max-width: 1100px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .hero-brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-height: 0;
    gap: 0;
  }
  .hero-brand-col .hero-kicker {
    margin: 0 0 0.55rem;
    text-align: center;
  }
  .hero-brand-col .hero-logo-wrap {
    display: flex;
    justify-content: center;
    margin: 0;
    width: 100%;
  }
  .hero-brand-col .hero-logo {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
  }
  .hero-brand-col .hero-rule {
    display: block;
    width: min(100%, 280px);
    margin: 0.75rem auto 0.85rem;
  }
  .hero-brand-col .hero-welcome {
    margin: 0 auto 0.45rem;
    font-size: clamp(1.05rem, 4.2vw, 1.35rem);
  }
  .hero-brand-col .hero-sub {
    text-align: center;
    max-width: 26rem;
    width: 100%;
    margin: 0 auto 0.95rem;
    font-size: 0.95rem;
  }
  .hero-brand-col .hero-cta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    margin: 0;
  }
  .hero-brand-col .hero-cta .btn {
    width: auto;
    min-width: 0;
    min-height: 0;
    justify-content: center;
    text-align: center;
    padding: 0.48rem 0.85rem;
    border-radius: 2px;
    font-size: 10px;
    letter-spacing: 0.12em;
    font-weight: 600;
    box-shadow: none;
  }
  .hero-brand-col .hero-cta .btn.secondary {
    background: transparent;
    border-color: var(--edge);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .hero-brand-col .hero-cta .btn.secondary:hover {
    border-color: var(--hot);
    color: var(--hot);
  }
  .hero-album-col {
    width: 100%;
    padding: 0.75rem 0.85rem 0.95rem;
  }
  .ca-dock {
    max-width: none;
    width: 100%;
  }
}

/* Phone: keep logo|CTA and cover|player as two-up; readable dock */
@media (max-width: 640px) {
  .hero-brand-col .hero-logo {
    max-width: 325px;
  }
  .hero-brand-col .hero-rule {
    width: min(100%, 240px);
  }
  .ca-qtitle {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.25;
  }
  .ca-qlist {
    max-height: 170px;
  }
}
.hero-brand-col .hero-kicker { margin-bottom: 0.85rem; }
.hero-brand-col .hero-sub {
  margin: 0.85rem 0 1.25rem;
  text-align: center;
  max-width: 28rem;
}
@media (max-width: 1100px) {
  .hero-brand-col .hero-sub {
    width: 100%;
    max-width: 26rem;
    text-align: center;
    margin: 0 auto 0.95rem;
  }
}

.hero-logo {
  width: min(100%, 620px);
  margin: 0;
  filter: drop-shadow(0 0 36px rgba(235, 30, 50, 0.18));
}
.hero-logo-wrap { margin: 0; }
.hero-cta { justify-content: center; }

.hero-album-col {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1rem 1.15rem 1.15rem;
  background: linear-gradient(165deg, var(--iron), rgba(17, 14, 15, 0.35));
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  min-width: 0;
  width: 100%;
}
.hero-album-head {
  text-align: center;
}
.hero-album-head .section-kicker { display: none; }
.album-title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--bone);
}

.album-line {
  display: block;
  margin: 0.28rem 0 0;
  color: var(--ash);
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  letter-spacing: 0.01em;
  line-height: 1.25;
}
.album-meta {
  display: inline-flex;
  margin: 0.45rem 0 0;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  width: 100%;
  color: var(--ash);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}
.album-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.35rem;
  border: 1px solid var(--edge);
  border-radius: 2px;
  color: var(--dim);
  letter-spacing: 0.14em;
  font-size: 9px;
}

/* Title+cover left, player top-aligned with title, fills remaining width */

/* Cover | orb centered; dock + listen share full album panel width */
.hero-album-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "head head"
    "cover orb"
    "deck deck"
    "dock dock";
  gap: 0.75rem 0.9rem;
  align-items: start;
  justify-content: stretch;
  min-width: 0;
  width: 100%;
}
.hero-album-left {
  display: contents;
}
.hero-album-head {
  grid-area: head;
  text-align: center;
  justify-self: stretch;
  align-self: center;
}
.hero-cover {
  grid-area: cover;
  justify-self: center;
  width: 100%;
  max-width: 188px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--edge-soft);
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}
.ca-nmp {
  display: contents;
}
.ca-nmp audio { display: none !important; }
.ca-orb {
  grid-area: orb;
  position: relative;
  justify-self: center;
  align-self: center;
  width: 168px;
  height: 168px;
  max-width: 168px;
  min-width: 168px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  flex-shrink: 0;
  background: #070607;
  box-shadow: 0 0 0 1px rgba(48, 40, 43, 0.9);
  margin-top: 0;
}

/* MUST come after base grid so it wins when player drops under logo */
@media (max-width: 1100px) {
  .hero-album-grid {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "cover head orb"
      "deck deck deck"
      "dock dock dock";
    gap: 0.65rem 0.85rem;
    align-items: center;
    justify-content: stretch;
    width: 100%;
  }
  .hero-album-head {
    grid-area: head !important;
    align-self: center;
    justify-self: stretch;
    text-align: center;
    padding: 0 0.5rem;
    min-width: 0;
  }
  .album-title {
    font-size: clamp(1.05rem, 3.2vw, 1.45rem);
    margin: 0;
    line-height: 1.15;
  }
  .album-line {
    display: block;
  }
  .album-meta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }
  .hero-cover {
    grid-area: cover !important;
    justify-self: start;
    align-self: center;
    width: 148px;
    max-width: 148px;
    min-width: 148px;
  }
  .ca-orb {
    grid-area: orb !important;
    justify-self: end;
    align-self: center;
    width: 148px;
    height: 148px;
    max-width: 148px;
    min-width: 148px;
  }
}

@media (max-width: 640px) {
  .hero-album-grid {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "cover head orb"
      "deck deck deck"
      "dock dock dock";
    gap: 0.45rem 0.55rem;
    align-items: center;
  }
  .hero-cover {
    width: 112px;
    max-width: 112px;
    min-width: 112px;
  }
  .ca-orb {
    width: 112px;
    height: 112px;
    max-width: 112px;
    min-width: 112px;
  }
  .album-title {
    font-size: clamp(0.95rem, 4vw, 1.15rem);
  }
  .album-line {
    font-size: 0.82rem;
  }
}
.ca-orb canvas {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ca-orb-play {
  position: absolute;
  z-index: 8;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(152, 12, 33, 0.7);
  background: rgba(7, 6, 7, 0.88);
  color: var(--bone);
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.ca-orb-play svg { width: 28%; height: 28%; display: block; }
.ca-orb-play:hover {
  border-color: var(--hot);
  color: var(--hot);
}
.ca-nmp.is-playing .ca-orb-play {
  border-color: color-mix(in srgb, var(--hot) 60%, transparent);
  box-shadow: 0 0 14px rgba(235, 30, 50, 0.28);
}
.ca-deck {
  grid-area: deck;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
  width: 100%;
}
.ca-vis-row {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ca-strip {
  display: block;
  width: 100%;
  height: 58px;
  min-width: 0;
  border: 1px solid rgba(233, 229, 216, 0.12);
  background: rgba(8, 6, 7, 0.92);
}
.ca-bar-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.2rem;
}
.ca-bar-lab {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ca-bar-lab-time { color: #7dffb3; }
.ca-bar-lab-vol { color: var(--hot); }
.ca-t {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ash);
  letter-spacing: 0.06em;
}
.ca-seek-row,
.ca-vol-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  column-gap: 10px;
  width: 100%;
  min-width: 0;
}
.ca-seek-row { height: 28px; }
.ca-vol-row { height: 30px; }
.ca-seek-step,
.ca-vol-step {
  width: 34px;
  height: 28px;
  border-radius: 2px;
  border: 1px solid var(--edge);
  background: rgba(33, 27, 29, 0.92);
  color: var(--bone);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1;
  padding: 0;
}
.ca-seek-track,
.ca-vol-track {
  position: relative;
  min-width: 0;
  height: 10px;
  background: rgba(33, 27, 29, 0.95);
  border: 1px solid var(--edge);
  touch-action: none;
  cursor: ew-resize;
  overflow: visible;
}
.ca-seek-fill,
.ca-vol-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  pointer-events: none;
}
.ca-seek-fill { background: #7dffb3; }
.ca-vol-fill { background: linear-gradient(90deg, #980c21, var(--hot)); }
.ca-seek-thumb,
.ca-vol-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  cursor: grab;
  user-select: none;
  touch-action: none;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  color: var(--bone);
  background: #141011;
  border: 1px solid rgba(233, 229, 216, 0.28);
  box-shadow: 0 0 0 3px rgba(12, 9, 10, 0.95);
}
.ca-seek-thumb {
  width: 54px;
  height: 22px;
  border-radius: 99px;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.ca-vol-thumb {
  width: 48px;
  height: 24px;
  border-radius: 0;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.ca-transport {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  margin: 0.15rem 0 0.1rem;
}
.ca-mode,
.ca-skip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 30px;
  min-width: 32px;
  padding: 0;
  cursor: pointer;
  color: var(--bone);
  background: rgba(33, 27, 29, 0.92);
  border: 1px solid var(--edge);
  border-radius: 2px;
  touch-action: manipulation;
}
.ca-mode { color: var(--ash); background: transparent; border-color: transparent; }
.ca-mode svg, .ca-skip svg { width: 13px; height: 13px; display: block; pointer-events: none; }
.ca-mode:hover, .ca-mode.on, .ca-skip:hover { color: var(--hot); border-color: var(--hot); }
.ca-play-main {
  width: 40px;
  height: 32px;
  font-size: 13px;
}
.ca-vol-bar { width: 100%; min-width: 0; padding: 0 0 2px; }

/* Dock bubble: NMP floating-window chrome, no orb inside */
.ca-dock {
  grid-area: dock;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.8rem 0.9rem 0.75rem;
  border-radius: 18px;
  border: 1px solid rgba(233, 229, 216, 0.18);
  background:
    linear-gradient(165deg, rgba(43, 35, 38, 0.92) 0%, rgba(17, 14, 15, 0.94) 45%, rgba(10, 8, 9, 0.96) 100%);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(233, 229, 216, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.ca-dock-head { min-width: 0; }
.ca-nmp-by {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ash);
  letter-spacing: 0.02em;
}
.ca-nmp-skip {
  display: flex;
  gap: 0.4rem;
  width: 100%;
}
.ca-nmp-btn {
  flex: 1 1 auto;
  height: 30px;
  border-radius: 9px;
  border: 1px solid var(--edge);
  background: rgba(33, 27, 29, 0.95);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  cursor: pointer;
}
.ca-nmp-btn:hover {
  color: var(--hot);
  border-color: var(--hot);
}
.ca-qlist {
  display: flex;
  flex-direction: column;
  max-height: 150px;
  overflow: auto;
  border-top: 1px solid rgba(48, 40, 43, 0.95);
  scrollbar-width: thin;
}
.ca-qrow {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 0.4rem;
  align-items: baseline;
  width: 100%;
  text-align: left;
  padding: 0.38rem 0.1rem;
  border: 0;
  border-bottom: 1px solid rgba(48, 40, 43, 0.85);
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  font: inherit;
}
.ca-qrow:hover { color: var(--hot); }
.ca-qrow.on {
  color: var(--signal);
  box-shadow: inset 3px 0 0 var(--signal);
  background: rgba(168, 189, 137, 0.08);
}
.ca-qnum {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--dim);
}
.ca-qrow.on .ca-qnum { color: var(--signal); }
.ca-qtitle {
  font-size: 0.84rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listen-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hot);
  margin: 0.1rem 0 0.55rem;
}
.hero-album-meta .listen-label { margin-top: 0; }
.listen-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
@media (max-width: 960px) {
  .listen-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: flex-start;
  }
  .listen-chip {
    width: auto;
    padding: 0.48rem 0.82rem;
    font-size: 11px;
    letter-spacing: 0.05em;
    min-height: 0;
  }
  .listen-chip span {
    overflow: visible;
    text-overflow: unset;
    white-space: nowrap;
    max-width: none;
  }
  .hero-album-meta { text-align: left; }
}
.listen-chips {
  gap: 0.55rem;
}
.listen-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.95rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, currentColor 70%, var(--edge));
  background: color-mix(in srgb, currentColor 18%, #0a090b);
  box-shadow:
    0 0 0 1px color-mix(in srgb, currentColor 18%, transparent),
    0 0 18px color-mix(in srgb, currentColor 22%, transparent);
  color: var(--bone);
  text-decoration: none;
  font-family: var(--font-display, var(--font-mono));
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 140ms ease, filter 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}
.listen-chip:hover {
  filter: brightness(1.18);
  transform: translateY(-2px);
  border-color: currentColor;
  box-shadow:
    0 0 0 1px color-mix(in srgb, currentColor 35%, transparent),
    0 6px 22px color-mix(in srgb, currentColor 28%, transparent);
}
.listen-chip span { color: inherit; }
.listen-chip.is-spotify { color: #1db954; }
.listen-chip.is-apple { color: #ff3b6a; }
.listen-chip.is-amazon { color: #25d1da; }
.listen-chip.is-ytmusic { color: #b00020; }
.listen-chip.is-deezer { color: #a238ff; }
.listen-chip.is-tidal { color: #e8e8e8; }
.listen-chip.is-pandora { color: #6b8cff; }


.foot-sep { margin: 0 0.55rem; color: var(--dim); }


/* home panels (Astra-style under hero) */


.home-panel {
  padding: 3.2rem 0;
  border-top: 1px solid var(--edge);
}
.home-panel-inner { max-width: var(--wrap, 1100px); }
.panel-eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hot);
}
.panel-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--bone);
}
.panel-title span { color: var(--hot); }
.panel-copy {
  margin: 1rem 0 1.25rem;
  color: var(--ash);
  max-width: 34rem;
  line-height: 1.55;
}
.panel-note {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
}
.panel-tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--edge);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.text-link:hover { color: var(--hot); border-bottom-color: var(--hot); }

.live-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem 2.5rem;
  align-items: end;
}
.live-info h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--bone);
}
.live-info p { margin: 0; color: var(--ash); max-width: 28rem; }

.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2rem 2.5rem;
  align-items: start;
}
.member-list {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.member-list > div {
  padding: 0.9rem 1rem;
  border: 1px solid var(--edge);
  background: rgba(17, 14, 15, 0.72);
}
.member-list dt {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bone);
}
.member-list dd {
  margin: 0.25rem 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
}

.merch-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1.5rem 2rem;
  align-items: end;
}
.merch-info p { margin: 0 0 0.55rem; color: var(--ash); }

.panel-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}
.world-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.world-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.2rem 1.25rem 1.3rem;
  border: 1px solid var(--edge);
  background: linear-gradient(165deg, rgba(43, 35, 38, 0.55), rgba(10, 8, 9, 0.9));
  text-decoration: none;
  color: inherit;
  min-height: 10.5rem;
}
.world-card:hover { border-color: var(--hot); }
.world-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
}
.world-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.03em;
  color: var(--bone);
}
.world-card h3 span { color: var(--hot); }
.world-card p { margin: 0; color: var(--ash); line-height: 1.45; }

.live-panel { background: rgba(8, 6, 7, 0.35); }
.band-panel { background: linear-gradient(180deg, rgba(17, 14, 15, 0.55), transparent); }
.merch-panel { background: rgba(8, 6, 7, 0.28); }
.tools-panel { background: linear-gradient(180deg, rgba(17, 14, 15, 0.4), rgba(7, 6, 7, 0.9)); }

@media (max-width: 860px) {
  .live-row,
  .band-grid,
  .merch-row,
  .world-links {
    grid-template-columns: 1fr;
  }
  .home-panel { padding: 2.4rem 0; }
  .member-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .member-list { grid-template-columns: 1fr; }
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.media-panel { background: rgba(8, 6, 7, 0.4); }
.connect-panel {
  background:
    linear-gradient(180deg, rgba(108, 6, 22, 0.18) 0%, rgba(17, 14, 15, 0.55) 35%, rgba(7, 6, 7, 0.95) 100%);
}
.connect-lead { max-width: 36rem; }
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.4rem;
}
.media-card {
  padding: 1.35rem 1.3rem 1.4rem;
  border: 1px solid var(--edge);
  background: linear-gradient(165deg, rgba(43, 35, 38, 0.55), rgba(10, 8, 9, 0.92));
  min-height: 11rem;
}
.media-card h3 {
  margin: 0.35rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--bone);
}
.media-card p { margin: 0; color: var(--ash); line-height: 1.5; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.35rem;
}
.social-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  min-height: 5.4rem;
  padding: 1.05rem 1.1rem;
  border: 1px solid var(--edge);
  border-radius: 3px;
  background:
    linear-gradient(155deg, rgba(55, 42, 46, 0.9), rgba(12, 9, 10, 0.98));
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.32);
  transition: border-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}
.social-card:hover {
  border-color: var(--hot);
  transform: translateY(-2px);
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.4),
    0 0 18px rgba(235, 30, 50, 0.16);
}
.social-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
}
.social-handle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ash);
}
.social-card:hover .social-name { color: var(--hot); }

@media (max-width: 860px) {
  .media-grid,
  .social-grid { grid-template-columns: 1fr; }
}
@media (min-width: 861px) and (max-width: 1100px) {
  .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* Sticky header: modern dropdowns + Hub */
.nav-toggle {
  display: none;
  border: 1px solid var(--edge);
  background: rgba(17, 14, 15, 0.95);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 0.7rem;
  border-radius: 2px;
  cursor: pointer;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.35rem;
  align-items: center;
}
.nav > a,
.nav-dd-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0.42rem 0.42rem;
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
}
.nav > a:hover,
.nav > a.active,
.nav-dd-btn:hover,
.nav-dd.is-open > .nav-dd-btn {
  color: var(--bone);
}
.nav-hub {
  color: var(--bone) !important;
  border: 1px solid color-mix(in srgb, var(--hot) 55%, var(--edge)) !important;
  background: linear-gradient(165deg, rgba(152, 12, 33, 0.35), rgba(17, 14, 15, 0.9));
  padding: 0.42rem 0.75rem !important;
  margin-inline: 0.15rem;
}
.nav-hub:hover,
.nav-hub.active {
  color: var(--hot) !important;
  border-color: var(--hot) !important;
}
.nav-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid currentColor;
  vertical-align: middle;
  opacity: 0.75;
}
.nav-dd {
  position: relative;
}
.nav-dd-panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 60;
  min-width: 13.5rem;
  padding: 0.55rem 0.35rem;
  border: 1px solid var(--edge);
  border-radius: 3px;
  background: rgba(10, 8, 9, 0.98);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.nav-dd-panel-wide { min-width: 15.5rem; }
.nav-dd-panel[hidden] { display: none !important; }
.nav-dd-label {
  margin: 0.35rem 0.55rem 0.2rem;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hot);
}
.nav-dd-label:first-child { margin-top: 0.1rem; }
.nav-dd-panel a {
  display: block;
  padding: 0.42rem 0.6rem;
  border-radius: 2px;
  color: var(--ash);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.nav-dd-panel a:hover {
  color: var(--bone);
  background: rgba(235, 30, 50, 0.1);
}
.nav-dd-panel a.ext::after {
  content: " ↗";
  opacity: 0.55;
  font-size: 10px;
}

/* Compact header: only Explore + Hub + Network (Explore holds the rest).
   Kept late (~860) so wide links stay until the gap to NIHILUS. is about half. */
@media (max-width: 860px) {
  .nav-wide-only { display: none !important; }
  .nav-toggle { display: none !important; }
  .site-head-inner {
    flex-wrap: nowrap;
    gap: 0.75rem;
  }
  .nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem;
    margin-left: auto;
    width: auto;
    padding: 0;
    border-top: 0;
  }
  .nav-hub {
    text-align: center;
  }
}

@media (max-width: 920px) {
  .nav-dd-panel {
    position: absolute;
  }
  .nav-dd-mega-panel,
  .nav-dd-mega .nav-dd-panel {
    position: absolute;
    left: auto;
    right: 0;
    transform: none;
    min-width: min(20rem, calc(100vw - 1.25rem));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    z-index: 70;
  }
  .nav-dd-end .nav-dd-panel {
    left: auto;
    right: 0;
  }
}

/* Hub page */
.hub-hero {
  padding: clamp(2rem, 5vw, 3.25rem) 0 1.25rem;
  text-align: center;
}
.hub-title {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
}
.hub-lead {
  margin: 0 auto 1.25rem;
  max-width: 40rem;
  color: var(--ash);
  font-size: 1.02rem;
}
.hub-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  padding: 0.5rem 0 2.75rem;
}
.hub-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 0;
  border: 1px solid var(--edge);
  background: linear-gradient(165deg, rgba(33, 27, 29, 0.55), rgba(8, 6, 7, 0.95));
  overflow: hidden;
  min-height: 16rem;
}
.hub-card-donate {
  border-color: color-mix(in srgb, var(--hot) 35%, var(--edge));
}
.hub-card-media {
  min-height: 14rem;
  background: #0a0809;
  border-right: 1px solid var(--edge);
}
.hub-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hub-card-media img.hub-img-fallback {
  object-fit: contain;
  padding: 2.5rem;
  opacity: 0.85;
}
.hub-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.hub-card-tag {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hot);
}
.hub-card-body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hub-card-body p {
  margin: 0;
  color: var(--ash);
  line-height: 1.55;
}
.hub-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 0.65rem;
}
@media (max-width: 860px) {
  .hub-card {
    grid-template-columns: 1fr;
  }
  .hub-card-media {
    min-height: 11rem;
    border-right: 0;
    border-bottom: 1px solid var(--edge);
  }
}


/* Explore mega menu + Network right-align */
.nav-dd-end .nav-dd-panel {
  left: auto;
  right: 0;
}
.nav-dd-mega-panel {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(8.5rem, 1fr));
  gap: 0.35rem 1rem;
  width: max-content;
  max-width: min(34rem, calc(100vw - 1.5rem));
  min-width: min(36rem, calc(100vw - 1.5rem));
  padding: 0.85rem 0.75rem 0.95rem;
  box-sizing: border-box;
}
.nav-dd-mega-panel[hidden] {
  display: none !important;
}
.nav-mega-col {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}
.nav-mega-col .nav-dd-label {
  margin: 0 0.55rem 0.35rem;
}
.nav-dd-mega {
  position: relative;
}
.nav-dd-mega .nav-dd-panel {
  left: auto;
  right: 0;
  transform: none;
  max-width: min(44rem, calc(100vw - 1.5rem));
}
@media (max-width: 860px) {
  .nav-dd-mega {
    position: relative;
  }
  .nav-dd-mega .nav-dd-panel {
    left: auto;
    right: 0;
    transform: none;
    min-width: min(22rem, calc(100vw - 2rem));
    max-width: calc(100vw - 1.25rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.foot-owner {
  margin-top: 0.35rem;
  color: var(--dim);
  font-size: 0.82rem;
  line-height: 1.4;
  max-width: 34rem;
}
/* removed: foot-row flex-start */
/* removed: old foot links column */

.hub-quiet-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--edge-soft);
}
.hub-quiet-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
}
.hub-quiet-links a:hover {
  color: var(--hot);
}

.legal-page {
  padding: clamp(2rem, 5vw, 3rem) 0 3rem;
  max-width: 46rem;
}
.legal-page .section-title {
  margin-bottom: 0.75rem;
}
.legal-note {
  color: var(--ash);
  margin: 0 0 1.5rem;
}
.legal-page h2 {
  margin: 1.5rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
}
.legal-page p,
.legal-page li {
  color: var(--ash);
  line-height: 1.6;
}
.legal-page ul {
  padding-left: 1.15rem;
}
.legal-links {
  margin-top: 2rem !important;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}


/* ---------- footer (match nihilus.dev chrome) ---------- */
.site-foot {
  border-top: 1px solid var(--edge-soft);
  padding: 28px clamp(18px, 3vw, 36px);
  margin-top: 48px;
}
.site-foot .footer-inner {
  max-width: var(--maxw, 1100px);
  margin: 0 auto;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--font-mono, "IBM Plex Mono", ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--dim);
  justify-content: center;
}
.site-foot .footer-mark {
  display: block;
  height: 22px;
  width: auto;
  flex: 0 0 auto;
  opacity: 0.8;
}
.site-foot a {
  color: var(--ash);
  text-decoration: none;
}
.site-foot a:hover {
  color: var(--hot, #eb1e32);
}
.site-foot .foot-row,
.site-foot .foot-owner,
.site-foot .foot-sep {
  /* legacy cleared */
}


/* Explore donate (leaves site → nihilus.dev) */
.nav-dd-panel a.nav-donate,
a.nav-donate {
  color: var(--hot, #eb1e32) !important;
  font-weight: 600;
}
.nav-dd-panel a.nav-donate:hover,
a.nav-donate:hover {
  color: #ff4d5e !important;
}
.nav-dd-panel a.nav-donate::after {
  content: " ↗";
  opacity: 0.7;
  font-size: 10px;
}
.site-foot .footer-mark {
  display: none;
}
.site-foot .footer-inner {
  justify-content: center;
  text-align: center;
}


/* Panel left-column copy + links (shows / merch align with band) */
.live-row > div:first-child .panel-copy,
.merch-row > div:first-child .panel-copy {
  margin: 0.75rem 0 0.85rem;
  max-width: 28rem;
}
.live-row > div:first-child .text-link,
.merch-row > div:first-child .text-link,
.band-grid > div:first-child .text-link {
  display: inline-block;
}
.live-info[aria-hidden="true"],
.merch-info[aria-hidden="true"] {
  justify-self: end;
  align-self: end;
  opacity: 0.85;
}


/* Seek/vol thumbs stay inset from side step buttons */
.ca-seek-track,
.ca-vol-track {
  overflow: visible;
}
.ca-dock-head,
.ca-nmp-by {
  display: none !important;
}
.ca-dock {
  gap: 0.4rem;
}
.ca-qlist {
  margin-top: 0;
  flex: 1 1 auto;
  min-height: 0;
}
