:root {
  color-scheme: dark;
  --bg: #123f56;
  --ink: #fff;
  --muted: rgba(255, 255, 255, 0.78);
  --soft: rgba(255, 255, 255, 0.2);
  --softer: rgba(255, 255, 255, 0.12);
  --blue: #4ea0c7;
  --blue-deep: #0d3449;
  --blue-dark: #082231;
  --red: #d81c00;
  --panel: rgba(4, 20, 30, 0.82);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 26vw 100%,
    linear-gradient(180deg, #4ea0c7 0%, #123f56 46%, #081f2d 100%);
  color: var(--ink);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 26px clamp(20px, 4vw, 54px);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--softer);
  background: rgba(8, 34, 49, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 0.95rem;
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--ink);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-switcher button {
  min-width: 34px;
  min-height: 32px;
  border: 1px solid var(--soft);
  background: transparent;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button:hover,
.language-switcher button.is-active {
  border-color: #000;
  background: #000;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 72px) 42px;
}

.hero-image,
.hero-shade {
  position: fixed;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  filter: brightness(1.08) saturate(1.05);
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(78, 160, 199, 0.82) 0%, rgba(78, 160, 199, 0.62) 36%, rgba(6, 30, 44, 0.12) 70%, rgba(6, 30, 44, 0.34) 100%),
    linear-gradient(0deg, rgba(8, 34, 49, 0.92) 0%, rgba(8, 34, 49, 0.16) 46%),
    radial-gradient(circle at 74% 28%, rgba(216, 28, 0, 0.12), transparent 24%);
}

.hero-content,
.release-strip,
.section,
.site-footer {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  min-height: calc(100svh - 330px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(1040px, 100%);
}

.label {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 8px;
  font-size: clamp(4.2rem, 13vw, 13.2rem);
  font-weight: 900;
  line-height: 0.84;
  text-transform: uppercase;
}

.claim {
  width: min(760px, 100%);
  margin-bottom: 34px;
  color: var(--ink);
  font-size: clamp(1.8rem, 4.4vw, 4.4rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: #000;
  background: #000;
  color: #fff;
}

.button.ghost:hover {
  background: #000;
  border-color: #000;
}

.play-icon,
.play-button span {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.release-strip {
  width: min(920px, 100%);
  margin-left: auto;
  padding-bottom: 20px;
}

.strip-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.strip-heading span {
  height: 2px;
  background: var(--ink);
}

.strip-heading h2 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  text-transform: uppercase;
}

.release-list {
  display: grid;
  gap: 1px;
  background: rgba(0, 0, 0, 0.28);
}

.release {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 66px;
  padding: 12px 14px;
  background: rgba(5, 20, 30, 0.82);
}

.release.has-cover {
  grid-template-columns: 56px 42px minmax(0, 1fr) auto;
  min-height: 82px;
}

.release-cover {
  width: 56px;
  height: 56px;
  object-fit: cover;
}

.play-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--soft);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.release.is-playing .play-button,
.release.is-playing .release-title {
  color: var(--red);
}

.release.is-playing .play-button span {
  width: 14px;
  height: 14px;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 36%, transparent 36% 64%, currentColor 64%);
}

.release-title {
  overflow: hidden;
  font-weight: 900;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.release-meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.section {
  padding: clamp(78px, 10vw, 140px) clamp(20px, 6vw, 80px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 26vw 100%,
    var(--blue-deep);
}

.signature {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 100px);
  border-top: 1px solid var(--softer);
}

.signature h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 7.2rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.signature-copy {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  font-weight: 600;
  line-height: 1.78;
}

.artist-info {
  border-top: 1px solid var(--softer);
  border-bottom: 1px solid var(--softer);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 26vw 100%,
    #174f68;
}

.info-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-bottom: 28px;
  font-size: clamp(2rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.info-line span:not(:last-child)::after {
  content: "/";
  margin-left: 26px;
  color: var(--red);
}

.artist-info p {
  width: min(880px, 100%);
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  font-weight: 600;
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 460px);
  gap: clamp(40px, 8vw, 110px);
}

.contact-copy p:not(.label) {
  width: min(660px, 100%);
  margin-top: 28px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.72;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 34px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--red);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links a:last-child svg path {
  fill: currentColor;
}

.contact-form {
  display: grid;
  gap: 18px;
  align-self: start;
  padding: 26px;
  border: 1px solid var(--soft);
  background: var(--panel);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--soft);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.32);
  color: var(--ink);
  outline: none;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  padding: 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.form-button {
  width: 100%;
  margin-top: 6px;
}

.form-error {
  display: none;
  margin: 0;
  color: #ffd4cc;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.5;
}

.form-error.is-visible {
  display: block;
}

.hidden {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 80px);
  border-top: 1px solid var(--softer);
  background: var(--blue-dark);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer span:nth-child(2) {
  text-align: center;
}

.site-footer span:last-child {
  text-align: right;
}

.success-page {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 24px;
  background: var(--blue-deep);
}

.success-card {
  width: min(620px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--soft);
  background: var(--panel);
}

.success-card h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 10vw, 6.2rem);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.success-card p {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }

  .site-header {
    gap: 16px;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-content {
    min-height: calc(100svh - 380px);
  }

  .hero-image {
    object-position: 64% center;
  }

  .release-strip {
    margin-left: 0;
  }

  .signature,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .site-header {
    min-height: 72px;
  }

  h1 {
    font-size: clamp(3.8rem, 20vw, 6.8rem);
  }

  .claim {
    font-size: clamp(1.6rem, 9vw, 2.9rem);
  }

  .hero-image {
    object-position: 68% center;
  }

  .release {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .release.has-cover {
    grid-template-columns: 52px 38px minmax(0, 1fr);
  }

  .release-cover {
    width: 52px;
    height: 52px;
  }

  .release-meta {
    grid-column: 2;
    text-align: left;
  }

  .release.has-cover .release-meta {
    grid-column: 3;
  }

  .info-line span:not(:last-child)::after {
    margin-left: 14px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .site-footer span,
  .site-footer span:nth-child(2),
  .site-footer span:last-child {
    text-align: left;
  }
}
