:root {
  --bg: #07070b;
  --panel: rgba(12, 12, 18, 0.78);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f1ea;
  --muted: #9a93a8;
  --accent: #ff3d7f;
  --gold: #e8b15a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

body {
  background:
    radial-gradient(1100px 520px at 50% -12%, color-mix(in srgb, var(--accent) 32%, transparent), transparent 58%),
    radial-gradient(800px 480px at 100% 10%, rgba(80, 40, 120, 0.4), transparent 50%),
    var(--bg);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(7, 7, 11, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.wordmark img {
  border-radius: 10px;
}

.site-nav nav {
  display: flex;
  gap: 18px;
  flex: 1;
}

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

.site-nav nav a[aria-current="page"],
.site-nav nav a:hover {
  color: var(--text);
}

.play {
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 650;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 28px 28px;
  min-height: 88vh;
  display: grid;
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.kicker {
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  margin: 0 0 10px;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.95;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}

.lede {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 46ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 650;
}

.btn-play {
  background: #fff;
  color: #111;
}

.btn-ghost {
  border: 1px solid var(--line);
  background: transparent;
}

.cast {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  pointer-events: none;
}

.cast figure {
  margin: 0;
  width: min(22vw, 280px);
  margin-left: -4vw;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.55));
}

.cast img {
  display: block;
  width: 100%;
  height: 78vh;
  object-fit: cover;
  object-position: top;
  border-radius: 28px 28px 0 0;
  mask-image: linear-gradient(to bottom, #000 62%, transparent 100%);
}

.cast figure:nth-child(1) {
  transform: translateY(8%) rotate(-6deg);
}
.cast figure:nth-child(2) {
  transform: translateY(2%) rotate(-2deg);
}
.cast figure:nth-child(3) {
  transform: translateY(0);
}
.cast figure:nth-child(4) {
  transform: translateY(4%) rotate(3deg);
}
.cast figure:nth-child(5) {
  transform: translateY(10%) rotate(6deg);
}
.cast figure:nth-child(6) {
  transform: translateY(6%) rotate(8deg);
}

.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store {
  display: inline-flex;
  flex-direction: column;
  min-width: 180px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #111;
  text-decoration: none;
  font-size: 0.82rem;
}

.store span {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.band,
.grid-wrap,
.doc-wrap {
  padding: 56px 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.band h2,
.grid-wrap h2 {
  font-size: 2rem;
  margin: 0 0 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
}

.card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: 50% 12%;
}

.cards.originals {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.card div,
.plan,
.help-card {
  padding: 16px 18px 20px;
}

.card strong,
.plan strong {
  display: block;
  font-size: 1.15rem;
}

.muted {
  color: var(--muted);
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.plan {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.plan.featured {
  border-color: color-mix(in srgb, var(--accent) 70%, white);
}

.price {
  font-size: 1.6rem;
  margin: 8px 0;
}

.site-foot {
  margin-top: 40px;
  padding: 36px 28px 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
}

.foot-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.foot-brand p,
.fine {
  color: var(--muted);
  margin: 4px 0 0;
  font-size: 0.9rem;
}

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

.foot-cols p {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.foot-cols a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin: 6px 0;
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 28px 80px;
}

.legal h1 {
  font-size: 2.4rem;
}

.legal h2 {
  margin-top: 2rem;
}

.legal .cards.originals {
  max-width: none;
}

.legal .cards.originals img {
  height: 200px;
}

.legal p,
.legal li {
  color: #d9d4cc;
  line-height: 1.65;
}

.updated {
  color: var(--muted);
}

.help-list {
  display: grid;
  gap: 12px;
}

.help-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    flex-wrap: wrap;
  }
  .site-nav nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
  }
  .site-nav nav.is-open {
    display: flex;
  }
  .cast {
    opacity: 0.38;
  }
  .hero {
    min-height: 72vh;
  }
  .foot-cols {
    grid-template-columns: 1fr 1fr;
  }
}
