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

:root {
  color-scheme: dark;
  --bg: #050508;
  --panel: rgba(12, 12, 16, 0.72);
  --ink: #f4efe6;
  --mute: rgba(244, 239, 230, 0.7);
  --line: rgba(244, 239, 230, 0.16);
  --gold: #d8b48a;
  --play: #f4efe6;
  --play-ink: #0b0b0d;
  --radius: 2px;
  --font: "Inter", "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html, body {
  background: #050508;
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  letter-spacing: 0.01em;
  min-height: 100%;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { position: relative; z-index: 1; width: min(1280px, calc(100% - 2.4rem)); margin: 0 auto; }

.mood {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #050506;
}
.mood-img {
  position: absolute;
  inset: -12%;
  background: center / cover no-repeat;
  opacity: 0;
  transform: scale(1.06);
  filter: saturate(1.12) brightness(0.92);
  transition: opacity 1.05s ease;
  animation: mood-drift 32s ease-in-out infinite alternate;
  will-change: opacity, transform;
}
.mood-img.is-on { opacity: 1; }
.mood-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 70% at 50% 18%, rgba(8, 8, 10, 0.18) 0%, rgba(8, 8, 10, 0.55) 52%, rgba(5, 5, 6, 0.88) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.62) 0%, rgba(5, 5, 6, 0.22) 28%, rgba(5, 5, 6, 0.55) 62%, rgba(5, 5, 6, 0.94) 100%);
}
@keyframes mood-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.4%, -0.8%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .mood-img { animation: none; transition: none; }
  .carousel .spot { transition: none; }
}
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}
.brand .lockup-line {
  display: block;
  height: 22px;
  width: auto;
  max-width: min(680px, 92vw);
}
.desk .brand .lockup {
  display: block;
  height: auto;
  width: min(26rem, 88vw);
}
.nav { display: flex; align-items: center; gap: 1.15rem; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; }
.nav a { text-decoration: none; color: var(--mute); }
.nav a:hover, .nav a.is-on { color: var(--ink); }
.langs { display: flex; gap: 0.35rem; margin-left: 0.4rem; }
.langs button {
  appearance: none;
  border: 0;
  padding: 0.15rem 0.2rem;
  background: transparent;
  color: var(--mute);
  font: inherit;
  font-weight: 500;
  letter-spacing: 0.16em;
  cursor: pointer;
}
.langs button.is-on, .langs button:hover { color: var(--ink); }
.desk .langs { margin: 0.9rem 0 0; }

.carousel {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: none;
}
.spot {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel) center / cover no-repeat;
  position: relative;
  text-decoration: none;
}
.carousel .spot {
  position: absolute;
  inset: 0;
  min-height: 0;
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.15s ease;
  z-index: 0;
}
.carousel .spot.is-on {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.pips {
  position: absolute;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 3;
  display: flex;
  gap: 0.4rem;
}
.pips button {
  width: 14px;
  height: 2px;
  border: 0;
  padding: 0;
  border-radius: 0;
  background: rgba(244, 239, 230, 0.28);
  cursor: pointer;
}
.pips button.is-on {
  width: 28px;
  background: var(--ink);
}
.spot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,10,0.82) 0%, rgba(8,8,10,0.35) 55%, rgba(8,8,10,0.15) 100%);
}
.spot-copy {
  position: relative;
  z-index: 1;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.55rem;
  max-width: 36rem;
}
.spot-copy .kicker { margin: 0; }
.spot-copy h1 { font-size: clamp(2rem, 4vw, 3.05rem); max-width: none; letter-spacing: 0.04em; font-weight: 500; }
.spot-copy p { color: var(--mute); line-height: 1.55; max-width: 34rem; font-size: 1.02rem; }
.play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.7rem;
  width: fit-content;
  padding: 0.78rem 1.4rem;
  border: 1px solid var(--play);
  border-radius: var(--radius);
  background: var(--play);
  color: var(--play-ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.play:hover { background: var(--gold); border-color: var(--gold); color: var(--play-ink); }
.play.ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.play[aria-disabled="true"] {
  background: transparent;
  color: rgba(244, 239, 230, 0.55);
  border: 1px solid rgba(244, 239, 230, 0.28);
  pointer-events: none;
}

.kicker {
  margin: 2.2rem 0 0.7rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
h1 { font-weight: 500; font-size: clamp(1.8rem, 4vw, 2.7rem); letter-spacing: 0.04em; line-height: 1.12; }
.lede { margin-top: 0.7rem; max-width: 38rem; color: var(--mute); line-height: 1.6; font-size: 1.05rem; }

.rail-title {
  margin: 1.9rem 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.rail {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 1.4rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.rail::-webkit-scrollbar { height: 2px; }
.rail::-webkit-scrollbar-thumb { background: rgba(244,239,230,0.22); border-radius: 0; }
.cover {
  flex: 0 0 260px;
  scroll-snap-align: start;
  text-decoration: none;
  background: rgba(8, 8, 12, 0.55);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: none;
}
.cover:hover { border-color: rgba(244, 239, 230, 0.42); }
.cover .art { aspect-ratio: 16/9; background: #111 center / cover no-repeat; }
.cover .cap { padding: 0.75rem 0.8rem 0.9rem; }
.cover h2 { font-size: 0.92rem; font-weight: 500; letter-spacing: 0.04em; }
.cover .meta { margin-top: 0.22rem; font-size: 0.72rem; color: var(--mute); letter-spacing: 0.08em; }

.product {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.5rem;
  margin: 0.6rem 0 1.2rem;
  align-items: start;
}
.product-art {
  display: block;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background: #111 center / cover no-repeat;
  border: 1px solid var(--line);
}
a.product-art:hover { border-color: var(--gold); }
.product-info h1 { font-size: clamp(1.8rem, 3vw, 2.55rem); }
.publisher { margin-top: 0.35rem; color: var(--mute); font-size: 0.85rem; letter-spacing: 0.04em; }
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0.4rem;
}
.facts span {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(216,180,138,0.35);
  padding: 0.28rem 0.5rem;
  border-radius: var(--radius);
}
.shots {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.2rem 0 1.4rem;
  scroll-snap-type: x mandatory;
}
.shots img {
  flex: 0 0 320px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  scroll-snap-align: start;
  border: 1px solid var(--line);
}
.article { max-width: 44rem; padding-bottom: 3.5rem; }
.article p { color: var(--mute); line-height: 1.7; margin: 0.85rem 0; }
.article h2 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 1.7rem;
  color: var(--ink);
}

.desk {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 1.4rem 0 3.5rem;
}
.desk .brand { margin-bottom: 1.6rem; }
.desk h1 { margin-top: 0.35rem; }
.tickets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 1.5rem 0 1.2rem;
}
.ticket {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  text-align: left;
  padding: 1.25rem 1.15rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 12, 16, 0.72);
  color: inherit;
  cursor: pointer;
  font: inherit;
}
.ticket:hover, .ticket.is-on { border-color: rgba(216, 180, 138, 0.7); }
.ticket.is-on { background: rgba(28, 24, 20, 0.9); }
.ticket .name {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.ticket .price { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 500; letter-spacing: 0.02em; }
.ticket .blurb { color: var(--mute); font-size: 0.88rem; line-height: 1.4; }
.paybar { display: grid; gap: 0.85rem; max-width: 28rem; }
.ways {
  margin-top: 0.2rem;
  color: var(--mute);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gift {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--mute);
  letter-spacing: 0;
  text-transform: none;
}
.gift input { width: auto; margin: 0; }
.redeem {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  max-width: 28rem;
}
.redeem .row { display: flex; gap: 0.5rem; margin-top: 0.55rem; }
.redeem input { margin: 0; }
.redeem .play { width: auto; margin-top: 0; }
.staff { margin-top: 2rem; max-width: 28rem; }
form.staff { display: grid; gap: 0.85rem; }
.staff summary {
  cursor: pointer;
  color: var(--mute);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.voucher-box {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(216, 180, 138, 0.45);
  border-radius: var(--radius);
  font-size: 1.15rem;
  letter-spacing: 0.18em;
}
.door { position: relative; z-index: 1; min-height: 100vh; display: grid; place-items: center; padding: 2rem 1rem; }
.card {
  width: min(420px, 100%);
  border: 1px solid var(--line);
  padding: 2.1rem 1.7rem 1.7rem;
  background: rgba(12, 12, 16, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius);
}
.card h1 { font-size: 1.35rem; }
.card form { display: grid; gap: 0.75rem; margin-top: 1.4rem; }
label { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); }
input {
  width: 100%;
  margin-top: 0.28rem;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  background: #0b0b0d;
  color: var(--ink);
  font: inherit;
  border-radius: var(--radius);
}
input:focus { outline: 1px solid var(--gold); }
button.play { cursor: pointer; width: 100%; justify-content: center; }
.err { color: #e8a090; font-size: 0.85rem; min-height: 1.2em; }
.note { margin-top: 1.1rem; color: var(--mute); font-size: 0.78rem; line-height: 1.45; }

@media (max-width: 900px) {
  .wrap { width: min(1280px, calc(100% - 1.6rem)); }
  .top {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding: 0.85rem 0 0.7rem;
  }
  .brand { width: 100%; }
  .brand .lockup-line {
    height: auto;
    width: min(100%, 22rem);
    max-width: 100%;
  }
  .desk .brand .lockup {
    width: min(100%, 18rem);
  }
  .nav {
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    gap: 0.45rem;
  }
  .langs { margin-left: 0; }
  .spot, .product, .carousel { grid-template-columns: 1fr; }
  .spot, .carousel { min-height: 320px; }
  .shots img { flex-basis: 78vw; height: 44vw; }
  .rail { gap: 0.7rem; }
  .cover { flex-basis: min(78vw, 20rem); }
  .spot::after {
    background: linear-gradient(180deg, rgba(8,8,10,0.12) 0%, rgba(8,8,10,0.72) 58%, rgba(8,8,10,0.92) 100%);
  }
  .spot-copy { padding: 1.35rem 1.15rem 1.5rem; max-width: none; }
  .spot-copy h1 { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .spot-copy p { font-size: 1.05rem; line-height: 1.5; color: rgba(244,239,230,0.88); }
  .kicker { font-size: 0.72rem; letter-spacing: 0.18em; }
  .rail-title { font-size: 0.72rem; }
  .cover h2 { font-size: 1.02rem; }
  .cover .meta { font-size: 0.82rem; }
  .play { font-size: 0.78rem; padding: 0.88rem 1.35rem; letter-spacing: 0.14em; }
  .product-info h1 { font-size: clamp(1.9rem, 8vw, 2.45rem); }
  .lede { font-size: 1.08rem; }
  .article p { font-size: 1.05rem; }
  .card h1 { font-size: 1.6rem; }
  .card .lede, .note { font-size: 1rem; }
  input { font-size: 1.05rem; padding: 0.85rem 0.8rem; }
  .tickets { grid-template-columns: 1fr; }
  .desk { width: min(100% - 1.6rem, 980px); padding-top: max(1.2rem, env(safe-area-inset-top)); }
}
