/* Purple Dreams promotional landing page */

:root {
  --bg: #080412;
  --bg-soft: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.48);
  --line: rgba(255, 255, 255, 0.16);
  --purple: #a855f7;
  --pink: #ec4899;
  --cyan: #22d3ee;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(8, 4, 18, 0.70), rgba(8, 4, 18, 0.92)),
    url("cover.jpg") center / cover fixed no-repeat;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(168, 85, 247, 0.34), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(236, 72, 153, 0.24), transparent 30%),
    radial-gradient(circle at 50% 95%, rgba(34, 211, 238, 0.16), transparent 38%);
  z-index: -1;
}

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

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

/* HERO SECTION */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: 52px;
  min-height: 92vh;
  padding: 64px 0 48px;
}

.hero-content {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #f0abfc;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(3.8rem, 10vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-shadow: 0 18px 80px rgba(168, 85, 247, 0.42);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.subtitle {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.main-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 800;
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
}

.button.primary {
  border: 0;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 16px 40px rgba(168, 85, 247, 0.34);
}

.small-note {
  color: var(--faint);
  font-size: 0.95rem;
}

.album-card {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(0px);
  transform: rotate(1deg);
}

.album-card::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -1;
  border-radius: 44px;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.48),
    rgba(236, 72, 153, 0.18),
    rgba(34, 211, 238, 0.18)
  );
  filter: blur(28px);
}

.album-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
}

/* LISTEN SECTION */

.listen-section {
  padding: 72px 0;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 28px;
}

.section-heading p,
.about-section p {
  color: var(--muted);
  line-height: 1.7;
}

.track-list {
  display: grid;
  gap: 18px;
}

.track-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.085);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.track-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.track-info p {
  margin-bottom: 0;
  color: var(--faint);
}

.track-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.42), rgba(236, 72, 153, 0.28));
  color: #fff;
  font-weight: 900;
}

.spotify-player {
  border: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
}

.track-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.track-links a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.track-links a:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

/* ABOUT SECTION */

.about-section {
  display: grid;

  gap: 40px;
  align-items: start;
  margin: 32px 0 72px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(18px);
}

/* FOOTER */

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--faint);
}

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

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

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

/* RESPONSIVE LAYOUT */

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 36px;
    padding-top: 54px;
  }

  .album-card {
    justify-self: start;
    max-width: 460px;
    transform: none;
  }

  .track-card {
    grid-template-columns: 1fr;
  }

  .track-links {
    justify-content: flex-start;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .page-shell {
    width: min(100% - 22px, 1180px);
  }

  h1 {
    font-size: clamp(3.2rem, 19vw, 5rem);
  }

  .main-buttons {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .track-card,
  .about-section {
    border-radius: 22px;
    padding: 14px;
  }
}