:root {
  --ink: #fff8ec;
  --muted: rgba(255, 248, 236, 0.7);
  --soft: rgba(255, 248, 236, 0.1);
  --line: rgba(255, 248, 236, 0.16);
  --black: #050307;
  --midnight: #100718;
  --gold: #f8c75e;
  --amber: #ff7a1a;
  --red: #ff2d45;
  --magenta: #ff2ec4;
  --purple: #8f45ff;
  --cyan: #3ff2ff;
  --panel: rgba(18, 9, 24, 0.76);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(255, 45, 196, 0.24), transparent 34rem),
    radial-gradient(circle at 88% 8%, rgba(255, 122, 26, 0.2), transparent 30rem),
    linear-gradient(180deg, #050307 0%, #100718 48%, #050307 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

.site-shell { overflow: hidden; }

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

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 3, 7, 0.78);
  backdrop-filter: blur(18px);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff4c6, var(--gold) 34%, var(--amber) 62%, var(--magenta));
  box-shadow: 0 0 28px rgba(255, 46, 196, 0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 248, 236, 0.72);
  font-size: 0.91rem;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a.active { color: white; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #140607;
  background: linear-gradient(135deg, var(--gold), var(--amber) 55%, var(--magenta));
  box-shadow: 0 18px 44px rgba(255, 46, 196, 0.28);
}

.button-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 128px 0 54px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(5, 3, 7, 0.86), rgba(5, 3, 7, 0.2), rgba(5, 3, 7, 0.82)),
    linear-gradient(180deg, rgba(5, 3, 7, 0.08), rgba(5, 3, 7, 0.92)),
    url("../images/wrist-music-hero.png") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, #050307);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(248, 199, 94, 0.34);
  border-radius: 999px;
  color: #ffe09a;
  background: rgba(248, 199, 94, 0.1);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { overflow-wrap: anywhere; }

h1 {
  margin: 24px 0 0;
  max-width: 760px;
  font-size: clamp(4rem, 8.25rem, 9.2rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.gradient-text {
  background: linear-gradient(135deg, #fff4bc, var(--gold), var(--amber), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 34px rgba(255, 46, 196, 0.18);
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 248, 236, 0.84);
  font-size: clamp(1.2rem, 1.42rem, 1.58rem);
  line-height: 1.5;
}

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

.stats-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 680px;
  margin-top: 44px;
}

.stat {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 18px;
  background: rgba(5, 3, 7, 0.54);
  backdrop-filter: blur(14px);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 1.6rem;
}

.stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

main section { padding: 88px 0; }

.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.25rem, 4.2rem, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.section-lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

.section-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 34px;
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.song-card,
.chart-row,
.info-card,
.form-card,
.category-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(18, 9, 24, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.song-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 190px 1fr;
}

.song-card.featured { grid-column: span 1; }

.artwork {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 244, 188, 0.86), transparent 24%),
    radial-gradient(circle at 72% 20%, rgba(255, 46, 196, 0.72), transparent 28%),
    radial-gradient(circle at 50% 80%, rgba(63, 242, 255, 0.42), transparent 28%),
    linear-gradient(135deg, #2b0715, #13091f 58%, #321274);
}

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

.artwork::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(5, 3, 7, 0.78));
}

.record-badge {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  color: #150508;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  font-size: 0.72rem;
  font-weight: 950;
}

.song-body { padding: 18px; }

.song-body h3 {
  margin: 0;
  font-size: 1.12rem;
}

.song-meta {
  margin: 8px 0 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
}

.song-mood {
  margin: 7px 0 0;
  color: rgba(255, 248, 236, 0.62);
  font-size: 0.84rem;
  line-height: 1.45;
}

.song-desc {
  min-height: 4.8em;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.player {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.player-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-btn,
.vote-btn,
.share-btn,
.mini-play {
  border: 0;
  color: white;
  cursor: pointer;
  font-weight: 950;
}

.play-btn,
.mini-play {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--magenta));
  box-shadow: 0 10px 28px rgba(255, 46, 196, 0.2);
}

.play-btn[disabled] {
  opacity: 0.48;
  cursor: not-allowed;
  box-shadow: none;
}

.progress {
  position: relative;
  height: 8px;
  flex: 1;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  cursor: pointer;
}

.progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--magenta));
}

.time-row {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 248, 236, 0.58);
  font-size: 0.78rem;
}

.volume {
  width: 82px;
  accent-color: var(--magenta);
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.vote-btn,
.share-btn,
.lyrics-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 0.86rem;
  text-align: center;
}

.vote-btn.voted {
  color: #140607;
  background: linear-gradient(135deg, var(--gold), var(--amber));
}

.audio-pending {
  color: rgba(255, 248, 236, 0.54);
  font-size: 0.8rem;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.tab {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-weight: 900;
}

.tab.active {
  color: #150508;
  background: linear-gradient(135deg, var(--gold), var(--amber));
}

.chart {
  display: grid;
  gap: 12px;
}

.chart-row {
  display: grid;
  grid-template-columns: 64px 74px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.rank {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 950;
  text-align: center;
}

.chart-art {
  width: 74px;
  aspect-ratio: 1;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 20%, var(--gold), transparent 28%),
    radial-gradient(circle at 78% 78%, var(--magenta), transparent 30%),
    linear-gradient(135deg, #190817, #321274);
  overflow: hidden;
}

.chart-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chart-title strong { display: block; }

.chart-title span,
.chart-votes {
  color: var(--muted);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 30px;
  align-items: start;
}

.info-card,
.form-card,
.category-panel { padding: 30px; }

.info-card h3,
.form-card h3,
.category-panel h3 { margin: 0 0 12px; }

.info-card p,
.category-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.feature-list div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.feature-list strong {
  display: block;
  color: var(--gold);
  margin-bottom: 6px;
}

.feature-list span {
  color: var(--muted);
  line-height: 1.55;
}

.credibility-anthem {
  padding: 72px 0 36px;
}

.drop-down-banner-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.drop-down-banner {
  display: block;
  width: min(725px, 100%);
  height: 90px;
  overflow: hidden;
  border: 1px solid rgba(248, 199, 94, 0.34);
  border-radius: 16px;
  background: rgba(5, 3, 7, 0.82);
  box-shadow: 0 20px 54px rgba(248, 199, 94, 0.14), 0 0 34px rgba(255, 46, 196, 0.08);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.drop-down-banner:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 199, 94, 0.72);
  box-shadow: 0 24px 64px rgba(248, 199, 94, 0.2), 0 0 42px rgba(255, 46, 196, 0.12);
}

.drop-down-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bio-card {
  border-color: rgba(248, 199, 94, 0.28);
  background:
    radial-gradient(circle at 16% 0%, rgba(248, 199, 94, 0.16), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(18, 9, 24, 0.78);
}

.bio-card .section-heading,
.lyric-card .section-heading {
  font-size: clamp(2.1rem, 3.3rem, 4rem);
}

.lyric-card {
  padding: 30px;
  border: 1px solid rgba(255, 122, 26, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 46, 196, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(18, 9, 24, 0.72);
}

.anthem-lines {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.anthem-lines strong {
  display: block;
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.07);
  font-size: clamp(1.35rem, 2rem, 2.35rem);
  line-height: 1.12;
}

.lyric-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.album-offer {
  padding-top: 0;
}

.album-panel {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 28px;
  align-items: stretch;
  border: 1px solid rgba(240, 172, 144, 0.34);
  border-radius: 28px;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(238, 108, 145, 0.2), transparent 26rem),
    radial-gradient(circle at 86% 12%, rgba(72, 156, 255, 0.18), transparent 24rem),
    linear-gradient(135deg, rgba(13, 24, 54, 0.94), rgba(37, 19, 50, 0.86));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.31);
}

.album-copy,
.album-credits {
  padding: clamp(20px, 3vw, 34px);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.album-copy h2 {
  margin: 0;
  max-width: 840px;
  color: white;
  font-size: clamp(2.45rem, 5vw, 5.45rem);
  line-height: 0.92;
}

.album-artist {
  margin: 14px 0 20px;
  color: #ffc9b8 !important;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.album-copy p,
.album-credits p {
  color: rgba(255, 248, 236, 0.74);
  line-height: 1.72;
}

.album-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.album-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #180914;
  background: linear-gradient(135deg, #ffc9b8, #d9a0ff);
  font-weight: 950;
}

.album-track-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.album-track {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(240, 172, 144, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(10, 13, 28, 0.82);
}

.album-track > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #1b0d17;
  background: linear-gradient(135deg, #ffc9b8, #d9a0ff);
  font-weight: 950;
}

.album-track h3 {
  margin: 0;
  color: white;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.album-track p {
  margin: 8px 0 12px;
  color: rgba(255, 248, 236, 0.62);
  font-size: 0.92rem;
  line-height: 1.45;
}

.album-track audio {
  display: block;
  width: 100%;
}

.album-sales-banner {
  margin-top: 24px;
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid rgba(240, 172, 144, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 201, 184, 0.18), transparent 22rem),
    rgba(10, 13, 28, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.album-sales-banner a {
  display: block;
  overflow: hidden;
  border-radius: 18px;
}

.album-sales-banner img {
  width: 100%;
  height: auto;
  transition: transform 220ms ease, filter 220ms ease;
}

.album-sales-banner a:hover img {
  transform: scale(1.012);
  filter: brightness(1.06);
}

.download-offer {
  padding-top: 0;
}

.offer-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(248, 199, 94, 0.28);
  border-radius: 28px;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 122, 26, 0.2), transparent 30rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(18, 9, 24, 0.78);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.offer-art {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.offer-art img {
  width: 100%;
  height: auto;
}

.offer-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.5rem, 4.25rem);
  line-height: 0.98;
}

.offer-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.offer-price {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.offer-price span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #150508;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  font-weight: 950;
}

.offer-price span:nth-child(2),
.offer-price span:nth-child(3) {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.one-song-teaser {
  padding-top: 0;
}

.teaser-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(248, 199, 94, 0.3);
  border-radius: 28px;
  padding: clamp(22px, 4vw, 38px);
  background:
    radial-gradient(circle at 12% 20%, rgba(248, 199, 94, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(18, 9, 24, 0.84);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.teaser-panel h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 4.5rem);
  line-height: 0.95;
}

.teaser-panel p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.hit-songs-offer {
  position: relative;
  scroll-margin-top: 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(248, 199, 94, 0.14), transparent 28rem),
    radial-gradient(circle at 84% 14%, rgba(255, 122, 26, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(5, 3, 7, 0.94), rgba(16, 7, 24, 0.96));
}

.hit-songs-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(248, 199, 94, 0.28);
  border-radius: 28px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(248, 199, 94, 0.1), rgba(255, 46, 196, 0.045)),
    rgba(5, 3, 7, 0.68);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

#five-song-artist-offer {
  scroll-margin-top: 112px;
}

.hit-songs-art img {
  width: 100%;
  border: 1px solid rgba(248, 199, 94, 0.22);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.hit-songs-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.7vw, 4.8rem);
  line-height: 0.94;
}

.hit-songs-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.commitment-box {
  display: inline-grid;
  gap: 4px;
  margin: 10px 0;
  padding: 16px 18px;
  border: 1px solid rgba(248, 199, 94, 0.42);
  border-radius: 18px;
  background: rgba(248, 199, 94, 0.1);
}

.commitment-box span {
  color: rgba(255, 248, 236, 0.68);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.commitment-box strong {
  color: var(--gold);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
}

.hit-player-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.hit-player-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(248, 199, 94, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(248, 199, 94, 0.12), transparent 12rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.24);
}

.hit-player-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #150508;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  font-weight: 950;
}

.hit-player-card h3 {
  margin: 0;
  min-height: 3.75em;
  font-size: 1.05rem;
  line-height: 1.22;
}

.hit-player-card .hit-genre {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hit-player-card audio {
  width: 100%;
  min-width: 0;
}

.hit-player-card .audio-pending {
  margin: 0;
  color: rgba(255, 248, 236, 0.56);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hit-player-card code {
  color: rgba(255, 248, 236, 0.9);
}

.hit-songs-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.hit-songs-cta p {
  margin: 0;
  color: var(--gold);
  font-weight: 950;
}

.catalog-search-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(248, 199, 94, 0.28);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 20%, rgba(248, 199, 94, 0.12), transparent 20rem),
    linear-gradient(135deg, rgba(248, 199, 94, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(5, 3, 7, 0.72);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.28);
}

.catalog-search-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.96;
}

.catalog-search-card p:not(.section-kicker) {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-search-card p strong {
  color: rgba(255, 248, 236, 0.94);
}

.jukebox-banner-section {
  padding: 34px 0 18px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 122, 26, 0.14), transparent 30rem),
    radial-gradient(circle at 82% 22%, rgba(30, 170, 255, 0.12), transparent 32rem),
    linear-gradient(180deg, rgba(16, 7, 24, 0.96), rgba(5, 3, 7, 0.98));
}

.jukebox-banner-link {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(248, 199, 94, 0.28);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), 0 0 36px rgba(30, 170, 255, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.jukebox-banner-link:hover {
  transform: translateY(-3px);
  border-color: rgba(248, 199, 94, 0.68);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), 0 0 48px rgba(30, 170, 255, 0.16);
}

.jukebox-banner-link img {
  width: 100%;
  aspect-ratio: 2048 / 640;
  object-fit: cover;
  object-position: center;
}

.record-deal-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(248, 199, 94, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(255, 122, 26, 0.12), transparent 28rem),
    linear-gradient(180deg, #030204, #100718 48%, #030204 100%);
}

.record-deal-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 124px 0 62px;
  background:
    linear-gradient(90deg, rgba(5, 3, 7, 0.94), rgba(5, 3, 7, 0.58), rgba(5, 3, 7, 0.9)),
    radial-gradient(circle at 72% 20%, rgba(248, 199, 94, 0.2), transparent 30rem);
}

.record-deal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.record-deal-hero h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 7vw, 7.3rem);
}

.record-deal-art img {
  width: 100%;
  border: 1px solid rgba(248, 199, 94, 0.24);
  border-radius: 28px;
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.45);
}

.deal-note,
.voice-panel p,
.simple-rules span,
.deal-steps p,
.selected-placeholder p,
.disclaimer-card li,
.closing-panel p,
.closing-panel span {
  color: var(--muted);
  line-height: 1.68;
}

.deal-note {
  max-width: 620px;
  margin-top: 18px;
}

.voice-hook,
.scarcity-section,
.selected-artists-section,
.submit-section,
.deal-terms-section,
.closing-deal {
  padding: 88px 0;
}

.voice-panel,
.closing-panel {
  border: 1px solid rgba(248, 199, 94, 0.28);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 12% 10%, rgba(248, 199, 94, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(18, 9, 24, 0.8);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.voice-panel h2,
.closing-panel h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6.3vw, 7rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.right-singer-card,
.selected-placeholder,
.disclaimer-card {
  border: 1px solid rgba(248, 199, 94, 0.28);
  border-radius: 24px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(248, 199, 94, 0.1), rgba(255, 46, 196, 0.05)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.right-singer-card p {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.35rem, 3vw, 2.5rem);
  font-weight: 950;
  line-height: 1.05;
  text-transform: uppercase;
}

.right-singer-card strong {
  display: block;
  margin-top: 18px;
  color: white;
  font-size: clamp(1.75rem, 4vw, 3.7rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.deal-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.deal-steps article {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(18, 9, 24, 0.74);
}

.deal-steps span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #150508;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  font-weight: 950;
}

.simple-rules {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.simple-rules span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(248, 199, 94, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 850;
}

.record-deal-form-card .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.record-deal-form-card .checkbox-label input {
  width: auto;
  margin-top: 4px;
}

.disclaimer-card ul {
  margin: 0;
  padding-left: 20px;
}

.disclaimer-card li + li {
  margin-top: 9px;
}

.closing-deal {
  background:
    radial-gradient(circle at 50% 10%, rgba(248, 199, 94, 0.18), transparent 28rem),
    rgba(5, 3, 7, 0.72);
}

.closing-panel .hero-actions {
  align-items: center;
}

.closing-panel span {
  max-width: 420px;
  display: inline-flex;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.timeline div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.timeline strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #150508;
  background: linear-gradient(135deg, var(--gold), var(--amber));
}

.timeline span {
  color: var(--muted);
  line-height: 1.55;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 248, 236, 0.82);
  font-size: 0.88rem;
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 14px 15px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

textarea { min-height: 128px; resize: vertical; }

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(248, 199, 94, 0.12);
}

.page-hero {
  padding: 142px 0 70px;
  background:
    linear-gradient(90deg, rgba(5, 3, 7, 0.92), rgba(5, 3, 7, 0.66)),
    url("../images/wrist-music-hero.png") center / cover no-repeat;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.4rem, 6.4rem, 7.2rem);
}

.notice {
  margin-top: 18px;
  color: rgba(255, 248, 236, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

.open-records-feature {
  padding-top: 0;
}

.open-records-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(63, 242, 255, 0.22);
  border-radius: 26px;
  padding: 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(63, 242, 255, 0.12), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    rgba(7, 12, 18, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.open-records-card:hover {
  transform: translateY(-2px);
  border-color: rgba(63, 242, 255, 0.42);
  box-shadow: 0 30px 95px rgba(0, 0, 0, 0.34);
}

.open-records-image {
  overflow: hidden;
  border: 1px solid rgba(63, 242, 255, 0.18);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.24);
}

.open-records-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.open-records-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
}

.open-records-copy p:not(.section-kicker) {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.7;
}

.open-records-copy span {
  display: inline-flex;
  color: var(--cyan);
  font-weight: 950;
}

.footer {
  padding: 44px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 248, 236, 0.58);
  background: #030204;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.footer a:hover { color: white; }

@media (max-width: 1080px) {
  .song-grid,
  .catalog-grid,
  .hit-player-grid { grid-template-columns: repeat(2, 1fr); }
  .song-card { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .hero { min-height: 92vh; }
  .stats-strip,
  .album-panel,
  .offer-panel,
  .hit-songs-panel,
  .record-deal-hero-grid,
  .open-records-card,
  .split,
  .feature-list { grid-template-columns: 1fr; }
  .section-top { display: block; }
  .album-track-list { grid-template-columns: 1fr; }
  .chart-row { grid-template-columns: 46px 60px 1fr; }
  .chart-votes,
  .chart-row .mini-play { grid-column: 3; }
  .teaser-panel {
    align-items: stretch;
    flex-direction: column;
  }
  .hit-songs-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .catalog-search-card {
    grid-template-columns: 1fr;
  }
  .deal-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav-inner { min-height: 66px; }
  .nav .button { display: none; }
  h1 { font-size: 3.65rem; }
  main section { padding: 68px 0; }
  .song-grid,
  .catalog-grid,
  .hit-player-grid,
  .album-track-list { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .album-panel,
  .hit-songs-panel { padding: 18px; }
  .hit-player-card h3 { min-height: 0; }
  .hit-songs-cta .button { width: 100%; }
  .catalog-search-card .button { width: 100%; }
  .teaser-panel .button { width: 100%; }
  .open-records-card { padding: 14px; }
  .drop-down-banner {
    height: auto;
    aspect-ratio: 725 / 90;
  }
  .record-deal-hero { padding-top: 98px; }
  .record-deal-art img { border-radius: 18px; }
  .voice-hook,
  .scarcity-section,
  .selected-artists-section,
  .submit-section,
  .deal-terms-section,
  .closing-deal { padding: 68px 0; }
}
