:root {
  color-scheme: dark;
  --bg: #070808;
  --surface: #101313;
  --surface-2: #171b1a;
  --text: #f2f7ef;
  --muted: #a9b5ac;
  --line: rgba(242, 247, 239, 0.14);
  --acid: #d8ff3e;
  --teal: #15d3c4;
  --amber: #ffb84d;
  --pink: #ff5f8f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --container: min(1120px, calc(100vw - 2rem));
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(7, 8, 8, 0.2), var(--bg) 38rem),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(7, 8, 8, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.header-inner,
.site-header nav,
.hero-actions,
.social-banner,
.social-banner div,
.link-list a,
footer {
  display: flex;
  align-items: center;
}

.header-inner {
  width: var(--container);
  justify-content: space-between;
  gap: 1rem;
  margin-inline: auto;
}

.brand {
  gap: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: #07100d;
  background: url("/favicon-180.png") center / cover no-repeat;
  border-radius: 8px;
  font-size: 0;
  box-shadow: 0 0 18px rgba(216, 255, 62, 0.25);
}

.site-header nav {
  gap: clamp(0.6rem, 2vw, 1.4rem);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header nav a:hover,
.back-link:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: 8rem clamp(1rem, 5vw, 4.5rem) 2rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(216, 255, 62, 0.2), transparent 26rem),
    linear-gradient(90deg, rgba(7, 8, 8, 0.92), rgba(7, 8, 8, 0.54) 46%, rgba(7, 8, 8, 0.86)),
    linear-gradient(180deg, rgba(7, 8, 8, 0.18), var(--bg) 94%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  width: var(--container);
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.kicker {
  margin: 0 0 0.9rem;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 0;
  font-size: clamp(4.8rem, 16vw, 14rem);
  line-height: 0.82;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.1;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy {
  max-width: min(100%, 68rem);
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  text-align: justify;
  text-align-last: center;
}

.hero-title-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 2.5rem);
  margin-bottom: 1.4rem;
}

.hero-logo-frame {
  width: clamp(10rem, 24vw, 18rem);
  aspect-ratio: 1;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: clamp(0.28rem, 0.7vw, 0.5rem);
  background: rgba(216, 255, 62, 0.18);
  border: 2px solid var(--acid);
  border-radius: 8px;
  box-shadow:
    0 0 0 1px rgba(216, 255, 62, 0.28),
    0 0 42px rgba(216, 255, 62, 0.42),
    var(--shadow);
  transform: translateY(0.2rem);
}

.hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button,
.cookie-banner button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.cookie-banner button {
  color: #07100d;
  background: var(--acid);
}

.social-banner {
  width: var(--container);
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem;
  background: rgba(10, 12, 12, 0.7);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.social-banner-title,
.release-card h3,
.mail-link {
  display: block;
}

.social-banner-title {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.social-banner div {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.social-banner a {
  min-height: 2.4rem;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.75rem;
  color: var(--text);
  background: rgba(242, 247, 239, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.social-banner a:hover {
  color: #07100d;
  background: var(--acid);
  border-color: var(--acid);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  width: var(--container);
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 4.5rem);
}

.section-intro {
  max-width: 60rem;
  margin-bottom: 2rem;
}

.section-intro p {
  max-width: 46rem;
}

.compact {
  margin-bottom: 1.5rem;
}

.music-section {
  background:
    linear-gradient(135deg, rgba(21, 211, 196, 0.08), transparent 32rem),
    var(--bg);
}

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

.release-card,
.legal-grid article {
  min-height: 14rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.release-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.release-card span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.release-card:nth-child(2) span {
  color: var(--teal);
}

.release-card:nth-child(3) span {
  color: var(--pink);
}

.about-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.about-copy {
  columns: 2 20rem;
  column-gap: 2rem;
}

.labels-section {
  background: var(--surface-2);
  border-block: 1px solid var(--line);
}

.label-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.label-cloud span {
  padding: 0.65rem 0.85rem;
  color: var(--text);
  background: rgba(242, 247, 239, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-panel {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background:
    linear-gradient(135deg, rgba(216, 255, 62, 0.16), rgba(21, 211, 196, 0.05)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mail-link {
  margin-top: 1.5rem;
  color: var(--acid);
  font-size: clamp(1.3rem, 4vw, 2.7rem);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.link-list {
  flex-direction: column;
  gap: 0.75rem;
}

.link-list a {
  width: 100%;
  justify-content: space-between;
  min-height: 4rem;
  padding: 1rem 1.15rem;
  background: rgba(242, 247, 239, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.link-list a:hover {
  border-color: var(--acid);
}

.legal-section {
  background: #0b0c0c;
}

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

.legal-grid article {
  min-height: auto;
}

.cookie-banner {
  position: fixed;
  z-index: 30;
  right: 1rem;
  bottom: 1rem;
  width: min(31rem, calc(100vw - 2rem));
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(16, 19, 19, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.93rem;
}

footer {
  width: var(--container);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-inline: auto;
  padding: 1.5rem 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

footer > a:last-child {
  justify-self: end;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  opacity: 0.86;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.footer-mark:hover {
  opacity: 1;
  transform: translateY(-0.08rem);
}

.legal-page {
  background: var(--bg);
}

.legal-document {
  max-width: 58rem;
  margin-inline: auto;
}

.legal-document h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.legal-document h2 {
  margin-top: 2.5rem;
  font-size: 1.6rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 3rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .site-header nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    min-height: 88svh;
    padding-top: 9rem;
    padding-bottom: 2rem;
  }

  .release-grid,
  .legal-grid,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .release-grid {
    gap: 0.75rem;
  }

  .release-card {
    min-height: 10rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: grid;
  }

  .site-header nav {
    justify-content: flex-start;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    padding-top: 10.5rem;
  }

  h1 {
    font-size: clamp(4.2rem, 26vw, 7rem);
  }

  .hero-title-lockup {
    align-items: center;
    flex-direction: column;
  }

  .hero-logo-frame {
    width: min(15rem, 70vw);
  }

  .social-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-banner div {
    justify-content: flex-start;
  }

  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }

  footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  footer > a:last-child,
  .footer-mark {
    justify-self: start;
  }
}
