:root {
  color-scheme: dark;
  --void: #050304;
  --panel: rgba(12, 6, 8, .84);
  --text: #fff5f2;
  --muted: #c5b5b3;
  --line: rgba(255, 255, 255, .15);
  --red: #ff2b2b;
  --ember: #ff7468;
  --spotify: #1ed760;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--void); }
body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background: var(--void);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.signal-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .27;
  mix-blend-mode: screen;
}
.page-backdrop {
  position: fixed;
  inset: -3rem;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 3, 4, .97) 0%, rgba(5, 3, 4, .72) 42%, rgba(5, 3, 4, .38) 72%, rgba(5, 3, 4, .72) 100%),
    linear-gradient(0deg, rgba(5, 3, 4, .96), transparent 62%),
    url("../assets/life-as-an-artifact.jpg") 50% 44% / cover no-repeat;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.03);
}
.page-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 5px);
  opacity: .32;
}

.release-header,
.release-main,
.release-footer { position: relative; z-index: 2; }
.release-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.brand img {
  width: clamp(4.4rem, 8vw, 6.2rem);
  height: auto;
  filter: drop-shadow(0 0 16px rgba(255, 43, 43, .28));
}
.back-link {
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255, 116, 104, .42);
  color: rgba(255, 245, 242, .78);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}
.back-link:hover,
.back-link:focus-visible { color: var(--ember); border-color: var(--ember); }

.release-main {
  display: grid;
  min-height: calc(100svh - 8.5rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}
.release-card {
  display: grid;
  width: min(1160px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(18rem, .86fr) minmax(22rem, 1.14fr);
  border: 1px solid rgba(255, 255, 255, .14);
  background: var(--panel);
  box-shadow: 0 32px 100px rgba(0, 0, 0, .68), 0 0 80px rgba(255, 43, 43, .09);
  backdrop-filter: blur(22px);
}
.cover {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #16090a;
}
.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 116, 104, .24);
  box-shadow: inset 0 0 80px rgba(5, 3, 4, .22);
  pointer-events: none;
}
.cover img { width: 100%; height: 100%; min-height: 100%; object-fit: cover; }
.release-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}
.eyebrow {
  margin: 0 0 .9rem;
  color: var(--ember);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-size: clamp(3.15rem, 5.4vw, 5.7rem);
  line-height: .8;
  letter-spacing: -.04em;
  text-transform: uppercase;
  text-shadow: 0 0 36px rgba(255, 43, 43, .19);
}
h1 span { display: block; white-space: nowrap; }
.artist {
  margin: 1.35rem 0 0;
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.release-date {
  align-self: flex-start;
  margin: .9rem 0 0;
  padding: .38rem .58rem;
  border: 1px solid rgba(255, 43, 43, .5);
  color: var(--ember);
  background: rgba(5, 3, 4, .42);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.description {
  max-width: 38rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 245, 242, .76);
  font-size: clamp(.98rem, 1.7vw, 1.12rem);
  line-height: 1.6;
}
.streaming { margin-top: 2rem; padding-top: 1.35rem; border-top: 1px solid var(--line); }
.streaming-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.streaming-heading h2 { margin: 0; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; }
.streaming-heading span { color: var(--muted); font-size: .64rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.platform {
  display: flex;
  min-height: 4.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .9rem;
  padding: .85rem 1rem;
  border: 1px solid rgba(30, 215, 96, .72);
  background: rgba(30, 215, 96, .1);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.platform:hover,
.platform:focus-visible { transform: translateY(-2px); background: rgba(30, 215, 96, .15); box-shadow: 0 0 32px rgba(30, 215, 96, .12); }
.platform span { font-size: .88rem; font-weight: 900; }
.platform strong { color: var(--spotify); font-size: .63rem; letter-spacing: .09em; text-align: right; text-transform: uppercase; }
.manifesto {
  margin: 1.35rem 0 0;
  color: var(--ember);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.release-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  color: rgba(255, 245, 242, .55);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.release-footer a:hover,
.release-footer a:focus-visible { color: var(--ember); }

@media (max-width: 820px) {
  .release-main { align-items: start; }
  .release-card { grid-template-columns: 1fr; }
  .cover { aspect-ratio: 1; }
  .release-copy { padding: clamp(1.5rem, 7vw, 3rem); }
  h1 { font-size: clamp(2.65rem, 13vw, 5.7rem); }
}

@media (max-width: 520px) {
  .release-header { align-items: flex-start; }
  .brand span { display: none; }
  .release-main { padding: .75rem; }
  .release-card { backdrop-filter: blur(14px); }
  .streaming-heading { align-items: flex-start; flex-direction: column; }
  .release-footer { flex-direction: column; }
}

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