:root {
  --bg: #0c0d1b;
  --bg-2: #111117;
  --card: #111117;
  --text: #ffffff;
  --cream: #fff9cb;
  --news: #e5ddff;
  --muted: #ccc2f5;
  --look-sub: #fdfbff;
  --btn-pink: #fecddc;
  --btn-pink-text: #5b3854;
  --btn-gold: #ffd4a8;
  --btn-gold-text: #0f0c1a;
  --btn-lime: #e6ffa3;
  --btn-lime-text: #0d0c1a;
  --btn-coral: #ffc5b8;
  --btn-coral-text: #0d0c1a;
  --btn-sand: #ffdf9e;
  --btn-sand-text: #071012;
  --trailer-2: #2c3868;
  --trailer-1: #4b2f54;
  --story-title: #ecaf91;
  --story-body: #dc739c;
  --line: rgba(204, 194, 245, 0.18);
  --radius: 25.2px;
  --header: 80px;
  --strip: 60px;
  --gutter: 36px;
  --hero: 1066px;
  --space: 28.8px;
  --page: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Outfit, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

[hidden] {
  display: none !important;
}

.grain {
  display: none;
}

.wrap {
  width: min(var(--page), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.announce {
  position: relative;
  height: var(--strip);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 54px;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: #a07dc1 url("../assets/img/announce-bar.jpg") center / 100% 100% no-repeat;
  transition: height 0.35s var(--ease), opacity 0.3s var(--ease);
}

.announce span {
  position: relative;
  z-index: 1;
  grid-column: 2;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
  padding: 0 var(--gutter);
}

.site-header.hide-strip .announce {
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.site-header.is-scrolled,
.page-home .site-header.is-scrolled,
.inner .site-header {
  background: transparent;
  backdrop-filter: none;
}

.brand {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
}

.brand-mark {
  width: 36px;
  height: 28px;
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-btn {
  width: 43px;
  height: 43px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s var(--ease);
}

.menu-btn.is-open span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-btn.is-open span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.overlay-nav {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: #0c0d1b;
  min-height: 0;
}

.menu-hero {
  position: relative;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #6d6d75 0%, #4e445c 42%, #2b2238 100%);
  padding: 80px 40px 120px;
}

.menu-vi {
  width: min(420px, 58%);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.menu-hero-bar {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  color: #fff;
}

.menu-hero-bar .btn {
  justify-self: center;
}

.menu-hero-bar p {
  font-size: 12px;
  line-height: 1.35;
}

.menu-hero-bar .platforms {
  font-size: 11px;
}

.menu-panel {
  background: #0c0d1b;
  padding: 34px 48px 28px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: auto;
}

.menu-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  color: #d8d2e8;
  font-size: 14px;
}

.menu-panel-top p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-x {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  color: #fff;
}

.menu-list {
  list-style: none;
  display: grid;
  gap: 14px;
  flex: 1;
}

.menu-list a,
.menu-list button[data-acc] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #f4efe4;
}

.menu-list a:hover,
.menu-list button[data-acc]:hover,
.menu-list a.is-active {
  color: #fff;
}

.menu-list span {
  font-size: 0.7em;
  opacity: 0.85;
}

.menu-sub {
  display: grid;
  gap: 8px;
  padding: 8px 0 6px 8px;
}

.menu-sub a {
  font-size: 18px;
  text-transform: none;
  color: #d8d2e8;
}

.menu-panel-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  color: #c8c2d6;
  font-size: 14px;
}

.menu-panel-foot button {
  color: inherit;
}

.menu-list button.is-open span {
  transform: rotate(90deg);
}

html.no-motion * {
  animation: none !important;
  transition: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 25.2px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--btn-gold-text);
  transition: transform 0.25s var(--ease), filter 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-sm {
  min-height: 36px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-pink {
  background: var(--btn-pink);
  color: var(--btn-pink-text);
}

.btn-gold {
  background: var(--btn-gold);
  color: var(--btn-gold-text);
}

.btn-lime {
  background: var(--btn-lime);
  color: var(--btn-lime-text);
}

.btn-coral {
  background: var(--btn-coral);
  color: var(--btn-coral-text);
}

.btn-sand {
  background: var(--btn-sand);
  color: var(--btn-sand-text);
}

.hero-section,
.look-section {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.hero-section {
  background: #0c0d1b;
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 150vmax;
  height: 150vmax;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background: radial-gradient(50% 50%, #1f1f38 0%, transparent 100%);
  transform: translate(-50%, -50%);
}

.hero {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  justify-items: center;
  padding: calc(var(--strip) + var(--header)) 0 24px;
}

.hero-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  min-height: 0;
  height: 100%;
  width: min(var(--hero), calc(100% - 26vw));
}

.hero-art {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
}

.hero-art img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  flex: 0 1 auto;
}

.page-home .header-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.page-home .site-header.show-cta .header-cta {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.hero-bar {
  width: min(var(--hero), calc(100% - 26vw));
  margin: var(--space) 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 52px;
  padding: 0 9px;
}

.hero-bar .btn {
  justify-self: center;
}

.hero-date {
  font-size: clamp(16px, 1.35vw, 20px);
  letter-spacing: 0.03em;
  line-height: 1.25;
  font-weight: 700;
  justify-self: start;
}

.platforms {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-self: end;
  gap: 10.8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platforms span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.platforms svg {
  width: 16px;
  height: 16px;
}

.scroll-cue {
  width: 36px;
  height: 36px;
  margin: 22px auto 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  animation: bob 1.8s var(--ease) infinite;
}

.scroll-cue span {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(45deg);
  opacity: 0.7;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

.look-section {
  background: #0c0d1b;
}

.look-stage {
  position: absolute;
  inset: 0;
}

.look-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../assets/img/extended-look.jpg") center 62% / cover no-repeat;
}

.look-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #07070f;
  opacity: 0.22;
  pointer-events: none;
}

.look-copy {
  position: absolute;
  top: calc(var(--header) + 16px);
  left: 50%;
  width: min(var(--page), calc(100% - var(--gutter) * 2));
  text-align: center;
  z-index: 2;
  text-shadow: 0 12px 46px rgba(0, 0, 0, 0.55);
  transform: translateX(-50%);
}

.look-copy h1,
.page-hero h1,
.story-copy h1,
.story-copy h2,
.banner-copy h1,
.banner-copy h2 {
  font-weight: 500;
  letter-spacing: 0.06em;
}

.look-copy h1 {
  font-size: clamp(42px, 6.6vw, 84px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.08;
}

.look-copy p {
  margin-top: 14px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 32px);
  color: var(--look-sub);
}

.look-copy .look-note {
  max-width: 38em;
  margin: 16px auto 0;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 700;
  color: #fff;
}

.look-register {
  position: absolute;
  left: 50%;
  bottom: 88px;
  z-index: 8;
  min-width: 220px;
  min-height: 64px;
  padding: 0 36px;
  font-size: 18px;
  transform: translateX(-50%);
}

.look-register:hover {
  transform: translate(-50%, -3px);
}

.page-home .look-section + .banners {
  padding-top: 80px;
}

.look-play {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.look-play.is-on {
  pointer-events: auto;
}

.play-orb {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  color: #fff;
}

.play-orb svg {
  width: 100%;
  height: 100%;
  display: block;
}

.look-play .play-orb {
  opacity: 0;
}

.trailers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space);
  padding: 72px 0;
}

.page-home .trailers {
  position: relative;
  z-index: 6;
  gap: 32px;
  width: min(1120px, calc(100% - 80px));
  margin: -58vh auto 0;
  padding: 0 0 96px;
  background: transparent;
  will-change: transform;
}

.trailer-card button {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  background: var(--card);
}

.page-home .trailer-card button {
  border-radius: 28px;
  aspect-ratio: 6 / 5;
}

.trailer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.trailer-card button:hover img {
  transform: scale(1.04);
}

.trailer-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 36px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.page-home .trailer-meta {
  display: none;
}

.trailer-meta small {
  display: block;
  font-size: 12px;
  color: #ffffff;
  margin-bottom: 8px;
}

.trailer-meta strong {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  color: var(--cream);
}

.trailer-2 button {
  background: var(--trailer-2);
}

.trailer-1 button {
  background: var(--trailer-1);
}

.banners {
  display: grid;
  gap: var(--space);
  padding-bottom: var(--space);
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.banner {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
}

.banner-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 420px;
}

.banner-media {
  position: relative;
  background: var(--bg);
}

.banner-media img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-logo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(46%, 240px);
  transform: translate(-50%, -50%);
}

.banner-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
  padding: 48px;
  background: transparent;
  color: var(--text);
}

.banner-copy .btn {
  justify-self: start;
}

.banner-copy h2,
.banner-copy h1 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}

.banner-copy p {
  max-width: 34ch;
}

.banner-cover {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: center;
}

.banner-cover > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 8, 14, 0.22), rgba(10, 8, 14, 0.04) 48%, transparent);
}

.banner-right {
  justify-items: end;
  text-align: right;
}

.banner-right .banner-copy {
  justify-items: end;
}

.banner-right .banner-copy .btn {
  justify-self: end;
}

.banner-right::after {
  background: linear-gradient(270deg, rgba(10, 8, 14, 0.28), rgba(10, 8, 14, 0.04) 50%, transparent);
}

.on-dark {
  position: relative;
  z-index: 1;
  background: none;
  color: var(--text);
  padding: 56px 64px;
}

.on-dark h2,
.on-dark h1 {
  color: var(--cream);
}

.on-dark p:not(.kicker) {
  color: var(--text);
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.kicker.light,
.page-hero .kicker {
  color: var(--cream);
}

.story {
  margin: 0;
  background: #111322;
  position: relative;
}

.story-visual {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.story-visual img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center 28%;
  will-change: transform;
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 28% 0 0;
  background: linear-gradient(
    180deg,
    rgba(17, 19, 34, 0) 0%,
    rgba(17, 19, 34, 0.28) 28%,
    rgba(17, 19, 34, 0.72) 62%,
    #111322 100%
  );
  pointer-events: none;
}

.story-bg {
  position: absolute;
  inset: 0;
}

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

.story-copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-top: -42vh;
  padding: 0 0 22vh;
}

.story-copy h2,
.story-copy h1 {
  color: var(--story-title);
  font-size: clamp(48px, 6.4vw, 72px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.story-copy p {
  color: var(--story-body);
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.28;
  max-width: 20em;
}

.story-page {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-content: center;
}

.story-page .story-copy {
  margin-top: 0;
  padding: 12vh 0 18vh;
}

.access {
  margin: 48px auto 24px;
  padding: 56px 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  background: #111117;
  scroll-margin-top: calc(var(--header) + 16px);
}

.access h2 {
  margin: 12px 0 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}

.access > p,
.access-copy {
  max-width: 42ch;
  margin: 0 auto 18px;
  color: var(--muted);
}

.access-copy {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.access.is-in .access-copy {
  opacity: 1;
  transform: none;
}

.access-left {
  color: var(--news) !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.access-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  max-width: 520px;
  margin: 28px auto 0;
}

.captcha-box {
  min-height: 0;
  display: flex;
  justify-content: center;
}

.captcha-box:empty {
  display: none;
}

.access-form input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0c0d1b;
  color: #fff;
}

.news {
  padding: 80px 0 40px;
}

.news-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: var(--space);
}

.news-head h2,
.tracklist h2 {
  font-size: 32px;
  font-weight: 500;
  color: var(--text);
}

.text-link {
  color: var(--news);
  font-size: 15px;
}

.text-link:hover {
  color: var(--cream);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space);
}

.news-card {
  background: var(--card);
  border-radius: 12.6px;
  overflow: hidden;
  padding-bottom: 22px;
  transition: transform 0.35s var(--ease);
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.news-card h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  padding: 20px 20px 10px;
  color: var(--news);
}

.news-card time {
  display: block;
  padding: 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  padding: 72px 0 56px;
}

.footer-logo {
  display: block;
  width: 148px;
  height: auto;
  margin: 0 auto 44px;
}

.propaganda {
  width: min(920px, 100%);
  margin: 0 auto 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #0f101c;
}

.propaganda-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 6px;
}

.r-badge {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  filter: invert(1);
}

.propaganda-copy p:last-child {
  color: var(--muted);
  font-size: 14px;
  max-width: 46ch;
}

.propaganda-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1 1 280px;
  min-width: 0;
  max-width: 100%;
}

.propaganda-fields input,
.preorder-form input:not([type="radio"]),
.preorder-form select {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: #1d1d26;
  color: #fff;
  outline: none;
}

.preorder-form input[type="radio"] {
  appearance: none;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1.5px solid #cfc6cc;
  border-radius: 50%;
  background: transparent;
}

.preorder-form input[type="radio"]:checked {
  border-color: var(--btn-pink);
  box-shadow: inset 0 0 0 4px var(--bg-2), inset 0 0 0 9px var(--btn-pink);
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin: 8px 0 32px;
}

.socials a {
  width: 22px;
  height: 22px;
  color: #c9c0ef;
  opacity: 0.92;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.socials a:hover {
  color: #fff;
  opacity: 1;
  transform: translateY(-1px);
}

.socials svg {
  display: block;
  width: 100%;
  height: 100%;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

.legal-links a,
.legal-links button {
  color: inherit;
  transition: color 0.2s var(--ease);
}

.legal-links a:hover,
.legal-links button:hover {
  color: #fff;
}

.rating-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: 12px;
  text-align: left;
}

.rating-badge {
  width: 42px;
  height: auto;
  flex: 0 0 42px;
  display: block;
}

.inner {
  padding-top: calc(var(--strip) + var(--header) + 28px);
}

.page-hero {
  padding: 28px 0 36px;
}

.page-hero h1,
.article-body h1 {
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.04em;
}

.page-hero p,
.legal-page p {
  max-width: 52ch;
  color: var(--muted);
  margin-top: 12px;
}

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

.edition-list,
.places,
.gallery {
  display: grid;
  gap: 28px;
  padding-bottom: 72px;
}

.edition-row,
.preorder {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.edition-art,
.preorder-art,
.place img,
.shot img,
.article-hero img {
  border-radius: var(--radius);
  overflow: hidden;
}

.edition-art img,
.preorder-art img,
.place img,
.shot img,
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.edition-art,
.preorder-art {
  min-height: 340px;
  background: var(--card);
}

.edition-copy,
.place,
.preorder-form,
.notice,
.cookie-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 36px;
}

.edition-copy,
.place,
.preorder-form,
.notice {
  display: grid;
  gap: 14px;
}

.price {
  color: var(--cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.edition-copy ul,
.tracklist ol {
  list-style: none;
}

.edition-copy li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.places {
  grid-template-columns: repeat(3, 1fr);
}

.place img {
  height: 240px;
  margin-bottom: 8px;
}

.gallery {
  grid-template-columns: repeat(3, 1fr);
}

.shot {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}

.shot img {
  height: 240px;
  border-radius: 0;
}

.shot figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px 18px;
}

.shot small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tracklist {
  padding-bottom: 80px;
}

.tracklist ol {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.tracklist li {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.tracklist em {
  color: var(--muted);
  font-style: normal;
}

.fine {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.article-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 36px;
  height: min(520px, 60vh);
}

.article-body {
  padding-bottom: 80px;
}

.article-body time {
  color: var(--muted);
}

.article-body p {
  margin-top: 18px;
  font-size: 18px;
  max-width: 62ch;
  color: var(--text);
}

.article-body .text-link {
  display: inline-block;
  margin-top: 28px;
}

.legal-page a {
  color: var(--news);
}

.preorder-form label,
.preorder-form fieldset {
  display: grid;
  gap: 8px;
  border: 0;
}

.choice {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-error,
.notice h2 {
  color: var(--cream);
}

.video-modal,
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.82);
  display: grid;
  place-items: center;
  padding: 24px;
}

.video-frame {
  width: min(1100px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 42px;
  line-height: 1;
}

.cookie-card {
  width: min(460px, 100%);
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  background: var(--btn-pink);
  color: var(--btn-pink-text);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.reveal.is-in {
  animation: rise 0.85s var(--ease);
}

@keyframes rise {
  from {
    opacity: 0.35;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .overlay-nav {
    grid-template-columns: 1fr;
  }

  .menu-hero {
    display: none;
  }

  .hero-bar,
  .banner-split,
  .edition-row,
  .preorder,
  .news-grid,
  .trailers {
    grid-template-columns: 1fr;
  }

  .places,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .hero-bar {
    text-align: center;
    gap: 16px;
    width: min(var(--hero), calc(100% - 40px));
  }

  .hero-date,
  .hero-bar .btn,
  .platforms {
    justify-self: center;
  }

  .platforms {
    align-items: center;
  }

  .banner-right,
  .banner-right .banner-copy {
    justify-items: start;
    text-align: left;
  }

  .propaganda,
  .propaganda-fields {
    flex-direction: column;
    border-radius: 24px;
    flex: auto;
  }

  .story-copy p {
    max-width: none;
  }

  .hero-stage {
    width: min(var(--hero), calc(100% - 40px));
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 18px;
    --header: 68px;
  }

  .header-bar,
  .overlay-top {
    padding: 0 18px;
  }

  .announce {
    letter-spacing: 0.1em;
    font-size: 10px;
    gap: 12px;
    padding: 0 12px;
  }

  .announce span {
    white-space: nowrap;
  }

  .header-cta {
    display: none;
  }

  .wrap,
  .page-banner,
  .article-hero {
    width: min(calc(100% - 28px), var(--page));
  }

  .banner-copy,
  .on-dark,
  .edition-copy,
  .place,
  .preorder-form,
  .access {
    padding: 24px;
  }

  .access-form {
    flex-direction: column;
  }

  .places,
  .gallery,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .look-copy {
    width: calc(100% - 28px);
    padding: 0 4px;
  }

  .look-copy h1 {
    font-size: clamp(28px, 8vw, 44px);
    letter-spacing: 0.06em;
  }

  .look-copy p {
    font-size: clamp(14px, 3.6vw, 18px);
    letter-spacing: 0.12em;
  }

  .look-copy .look-note {
    font-size: clamp(16px, 4vw, 20px);
    margin-top: 12px;
  }

  .look-register {
    bottom: 28px;
    min-width: min(220px, calc(100% - 32px));
    min-height: 52px;
    font-size: 16px;
  }

  .page-home .trailers {
    width: calc(100% - 28px);
    margin-top: -32vh;
  }

  .on-dark {
    padding: 32px 24px;
  }

  .menu-list a,
  .menu-list button[data-acc] {
    font-size: clamp(22px, 8vw, 34px);
  }

  .menu-panel {
    padding: 24px 20px 20px;
  }
}

@media (max-height: 700px) {
  .scroll-cue {
    margin-top: 8px;
  }

  .look-register {
    bottom: 20px;
  }
}

