@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: dark;
  --bg-0: #050714;
  --bg-1: #100a26;
  --bg-2: #1a0d33;
  --card: rgba(11, 12, 28, 0.84);
  --card-strong: rgba(12, 13, 30, 0.94);
  --line: rgba(178, 138, 255, 0.14);
  --text: #f8f6ff;
  --soft: #c9c6dd;
  --muted: #9b95b8;
  --accent: #ff6c8f;
  --accent-2: #9a5cff;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(154, 92, 255, 0.22), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(255, 108, 143, 0.24), transparent 28%),
    radial-gradient(circle at 52% 78%, rgba(255, 108, 143, 0.12), transparent 38%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 42%, var(--bg-0) 100%);
  font-family: "Outfit", "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.62;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 52%);
}

a {
  color: #d3a8ff;
}

.shell {
  width: min(1280px, calc(100% - 44px));
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 64px 0;
}

.page {
  width: min(920px, calc(100% - 44px));
  margin: 0 auto;
}

.shell > * {
  opacity: 0;
  animation: rise-in 720ms cubic-bezier(0.24, 1, 0.33, 1) forwards;
}

.shell > *:nth-child(2) {
  animation-delay: 120ms;
}

.shell > *:nth-child(3) {
  animation-delay: 210ms;
}

.shell > *:nth-child(4) {
  animation-delay: 300ms;
}

.shell > *:nth-child(5) {
  animation-delay: 390ms;
}

.hero {
  width: min(980px, 100%);
  text-align: center;
  margin: 0 auto;
}

.mark {
  width: 108px;
  height: 108px;
  margin: 0 auto 20px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 28% 30%, rgba(154, 92, 255, 0.4), transparent 38%),
    radial-gradient(circle at 76% 46%, rgba(255, 108, 143, 0.34), transparent 32%),
    linear-gradient(180deg, rgba(9, 10, 24, 0.96), rgba(30, 14, 52, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 64px rgba(109, 54, 184, 0.22);
}

.mark span {
  width: 72px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8d49ff, #d86aff, #ff7086);
  clip-path: polygon(0 62%, 13% 62%, 23% 24%, 39% 88%, 55% 30%, 72% 66%, 82% 38%, 100% 38%, 100% 78%, 83% 78%, 72% 58%, 58% 92%, 39% 32%, 25% 88%, 13% 72%, 0 72%);
  filter: drop-shadow(0 0 14px rgba(191, 97, 255, 0.42));
}

.eyebrow,
.updated {
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(2.8rem, 7vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.page h1 {
  margin: 18px 0 6px;
  font-size: clamp(2.3rem, 6.1vw, 4.2rem);
}

h2 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.lede {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--soft);
  font-size: clamp(1.12rem, 1.4vw, 1.48rem);
  text-wrap: balance;
}

.panel {
  width: 100%;
  margin: 0 auto;
  padding: 28px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 44px rgba(2, 4, 14, 0.34);
}

.playlist-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 22px;
  align-items: center;
  overflow: hidden;
}

.playlist-panel::after {
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 82, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.playlist-copy {
  position: relative;
  z-index: 1;
}

.playlist-art {
  position: relative;
  min-height: 220px;
  display: grid;
  align-items: center;
  justify-items: end;
}

.playlist-art img {
  width: min(100%, 340px);
  height: auto;
  display: block;
  border-radius: 24px;
  transform: rotate(-4deg);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.34);
  opacity: 0.95;
}

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

.chip-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.chip {
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(174, 139, 255, 0.2);
  font-size: 0.9rem;
  color: #efeaff;
  background: rgba(8, 9, 24, 0.66);
}

.cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(154, 92, 255, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(20, 12, 40, 0.96), rgba(9, 9, 22, 0.98));
}

.footer-links {
  text-align: center;
  color: var(--muted);
  margin: 4px 0 0;
}

.footer-links a {
  text-decoration: none;
}

.site-copyright {
  text-align: center;
  color: var(--muted);
  font-size: 0.84rem;
  margin: 12px 0 0;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: #f8fbff;
  text-decoration: none;
  background: rgba(12, 13, 30, 0.96);
  border: 1px solid rgba(149, 114, 230, 0.18);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(205, 164, 255, 0.42);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.button.primary {
  background: linear-gradient(90deg, #ff6f87, #cf63ff 56%, #8f52ff);
  border: 0;
  color: #fff9ff;
}

.button.inline {
  border-radius: 15px;
}

.page {
  padding: 42px 0 72px;
  max-width: 900px;
}

.page section {
  padding: 20px 22px;
  margin-top: 16px;
  border-radius: 16px;
  background: var(--card-strong);
  border: 1px solid rgba(168, 135, 255, 0.16);
}

.back {
  display: inline-flex;
  color: #f8fbff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

p,
li {
  color: var(--soft);
}

ol,
ul {
  padding-left: 1.2rem;
}

.legal-list li {
  margin-bottom: 8px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .shell,
  .page {
    width: min(100% - 28px, 1280px);
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .panel {
    padding: 20px;
    border-radius: 18px;
  }

  .playlist-panel {
    grid-template-columns: 1fr;
  }

  .playlist-art {
    min-height: auto;
    justify-items: stretch;
    order: -1;
  }

  .playlist-art img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shell > * {
    opacity: 1;
    animation: none;
  }

  .button {
    transition: none;
  }
}
