.shop-page {
  background: #090909;
  color: #f8f8f8;
}

.shop-page .desktop-nav a.active:after {
  width: 100%;
}

.shop-hero {
  position: relative;
  min-height: 62svh;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(12rem, .22fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 7.2rem var(--pad) clamp(2.1rem, 3.6vw, 3.6rem);
  overflow: hidden;
  background: #080808;
}

.shop-backdrop,
.shop-backdrop picture,
.shop-backdrop img,
.shop-shade {
  position: absolute;
  inset: 0;
}

.shop-backdrop picture,
.shop-backdrop img {
  display: block;
  width: 100%;
  height: 100%;
}

.shop-backdrop img {
  object-fit: cover;
  object-position: 52% center;
  filter: contrast(1.12) brightness(.62) saturate(.72);
  transform: scale(1.02);
  animation: shopDrift 18s ease-in-out infinite alternate;
}

.shop-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .48) 54%, rgba(0, 0, 0, .82)),
    linear-gradient(180deg, rgba(0, 0, 0, .16), rgba(0, 0, 0, .96));
}

.shop-hero-content,
.shop-cover {
  position: relative;
  z-index: 2;
}

.shop-kicker {
  margin: 0 0 clamp(.85rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, .58);
  font: 800 .66rem/1 var(--display);
  letter-spacing: .16em;
  text-transform: none;
}

.shop-hero .title {
  margin: 0;
  color: #fff;
  font: 520 clamp(3.2rem, 7.4vw, 8.2rem)/.86 var(--display);
  letter-spacing: -.085em;
  text-transform: none;
  text-shadow: 0 2rem 5rem rgba(0, 0, 0, .78);
}

.shop-hero .flex {
  display: grid;
  grid-template-columns: minmax(3.5rem, .24fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 2.25rem);
  align-items: center;
  width: min(48rem, 100%);
  margin-top: .25rem;
  margin-left: clamp(1rem, 7vw, 8rem);
}

.shop-hero .line {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, .35);
}

.shop-hero .animate-line {
  transform-origin: left;
  animation: shopLine 1.45s cubic-bezier(.2, .8, .2, 1) both;
}

.shop-hero .sub-title {
  width: min(29rem, 100%);
  margin: clamp(1rem, 1.8vw, 1.55rem) 0 1.25rem auto;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(.88rem, 1vw, 1rem);
  line-height: 1.58;
}

.shop-cover {
  justify-self: end;
  width: min(15rem, 20vw);
  margin: 0;
  perspective: 1200px;
}

.shop-cover:before {
  content: "";
  position: absolute;
  inset: 3% auto 3% -7%;
  width: 8%;
  background: linear-gradient(90deg, #050505, #2a2a2a 42%, #060606);
  transform: skewY(-7deg);
  transform-origin: right;
  box-shadow: inset -1px 0 rgba(255, 255, 255, .18);
}

.shop-cover:after {
  content: "";
  position: absolute;
  left: 10%;
  right: 0;
  bottom: -7%;
  height: 10%;
  background: rgba(0, 0, 0, .72);
  filter: blur(24px);
  transform: skewX(-18deg);
}

.shop-cover img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  box-shadow: 0 1.8rem 3.6rem rgba(0, 0, 0, .64);
  transform: rotateY(-7deg) rotateZ(-1deg);
  transform-origin: left center;
}

.preorder {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, .08), transparent 24rem),
    linear-gradient(180deg, #111013, #080808);
  color: #fff;
  border-top-left-radius: clamp(1.6rem, 4vw, 4.8rem);
  border-top-right-radius: clamp(1.6rem, 4vw, 4.8rem);
}

.preorder-grid {
  display: grid;
  grid-template-columns: minmax(14rem, .34fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4.6vw, 5rem);
  align-items: start;
}

.preorder-copy h2 {
  margin: 0;
  color: #fff;
  font: 520 clamp(2.4rem, 4.2vw, 4.8rem)/.94 var(--display);
  letter-spacing: -.065em;
  text-transform: none;
}

.preorder-copy > p:not(.small-label) {
  width: min(25rem, 100%);
  color: rgba(255, 255, 255, .58);
  font-size: .94rem;
  line-height: 1.62;
}

.selected-ticket {
  width: min(18rem, 100%);
  margin-top: clamp(1.4rem, 2.6vw, 2.2rem);
  padding: 1.1rem;
  border: 0;
  border-radius: 1.35rem;
  background: #f4f4f6;
  color: #070a12;
  backdrop-filter: none;
}

.selected-ticket span,
.tier-card span,
.custom-amount label,
.buyer-grid label {
  display: block;
  color: rgba(7, 10, 18, .48);
  font: 760 .7rem/1 var(--display);
  letter-spacing: .04em;
  text-transform: none;
}

.selected-ticket strong,
.selected-ticket b {
  display: block;
  margin-top: .5rem;
}

.selected-ticket strong {
  color: #070a12;
  font-size: .95rem;
  text-transform: uppercase;
}

.selected-ticket b {
  color: #070a12;
  font-size: clamp(1.6rem, 2.8vw, 2.45rem);
  line-height: .9;
}

.preorder-form {
  position: relative;
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.2rem, 2.4vw, 2.2rem);
  border-radius: clamp(1.4rem, 3vw, 2.6rem);
  background: #f4f4f6;
  color: #070a12;
  box-shadow: 0 2.4rem 6rem rgba(0, 0, 0, .3);
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
}

.tier-card {
  min-height: auto;
  display: grid;
  grid-template-columns: 3.1rem 1fr;
  align-items: center;
  gap: .8rem;
  padding: .45rem;
  border: 1px solid rgba(7, 10, 18, .11);
  border-radius: 1.35rem;
  background: transparent;
  color: #070a12;
  cursor: pointer;
  text-align: left;
  transition: transform .35s var(--brilio-ease), border-color .35s var(--brilio-ease), background .35s var(--brilio-ease), box-shadow .35s var(--brilio-ease);
}

.tier-card .item-count {
  display: grid;
  place-items: center;
  align-self: stretch;
  border-radius: 1rem;
  background: rgba(7, 10, 18, .055);
  color: rgba(7, 10, 18, .42);
  font: 900 .76rem/1 var(--display);
  letter-spacing: .04em;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.tier-card .service-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(5rem, .35fr) minmax(0, .65fr);
  gap: .7rem;
  align-items: center;
  padding: .8rem .95rem;
  border-radius: 1.05rem;
  background: rgba(255, 255, 255, .62);
}

.tier-card:hover,
.tier-card:focus-visible,
.tier-card.active {
  transform: translateY(-3px);
  border-color: #070a12;
  background: #070a12;
  color: #fff;
  box-shadow: none;
}

.tier-card:hover .service-content,
.tier-card:focus-visible .service-content,
.tier-card.active .service-content {
  background: transparent;
}

.tier-card:hover .item-count,
.tier-card:focus-visible .item-count,
.tier-card.active .item-count {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .62);
}

.tier-card strong {
  display: block;
  margin: 0;
  color: currentColor;
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  line-height: 1;
  letter-spacing: -.04em;
  text-align: right;
}

.tier-card small {
  display: block;
  grid-column: 1 / -1;
  color: rgba(7, 10, 18, .52);
  font-size: .78rem;
  line-height: 1.35;
}

.tier-card:hover small,
.tier-card:focus-visible small,
.tier-card.active small {
  color: rgba(255, 255, 255, .62);
}

.custom-amount,
.buyer-grid {
  display: grid;
  gap: .5rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.amount-input {
  display: flex;
  align-items: center;
  gap: .65rem;
  border-bottom: 1px solid rgba(7, 10, 18, .12);
}

.amount-input span {
  color: rgba(7, 10, 18, .56);
  font-weight: 900;
}

.amount-input input,
.buyer-grid input {
  width: 100%;
  border: 0;
  background: transparent;
  color: #070a12;
  padding: .82rem 0 .88rem;
  font: 650 1rem var(--display);
  outline: none;
}

.amount-input input::placeholder,
.buyer-grid input::placeholder {
  color: rgba(7, 10, 18, .42);
}

.use-custom,
.checkout-button {
  border: 1px solid rgba(7, 10, 18, .78);
  border-radius: 999px;
  background: transparent;
  color: #070a12;
  padding: .84rem 1.08rem;
  cursor: pointer;
  font: 850 .66rem/1 var(--display);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .35s var(--brilio-ease), background .35s var(--brilio-ease), color .35s var(--brilio-ease), opacity .35s var(--brilio-ease);
}

.use-custom {
  justify-self: start;
  padding: .72rem 1rem;
  background: transparent;
  color: #070a12;
}

.use-custom:hover,
.use-custom:focus-visible {
  background: #070a12;
  color: #fff;
  transform: translateY(-2px);
}

.buyer-grid .input-row {
  border-bottom: 1px solid rgba(7, 10, 18, .12);
}

.buyer-grid label {
  margin-top: .55rem;
}

.checkout-button:hover,
.checkout-button:focus-visible {
  background: #070a12;
  color: #fff;
  transform: translateY(-2px);
}

.preorder-form > .checkout-button {
  position: static;
  justify-self: start;
  min-width: clamp(10rem, 16vw, 13rem);
  min-height: 3.35rem;
  border: 1px solid #020511;
  border-radius: 999px;
  background: #020511;
  color: #fff;
  padding: 0 1.45rem;
  font: 850 .72rem/1 var(--display);
  letter-spacing: .08em;
  text-transform: uppercase;
  overflow: hidden;
}

.preorder-form > .checkout-button:before,
.preorder-form > .checkout-button:after {
  content: none;
}

.preorder-form > .checkout-button:hover,
.preorder-form > .checkout-button:focus-visible {
  transform: translateY(-2px);
  background: transparent;
  color: #020511;
}

.checkout-button:disabled {
  cursor: wait;
  opacity: .58;
  transform: none;
}

.pay-status {
  min-height: 1.4em;
  margin: .1rem 0 0;
  color: rgba(7, 10, 18, .58);
  font-size: .78rem;
  line-height: 1.45;
}

body.light-theme.shop-page {
  background: #f4f0ea;
}

body.light-theme .preorder {
  background: linear-gradient(180deg, #f8f5ef, #ebe5dc);
  color: #111;
}

body.light-theme .preorder-copy h2,
body.light-theme .selected-ticket strong,
body.light-theme .tier-card,
body.light-theme .amount-input input,
body.light-theme .buyer-grid input {
  color: #111;
}

body.light-theme .preorder-copy > p:not(.small-label),
body.light-theme .tier-card small,
body.light-theme .pay-status {
  color: rgba(0, 0, 0, .62);
}

body.light-theme .selected-ticket,
body.light-theme .tier-card,
body.light-theme .custom-amount,
body.light-theme .buyer-grid {
  border-color: rgba(0, 0, 0, .13);
  background: rgba(255, 255, 255, .5);
}

body.light-theme .preorder-form,
body.light-theme .selected-ticket {
  background: #f4f4f6;
}

body.light-theme .tier-card.active {
  border-color: #070a12;
  background: #070a12;
  color: #fff;
}

body.light-theme .selected-ticket span,
body.light-theme .tier-card span,
body.light-theme .custom-amount label,
body.light-theme .buyer-grid label {
  color: rgba(0, 0, 0, .54);
}

body.light-theme .use-custom {
  border-color: #111;
  color: #111;
}

body.light-theme .use-custom:hover,
body.light-theme .use-custom:focus-visible {
  background: #111;
  color: #fff;
}

@keyframes shopDrift {
  to {
    transform: scale(1.06) translate3d(-1%, -.7%, 0);
  }
}

@keyframes shopLine {
  from {
    transform: scaleX(0);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .shop-hero,
  .preorder-grid {
    grid-template-columns: 1fr;
  }

  .shop-cover {
    justify-self: start;
    width: min(13.5rem, 48vw);
  }
}

@media (max-width: 760px) {
  .shop-hero {
    min-height: auto;
    padding-top: 6.4rem;
  }

  .shop-hero h1 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .shop-hero .title {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  .shop-hero .flex {
    grid-template-columns: minmax(2.8rem, .22fr) 1fr;
    margin-left: 0;
  }

  .shop-hero .sub-title {
    margin-left: 0;
  }

  .tier-card {
    grid-template-columns: 2.7rem 1fr;
  }

  .tier-card .service-content {
    grid-template-columns: 1fr;
  }

  .tier-card strong {
    text-align: left;
  }

  .preorder-form > .checkout-button {
    position: static;
    width: 100%;
    aspect-ratio: auto;
    min-height: 3.35rem;
    font-size: .66rem;
  }

  .preorder-form > .checkout-button:after {
    content: none;
  }

  .preorder-form > .checkout-button:before {
    content: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-backdrop img {
    animation: none;
  }
}
