:root {
  --bg: #050505;
  --panel: #101010;
  --panel-2: #171411;
  --ink: #f7f1e8;
  --muted: #b6aca0;
  --dim: #7d7368;
  --gold: #d7aa4a;
  --gold-strong: #f1cb76;
  --bone: #f5e6cc;
  --red: #b7372f;
  --line: rgba(247, 241, 232, 0.14);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 14% 4%, rgba(183, 55, 47, 0.24), transparent 26rem),
    radial-gradient(circle at 86% 0%, rgba(215, 170, 74, 0.14), transparent 30rem),
    linear-gradient(180deg, #090806 0%, #050505 36%, #090806 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(247, 241, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 241, 232, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

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

button,
input {
  font: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(215, 170, 74, 0.58);
  border-radius: 50%;
  color: var(--gold-strong);
  background: linear-gradient(145deg, rgba(215, 170, 74, 0.18), rgba(183, 55, 47, 0.18));
}

.brand-logo-mark {
  overflow: hidden;
  background: #020202;
}

.brand-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-word {
  line-height: 1;
}

.nav-links {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.nav-links a {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(247, 241, 232, 0.08);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.hero {
  padding: 34px 0 44px;
}

.hero-grid,
.song-hero-grid,
.feature-grid,
.about-grid {
  display: grid;
  gap: 26px;
}

.hero h1,
.song-copy h1,
.page-hero h1 {
  margin-bottom: 16px;
  font-size: 3rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p,
.song-copy p,
.page-hero p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-copy,
.song-copy {
  align-self: center;
}

.button-row,
.platform-grid {
  display: grid;
  gap: 10px;
}

.button,
.platform-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(247, 241, 232, 0.14);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
  background: rgba(247, 241, 232, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.platform-button:hover {
  transform: translateY(-1px);
  border-color: rgba(241, 203, 118, 0.56);
  background: rgba(241, 203, 118, 0.1);
}

.button-primary,
.platform-button.primary {
  border-color: rgba(241, 203, 118, 0.7);
  color: #090806;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
}

.button-ghost {
  color: var(--bone);
}

.visual-card,
.song-art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(247, 241, 232, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--panel);
}

.visual-card img,
.song-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .visual-card {
  order: -1;
}

.feature-visual {
  min-height: 280px;
}

.visual-badge,
.drop-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-strong);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(247, 241, 232, 0.14);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(5, 5, 5, 0.76);
}

.section {
  padding: 48px 0;
}

.section-header {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.section-header h2,
.feature-copy h2,
.about-copy h2 {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-header p,
.feature-copy p,
.about-copy p {
  color: var(--muted);
}

.release-grid {
  display: grid;
  gap: 14px;
}

.release-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 16, 16, 0.82);
}

.release-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.release-card-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.release-card h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
}

.release-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.signal-strip {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.signal-item {
  display: grid;
  gap: 2px;
}

.signal-value {
  color: var(--gold-strong);
  font-size: 1.5rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.signal-label {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.song-hero {
  padding: 24px 0 44px;
}

.song-art {
  aspect-ratio: 1;
  order: -1;
}

.song-copy h1 {
  font-size: 3.2rem;
}

.song-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.platform-grid {
  margin-top: 22px;
}

.platform-button {
  justify-content: space-between;
}

.platform-button span:last-child {
  color: rgba(247, 241, 232, 0.62);
}

.platform-button.primary span:last-child {
  color: rgba(9, 8, 6, 0.64);
}

.preview-panel {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: linear-gradient(135deg, rgba(247, 241, 232, 0.08), rgba(183, 55, 47, 0.08));
}

.wave {
  display: grid;
  height: 74px;
  grid-template-columns: repeat(24, 1fr);
  align-items: center;
  gap: 5px;
}

.wave span {
  display: block;
  height: 18px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--gold-strong), var(--red));
  opacity: 0.72;
}

.wave span:nth-child(3n) {
  height: 44px;
}

.wave span:nth-child(4n) {
  height: 60px;
}

.wave span:nth-child(5n) {
  height: 30px;
}

.preview-panel.is-playing .wave span {
  animation: pulse-wave 620ms ease-in-out infinite alternate;
}

.preview-panel.is-playing .wave span:nth-child(2n) {
  animation-delay: 110ms;
}

.preview-panel.is-playing .wave span:nth-child(3n) {
  animation-delay: 220ms;
}

.story-block {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.story-block p {
  color: var(--muted);
}

.feature-copy {
  align-self: center;
}

.album-grid {
  display: grid;
  gap: 24px;
}

.track-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.track-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 50px;
  gap: 10px;
  align-items: baseline;
  border-bottom: 1px solid rgba(247, 241, 232, 0.1);
  padding-bottom: 8px;
}

.track-list strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-weight: 800;
}

.video-list {
  display: grid;
  gap: 14px;
}

.video-item {
  display: grid;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 18px;
}

.video-thumb {
  overflow: hidden;
  border-radius: var(--radius);
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-hero {
  padding: 44px 0 26px;
}

.copy-section {
  max-width: 760px;
  color: var(--muted);
}

.copy-section h2,
.copy-section h3 {
  color: var(--ink);
}

.copy-section a {
  color: var(--gold-strong);
}

.signup-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.signup-form {
  display: grid;
  gap: 10px;
}

.signup-form input {
  min-height: 50px;
  width: 100%;
  border: 1px solid rgba(247, 241, 232, 0.18);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  background: rgba(247, 241, 232, 0.07);
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--gold-strong);
  font-size: 0.9rem;
}

.site-footer {
  padding: 34px 0;
  color: var(--dim);
}

.footer-grid {
  display: grid;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

@keyframes pulse-wave {
  from {
    transform: scaleY(0.55);
  }
  to {
    transform: scaleY(1.18);
  }
}

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

@media (min-width: 640px) {
  .shell {
    width: min(1120px, calc(100% - 48px));
  }

  .nav-links {
    width: auto;
    overflow: visible;
    padding-bottom: 0;
  }

  .button-row,
  .platform-grid,
  .signup-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .signal-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .hero {
    padding: 54px 0 66px;
  }

  .hero-grid,
  .song-hero-grid,
  .feature-grid,
  .about-grid,
  .album-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    align-items: center;
  }

  .album-grid {
    grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1fr);
    align-items: start;
  }

  .song-hero-grid {
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr);
  }

  .song-art {
    aspect-ratio: 1;
    order: 0;
  }

  .hero .visual-card {
    order: 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 5rem;
  }

  .song-copy h1 {
    font-size: 4.6rem;
  }

  .hero p,
  .song-copy p,
  .page-hero p {
    font-size: 1.08rem;
  }

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

  .video-item {
    grid-template-columns: 280px minmax(0, 1fr) 170px;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 430px) {
  .shell {
    width: min(100% - 24px, 1120px);
  }

  .hero h1,
  .song-copy h1,
  .page-hero h1 {
    font-size: 2.65rem;
  }

  .brand-word {
    max-width: 110px;
  }
}
