:root {
  --bg: #0b0b10;
  --panel: #15151f;
  --text: #f6f1e8;
  --muted: #b9b0a5;
  --accent: #ff8a3d;
  --accent-2: #8f6cff;
  --line: rgba(255,255,255,0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(143,108,255,0.26), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255,138,61,0.20), transparent 35%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 7vw;
  background: rgba(11,11,16,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-weight: 900;
  letter-spacing: 0.16em;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 22px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--text);
}

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
  padding: 80px 7vw;
}

.eyebrow,
.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 8rem);
  line-height: 0.9;
  margin: 14px 0 24px;
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  margin: 0 0 20px;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 1.35rem;
  margin-top: 0;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.25rem;
}

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

.btn,
button {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.primary,
button {
  background: var(--accent);
  color: #171008;
}

.secondary {
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  transform: rotate(2deg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.cover-placeholder {
  aspect-ratio: 1;
  border-radius: 22px;
  display: grid;
  place-items: end start;
  padding: 24px;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
  background:
    linear-gradient(145deg, rgba(255,138,61,0.9), rgba(143,108,255,0.7)),
    url("artist-photo.jpg");
  background-size: cover;
  background-position: center;
}

.release {
  color: var(--muted);
  margin-bottom: 0;
}

.section {
  padding: 90px 7vw;
  border-top: 1px solid var(--line);
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.card p,
.split p,
.signup p,
.contact p {
  color: var(--muted);
}

.card a,
.contact a,
.socials a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.quote {
  padding: 80px 7vw;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid var(--line);
}

blockquote {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.signup {
  max-width: 900px;
}

form {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

input {
  flex: 1;
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  padding: 15px 18px;
  font-size: 1rem;
}

small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

footer {
  padding: 30px 7vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 850px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero,
  .split,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 50px;
  }

  form {
    flex-direction: column;
  }

  button {
    width: 100%;
  }
}
