@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/inter-cyrillic.woff2?v=drop01-performance-v1") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2?v=drop01-performance-v1") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --black: #000;
  --white: #fff;
  --muted: rgba(255, 255, 255, 0.58);
  --faint: rgba(255, 255, 255, 0.22);
  --line: rgba(255, 255, 255, 0.38);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  line-height: 1.4;
  overflow-x: clip;
}

body.is-intro-active {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
  touch-action: manipulation;
}

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

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

@keyframes merchReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity 900ms ease, visibility 900ms ease;
}

body.is-ready .intro-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.intro-skip {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 55;
  min-width: 54px;
  min-height: 38px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  cursor: pointer;
}

.intro-skip:hover,
.intro-skip:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.54);
  outline: none;
}

.merch-page {
  width: min(1440px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 48px 54px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms ease 320ms, transform 900ms ease 320ms;
}

body.is-ready .merch-page,
body:not(.is-intro-active) .merch-page {
  opacity: 1;
  transform: none;
}

.merch-topbar,
.drop-kicker,
.countdown,
.drop-subtitle,
.drop-action {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(8px);
}

body.is-ready .merch-topbar,
body.is-ready .drop-kicker,
body.is-ready .countdown,
body.is-ready .drop-subtitle,
body.is-ready .drop-action {
  animation: merchReveal 760ms var(--ease-out) forwards;
}

body.is-ready .merch-topbar {
  animation-delay: 120ms;
}

body.is-ready .drop-kicker {
  animation-delay: 220ms;
}

body.is-ready .countdown {
  animation-delay: 330ms;
}

body.is-ready .drop-subtitle {
  animation-delay: 460ms;
}

body.is-ready .drop-action {
  animation-delay: 720ms;
}

.merch-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
}

.merch-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.merch-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
}

.merch-back:hover,
.merch-back:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}

.drop-hero {
  padding: 36px 0 34px;
  text-align: center;
}

.drop-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.drop-hero h1 {
  margin: 28px auto 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 500;
  text-transform: uppercase;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: start;
  justify-content: center;
  gap: 34px;
  margin: 48px auto 0;
}

.countdown-item {
  min-width: 156px;
  text-align: center;
}

.countdown-item span {
  display: block;
  font-size: 116px;
  line-height: 0.88;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.countdown-item small {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.countdown-separator {
  display: block;
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 92px;
  line-height: 0.88;
  font-weight: 300;
}

.drop-subtitle {
  max-width: 620px;
  margin: 46px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.6;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  align-items: start;
  padding: 22px 0 18px;
}

.product {
  display: grid;
  gap: 18px;
  width: 100%;
  min-width: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  text-align: center;
  opacity: 0;
  transform: translateY(22px) scale(0.97);
  transition:
    opacity 700ms var(--ease-out),
    transform 520ms var(--ease-soft);
  transition-delay: calc(520ms + (var(--product-index, 0) * 90ms));
}

.product:nth-child(1) {
  --product-index: 0;
}

.product:nth-child(2) {
  --product-index: 1;
}

.product:nth-child(3) {
  --product-index: 2;
}

body.is-ready .product {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.is-ready .product:hover,
body.is-ready .product:focus-visible {
  transform: translateY(-6px) scale(1.01);
  transition-delay: 0ms;
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: visible;
  background: transparent;
  isolation: isolate;
}

.product-stage picture,
.sheet-media picture {
  display: contents;
}

.product-stage img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: 100%;
  object-fit: contain;
  transform: translateY(0) scale(1);
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.78));
  transition:
    transform 620ms var(--ease-out),
    filter 620ms var(--ease-out),
    opacity 480ms ease;
  will-change: transform;
}

.product:hover .product-stage img,
.product:focus-visible .product-stage img {
  transform: translateY(-18px) scale(1.035);
  filter:
    drop-shadow(0 42px 48px rgba(0, 0, 0, 0.92))
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.24))
    drop-shadow(0 0 42px rgba(255, 255, 255, 0.2))
    drop-shadow(0 18px 78px rgba(255, 255, 255, 0.16));
}

.product:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: 12px;
}

.product-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.product-note {
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  text-transform: uppercase;
}

.product-price {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.drop-action {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 20px 0 4px;
  text-align: center;
}

.preorder-button,
.sheet-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 56px;
  padding: 14px 28px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    background 260ms ease,
    color 260ms ease,
    border-color 260ms ease,
    box-shadow 360ms ease,
    transform 360ms var(--ease-soft);
}

.preorder-button:hover,
.preorder-button:focus-visible,
.sheet-button:hover,
.sheet-button:focus-visible {
  color: #000;
  background: #fff;
  border-color: #fff;
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  outline: none;
}

.drop-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 500;
}

.product-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 28px;
  visibility: hidden;
  pointer-events: none;
}

.product-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
}

.product-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  cursor: pointer;
  transition: opacity 460ms ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.product-overlay.is-open .product-overlay-backdrop {
  opacity: 1;
}

.product-sheet {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 34px;
  width: min(1040px, 100%);
  max-height: min(88vh, 820px);
  padding: clamp(22px, 3vw, 42px);
  overflow: auto;
  background:
    radial-gradient(ellipse at 30% 42%, rgba(255, 255, 255, 0.11), transparent 56%),
    #020202;
  transform: translateY(42px) scale(0.9);
  opacity: 0;
  filter: blur(10px);
  transition:
    transform 620ms var(--ease-out),
    opacity 360ms ease,
    filter 620ms var(--ease-out);
}

.product-overlay.is-open .product-sheet {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.sheet-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.sheet-close:hover,
.sheet-close:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.sheet-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  background: transparent;
  isolation: isolate;
}

.sheet-media img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 68vh;
  object-fit: contain;
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  filter:
    drop-shadow(0 30px 36px rgba(0, 0, 0, 0.85))
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.12));
  transition:
    opacity 520ms ease 120ms,
    transform 720ms var(--ease-out) 120ms,
    filter 720ms var(--ease-out) 120ms;
}

.product-overlay.is-open .sheet-media img {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sheet-copy {
  padding: 8px 0;
}

.sheet-copy > * {
  opacity: 0;
  transform: translateY(12px);
}

.product-overlay.is-open .sheet-copy > * {
  animation: merchReveal 560ms var(--ease-out) forwards;
}

.product-overlay.is-open .sheet-copy > :nth-child(1) {
  animation-delay: 120ms;
}

.product-overlay.is-open .sheet-copy > :nth-child(2) {
  animation-delay: 170ms;
}

.product-overlay.is-open .sheet-copy > :nth-child(3) {
  animation-delay: 220ms;
}

.product-overlay.is-open .sheet-copy > :nth-child(4) {
  animation-delay: 270ms;
}

.sheet-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.sheet-copy p:first-child {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.sheet-copy h2 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 500;
}

.payment-panel {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.payment-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.payment-panel-top span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-panel-top strong {
  color: #fff;
  font-size: 20px;
}

.payment-panel p,
.payment-panel small {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.payment-panel p strong {
  color: #fff;
  white-space: nowrap;
}

.manager-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.manager-link {
  display: inline-grid;
  place-items: center;
  position: relative;
  width: 44px;
  height: 38px;
  min-width: 44px;
  min-height: 38px;
  padding: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.22);
  overflow: visible;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 320ms ease,
    transform 320ms var(--ease-soft);
}

.manager-link::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  opacity: 0;
  filter: blur(18px);
  transform: translateY(8px) scale(0.68);
  transition:
    opacity 320ms ease,
    transform 320ms var(--ease-soft);
}

.manager-link img {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  object-fit: contain;
  transform: translateY(0) scale(1);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.55));
  transition:
    filter 320ms ease,
    transform 320ms var(--ease-soft);
}

.manager-link:hover,
.manager-link:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.14);
  transform: translateY(-4px) scale(1.04);
  outline: none;
}

.manager-link:hover::before,
.manager-link:focus-visible::before {
  opacity: 0.72;
  transform: translateY(0) scale(1);
}

.manager-link:hover img,
.manager-link:focus-visible img {
  transform: translateY(-2px) scale(1.08);
  filter:
    drop-shadow(0 12px 16px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.45));
}

.manager-link-max img {
  border-radius: 7px;
}

.sheet-button {
  margin-top: 22px;
  cursor: pointer;
}

.order-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.size-field {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.size-field legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.size-field label {
  min-width: 0;
}

.size-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-field span {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.size-field input:checked + span,
.size-field input:focus-visible + span {
  color: #000;
  background: #fff;
  border-color: #fff;
}

.contact-field {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-field legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-option {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.24);
  position: relative;
  overflow: visible;
  cursor: pointer;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 320ms ease,
    transform 320ms var(--ease-soft);
}

.contact-option::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  opacity: 0;
  filter: blur(18px);
  transform: translateY(8px) scale(0.68);
  transition:
    opacity 320ms ease,
    transform 320ms var(--ease-soft);
}

.contact-option img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.55));
  transition:
    filter 320ms ease,
    transform 320ms var(--ease-soft);
}

.contact-option img[src$="max.png"] {
  border-radius: 7px;
}

.contact-field input:checked + .contact-option,
.contact-field input:focus-visible + .contact-option,
.contact-field label:hover .contact-option {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.14);
  transform: translateY(-3px) scale(1.03);
}

.contact-field input:checked + .contact-option::before,
.contact-field input:focus-visible + .contact-option::before,
.contact-field label:hover .contact-option::before {
  opacity: 0.72;
  transform: translateY(0) scale(1);
}

.contact-field input:checked + .contact-option img,
.contact-field input:focus-visible + .contact-option img,
.contact-field label:hover .contact-option img {
  transform: translateY(-2px) scale(1.08);
  filter:
    drop-shadow(0 12px 16px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.45));
}

.order-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(104px, 0.34fr);
  gap: 12px;
}

.order-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.order-field span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.order-field input {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  outline: none;
}

.order-field input:focus {
  border-color: rgba(255, 255, 255, 0.74);
}

.order-field input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.order-field:not(.order-field-qty) {
  grid-column: 1 / -1;
}

.order-field-qty {
  grid-column: 1 / 2;
  max-width: 160px;
}

.order-status {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.order-status.is-error {
  color: #ff8f8f;
}

.order-status.is-success {
  color: #baffd1;
}

.order-status.is-warning {
  color: #ffe3a3;
}

.order-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  pointer-events: none;
}

.order-success-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
}

.order-success-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  cursor: pointer;
  transition: opacity 320ms ease;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.order-success-overlay.is-open .order-success-backdrop {
  opacity: 1;
}

.order-success-card {
  position: relative;
  z-index: 2;
  width: min(460px, 100%);
  padding: 42px 30px 30px;
  color: #fff;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.13), transparent 56%),
    #050505;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: opacity 260ms ease, transform 420ms var(--ease-out);
}

.order-success-overlay.is-open .order-success-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.order-success-kicker {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.order-success-card h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 600;
}

.order-success-card p {
  margin: 16px auto 0;
  max-width: 330px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.order-success-links {
  justify-content: center;
  margin-top: 20px;
}

.order-success-button {
  margin-top: 26px;
}

@media (max-width: 1100px) {
  .merch-page {
    padding: 22px 28px 46px;
  }

  .countdown {
    gap: 20px;
  }

  .countdown-item {
    min-width: 124px;
  }

  .countdown-item span {
    font-size: 92px;
  }

  .countdown-separator {
    font-size: 72px;
  }

  .products {
    gap: 22px;
  }
}

@media (max-width: 760px) {
  .intro-video {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    max-width: none;
    object-fit: contain;
  }

  .merch-page {
    min-height: 100svh;
    padding: 12px 16px calc(92px + env(safe-area-inset-bottom));
  }

  .merch-topbar {
    min-height: 40px;
  }

  .merch-brand {
    min-height: 32px;
    font-size: 12px;
  }

  .merch-back {
    min-height: 32px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .drop-hero {
    padding: 18px 0 10px;
  }

  .drop-kicker {
    font-size: 12px;
  }

  .drop-hero h1 {
    margin-top: 22px;
    font-size: 22px;
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-top: 20px;
  }

  .countdown-separator {
    display: none;
  }

  .countdown-item {
    min-width: 0;
  }

  .countdown-item span {
    font-size: 42px;
  }

  .countdown-item small {
    margin-top: 8px;
    font-size: 9px;
  }

  .drop-subtitle {
    margin-top: 18px;
    font-size: 12px;
    letter-spacing: 0.12em;
    line-height: 1.35;
    white-space: nowrap;
  }

  .products {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0 18px;
  }

  .product {
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
    padding: 18px 14px 20px;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.11);
    transform: translateY(18px) scale(0.98);
  }

  .product-stage {
    width: 100%;
    aspect-ratio: 1.18 / 1;
    overflow: hidden;
  }

  .product-stage img {
    width: 104%;
    max-width: 104%;
    max-height: 104%;
  }

  .product-title {
    font-size: 18px;
    line-height: 1.15;
  }

  .product-note {
    min-height: 1em;
    font-size: 12px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .product-price {
    font-size: 13px;
  }

  .product:active .product-stage img {
    transform: translateY(-7px) scale(1.025);
    filter:
      drop-shadow(0 24px 34px rgba(0, 0, 0, 0.9))
      drop-shadow(0 0 18px rgba(255, 255, 255, 0.2))
      drop-shadow(0 8px 42px rgba(255, 255, 255, 0.14));
  }

  .drop-action {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    justify-items: center;
    gap: 0;
    padding: 12px 16px calc(10px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000 30%, #000 100%);
    pointer-events: none;
  }

  .preorder-button,
  .sheet-button {
    width: 100%;
    min-width: 0;
  }

  .preorder-button {
    max-width: 358px;
    min-height: 48px;
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.42);
    font-size: 13px;
    pointer-events: auto;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .drop-action p {
    display: none;
  }

  .product-overlay {
    align-items: end;
    padding: 6px;
  }

  .product-sheet {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    max-height: calc(100vh - 12px);
    max-height: calc(100svh - 12px);
    padding: 14px 14px calc(14px + env(safe-area-inset-bottom));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(34px) scale(0.96);
    overscroll-behavior: contain;
  }

  .product-overlay.is-open .product-sheet {
    transform: translateY(0) scale(1);
  }

  .sheet-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 23px;
    background: rgba(0, 0, 0, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .sheet-media {
    min-height: clamp(250px, 68vw, 360px);
  }

  .sheet-media img {
    width: auto;
    max-width: min(100%, 390px);
    max-height: min(40vh, 360px);
  }

  .sheet-copy h2 {
    margin: 3px 0 6px;
    font-size: 22px;
  }

  .sheet-copy p:first-child {
    font-size: 12px;
  }

  #sheetText {
    display: none;
  }

  .payment-panel {
    gap: 8px;
    margin-top: 12px;
    padding: 12px;
  }

  .payment-panel-top strong {
    font-size: 18px;
  }

  .payment-panel p,
  .payment-panel small {
    font-size: 12px;
  }

  .manager-link {
    width: 40px;
    height: 34px;
    min-width: 40px;
    min-height: 34px;
    padding: 6px;
  }

  .manager-link img {
    width: 22px;
    height: 22px;
  }

  .order-form {
    gap: 10px;
    margin-top: 12px;
  }

  .size-field {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
  }

  .contact-field {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .size-field legend,
  .contact-field legend {
    margin-bottom: 0;
    font-size: 11px;
  }

  .size-field span,
  .contact-option {
    min-height: 36px;
  }

  .size-field span {
    font-size: 12px;
  }

  .contact-option img {
    width: 21px;
    height: 21px;
  }

  .order-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .order-field {
    gap: 5px;
  }

  .order-field span {
    font-size: 11px;
  }

  .order-field input {
    min-height: 40px;
    padding: 9px 12px;
  }

  .order-field-qty {
    grid-column: 1;
    max-width: none;
  }

  .sheet-button {
    min-height: 46px;
    margin-top: 2px;
    font-size: 14px;
  }

  .order-status {
    min-height: 16px;
    font-size: 12px;
  }

  .order-success-overlay {
    padding: 6px;
  }

  .order-success-card {
    width: min(360px, 100%);
    padding: 36px 20px calc(20px + env(safe-area-inset-bottom));
  }

  .order-success-card h2 {
    font-size: 26px;
  }

  .order-success-links {
    margin-top: 18px;
  }
}

@media (max-width: 360px) {
  .merch-page {
    padding-right: 12px;
    padding-left: 12px;
  }

  .countdown-item span {
    font-size: 38px;
  }

  .drop-subtitle {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .products {
    gap: 16px;
  }

  .product {
    padding: 15px 12px 17px;
  }

  .product-title {
    font-size: 16px;
  }

  .product-note {
    font-size: 11px;
  }

  .product-price {
    font-size: 12px;
  }
}

@media (max-width: 760px) and (max-height: 700px) {
  .merch-page {
    padding-top: 10px;
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .merch-topbar {
    min-height: 36px;
  }

  .merch-brand,
  .merch-back {
    min-height: 30px;
  }

  .drop-hero {
    padding: 12px 0 8px;
  }

  .countdown {
    margin-top: 14px;
  }

  .countdown-item span {
    font-size: 36px;
  }

  .countdown-item small {
    margin-top: 6px;
  }

  .drop-subtitle {
    margin-top: 14px;
  }

  .products {
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .product {
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 16px;
  }

  .product-note {
    display: block;
  }

  .drop-action {
    padding: 10px 12px calc(8px + env(safe-area-inset-bottom));
  }

  .preorder-button {
    min-height: 46px;
  }

  .product-sheet {
    gap: 6px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  }

  .sheet-media {
    min-height: clamp(190px, 52vw, 260px);
  }

  .sheet-media img {
    width: auto;
    max-width: min(96%, 340px);
    max-height: min(32vh, 260px);
  }

  .sheet-copy h2 {
    font-size: 20px;
  }

  .order-form {
    gap: 8px;
    margin-top: 8px;
  }

  .size-field span {
    min-height: 32px;
  }

  .contact-field span {
    min-height: 32px;
  }

  .order-field input {
    min-height: 38px;
  }

  .sheet-button {
    min-height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  .intro-overlay {
    display: none;
  }

  body.is-intro-active {
    overflow: auto;
  }

  .merch-page {
    opacity: 1;
    transform: none;
  }
}
