:root {
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --line: rgba(255, 255, 255, 0.18);
  --panel: rgba(7, 7, 7, 0.68);
  --pan-x: 0px;
  --pan-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #000000;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  background: #000000;
  overflow-x: hidden;
  user-select: none;
}

.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;
}

.coming-soon {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  touch-action: pan-y;
}

.topo-wash {
  position: fixed;
  inset: -22vh -18vw;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 82% 78%, rgba(182, 211, 255, 0.12), transparent 20%),
    #000000;
  opacity: 0.94;
  transform: translate3d(calc(var(--pan-x) * 0.2), calc(var(--pan-y) * 0.2), 0);
}

.coming-soon::after {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 48vh;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 196, 32, 0.18), rgba(255, 196, 32, 0.08) 34%, transparent 72%),
    linear-gradient(180deg, transparent, rgba(255, 196, 32, 0.06));
  content: "";
  pointer-events: none;
}

.drop-preview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.74fr);
  align-items: center;
  gap: clamp(24px, 5vw, 76px);
  width: min(100% - clamp(28px, 7vw, 108px), 1180px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 96px) 0;
}

.drop-copy {
  max-width: 570px;
}

.drop-kicker {
  width: fit-content;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 205, 45, 0.42);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255, 219, 93, 0.94);
  background: rgba(255, 196, 32, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.drop-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 6vw, 5.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
}

.drop-copy p:not(.drop-kicker) {
  max-width: 470px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.98rem, 1.4vw, 1.15rem);
  font-weight: 700;
  line-height: 1.7;
}

.package-figure {
  position: relative;
  margin: 0;
}

.package-figure::before {
  display: none;
}

.package-figure img {
  display: block;
  width: min(100%, 470px);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 36px 54px rgba(0, 0, 0, 0.54));
  pointer-events: none;
  -webkit-user-drag: none;
}

@media (max-width: 860px) {
  body {
    overflow: auto;
  }

  .coming-soon {
    position: relative;
    min-height: 100svh;
  }

  .drop-preview {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(100% - 28px, 540px);
    min-height: auto;
    padding: 48px 0 68px;
  }

  .drop-copy {
    order: 2;
  }

  .package-figure {
    order: 1;
  }

  .package-figure::before {
    position: absolute;
    inset: 14% 4% 7%;
    z-index: -1;
    display: block;
    border-radius: 40%;
    background: rgba(255, 196, 32, 0.2);
    content: "";
    filter: blur(58px);
  }

  .package-figure img {
    width: min(100%, 390px);
  }

  .drop-copy h2 {
    font-size: clamp(2rem, 9.6vw, 3.35rem);
  }
}
