/* Mega Buys — logo-led premium launch */

:root {
  --blue: #0344dc;
  --blue-bright: #084de5;
  --blue-deep: #012b9f;
  --blue-dark: #001d73;
  --yellow: #ffc21a;
  --yellow-soft: #ffd460;
  --white: #ffffff;
  --soft-white: #f7f8ff;
  --silver: #cdd7f2;

  --frame-gap: 26px;
  --edge-gap: 46px;

  --pointer-x: 0;
  --pointer-y: 0;
  --ambient-x: 0;
  --ambient-y: 0;

  --font-display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;

  --ease-premium: cubic-bezier(.22, .72, .18, 1);
}

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

html,
body {
  width: 100%;
  min-height: 100%;
}

html {
  background: var(--blue);
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.launch {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.08), transparent 29%),
    radial-gradient(circle at 77% 20%, rgba(255,194,26,.10), transparent 27%),
    linear-gradient(136deg, #0136bb 0%, #0348de 45%, #0036b7 77%, #01298f 100%);
}

.atmosphere,
.atmosphere__base,
.atmosphere__grid,
.atmosphere__perspective,
.grain,
.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.atmosphere {
  z-index: -1;
  overflow: hidden;
  transform:
    translate3d(
      calc(var(--pointer-x) * .85vw + var(--ambient-x) * .70vw),
      calc(var(--pointer-y) * .55vh + var(--ambient-y) * .45vh),
      0
    )
    scale(1.045);
  will-change: transform;
  animation: atmosphere-drift 32s ease-in-out infinite alternate;
}

.atmosphere__base {
  background:
    radial-gradient(circle at 18% 72%, rgba(255,255,255,.055), transparent 31%),
    radial-gradient(circle at 83% 21%, rgba(255,194,26,.11), transparent 25%),
    linear-gradient(120deg, rgba(0,21,102,.26), transparent 40%, rgba(0,20,92,.20)),
    linear-gradient(145deg, #0344dc 0%, #074de3 46%, #0238bd 77%, #012784 100%);
  filter: saturate(1.05) contrast(1.03);
}

.atmosphere__base::before,
.atmosphere__base::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 50%;
}

.atmosphere__base::before {
  top: -21%;
  left: -26%;
  width: 76vw;
  height: 70vw;
  transform: rotate(14deg);
}

.atmosphere__base::after {
  right: -32%;
  bottom: -28%;
  width: 74vw;
  height: 67vw;
  transform: rotate(-12deg);
}

.atmosphere__grid {
  opacity: .20;
  background-image:
    linear-gradient(rgba(255,255,255,.060) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.060) 1px, transparent 1px),
    linear-gradient(rgba(255,194,26,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,194,26,.035) 1px, transparent 1px);
  background-size:
    126px 126px,
    126px 126px,
    504px 504px,
    504px 504px;
  mask-image: radial-gradient(circle at 50% 48%, #000 0 48%, transparent 88%);
  -webkit-mask-image: radial-gradient(circle at 50% 48%, #000 0 48%, transparent 88%);
  animation: grid-drift 40s linear infinite;
}

.atmosphere__perspective {
  top: auto;
  right: -6%;
  bottom: -24%;
  left: -6%;
  height: 58%;
  opacity: .20;
  background-image:
    linear-gradient(rgba(255,255,255,.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 122px 72px;
  transform: perspective(700px) rotateX(67deg) scale(1.24);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, #000, transparent 88%);
  -webkit-mask-image: linear-gradient(to top, #000, transparent 88%);
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(92px);
  will-change: transform, opacity;
}

.ambient--yellow {
  top: -28%;
  right: -10%;
  width: 58vw;
  height: 58vw;
  background: radial-gradient(circle, rgba(255,194,26,.29), rgba(255,194,26,.055) 51%, transparent 73%);
  opacity: .56;
  animation: ambient-yellow 28s ease-in-out infinite alternate;
}

.ambient--white {
  top: 20%;
  left: 35%;
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle, rgba(255,255,255,.19), rgba(255,255,255,.025) 54%, transparent 74%);
  opacity: .40;
  animation: ambient-white 24s ease-in-out infinite alternate;
}

.ambient--blue {
  left: -16%;
  bottom: -34%;
  width: 64vw;
  height: 64vw;
  background: radial-gradient(circle, rgba(0,18,100,.52), rgba(0,29,115,.12) 55%, transparent 74%);
  opacity: .62;
  animation: ambient-blue 31s ease-in-out infinite alternate;
}

.panel {
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(128deg, rgba(255,255,255,.11), rgba(255,255,255,.018) 36%, rgba(255,194,26,.025) 70%, rgba(0,18,90,.08));
  box-shadow:
    inset 25px 17px 52px rgba(255,255,255,.025),
    inset -28px -22px 60px rgba(0,20,92,.30),
    0 42px 110px rgba(0,20,93,.26);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.panel--primary {
  top: 8%;
  right: -10%;
  width: clamp(340px, 40vw, 660px);
  height: clamp(430px, 64vh, 670px);
  border-radius: 22px 0 0 30px;
  transform:
    perspective(1200px)
    rotateY(-16deg)
    rotateX(3deg)
    rotateZ(-2deg)
    translate3d(calc(var(--pointer-x) * .95vw), calc(var(--pointer-y) * .34vh), 0);
  opacity: .48;
  animation: panel-primary 21s ease-in-out infinite alternate;
}

.panel--primary::before {
  content: "";
  position: absolute;
  inset: 7% 8%;
  border: 1px solid rgba(255,255,255,.045);
  border-radius: 14px;
}

.panel__surface {
  position: absolute;
  inset: 11% 10%;
  border: 1px solid rgba(255,255,255,.034);
  background:
    linear-gradient(90deg, transparent 0 24%, rgba(255,255,255,.04) 24.2%, transparent 24.4% 100%),
    linear-gradient(transparent 0 58%, rgba(255,194,26,.035) 58.2%, transparent 58.4% 100%);
}

.panel__edge {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent);
}

.panel__edge--one {
  top: 27%;
  left: 13%;
  width: 72%;
}

.panel__edge--two {
  top: 65%;
  left: 25%;
  width: 54%;
}

.panel--secondary {
  left: -8%;
  bottom: 3%;
  width: clamp(200px, 23vw, 355px);
  height: clamp(155px, 25vh, 250px);
  border-radius: 16px;
  background:
    linear-gradient(128deg, rgba(255,194,26,.21), rgba(255,194,26,.045) 45%, rgba(255,255,255,.025));
  border-color: rgba(255,224,129,.14);
  transform:
    perspective(900px)
    rotateY(18deg)
    rotateX(-4deg)
    rotateZ(6deg)
    translate3d(calc(var(--pointer-x) * -.62vw), calc(var(--pointer-y) * -.28vh), 0);
  opacity: .37;
  animation: panel-secondary 24s ease-in-out infinite alternate;
}

.light-beam {
  position: absolute;
  filter: blur(11px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.light-beam--one {
  top: -47%;
  left: 3%;
  width: 35vw;
  height: 190vh;
  transform: rotate(-35deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.018) 18%,
    rgba(255,255,255,.15) 50%,
    rgba(255,255,255,.024) 77%,
    transparent
  );
  opacity: .44;
  animation: beam-one 17s ease-in-out infinite alternate;
}

.light-beam--two {
  top: -35%;
  right: 10%;
  width: 20vw;
  height: 155vh;
  transform: rotate(21deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,194,26,.08),
    rgba(255,244,210,.07),
    transparent
  );
  opacity: .36;
  animation: beam-two 22s ease-in-out infinite alternate-reverse;
}

.dimension-lines {
  position: absolute;
  inset: 10% 7%;
  opacity: .46;
  animation: dimensions-drift 30s ease-in-out infinite alternate;
}

.dimension-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.19), rgba(255,194,26,.16), transparent);
}

.dimension-line::before,
.dimension-line::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 1px;
  height: 9px;
  background: rgba(255,255,255,.22);
}

.dimension-line::before { left: 0; }
.dimension-line::after { right: 0; }

.dimension-line--one {
  top: 21%;
  left: 10%;
  width: 26%;
  transform: rotate(7deg);
}

.dimension-line--two {
  top: 33%;
  right: 13%;
  width: 23%;
  transform: rotate(-11deg);
}

.dimension-line--three {
  top: 64%;
  left: 17%;
  width: 31%;
  transform: rotate(-14deg);
}

.dimension-line--four {
  right: 18%;
  bottom: 16%;
  width: 28%;
  transform: rotate(12deg);
}

.grain {
  z-index: 10;
  opacity: .050;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.79' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.66'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
  animation: grain-shift .36s steps(2) infinite;
}

.vignette {
  z-index: 11;
  box-shadow:
    inset 0 0 14vw rgba(0,15,82,.48),
    inset 0 -14vh 22vh rgba(0,18,91,.34);
}

.viewport-frame {
  position: absolute;
  z-index: 8;
  inset: var(--frame-gap);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.025),
    0 0 42px rgba(0,25,100,.17);
  pointer-events: none;
}

.viewport-frame::before,
.viewport-frame::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,194,26,.82), transparent);
}

.viewport-frame::before {
  top: -1px;
  left: 13%;
}

.viewport-frame::after {
  right: 12%;
  bottom: -1px;
}

.frame-corner {
  position: absolute;
  width: 35px;
  height: 35px;
  opacity: .72;
}

.frame-corner::before,
.frame-corner::after {
  content: "";
  position: absolute;
}

.frame-corner::before {
  width: 35px;
  height: 1px;
  background: var(--yellow);
}

.frame-corner::after {
  width: 1px;
  height: 35px;
  background: var(--yellow);
}

.frame-corner--top-left {
  top: 17px;
  left: 17px;
}

.frame-corner--bottom-right {
  right: 17px;
  bottom: 17px;
  transform: rotate(180deg);
}

.frame-tick {
  position: absolute;
  width: 18px;
  height: 18px;
  opacity: .42;
}

.frame-tick--one {
  top: 21%;
  right: -1px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
}

.frame-tick--two {
  bottom: 22%;
  left: -1px;
  border-left: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}

.reference {
  position: absolute;
  z-index: 12;
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: clamp(.45rem, .45vw, .60rem);
  font-weight: 700;
  letter-spacing: .24em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  animation: reference-in 1.7s .95s var(--ease-premium) forwards;
}

.reference--top-left {
  top: var(--edge-gap);
  left: var(--edge-gap);
}

.reference--top-right {
  top: var(--edge-gap);
  right: var(--edge-gap);
  text-align: right;
}

.reference--bottom-left {
  bottom: var(--edge-gap);
  left: var(--edge-gap);
}

.reference--bottom-right {
  right: var(--edge-gap);
  bottom: var(--edge-gap);
  text-align: right;
}

.status-sequence {
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 42px;
  display: grid;
  gap: 12px;
  width: 24px;
  transform: translateY(-50%);
}

.status-sequence span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  transform-origin: right center;
  animation: status-pulse 8s ease-in-out infinite;
}

.status-sequence span:nth-child(2) { animation-delay: 2s; }
.status-sequence span:nth-child(3) { animation-delay: 4s; }
.status-sequence span:nth-child(4) { animation-delay: 6s; }

.hero {
  position: absolute;
  z-index: 7;
  top: 50%;
  left: 50%;
  width: min(96vw, 1240px);
  padding: 1rem 3rem;
  transform: translate(-50%, -50%);
  text-align: center;
  perspective: 1200px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 46%;
  left: 50%;
  z-index: -1;
  width: min(82vw, 1040px);
  height: min(52vw, 540px);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(255,255,255,.11), rgba(255,255,255,.020) 46%, transparent 73%);
  filter: blur(38px);
  animation: focal-breathe 14s ease-in-out infinite alternate;
}

.hero-marker {
  position: absolute;
  top: 48%;
  width: 24px;
  height: 24px;
  opacity: .64;
  pointer-events: none;
}

.hero-marker::before,
.hero-marker::after {
  content: "";
  position: absolute;
  background: rgba(255,194,26,.90);
}

.hero-marker::before {
  width: 24px;
  height: 1px;
}

.hero-marker::after {
  width: 1px;
  height: 24px;
}

.hero-marker--left {
  left: 1.8%;
  transform: rotate(-45deg);
}

.hero-marker--right {
  right: 1.8%;
  transform: rotate(135deg);
}

.eyebrow {
  position: absolute;
  left: 50%;
  bottom: calc(100% + clamp(.7rem, 1.9vh, 1.35rem));
  width: min(90vw, 800px);
  margin: 0;
  transform: translateX(-50%);
  color: rgba(255,224,120,.92);
  font-size: clamp(.46rem, .54vw, .62rem);
  font-weight: 800;
  letter-spacing: .31em;
  line-height: 1.6;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255,194,26,.12);
}

.eyebrow span {
  display: inline-block;
  margin: 0 .50em;
  color: rgba(255,255,255,.70);
}

.logo-stage {
  position: relative;
  width: min(87vw, 1000px);
  aspect-ratio: 3 / 2;
  margin-inline: auto;
  transform-style: preserve-3d;
  transform:
    rotateX(calc(var(--pointer-y) * -1.0deg))
    rotateY(calc(var(--pointer-x) * 1.25deg))
    translateZ(0);
  will-change: transform;
  animation: logo-float 8s ease-in-out infinite;
}

.logo-stage__primary,
.logo-stage__depth {
  position: absolute;
  inset: 0;
  margin: 0;
  line-height: 0;
}

.logo-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mask-image: radial-gradient(ellipse 78% 76% at 50% 50%, #000 0 70%, rgba(0,0,0,.94) 78%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 78% 76% at 50% 50%, #000 0 70%, rgba(0,0,0,.94) 78%, transparent 100%);
  user-select: none;
  -webkit-user-drag: none;
}

.logo-stage__primary {
  z-index: 3;
  filter:
    contrast(1.045)
    saturate(1.04)
    drop-shadow(0 28px 58px rgba(0,24,110,.48))
    drop-shadow(0 5px 12px rgba(0,22,100,.36));
}

.logo-stage__depth {
  z-index: 1;
  opacity: .31;
  filter:
    blur(1.3px)
    brightness(.56)
    saturate(1.18);
  transform: translate3d(7px, 9px, -24px) scale(.997);
}

.logo-stage__halo {
  position: absolute;
  z-index: 0;
  inset: 15% 7% 10%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(255,255,255,.11), rgba(255,194,26,.04) 45%, transparent 73%);
  filter: blur(26px);
  opacity: .86;
}

.logo-stage__gloss {
  position: absolute;
  z-index: 4;
  top: 17%;
  left: 0;
  width: 26%;
  height: 65%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.18), transparent);
  filter: blur(12px);
  mix-blend-mode: screen;
  opacity: .56;
  transform: skewX(-15deg) translateX(-170%);
  animation: logo-gloss 9.4s 1.3s var(--ease-premium) infinite;
  pointer-events: none;
}

.logo-stage__shadow {
  position: absolute;
  z-index: 2;
  left: 13%;
  right: 13%;
  bottom: 11%;
  height: 13%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,21,95,.55), rgba(0,21,95,.17) 48%, transparent 73%);
  filter: blur(15px);
  transform: translateZ(-8px);
}

.supporting {
  position: absolute;
  top: calc(100% + clamp(-2.3rem, -3.5vh, -1.15rem));
  left: 50%;
  width: min(88vw, 580px);
  transform: translateX(-50%);
}

.coming-soon,
.statement,
.progress__label {
  margin: 0;
}

.coming-soon {
  color: rgba(255,255,255,.96);
  font-size: clamp(.60rem, .74vw, .80rem);
  font-weight: 800;
  letter-spacing: .42em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(0,22,97,.28);
}

.statement {
  margin-top: .85rem;
  color: rgba(255,255,255,.68);
  font-size: clamp(.72rem, .82vw, .88rem);
  font-weight: 500;
  letter-spacing: .055em;
}

.progress {
  width: clamp(220px, 25vw, 326px);
  margin: clamp(1.75rem, 3.3vh, 2.45rem) auto 0;
}

.progress__label {
  margin-bottom: .70rem;
  color: rgba(255,224,122,.82);
  font-size: clamp(.40rem, .44vw, .53rem);
  font-weight: 800;
  letter-spacing: .25em;
  line-height: 1.3;
  text-transform: uppercase;
}

.progress__track {
  position: relative;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.19);
}

.progress__light {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.98), rgba(255,194,26,.96), transparent);
  filter: drop-shadow(0 0 6px rgba(255,194,26,.36));
  transform: translateX(-130%);
  animation: progress-sweep 6.9s var(--ease-premium) infinite;
}

.js .reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(14px);
}

.js.is-ready .reveal {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition:
    opacity 1.25s var(--ease-premium),
    filter 1.25s var(--ease-premium),
    transform 1.25s var(--ease-premium);
}

.js.is-ready .reveal--one { transition-delay: .10s; }
.js.is-ready .reveal--two { transition-delay: .24s; }
.js.is-ready .reveal--three { transition-delay: .46s; }
.js.is-ready .reveal--four { transition-delay: .59s; }
.js.is-ready .reveal--five { transition-delay: .73s; }

@keyframes atmosphere-drift {
  from {
    transform:
      translate3d(
        calc(var(--pointer-x) * .85vw + var(--ambient-x) * .70vw - .42vw),
        calc(var(--pointer-y) * .55vh + var(--ambient-y) * .45vh - .34vh),
        0
      )
      scale(1.045);
  }
  to {
    transform:
      translate3d(
        calc(var(--pointer-x) * .85vw + var(--ambient-x) * .70vw + .58vw),
        calc(var(--pointer-y) * .55vh + var(--ambient-y) * .45vh + .46vh),
        0
      )
      scale(1.063);
  }
}

@keyframes grid-drift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 126px 63px, 63px 126px, 252px 126px, 126px 252px; }
}

@keyframes ambient-yellow {
  from { transform: translate3d(0,0,0) scale(.96); opacity: .42; }
  to { transform: translate3d(-8%,6%,0) scale(1.09); opacity: .64; }
}

@keyframes ambient-white {
  from { transform: translate3d(-2%,1%,0) scale(.96); opacity: .27; }
  to { transform: translate3d(5%,-4%,0) scale(1.08); opacity: .46; }
}

@keyframes ambient-blue {
  from { transform: translate3d(0,0,0) scale(1); opacity: .48; }
  to { transform: translate3d(8%,-6%,0) scale(1.12); opacity: .69; }
}

@keyframes panel-primary {
  from {
    transform:
      perspective(1200px)
      rotateY(-16deg)
      rotateX(3deg)
      rotateZ(-2deg)
      translate3d(calc(var(--pointer-x) * .95vw), calc(var(--pointer-y) * .34vh - .35vh), 0);
  }
  to {
    transform:
      perspective(1200px)
      rotateY(-13deg)
      rotateX(1deg)
      rotateZ(0deg)
      translate3d(calc(var(--pointer-x) * .95vw - .75vw), calc(var(--pointer-y) * .34vh + .48vh), 0);
  }
}

@keyframes panel-secondary {
  from {
    transform:
      perspective(900px)
      rotateY(18deg)
      rotateX(-4deg)
      rotateZ(6deg)
      translate3d(calc(var(--pointer-x) * -.62vw), calc(var(--pointer-y) * -.28vh), 0);
  }
  to {
    transform:
      perspective(900px)
      rotateY(13deg)
      rotateX(-2deg)
      rotateZ(3deg)
      translate3d(calc(var(--pointer-x) * -.62vw + .8vw), calc(var(--pointer-y) * -.28vh - .48vh), 0);
  }
}

@keyframes beam-one {
  from { transform: translate3d(-8%,-2%,0) rotate(-35deg); opacity: .30; }
  to { transform: translate3d(18%,3%,0) rotate(-35deg); opacity: .56; }
}

@keyframes beam-two {
  from { transform: translate3d(2%,0,0) rotate(21deg); opacity: .22; }
  to { transform: translate3d(-9%,2%,0) rotate(21deg); opacity: .45; }
}

@keyframes dimensions-drift {
  from { transform: translate3d(-.45%,-.35%,0); }
  to { transform: translate3d(.75%,.55%,0); }
}

@keyframes logo-float {
  0%,
  100% { translate: 0 -2px; }
  50% { translate: 0 4px; }
}

@keyframes logo-gloss {
  0%,
  15% {
    transform: skewX(-15deg) translateX(-170%);
    opacity: 0;
  }
  29% {
    opacity: .52;
  }
  51% {
    transform: skewX(-15deg) translateX(500%);
    opacity: 0;
  }
  100% {
    transform: skewX(-15deg) translateX(500%);
    opacity: 0;
  }
}

@keyframes focal-breathe {
  from { opacity: .65; transform: translate(-50%,-50%) scale(.96); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1.05); }
}

@keyframes status-pulse {
  0%,
  24%,
  100% {
    background: rgba(255,255,255,.26);
    box-shadow: none;
    transform: scaleX(.70);
  }
  8%,
  14% {
    background: var(--yellow);
    box-shadow: 0 0 10px rgba(255,194,26,.45);
    transform: scaleX(1);
  }
}

@keyframes progress-sweep {
  0% { transform: translateX(-130%); opacity: 0; }
  12% { opacity: 1; }
  72% { opacity: .94; }
  100% { transform: translateX(360%); opacity: 0; }
}

@keyframes grain-shift {
  0% { transform: translate3d(0,0,0); }
  25% { transform: translate3d(-1.4%,.9%,0); }
  50% { transform: translate3d(1%,-1.3%,0); }
  75% { transform: translate3d(.5%,1.2%,0); }
  100% { transform: translate3d(-.9%,-.5%,0); }
}

@keyframes reference-in {
  from { opacity: 0; letter-spacing: .30em; }
  to { opacity: 1; letter-spacing: .24em; }
}

@media (max-width: 1000px) {
  :root {
    --frame-gap: 22px;
    --edge-gap: 40px;
  }

  .hero {
    width: min(97vw, 980px);
    padding-inline: 2rem;
  }

  .logo-stage {
    width: min(91vw, 860px);
  }

  .panel--primary {
    right: -21%;
    width: clamp(370px, 59vw, 560px);
    opacity: .38;
  }

  .panel--secondary {
    left: -15%;
    opacity: .29;
  }
}

@media (max-width: 700px) {
  :root {
    --frame-gap: 12px;
    --edge-gap: 25px;
  }

  .hero {
    width: 100%;
    padding-inline: .75rem;
  }

  .eyebrow {
    bottom: calc(100% + .35rem);
    width: min(86vw, 410px);
    font-size: .40rem;
    line-height: 1.72;
    letter-spacing: .19em;
  }

  .eyebrow span {
    margin: 0 .30em;
  }

  .logo-stage {
    width: min(99vw, 650px);
  }

  .logo-stage__depth {
    opacity: .23;
    transform: translate3d(4px, 5px, -12px) scale(.997);
  }

  .logo-stage__gloss {
    height: 58%;
    opacity: .42;
  }

  .supporting {
    top: calc(100% - 2.15rem);
    width: min(88vw, 430px);
  }

  .coming-soon {
    font-size: .57rem;
    letter-spacing: .34em;
  }

  .statement {
    margin-top: .65rem;
    font-size: .68rem;
  }

  .progress {
    width: 214px;
    margin-top: 1.55rem;
  }

  .progress__label {
    font-size: .38rem;
    letter-spacing: .18em;
  }

  .reference {
    font-size: .39rem;
    letter-spacing: .16em;
  }

  .reference--top-right,
  .reference--bottom-left {
    display: none;
  }

  .status-sequence {
    right: 14px;
    gap: 10px;
    width: 16px;
  }

  .status-sequence span:nth-child(2),
  .status-sequence span:nth-child(4) {
    display: none;
  }

  .panel--primary {
    top: 15%;
    right: -47%;
    width: 98vw;
    height: 56vh;
    opacity: .26;
  }

  .panel--secondary {
    display: none;
  }

  .dimension-lines {
    opacity: .25;
  }

  .dimension-line--one,
  .dimension-line--four {
    display: none;
  }

  .atmosphere__grid {
    opacity: .12;
    background-size:
      88px 88px,
      88px 88px,
      352px 352px,
      352px 352px;
  }

  .atmosphere__perspective {
    opacity: .11;
  }

  .hero-marker {
    display: none;
  }

  .frame-corner {
    width: 25px;
    height: 25px;
  }

  .frame-corner::before {
    width: 25px;
  }

  .frame-corner::after {
    height: 25px;
  }

  .frame-corner--top-left {
    top: 12px;
    left: 12px;
  }

  .frame-corner--bottom-right {
    right: 12px;
    bottom: 12px;
  }

  .viewport-frame::before,
  .viewport-frame::after {
    width: 32px;
  }
}

@media (max-width: 430px), (max-height: 680px) {
  .eyebrow {
    bottom: calc(100% + .1rem);
    max-width: 330px;
    font-size: .37rem;
    line-height: 1.58;
  }

  .supporting {
    top: calc(100% - 2.55rem);
  }

  .statement {
    margin-top: .56rem;
  }

  .progress {
    margin-top: 1.22rem;
  }
}

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

  .atmosphere {
    transform: scale(1.045);
  }

  .logo-stage {
    transform: none;
  }

  .js .reveal,
  .js.is-ready .reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .progress__light {
    width: 100%;
    transform: none;
    opacity: .75;
  }
}


/* Official Mega Buys store gateway */
.store-gateway {
  position: relative;
  z-index: 10;
  width: min(92vw, 720px);
  margin-inline: auto;
  text-align: center;
}

.hero-copy.store-gateway {
  margin-top: clamp(-1.15rem, -1.8vh, -.35rem);
  padding-inline: 18px;
}

.shop-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(0, 24, 110, .30);
}

.shop-description {
  max-width: 630px;
  margin: clamp(.55rem, 1vh, .8rem) auto 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(.82rem, 1vw, 1rem);
  font-weight: 500;
  letter-spacing: .005em;
  line-height: 1.5;
  text-wrap: balance;
  text-shadow: 0 5px 20px rgba(0, 24, 110, .28);
}

.shop-now-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-width: 176px;
  min-height: 50px;
  margin-top: clamp(.85rem, 1.5vh, 1.15rem);
  padding: .85rem 1.65rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 221, 91, .98), rgba(255, 194, 13, 1));
  box-shadow:
    0 14px 30px rgba(0, 24, 110, .30),
    0 5px 0 rgba(0, 27, 120, .40),
    inset 0 1px 0 rgba(255, 255, 255, .70);
  color: #01268f;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(0);
  transition:
    transform .26s cubic-bezier(.22, .72, .18, 1),
    box-shadow .26s cubic-bezier(.22, .72, .18, 1),
    filter .26s ease;
  -webkit-tap-highlight-color: transparent;
}

.shop-now-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,.36) 46%, transparent 72%);
  transform: translateX(-130%);
  transition: transform .65s cubic-bezier(.22, .72, .18, 1);
}

.shop-now-button span {
  position: relative;
  font-size: 1.05rem;
  line-height: 0;
  transition: transform .26s cubic-bezier(.22, .72, .18, 1);
}

.shop-now-button:hover {
  filter: brightness(1.04) saturate(1.03);
  transform: translateY(-3px);
  box-shadow:
    0 18px 36px rgba(0, 24, 110, .36),
    0 7px 0 rgba(0, 27, 120, .40),
    inset 0 1px 0 rgba(255, 255, 255, .78);
}

.shop-now-button:hover::before {
  transform: translateX(130%);
}

.shop-now-button:hover span {
  transform: translateX(3px);
}

.shop-now-button:active {
  transform: translateY(1px);
  box-shadow:
    0 8px 20px rgba(0, 24, 110, .28),
    0 2px 0 rgba(0, 27, 120, .42),
    inset 0 1px 0 rgba(255, 255, 255, .65);
}

.shop-now-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.store-note {
  margin: .72rem 0 0;
  color: rgba(255, 255, 255, .67);
  font-size: clamp(.66rem, .72vw, .76rem);
  font-weight: 600;
  letter-spacing: .06em;
}

.js.is-ready .reveal--cta { transition-delay: .60s; }
.js.is-ready .reveal--note { transition-delay: .72s; }

@media (max-width: 640px) {
  .hero-copy.store-gateway {
    width: min(94vw, 520px);
    margin-top: clamp(-.55rem, -1vh, -.15rem);
    padding-inline: 14px;
  }

  .shop-title {
    font-size: clamp(1.22rem, 6vw, 1.72rem);
    letter-spacing: -.025em;
  }

  .shop-description {
    max-width: 88vw;
    margin-top: .48rem;
    font-size: clamp(.76rem, 3.3vw, .88rem);
    line-height: 1.42;
  }

  .shop-now-button {
    min-width: 168px;
    min-height: 48px;
    margin-top: .78rem;
    padding: .78rem 1.45rem;
    border-radius: 13px;
    font-size: .76rem;
  }

  .store-note {
    margin-top: .58rem;
    font-size: .64rem;
  }
}

@media (max-height: 650px) {
  .shop-title { font-size: clamp(1.12rem, 2.2vw, 1.75rem); }
  .shop-description { margin-top: .38rem; font-size: .76rem; }
  .shop-now-button { min-height: 44px; margin-top: .6rem; padding-block: .68rem; }
  .store-note { margin-top: .42rem; }
}

@media (hover: none), (pointer: coarse) {
  .shop-now-button:hover {
    filter: none;
    transform: none;
    box-shadow:
      0 14px 30px rgba(0, 24, 110, .30),
      0 5px 0 rgba(0, 27, 120, .40),
      inset 0 1px 0 rgba(255, 255, 255, .70);
  }
  .shop-now-button:hover::before { transform: translateX(-130%); }
  .shop-now-button:hover span { transform: none; }
}


/* Main Mega Buys gateway layout adjustments */
.supporting.store-gateway {
  top: calc(100% + clamp(-2.15rem, -3.1vh, -1rem));
  width: min(92vw, 720px);
}

.supporting.store-gateway .shop-title {
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.supporting.store-gateway .shop-description {
  max-width: 590px;
  font-size: clamp(.76rem, .86vw, .92rem);
}

.supporting.store-gateway .shop-now-button {
  min-height: 46px;
  margin-top: .78rem;
}

@media (max-width: 700px) {
  .logo-stage { width: min(91vw, 590px); }
  .supporting.store-gateway {
    top: calc(100% - 1.55rem);
    width: min(92vw, 460px);
  }
  .supporting.store-gateway .shop-title {
    font-size: clamp(1.12rem, 5.4vw, 1.52rem);
  }
  .supporting.store-gateway .shop-description {
    max-width: 88vw;
    font-size: .73rem;
    line-height: 1.38;
  }
  .supporting.store-gateway .shop-now-button {
    min-height: 44px;
    margin-top: .62rem;
  }
}

@media (max-width: 430px), (max-height: 680px) {
  .logo-stage { width: min(86vw, 540px); }
  .supporting.store-gateway { top: calc(100% - 1.25rem); }
  .supporting.store-gateway .store-note { display: none; }
}
