/* S.H.E.D. Sessions — swamp gothic / metallic gold brand */

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --bg: #070a08;
  --bg-elevated: #0c100e;
  --bg-card: #121814;
  --border: #2a3328;
  --text: #f2efe6;
  --text-muted: #a8a89a;
  --accent: #d4af37;
  --accent-soft: #c5a028;
  --accent-muted: #b8962e;
  --accent-dim: rgba(212, 175, 55, 0.14);
  --accent-glow: rgba(212, 175, 55, 0.35);
  --radius: 14px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-brush: "Permanent Marker", "Rock Salt", cursive;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --max: 1100px;
  --header-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
iframe {
  max-width: 100%;
  border: 0;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #e8c96a;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--accent);
  color: #0a0c09;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

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

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 8, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1rem;
}

.logo span {
  color: var(--accent);
  font-weight: 600;
}

.logo-gold {
  color: var(--accent);
  text-shadow: 0 0 18px var(--accent-glow);
}

.logo-gold span {
  color: #e8c96a;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem 1.25rem;
}

.nav-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-menu a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #0a0c09 !important;
  font-weight: 700 !important;
  box-shadow: 0 0 16px var(--accent-glow);
}

.nav-cta:hover {
  filter: brightness(1.08);
  color: #0a0c09 !important;
}

/* Hero — full-bleed brand art */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: auto;
  padding: 0;
  overflow: hidden;
  background: #070a08;
  text-align: center;
}

.hero-art {
  position: relative;
  width: 100%;
  line-height: 0;
  background: #070a08;
}

.hero-bg {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 820px);
  object-fit: cover;
  object-position: center 35%;
  pointer-events: none;
}

/* hero-bg img is the source of truth for brand art — do not hide it */

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Keep mid/upper art readable; darken lower band for CTA contrast — no text stacked on logo */
  background:
    linear-gradient(180deg, rgba(7, 10, 8, 0.45) 0%, rgba(7, 10, 8, 0.15) 28%, rgba(7, 10, 8, 0.25) 52%, rgba(7, 10, 8, 0.88) 100%),
    radial-gradient(ellipse at 50% 42%, transparent 35%, rgba(7, 10, 8, 0.4) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Clear space so CTAs sit below the painted logo in brand-hero.jpg */
  justify-content: flex-end;
  padding-top: clamp(12rem, 38vh, 22rem);
  padding-bottom: clamp(2rem, 6vh, 3.5rem);
  gap: 1.1rem;
  text-align: center;
  max-width: 40rem;
}

.hero-lead {
  margin: 0;
  max-width: 34rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.brand-lockup {
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.brand-title,
.brush-gold {
  font-family: var(--font-brush);
  font-size: clamp(2.6rem, 8.5vw, 4.75rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.06em;
  /* Metallic gold fill */
  background: linear-gradient(
    180deg,
    #fff4c2 0%,
    #ffe08a 12%,
    #d4af37 38%,
    #f0d78c 52%,
    #a67c1a 78%,
    #6b4f0e 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* Dark edge / metallic shadow border around letters */
  filter: drop-shadow(0 1px 0 #1a1408)
    drop-shadow(0 -1px 0 #1a1408)
    drop-shadow(1px 0 0 #1a1408)
    drop-shadow(-1px 0 0 #1a1408)
    drop-shadow(0 3px 0 rgba(0, 0, 0, 0.75))
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 22px rgba(212, 175, 55, 0.35));
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .brand-title,
  .brush-gold {
    color: #d4af37;
    -webkit-text-fill-color: #d4af37;
    background: none;
    text-shadow:
      -1px -1px 0 #1a1408,
      1px -1px 0 #1a1408,
      -1px 1px 0 #1a1408,
      1px 1px 0 #1a1408,
      0 3px 0 rgba(0, 0, 0, 0.75),
      0 8px 18px rgba(0, 0, 0, 0.55);
  }
}

.brand-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.12em;
  background: linear-gradient(180deg, #ffe9a8 0%, #d4af37 45%, #8a6a14 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 #1a1408)
    drop-shadow(0 2px 0 rgba(0, 0, 0, 0.7))
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.55));
}

.logo-gold,
.logo.logo-gold {
  background: linear-gradient(180deg, #ffe9a8, #d4af37 55%, #9a7518);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.85)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

.logo-gold span {
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.link-hub-clean {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  margin-inline: auto;
}

@media (max-width: 640px) {
  .link-hub-clean {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(12, 16, 14, 0.75);
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.hero-lead {
  max-width: 36rem;
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #0a0c09;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25), 0 12px 30px var(--accent-glow);
}

.btn-primary:hover {
  color: #0a0c09;
  filter: brightness(1.06);
}

.btn-ghost {
  background: rgba(7, 10, 8, 0.45);
  color: var(--text);
  border-color: rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  color: var(--text);
  background: rgba(18, 24, 20, 0.85);
  border-color: var(--accent-muted);
}

.btn-lg {
  padding: 1rem 1.6rem;
  font-size: 1.05rem;
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-trust li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-head {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

.section-head code {
  font-size: 0.9em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.listen {
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.04), transparent);
}

.link-hub {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.hub-card:hover {
  color: inherit;
  transform: translateY(-2px);
  border-color: #3d4638;
}

.hub-primary {
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(160deg, var(--accent-dim), var(--bg-card) 55%);
  box-shadow: var(--shadow);
}

.hub-primary:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 40px var(--accent-glow);
}

.hub-muted {
  opacity: 0.85;
}

.hub-muted[aria-disabled="true"] {
  cursor: not-allowed;
}

.hub-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.hub-card strong {
  font-size: 1.15rem;
}

.hub-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

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

.video-frame-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
  background:
    linear-gradient(135deg, #0c100e 0%, #121814 50%, #070a08 100%);
  color: var(--text-muted);
}

.video-placeholder strong {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-placeholder p {
  margin: 0;
  font-size: 0.85rem;
  max-width: 16rem;
}

.video-card figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Beat grid */
.beat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.beat-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.beat-card:hover {
  color: inherit;
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-2px);
}

.beat-art {
  aspect-ratio: 1.4 / 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, var(--accent-dim), transparent 55%),
    linear-gradient(145deg, #1a2218, #070a08);
  border-bottom: 1px solid var(--border);
}

.beat-art span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.beat-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.beat-body h3 {
  margin: 0;
  font-size: 1.05rem;
}

.beat-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
}

.beat-cta {
  margin-top: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}

.beat-card-browse .beat-art {
  background:
    radial-gradient(circle at 70% 40%, rgba(212, 175, 55, 0.22), transparent 50%),
    linear-gradient(145deg, #141c12, #070a08);
}

/* How it works */
.how {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.step {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.9rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.step strong {
  color: var(--text);
}

.how-note {
  margin: 1.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
  padding-bottom: clamp(4rem, 10vw, 6rem);
}

.final-cta-inner {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  background:
    radial-gradient(ellipse at 50% 0%, var(--accent-dim), transparent 60%),
    var(--bg-card);
  box-shadow: var(--shadow);
}

.final-cta-inner h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
}

.final-cta-inner p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  background: #050706;
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-brand strong {
  display: block;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.footer-brand p {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  margin: 0.5rem 0 0;
  color: #6b6f66;
  font-size: 0.85rem;
}

/* Mobile nav */
@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(7, 10, 8, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu li a {
    display: block;
    padding: 0.75rem 0.5rem;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 0.25rem;
  }
}

/* ===== Hero: art full-bleed, CTAs in separate band (no text over painted logo) ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: auto;
  padding: 0;
  background: #070a08;
}

.hero-art {
  position: relative;
  width: 100%;
  line-height: 0;
  background: #070a08;
}

.hero-art .hero-bg,
.hero-bg {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(78vh, 820px);
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  display: none !important; /* no dimming over painted lettering */
}

.hero-cta-band {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(180deg, #0a100c 0%, #070a08 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  padding: 2rem 0 2.5rem;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hero-lead {
  margin: 0;
  max-width: 34rem;
  color: #d6d3c8;
  text-shadow: none;
}

.hero-actions,
.hero-trust {
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .hero-art .hero-bg,
  .hero-bg {
    max-height: 58vh;
    object-position: center 30%;
  }
  .hero-cta-band {
    padding: 1.5rem 0 2rem;
  }
}


/* Album streaming panel — sleek / professional */
.album-stream {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(7, 10, 8, 0.2), transparent 40%);
}

.album-panel {
  display: grid;
  grid-template-columns: minmax(160px, 240px) 1fr;
  gap: 1.75rem 2.25rem;
  align-items: start;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background:
    linear-gradient(160deg, rgba(212, 175, 55, 0.07), transparent 45%),
    rgba(10, 14, 12, 0.92);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.album-cover {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.album-panel-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.album-kicker {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.album-title {
  margin: 0;
  font-family: var(--font-serif, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.7rem, 3.6vw, 2.35rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
}

.album-artist {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  font-weight: 500;
}

.album-blurb {
  margin: 0.45rem 0 1rem;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 40rem;
}

.stream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 0.7rem;
}

.stream-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text) !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  line-height: 1.15;
  transition:
    border-color 0.18s ease,
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.stream-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.stream-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.stream-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stream-icon {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.stream-btn > span:last-child {
  flex: 1;
  text-align: left;
}

.stream-btn-wide,
.stream-all.stream-btn-wide {
  grid-column: 1 / -1;
  justify-content: center;
  min-height: 56px;
  border-radius: 16px;
  border-color: rgba(212, 175, 55, 0.4) !important;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  font-size: 0.95rem;
}

.stream-all.stream-btn-wide .stream-logo {
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.35);
}

.stream-all .stream-icon { color: #e2c15a; }

/* Brand logo colors + soft badge tint */
.stream-spotify .stream-logo { background: rgba(30, 215, 96, 0.12); border-color: rgba(30, 215, 96, 0.25); }
.stream-spotify .stream-icon { color: #1ed760; }
.stream-apple .stream-logo { background: rgba(252, 60, 68, 0.12); border-color: rgba(252, 60, 68, 0.25); }
.stream-apple .stream-icon { color: #fc3c44; }
.stream-youtube .stream-logo { background: rgba(255, 0, 51, 0.12); border-color: rgba(255, 0, 51, 0.25); }
.stream-youtube .stream-icon { color: #ff0033; }
.stream-amazon .stream-logo { background: rgba(37, 209, 242, 0.1); border-color: rgba(37, 209, 242, 0.25); }
.stream-amazon .stream-icon { color: #25d1f2; }
.stream-tidal .stream-logo { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.12); }
.stream-tidal .stream-icon { color: #f2f2f7; }
.stream-pandora .stream-logo { background: rgba(34, 74, 255, 0.12); border-color: rgba(34, 74, 255, 0.25); }
.stream-pandora .stream-icon { color: #224aff; }
.stream-deezer .stream-logo { background: rgba(161, 79, 255, 0.12); border-color: rgba(161, 79, 255, 0.25); }
.stream-deezer .stream-icon { color: #a14fff; }
.stream-itunes .stream-logo { background: rgba(252, 60, 68, 0.1); border-color: rgba(252, 60, 68, 0.22); }
.stream-itunes .stream-icon { color: #fc3c44; }
.stream-yt .stream-logo { background: rgba(255, 0, 0, 0.1); border-color: rgba(255, 0, 0, 0.22); }
.stream-yt .stream-icon { color: #ff0000; }
.stream-iheart .stream-logo { background: rgba(198, 40, 40, 0.12); border-color: rgba(198, 40, 40, 0.25); }
.stream-iheart .stream-icon { color: #c62828; }
.stream-qobuz .stream-logo { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.14); }
.stream-qobuz .stream-icon { color: #f5f5f5; }
.stream-anghami .stream-logo { background: rgba(123, 47, 247, 0.12); border-color: rgba(123, 47, 247, 0.25); }
.stream-anghami .stream-icon { color: #7b2ff7; }
.stream-kkbox .stream-logo { background: rgba(0, 163, 224, 0.12); border-color: rgba(0, 163, 224, 0.25); }
.stream-kkbox .stream-icon { color: #00a3e0; }
.stream-tiktok .stream-logo { background: rgba(254, 44, 85, 0.12); border-color: rgba(254, 44, 85, 0.25); }
.stream-tiktok .stream-icon { color: #fe2c55; }
.stream-7digital .stream-logo { background: rgba(0, 132, 204, 0.12); border-color: rgba(0, 132, 204, 0.25); }
.stream-7digital .stream-icon { color: #0084cc; }
.stream-boomplay .stream-logo { background: rgba(25, 118, 210, 0.12); border-color: rgba(25, 118, 210, 0.25); }
.stream-boomplay .stream-icon { color: #1976d2; }
.stream-saavn .stream-logo { background: rgba(46, 178, 94, 0.12); border-color: rgba(46, 178, 94, 0.25); }
.stream-saavn .stream-icon { color: #2eb25e; }

.stream-note {
  margin: 0.95rem 0 0;
  font-size: 0.84rem;
  color: var(--text-muted);
  max-width: 42rem;
  line-height: 1.5;
}

.delivered-wrap {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.delivered-label {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(212, 175, 55, 0.9);
}
.delivered-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.delivered-chips li {
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 500;
}
.delivered-note { margin-top: 0.75rem; }

@media (max-width: 700px) {
  .album-panel {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.25rem;
  }
  .album-cover {
    max-width: 200px;
    margin: 0 auto;
  }
  .album-blurb,
  .stream-note {
    margin-left: auto;
    margin-right: auto;
  }
  .stream-btn {
    justify-content: flex-start;
  }
  .stream-all.stream-btn-wide {
    justify-content: center;
  }
  .delivered-chips {
    justify-content: center;
  }
}
