:root {
  --white: #fff;
  --soft-white: rgba(255, 255, 255, 0.72);
  --dim-white: rgba(255, 255, 255, 0.42);
  --glass: rgba(119, 44, 38, 0.54);
  --ease: cubic-bezier(0.76, 0, 0.24, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  background: #050505;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.experience {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #050505;
}

.intro,
.mosaic,
.hero,
.side-page {
  position: fixed;
  inset: 0;
}

.intro {
  z-index: 30;
  display: grid;
  place-items: center;
  background: #fff;
  animation: introOut 0.78s var(--ease) 1.12s forwards;
}

.intro-logo {
  width: clamp(180px, 15.8vw, 310px);
  opacity: 0.32;
  filter: grayscale(1);
  animation: logoBreathe 1.05s ease-out both;
}

.intro-brand {
  --terminal-glow: rgba(0, 0, 0, 0.18);
  --logo-breathe-opacity: 1;
  color: #000;
  text-shadow: none;
  animation: logoBreathe 1.05s ease-out both;
}

.intro-brand::after {
  background: #000;
  box-shadow: none;
}

.intro-count {
  position: absolute;
  left: 50%;
  bottom: 4.4vh;
  transform: translateX(-50%);
  color: #b7b7b7;
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 600;
}

.mosaic {
  z-index: 20;
  background: #fff;
  opacity: 0;
  transform: scale(1.04);
  animation: mosaicIn 0.34s ease 1.46s forwards, mosaicOut 0.8s var(--ease) 4.42s forwards;
}

.mosaic-track {
  position: absolute;
  inset: -10vh -8vw;
  transform-origin: 50% 50%;
  animation: driftGrid 3s var(--ease) 1.52s both;
}

.mosaic.is-replaying {
  z-index: 80;
  visibility: visible;
  opacity: 1;
  transform: none;
  pointer-events: none;
  animation: replayMosaicShell 2s var(--ease) forwards;
}

.mosaic.is-replaying .mosaic-track {
  animation: replayDriftGrid 2s var(--ease) both;
}

.experience.is-intro-complete .intro,
.experience.is-intro-complete .mosaic {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.tile {
  position: absolute;
  width: clamp(260px, 26vw, 520px);
  aspect-ratio: 1.75;
  background: #ddd center / cover no-repeat;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(var(--from-x), var(--from-y), 0) scale(0.98);
  animation: tileArrive 1.05s var(--ease) forwards, tileFloat 2.2s ease-in-out 1.7s infinite alternate;
}

.tile video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic.is-replaying .tile {
  opacity: 0;
  transform: translate3d(var(--from-x), var(--from-y), 0) scale(0.98);
  animation: replayTileArrive 0.48s var(--ease) forwards, replayTileFloat 1.35s ease-in-out 0.48s infinite alternate;
}

.tile:nth-child(1) {
  left: 21.5%;
  top: 35%;
  animation-delay: 1.7s, 2.55s;
}

.tile:nth-child(2) {
  left: 60.8%;
  top: 35%;
  animation-delay: 1.78s, 2.45s;
}

.tile:nth-child(3) {
  left: -2%;
  top: 61%;
  animation-delay: 1.88s, 2.4s;
}

.tile:nth-child(4) {
  left: 41%;
  top: 61%;
  animation-delay: 1.96s, 2.52s;
}

.tile:nth-child(5) {
  left: 80%;
  top: 61%;
  animation-delay: 2.03s, 2.35s;
}

.tile:nth-child(6) {
  left: 10%;
  top: 14%;
  animation-delay: 2.08s, 2.4s;
}

.tile:nth-child(7) {
  left: 64%;
  top: 14%;
  animation-delay: 2.12s, 2.5s;
}

.tile:nth-child(8) {
  left: 10%;
  top: 79%;
  animation-delay: 2.18s, 2.45s;
}

.tile:nth-child(9) {
  left: 64%;
  top: 79%;
  animation-delay: 2.22s, 2.35s;
}

.tile:nth-child(10) {
  left: 36.5%;
  top: 45.5%;
  animation-delay: 2.48s, 2.6s;
}

.tile:nth-child(11) {
  left: 37.5%;
  top: 94%;
  animation-delay: 2.34s, 2.5s;
}

.tile:nth-child(12) {
  left: -10%;
  top: 33%;
  animation-delay: 2.06s, 2.45s;
}

.mosaic.is-replaying .tile:nth-child(1) { animation-delay: 0.02s, 0.5s; }
.mosaic.is-replaying .tile:nth-child(2) { animation-delay: 0.05s, 0.53s; }
.mosaic.is-replaying .tile:nth-child(3) { animation-delay: 0.09s, 0.57s; }
.mosaic.is-replaying .tile:nth-child(4) { animation-delay: 0.12s, 0.6s; }
.mosaic.is-replaying .tile:nth-child(5) { animation-delay: 0.15s, 0.63s; }
.mosaic.is-replaying .tile:nth-child(6) { animation-delay: 0.18s, 0.66s; }
.mosaic.is-replaying .tile:nth-child(7) { animation-delay: 0.21s, 0.69s; }
.mosaic.is-replaying .tile:nth-child(8) { animation-delay: 0.24s, 0.72s; }
.mosaic.is-replaying .tile:nth-child(9) { animation-delay: 0.27s, 0.75s; }
.mosaic.is-replaying .tile:nth-child(10) { animation-delay: 0.3s, 0.78s; }
.mosaic.is-replaying .tile:nth-child(11) { animation-delay: 0.33s, 0.81s; }
.mosaic.is-replaying .tile:nth-child(12) { animation-delay: 0.36s, 0.84s; }

.hero {
  z-index: 10;
  color: var(--white);
  overflow: hidden;
  opacity: 0;
  transform: scale(1.025);
  clip-path: inset(6% 2.5% 6% 2.5%);
  transition:
    opacity 0.94s var(--ease),
    transform 0.94s var(--ease),
    clip-path 0.94s var(--ease);
}

.experience.is-hero-ready .hero {
  opacity: 1;
  transform: scale(1);
  clip-path: none;
}

.experience[data-slide="left"] .hero {
  transform: translateX(100vw);
  animation: none;
  opacity: 1;
}

.experience.is-sliding .hero,
.experience.is-sliding .side-page {
  transition: none;
}

.experience[data-slide="right"] .hero {
  transform: translateX(-100vw);
  animation: none;
  opacity: 1;
}

.side-page {
  z-index: 9;
  overflow: clip;
  background: #000;
  opacity: 0;
  transition: transform 0.92s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.46s ease;
  overscroll-behavior: none;
}

.side-page-left {
  transform: translateX(-100vw);
}

.side-page-right {
  transform: translateX(100vw);
}

.experience[data-slide="left"] .side-page-left,
.experience[data-slide="right"] .side-page-right {
  z-index: 11;
  opacity: 1;
  transform: translateX(0);
}

.experience[data-slide="right"] .neon-orbits i,
.experience[data-slide="right"] .neon-orbits b {
  animation: neonPulse 1.4s ease-out 0.45s both;
}

.experience.is-entering-left .waller-page,
.side-page-left.is-entering-left .waller-page {
  animation: wallerAurora 1.25s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both, wallerBackgroundLoop 7.8s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.experience.is-entering-left .waller-ribbon,
.side-page-left.is-entering-left .waller-ribbon {
  animation: ribbonSweep 1.18s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both, wallerRibbonGreen 6.2s cubic-bezier(0.45, 0, 0.55, 1) 1.35s infinite alternate;
}

.experience.is-entering-left .ribbon-b,
.side-page-left.is-entering-left .ribbon-b {
  animation-name: ribbonSweep, wallerRibbonPink;
  animation-delay: 0.36s, 1.55s;
}

.experience.is-entering-left .waller-browser,
.side-page-left.is-entering-left .waller-browser {
  animation: wallerPortal 1.18s cubic-bezier(0.16, 1, 0.3, 1) 0.38s both;
}

.experience.is-entering-left .waller-nav,
.experience.is-entering-left .waller-hero,
.experience.is-entering-left .grain-visual,
.experience.is-entering-left .exchange-panel,
.experience.is-entering-left .ticker-strip,
.side-page-left.is-entering-left .waller-nav,
.side-page-left.is-entering-left .waller-hero,
.side-page-left.is-entering-left .grain-visual,
.side-page-left.is-entering-left .exchange-panel,
.side-page-left.is-entering-left .ticker-strip {
  animation: wallerContentLift 0.88s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.experience.is-entering-left .waller-nav,
.side-page-left.is-entering-left .waller-nav { animation-delay: 0.62s; }
.experience.is-entering-left .waller-hero,
.side-page-left.is-entering-left .waller-hero { animation-delay: 0.72s; }
.experience.is-entering-left .grain-visual,
.side-page-left.is-entering-left .grain-visual { animation-delay: 0.62s; }
.experience.is-entering-left .exchange-panel,
.side-page-left.is-entering-left .exchange-panel { animation-delay: 0.84s; }
.experience.is-entering-left .ticker-strip,
.side-page-left.is-entering-left .ticker-strip { animation-delay: 0.96s; }

.side-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editable-side {
  position: absolute;
  inset: 0;
  overflow: clip;
}

.waller-page {
  background:
    linear-gradient(104deg, transparent 0 18%, rgba(198, 210, 190, 0.92) 18% 25%, transparent 25% 100%),
    linear-gradient(168deg, #25d941 0 29%, #f2a1eb 29% 43%, #af2b78 43% 52%, #c9d2be 52% 66%, #7bec23 66% 100%);
  background-size: 145% 145%, 180% 180%;
  background-position: 34% 46%, 48% 50%;
  display: grid;
  place-items: center;
  padding: clamp(28px, 3vw, 58px);
  animation: wallerBackgroundLoop 7.8s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.waller-page::before,
.waller-page::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: 0.92;
  will-change: transform;
}

.waller-page::before {
  left: -42vw;
  top: -3vh;
  width: 156vw;
  height: 18vh;
  background: linear-gradient(90deg, #22dc40, #75f126);
  transform: rotate(-7deg);
  animation: wallerBandOne 5.8s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.waller-page::after {
  right: -48vw;
  bottom: 4vh;
  width: 150vw;
  height: 19vh;
  background: linear-gradient(90deg, #b52b7c, #ee83df);
  transform: rotate(8deg);
  animation: wallerBandTwo 6.4s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.waller-ribbon {
  position: absolute;
  z-index: 0;
  width: 170vw;
  height: 12.5vh;
  border-radius: 999px;
  opacity: 0.9;
  transform-origin: center;
  will-change: transform, translate;
}

.ribbon-a {
  left: -52vw;
  top: 16vh;
  background: linear-gradient(90deg, #6ff21b, #2bd840);
  transform: rotate(-14deg);
  animation: wallerRibbonGreen 6.2s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.ribbon-b {
  left: -50vw;
  bottom: 17vh;
  background: linear-gradient(90deg, #b02b78, #d1449b);
  transform: rotate(7deg);
  animation: wallerRibbonPink 6.8s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.browser-frame {
  position: relative;
  z-index: 1;
  width: min(94vw, 1810px);
  height: min(89vh, 970px);
  border-radius: 31px;
  background: #020202;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.waller-browser-video {
  position: absolute;
  z-index: 0;
  inset: 82px 0 48px;
  width: 100%;
  height: calc(100% - 130px);
  object-fit: cover;
  opacity: 0.72;
  filter: brightness(0.48) contrast(1.08) saturate(0.92);
  pointer-events: none;
}

.waller-browser::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 82px 0 48px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0 31%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 28%, rgba(0, 0, 0, 0.18));
}

.browser-top {
  position: relative;
  z-index: 3;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 36px;
}

.window-dots {
  display: flex;
  gap: 16px;
}

.window-dots span {
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
}

.window-dots span:nth-child(1) { background: #ff5e5a; }
.window-dots span:nth-child(2) { background: #ffbd3b; }
.window-dots span:nth-child(3) { background: #27d84c; }

.address-pill {
  min-width: min(620px, 42vw);
  height: 43px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #171717;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.45vw, 24px);
  font-weight: 700;
}

.heart-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 30px;
  border-radius: 8px;
  background: #f3a2eb;
  color: #7b2372;
}

.browser-actions {
  justify-self: end;
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 34px;
}

.waller-nav {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  padding: 30px 78px 0;
}

.waller-logo {
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: 0;
}

.waller-nav nav {
  display: flex;
  gap: clamp(30px, 5vw, 82px);
  align-items: center;
}

.waller-nav a,
.p2p-pill,
.white-pill {
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 800;
}

.p2p-pill,
.white-pill {
  border: 0;
  border-radius: 999px;
  min-height: 58px;
  padding: 0 28px;
}

.p2p-pill {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #151515;
}

.avatar-stack {
  display: flex;
}

.avatar-stack i {
  width: 32px;
  height: 32px;
  margin-left: -7px;
  border-radius: 50%;
  border: 2px solid #101010;
  background: radial-gradient(circle at 35% 28%, #fff274, #2dd7b8 38%, #30276e 72%);
}

.white-pill {
  background: #fff;
  color: #111;
}

.waller-hero {
  position: relative;
  z-index: 2;
  min-height: 535px;
  padding: 120px 78px 0;
}

.grain-visual {
  display: none;
}

.grain-visual::after {
  content: none;
}

.grain-visual::before {
  content: none;
}

.waller-hero h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 1160px;
  font-size: clamp(58px, 6.4vw, 118px);
  line-height: 0.98;
  letter-spacing: -2px;
}

.waller-hero p {
  position: relative;
  z-index: 1;
  margin: 36px 0 48px;
  font-size: clamp(18px, 1.45vw, 26px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.waller-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
}

.pink-pill,
.dark-pill {
  border: 0;
  border-radius: 999px;
  min-width: 220px;
  height: 58px;
  padding: 0 34px;
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 900;
  cursor: pointer;
}

.pink-pill {
  background: #f5a1ee;
  color: #130913;
}

.dark-pill {
  background: #111;
  color: #fff;
}

.exchange-panel {
  position: absolute;
  z-index: 3;
  left: 78px;
  right: 78px;
  bottom: 50px;
  min-height: 176px;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(180deg, #181818, #101010);
  display: block;
  align-items: center;
  gap: 34px;
  padding: 34px 52px;
}

.coin-field div {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(23px, 2.4vw, 38px);
}

.coin {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.usdt { background: #56bfa0; }
.btc { background: #f6a51b; }

.coin-field small {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.45);
  font-size: clamp(15px, 1.35vw, 22px);
  font-weight: 900;
}

.coin-field b {
  color: #fff;
}

.amount {
  justify-self: center;
  font-size: clamp(42px, 4.2vw, 72px);
}

.swap-button {
  width: 118px;
  height: 68px;
  border: 0;
  border-radius: 999px;
  background: #282828;
  color: #fff;
  font-size: 34px;
}

.ticker-strip {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgba(31, 31, 31, 0.9);
}

.ticker-strip span {
  min-width: 17%;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.ticker-strip em {
  color: #2ed1a0;
  font-style: normal;
}

.ticker-strip i {
  color: #e87867;
  font-style: normal;
}

.quantum-page {
  position: absolute;
  inset: 0;
  overflow: clip;
  background: #020202;
  overscroll-behavior: none;
  perspective: 1450px;
  perspective-origin: 50% 42%;
  --quantum-card-w: min(1120px, 68vw);
  --quantum-card-h: min(620px, 58vh);
  --quantum-card-left: calc(50% - var(--quantum-card-w) / 2);
  --quantum-card-top: clamp(58px, 8.5vh, 96px);
  --quantum-card-tilt: rotateX(9deg) rotateY(-11deg) rotateZ(-5.5deg);
}

.quantum-page::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  pointer-events: none;
}

.quantum-bg-video {
  position: absolute;
  z-index: 0;
  inset: -12%;
  width: 124%;
  height: 124%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: blur(34px) brightness(0.48) saturate(1.22);
  transform: translate3d(0, 0, 0) scale(1.12);
  transform-origin: center;
  backface-visibility: hidden;
  transition: none;
  pointer-events: none;
}

.quantum-page.is-video-focused .quantum-bg-video {
  opacity: 1;
  filter: blur(34px) brightness(0.48) saturate(1.22);
}

.quantum-gradient {
  display: none;
  pointer-events: none;
}

.quantum-page.is-video-focused .quantum-gradient {
  opacity: 0;
}

.quantum-page.is-bottom-active .quantum-gradient {
  opacity: 1;
}

.quantum-card {
  position: fixed;
  z-index: 2;
  border-radius: 14px;
  background: #020202;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.18);
  transition:
    transform 1.05s cubic-bezier(0.76, 0, 0.24, 1),
    opacity 0.72s ease,
    filter 0.72s ease,
    box-shadow 0.72s ease;
  will-change: transform, opacity, filter;
  transform-origin: center;
  backface-visibility: hidden;
}

.card-main {
  left: var(--quantum-card-left);
  top: var(--quantum-card-top);
  width: var(--quantum-card-w);
  height: var(--quantum-card-h);
  transform: var(--quantum-card-tilt) translate3d(0, 0, 80px);
  z-index: 6;
  box-shadow: 0 46px 110px rgba(0, 0, 0, 0.5);
}

.quantum-page.is-bottom-active .card-main {
  opacity: 0.46;
  filter: blur(2px) saturate(0.78) brightness(0.82);
  transform: var(--quantum-card-tilt) translate3d(0, -58vh, 80px);
  z-index: 3;
  pointer-events: none;
}

.quantum-page.is-video-focused .card-main {
  opacity: 0 !important;
  filter: blur(12px) !important;
  transform: translate3d(118vw, -38vh, 0) rotate(28deg) scale(0.72) !important;
  animation: none !important;
}

.quantum-page.is-video-focused .card-top {
  opacity: 0 !important;
  filter: blur(12px) !important;
  transform: translate3d(-92vw, -88vh, 0) rotate(-34deg) scale(0.7) !important;
  animation: none !important;
}

.quantum-page.is-video-focused .card-left {
  opacity: 0 !important;
  filter: blur(12px) !important;
  transform: translate3d(-106vw, 14vh, 0) rotate(-32deg) scale(0.66) !important;
  animation: none !important;
}

.quantum-page.is-video-focused .card-right {
  opacity: 0 !important;
  filter: blur(12px) !important;
  transform: translate3d(104vw, -6vh, 0) rotate(34deg) scale(0.66) !important;
  animation: none !important;
}

.quantum-page.is-video-focused .card-bottom {
  opacity: 0 !important;
  filter: blur(12px) !important;
  transform: translate3d(14vw, 92vh, 0) rotate(30deg) scale(0.7) !important;
  animation: none !important;
}

.quantum-page.is-video-focused .quantum-card {
  pointer-events: none;
}

.quantum-page.is-restoring .card-main { animation: quantumCardReturnMain 1.05s cubic-bezier(0.16, 1, 0.3, 1) both; }
.quantum-page.is-restoring .card-top { animation: quantumCardReturnTop 1.08s cubic-bezier(0.16, 1, 0.3, 1) 0.04s both; }
.quantum-page.is-restoring .card-left { animation: quantumCardReturnLeft 1.12s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both; }
.quantum-page.is-restoring .card-right { animation: quantumCardReturnRight 1.12s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both; }
.quantum-page.is-restoring .card-bottom { animation: quantumCardReturnBottom 1.16s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both; }

.quantum-page.is-bottom-active .card-top,
.quantum-page.is-bottom-active .card-left,
.quantum-page.is-bottom-active .card-right {
  opacity: 0.12;
  filter: blur(8px);
}

.quantum-restore {
  z-index: 8;
  left: 50%;
  bottom: clamp(24px, 5vh, 58px);
  top: auto;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 26px) scale(0.86);
  transition: opacity 0.52s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1), background 0.34s ease, box-shadow 0.34s ease;
}

.quantum-restore span {
  transform: translateY(1px) scale(1);
}

.quantum-restore:hover,
.quantum-restore:focus-visible {
  transform: translate(-50%, 0) scale(1.18);
}

.quantum-page.is-video-focused .quantum-restore {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.quantum-card header {
  position: relative;
  z-index: 2;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 48px;
  padding: 0 58px;
}

.quantum-card strong {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(20px, 1.8vw, 30px);
}

.quantum-card strong span {
  width: 34px;
  height: 25px;
  display: inline-block;
  background: repeating-linear-gradient(135deg, #b9ff27 0 5px, transparent 5px 9px);
}

.quantum-card nav {
  display: flex;
  gap: 46px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
}

.quantum-card button {
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #0d0d0d;
  min-width: 110px;
  height: 32px;
  padding: 0 22px;
  font-weight: 800;
  cursor: pointer;
}

.quantum-copy {
  position: relative;
  z-index: 2;
  width: 56%;
  padding: 78px 0 0 82px;
}

.quantum-copy h2,
.quantum-card.card-right h2 {
  margin: 0;
  font-size: clamp(34px, 4.1vw, 72px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -1px;
}

.quantum-copy p {
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(15px, 1.25vw, 22px);
  line-height: 1.32;
  font-weight: 700;
}

.quantum-copy button {
  min-width: 195px;
  height: 48px;
  background: #b7ff28;
}

.neon-orbits {
  position: absolute;
  right: 8%;
  top: 16%;
  width: 42%;
  height: 72%;
}

.neon-orbits i,
.neon-orbits b {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px) drop-shadow(0 0 12px rgba(117, 255, 69, 0.82));
  background: linear-gradient(140deg, #fffb36, #3cff28 24%, #00eaff 50%, #4936ff 72%, #ff43e8 88%, #ffb628);
}

.neon-orbits i {
  width: 28%;
  height: 10%;
  transform: rotate(-58deg);
}

.neon-orbits i:nth-child(1) { left: 3%; top: 20%; }
.neon-orbits i:nth-child(2) { left: 28%; top: 23%; height: 13%; }
.neon-orbits i:nth-child(3) { left: 54%; top: 20%; height: 16%; }
.neon-orbits i:nth-child(4) { left: 76%; top: 43%; width: 24%; }

.neon-orbits b {
  right: 0;
  bottom: 18%;
  width: 78px;
  aspect-ratio: 1;
  border-radius: 50%;
}

.card-ghost {
  opacity: 0.98;
  z-index: 2;
}

.card-top {
  left: 16%;
  top: -16%;
  width: 58%;
  height: 32%;
  transform: rotate(-8deg);
}

.card-left {
  left: -15%;
  top: 35%;
  width: 28%;
  height: 50%;
  transform: rotate(-8deg);
}

.card-right {
  right: -5%;
  top: 13%;
  width: 26%;
  height: 53%;
  transform: rotate(-7deg);
  padding-top: 15%;
  padding-left: 6%;
}

.card-bottom {
  left: var(--quantum-card-left);
  top: var(--quantum-card-top);
  width: var(--quantum-card-w);
  height: var(--quantum-card-h);
  transform: var(--quantum-card-tilt) translate3d(0, 64vh, 80px);
  z-index: 4;
  background: #07121f;
  opacity: 0.9;
  filter: saturate(0.92) brightness(0.92);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.34);
}

.quantum-page.is-bottom-active .card-bottom {
  left: var(--quantum-card-left);
  top: var(--quantum-card-top);
  bottom: auto;
  width: var(--quantum-card-w);
  height: var(--quantum-card-h);
  opacity: 1;
  filter: blur(0);
  transform: var(--quantum-card-tilt) translate3d(0, 0, 80px);
  z-index: 8;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
}

.quantum-page.is-excel-fullscreen .card-bottom {
  left: 3vw;
  top: 3vh;
  width: 94vw;
  height: 94vh;
  border-radius: 18px;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  z-index: 20;
  animation: excelFullscreenFade 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.quantum-page.is-excel-collapsing .card-bottom {
  z-index: 20;
  pointer-events: none;
  animation: excelCollapseToStack 1.08s linear both;
}

.excel-app-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 128%;
  height: 128%;
  border: 0;
  background: #0d1b2a;
  opacity: 1;
  transform: scale(0.78125);
  transform-origin: 0 0;
  transition: opacity 0.5s ease, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: auto;
}

.quantum-page.is-bottom-active .excel-app-frame {
  opacity: 1;
  transform: scale(0.78125);
  pointer-events: auto;
}

.quantum-card .excel-open-layer {
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  min-width: 0;
  height: 104px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  opacity: 0;
  pointer-events: none;
}

.quantum-page.is-bottom-active:not(.is-excel-fullscreen) .excel-open-layer {
  pointer-events: auto;
}

.quantum-page.is-excel-fullscreen .excel-app-frame {
  width: 100%;
  height: 100%;
  transform: scale(1);
  pointer-events: auto;
}

.excel-collapse {
  z-index: 30;
  left: 50%;
  bottom: clamp(24px, 4vh, 44px);
  top: auto;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px) scale(0.9);
}

.excel-collapse:hover,
.excel-collapse:focus-visible {
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, 0) scale(1.18);
}

.quantum-page.is-excel-fullscreen .excel-collapse {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.quantum-page.is-excel-collapsing .excel-collapse {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px) scale(0.82);
}

.excel-collapse span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-4px) scale(1);
}

.excel-collapse:hover span,
.excel-collapse:focus-visible span {
  transform: translateY(-4px) scale(1.34);
}

.mini {
  inset: 25% 10% 8% 40%;
  width: auto;
  height: auto;
}

@keyframes grainDrift {
  to {
    background-position: 46px 23px, -31px 31px, 0 0, 0 0;
  }
}

@keyframes wallerBackgroundLoop {
  0% {
    background-position: 28% 42%, 40% 50%;
  }

  48% {
    background-position: 58% 47%, 55% 44%;
  }

  100% {
    background-position: 72% 54%, 66% 56%;
  }
}

@keyframes wallerBandOne {
  0% {
    transform: translate3d(-20vw, -2vh, 0) rotate(-8deg) scaleX(1.04);
  }

  100% {
    transform: translate3d(18vw, 3vh, 0) rotate(-3deg) scaleX(1.12);
  }
}

@keyframes wallerBandTwo {
  0% {
    transform: translate3d(18vw, 3vh, 0) rotate(10deg) scaleX(1.08);
  }

  100% {
    transform: translate3d(-22vw, -3vh, 0) rotate(5deg) scaleX(1.14);
  }
}

@keyframes wallerRibbonGreen {
  0% {
    transform: translate3d(-18vw, -1vh, 0) rotate(-14deg) scaleX(1);
  }

  100% {
    transform: translate3d(24vw, 2vh, 0) rotate(-10deg) scaleX(1.08);
  }
}

@keyframes wallerRibbonPink {
  0% {
    transform: translate3d(14vw, 2vh, 0) rotate(8deg) scaleX(1.02);
  }

  100% {
    transform: translate3d(-26vw, -2vh, 0) rotate(4deg) scaleX(1.1);
  }
}

@keyframes ribbonFloat {
  0% {
    translate: -2vw 1vh;
  }

  100% {
    translate: 3vw -1.5vh;
  }
}

@keyframes grainBreathe {
  0% {
    transform: translate3d(-1.5vw, 0.3vh, 0) rotate(-2.8deg) scale(1);
    opacity: 0.82;
  }

  100% {
    transform: translate3d(1vw, -0.8vh, 0) rotate(-1.2deg) scale(1.035);
    opacity: 0.94;
  }
}

@keyframes objectGlide {
  0% {
    transform: translate3d(-0.6vw, 0.4vh, 0) rotate(16deg) skewX(-4deg);
  }

  100% {
    transform: translate3d(1.2vw, -0.7vh, 0) rotate(19deg) skewX(-4deg);
  }
}

@keyframes seedShimmer {
  to {
    background-position: 34px 17px, -29px 29px, 0 0;
  }
}

@keyframes quantumSettle {
  0% {
    opacity: 0;
    filter: blur(8px);
    scale: 0.96;
  }

  55% {
    opacity: 1;
    filter: blur(0);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    scale: 1;
  }
}

@keyframes quantumCardReturnMain {
  0% { opacity: 0; filter: blur(12px); transform: translate3d(10vw, -12vh, 0) rotate(18deg) scale(0.82); }
  58% { opacity: 1; filter: blur(0); transform: translate3d(-0.9vw, 1vh, 0) rotate(-9deg) scale(1.025); }
  100% { opacity: 1; filter: blur(0); transform: rotate(-7deg) scale(1); }
}

@keyframes quantumCardReturnTop {
  0% { opacity: 0; filter: blur(12px); transform: translate3d(-14vw, -22vh, 0) rotate(-26deg) scale(0.8); }
  60% { opacity: 1; filter: blur(0); transform: translate3d(1vw, 1vh, 0) rotate(-5deg) scale(1.02); }
  100% { opacity: 0.98; filter: blur(0); transform: rotate(-8deg) scale(1); }
}

@keyframes quantumCardReturnLeft {
  0% { opacity: 0; filter: blur(12px); transform: translate3d(-30vw, 8vh, 0) rotate(-22deg) scale(0.78); }
  62% { opacity: 1; filter: blur(0); transform: translate3d(2vw, -1vh, 0) rotate(-5deg) scale(1.02); }
  100% { opacity: 0.98; filter: blur(0); transform: rotate(-8deg) scale(1); }
}

@keyframes quantumCardReturnRight {
  0% { opacity: 0; filter: blur(12px); transform: translate3d(27vw, -1vh, 0) rotate(22deg) scale(0.78); }
  62% { opacity: 1; filter: blur(0); transform: translate3d(-1vw, 1vh, 0) rotate(-9deg) scale(1.02); }
  100% { opacity: 0.98; filter: blur(0); transform: rotate(-7deg) scale(1); }
}

@keyframes quantumCardReturnBottom {
  0% { opacity: 0; filter: blur(12px); transform: translate3d(6vw, 28vh, 0) rotate(18deg) scale(0.82); }
  62% { opacity: 1; filter: blur(0); transform: translate3d(-1vw, -1vh, 0) rotate(-10deg) scale(1.02); }
  100% { opacity: 0.98; filter: blur(0); transform: rotate(-8deg) scale(1); }
}

@keyframes excelFullscreenFade {
  from {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.985);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes excelCollapseToStack {
  0% {
    left: 3vw;
    top: 3vh;
    width: 94vw;
    height: 94vh;
    border-radius: 18px;
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  38% {
    left: 3vw;
    top: 3vh;
    width: 94vw;
    height: 94vh;
    border-radius: 18px;
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.985);
  }

  39% {
    left: var(--quantum-card-left);
    top: var(--quantum-card-top);
    width: var(--quantum-card-w);
    height: var(--quantum-card-h);
    border-radius: 14px;
    opacity: 0;
    filter: blur(8px);
    transform: var(--quantum-card-tilt) translate3d(-18vw, 64vh, 80px);
  }

  100% {
    left: var(--quantum-card-left);
    top: var(--quantum-card-top);
    width: var(--quantum-card-w);
    height: var(--quantum-card-h);
    border-radius: 14px;
    opacity: 0.9;
    filter: blur(0) saturate(0.92) brightness(0.92);
    transform: var(--quantum-card-tilt) translate3d(0, 64vh, 80px);
  }
}

@keyframes neonPulse {
  0% {
    filter: blur(7px) drop-shadow(0 0 0 rgba(117, 255, 69, 0));
    opacity: 0.22;
  }

  65% {
    filter: blur(0) drop-shadow(0 0 22px rgba(117, 255, 69, 0.95));
    opacity: 1;
  }

  100% {
    filter: blur(0.2px) drop-shadow(0 0 12px rgba(117, 255, 69, 0.82));
    opacity: 1;
  }
}

@keyframes wallerAurora {
  0% {
    filter: saturate(0.72) brightness(0.82);
  }

  48% {
    filter: saturate(1.28) brightness(1.08);
  }

  100% {
    filter: saturate(1) brightness(1);
  }
}

@keyframes ribbonSweep {
  0% {
    opacity: 0;
    translate: -18vw 0;
    filter: blur(14px);
  }

  56% {
    opacity: 0.95;
    filter: blur(0);
  }

  100% {
    opacity: 0.82;
    translate: 0 0;
    filter: blur(0);
  }
}

@keyframes wallerPortal {
  0% {
    opacity: 0;
    transform: perspective(1100px) translate3d(-9vw, 2vh, 0) rotateY(-12deg) rotateZ(-1.5deg) scale(0.86);
    filter: blur(16px) saturate(0.82);
    box-shadow: 0 36px 90px rgba(30, 14, 35, 0.18);
  }

  48% {
    opacity: 1;
    transform: perspective(1100px) translate3d(1.2vw, -0.4vh, 0) rotateY(2.4deg) rotateZ(0.4deg) scale(1.018);
    filter: blur(0) saturate(1.12);
  }

  100% {
    opacity: 1;
    transform: perspective(1100px) translate3d(0, 0, 0) rotateY(0deg) rotateZ(0deg) scale(1);
    filter: blur(0) saturate(1);
  }
}

@keyframes wallerContentLift {
  0% {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.985);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero.has-hero-video {
  background: #000;
}

.hero-video:not([src]),
.hero-video[src=""] {
  display: none;
}

.hero-video {
  z-index: 0;
}

.hero.has-hero-video [data-background] {
  opacity: 0;
}

.hero.has-hero-video .hero-shards {
  display: none;
}

.hero.has-hero-video::after {
  background: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(82, 8, 0, 0.34), transparent 18%, transparent 78%, rgba(82, 8, 0, 0.27)),
    linear-gradient(0deg, rgba(59, 8, 0, 0.42), transparent 35%),
    radial-gradient(ellipse at 50% 93%, rgba(95, 13, 0, 0.45), transparent 44%);
}

.hero-shards {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-shards span {
  position: absolute;
  inset: 0;
  background: inherit;
  backdrop-filter: saturate(1.03);
  clip-path: polygon(var(--x) 0, calc(var(--x) + 9vw) 0, calc(var(--x) + 6vw) 100%, calc(var(--x) - 2vw) 100%);
  opacity: 0;
  transform: translateY(-3vh);
  animation: shardDrop 0.68s var(--ease) var(--delay) forwards;
}

.topbar {
  position: absolute;
  z-index: 3;
  top: clamp(22px, 5.6vh, 70px);
  left: clamp(26px, 3.15vw, 62px);
  right: clamp(26px, 2.35vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: clamp(14px, 0.9vw, 17px);
  font-weight: 500;
}

.nav-left {
  display: flex;
  gap: clamp(22px, 2.2vw, 38px);
}

.operations-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gears-icon {
  position: relative;
  width: 24px;
  height: 18px;
  transform: translateY(1px);
}

.gear {
  position: absolute;
  border: 2px solid currentColor;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 28%, currentColor 29% 38%, transparent 39%),
    conic-gradient(
      from 0deg,
      currentColor 0 10deg,
      transparent 10deg 35deg,
      currentColor 35deg 45deg,
      transparent 45deg 80deg,
      currentColor 80deg 92deg,
      transparent 92deg 125deg,
      currentColor 125deg 137deg,
      transparent 137deg 170deg,
      currentColor 170deg 182deg,
      transparent 182deg 215deg,
      currentColor 215deg 227deg,
      transparent 227deg 260deg,
      currentColor 260deg 272deg,
      transparent 272deg 305deg,
      currentColor 305deg 317deg,
      transparent 317deg 360deg
    );
  will-change: transform;
  animation: gearSpin 1.7s linear infinite;
}

.gear::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #050505;
  box-shadow: inset 0 0 0 1px currentColor;
}

.gear-large {
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
}

.gear-small {
  right: 0;
  top: 0;
  width: 13px;
  height: 13px;
  animation-name: gearSpinReverse;
  animation-duration: 1.25s;
}

.brand {
  width: clamp(152px, 12vw, 236px);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  color: #fff;
  text-decoration: none;
}

@keyframes gearSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gearSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}

.brand img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.terminal-brand {
  --terminal-glow: rgba(255, 255, 255, 0.34);
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 12px var(--terminal-glow), 0 2px 18px rgba(0, 0, 0, 0.24);
  white-space: nowrap;
}

.terminal-brand::after {
  content: "";
  position: absolute;
  right: -0.55em;
  bottom: 0.02em;
  width: 0.38em;
  height: 1.02em;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.34);
  opacity: 0;
}

.terminal-brand.is-typing::after,
.terminal-brand.is-done::after {
  animation: terminalCursor 0.82s steps(1, end) infinite;
}

.brand-powered {
  font-family: "Poiret One", sans-serif;
  font-size: clamp(9px, 0.72vw, 14px);
  letter-spacing: 0.16em;
  order: 1;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  order: 2;
}

.brand-firma {
  font-family: "IM Fell Great Primer SC", serif;
  font-size: clamp(22px, 1.85vw, 36px);
  letter-spacing: 0.12em;
}

.brand-808 {
  font-family: "Major Mono Display", monospace;
  font-size: clamp(20px, 1.66vw, 32px);
  letter-spacing: -0.08em;
}

.announcement {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 47px;
  padding: 0 21px;
  border-radius: 12px;
  background: var(--glass);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.12);
}

.hero-copy {
  position: absolute;
  z-index: 3;
  left: clamp(30px, 3.3vw, 66px);
  right: clamp(30px, 2.4vw, 48px);
  top: 49%;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 28vw);
  align-items: center;
  gap: 40px;
}

h1 {
  margin: 0;
  font-size: clamp(58px, 6.55vw, 126px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: 0;
  text-wrap: balance;
}

.script-title {
  --write-progress: 0;
  --write-progress-pct: 0%;
  --write-remaining: 100%;
  --pencil-x: 0px;
  --pencil-y: 50%;
  position: relative;
  width: max-content;
  max-width: 100%;
  padding: 0.22em 0.28em 0.24em 0.18em;
  margin: -0.22em 0 -0.24em -0.18em;
  font-family: "Dancing Script", cursive;
  font-size: clamp(74px, 8.2vw, 158px);
  font-weight: 700;
  line-height: 0.88;
  white-space: nowrap;
  text-shadow: 0 10px 34px rgba(102, 15, 0, 0.18);
  overflow: visible;
}

.typewriter-text {
  display: inline-block;
  white-space: pre;
}

.typewriter-letter {
  --char-remaining: 100%;
  display: inline-block;
  clip-path: inset(0 var(--char-remaining) 0 0);
  will-change: clip-path;
  padding: 0.12em 0.08em 0.16em 0.04em;
  margin: -0.12em -0.08em -0.16em -0.04em;
}

.typewriter-letter.is-space {
  width: 0.46em;
  padding: 0;
  margin: 0;
}

.script-title::after {
  content: "";
  position: absolute;
  top: var(--pencil-y);
  left: var(--pencil-x);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: translate(-15%, -35%);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.42), 0 0 34px rgba(255, 245, 205, 0.22);
}

.script-title.is-writing::after {
  opacity: 1;
}

.script-title.is-finished::after {
  content: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.waitlist {
  display: grid;
  place-items: center;
  justify-self: stretch;
  height: clamp(50px, 5.55vh, 63px);
  border-radius: 13px;
  background: #fff;
  color: #0a0a0a;
  font-size: clamp(16px, 1.12vw, 22px);
  font-weight: 750;
}

.side-arrow {
  position: absolute;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background 0.34s ease, transform 0.34s ease, box-shadow 0.34s ease;
}

.side-arrow span {
  display: block;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-1px) scale(1);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.side-arrow:hover,
.side-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 0 22px rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) scale(1.18);
}

.side-arrow:hover span,
.side-arrow:focus-visible span {
  transform: translateY(-1px) scale(1.36);
}

.side-arrow-left {
  left: -18px;
  top: 50%;
}

.side-arrow-right {
  left: calc(100% + 26px);
  top: 50%;
}

.side-arrow-return {
  z-index: 6;
  position: absolute;
}

.side-arrow-return-left {
  left: clamp(28px, 3vw, 54px);
  top: 50%;
}

.side-arrow-return-right {
  left: calc(100% - clamp(28px, 3vw, 54px));
  top: 50%;
}

.global-return-arrow {
  position: absolute;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
}

.global-return-from-left {
  left: calc(100% - clamp(28px, 3vw, 54px));
  top: 50%;
}

.global-return-from-right {
  left: clamp(28px, 3vw, 54px);
  top: 50%;
}

.experience[data-slide="left"] .global-return-from-left,
.experience[data-slide="right"] .global-return-from-right {
  opacity: 1;
  pointer-events: auto;
}

.side-arrow.quantum-restore {
  z-index: 8;
  left: 50%;
  bottom: clamp(24px, 5vh, 58px);
  top: auto;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 26px) scale(0.86);
}

.side-arrow.quantum-restore:hover,
.side-arrow.quantum-restore:focus-visible {
  transform: translate(-50%, 0) scale(1.18);
}

.quantum-page.is-video-focused .side-arrow.quantum-restore {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.side-arrow.excel-collapse {
  z-index: 80;
  left: 50%;
  right: auto;
  bottom: clamp(24px, 4vh, 44px);
  top: auto;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px) scale(0.9);
}

.side-arrow.excel-collapse:hover,
.side-arrow.excel-collapse:focus-visible {
  background: transparent;
  box-shadow: none;
  transform: translate(-50%, 0) scale(1.18);
}

.quantum-page.is-excel-fullscreen .side-arrow.excel-collapse {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.quantum-page.is-excel-collapsing .side-arrow.excel-collapse {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px) scale(0.82);
}

.side-arrow.excel-collapse span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-4px) scale(1);
}

.side-arrow.excel-collapse:hover span,
.side-arrow.excel-collapse:focus-visible span {
  transform: translateY(-4px) scale(1.34);
}

.side-hotspot {
  position: absolute;
  z-index: 5;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
  cursor: pointer;
  transition: background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.side-hotspot:hover,
.side-hotspot:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26), 0 0 26px rgba(255, 255, 255, 0.18);
  transform: scale(1.03);
}

.left-go-hotspot {
  left: 7.1%;
  top: 55.5%;
  width: 11.7%;
  height: 6.2%;
}

.left-learn-hotspot {
  left: 19.2%;
  top: 55.5%;
  width: 11.8%;
  height: 6.2%;
}

.right-launch-hotspot {
  left: 24.6%;
  top: 62.8%;
  width: 11%;
  height: 5.5%;
}

.hero-footer {
  position: absolute;
  z-index: 3;
  left: clamp(30px, 3.2vw, 64px);
  right: clamp(30px, 2.45vw, 50px);
  bottom: clamp(28px, 4.25vh, 54px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 28px;
}

.partners strong,
.audience strong {
  display: block;
  font-size: clamp(15px, 1.13vw, 21px);
  line-height: 1.25;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 1.3vw, 26px);
  margin-top: 18px;
  color: var(--soft-white);
  font-size: clamp(13px, 0.9vw, 16px);
}

.partner-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.24s ease, opacity 0.24s ease;
}

.partner-list a:hover,
.partner-list a:focus-visible {
  color: #fff;
  opacity: 1;
}

.partner-list a:nth-child(n + 4) {
  color: var(--dim-white);
}

.partner-list a[data-plan-link="lifetime"]:hover,
.partner-list a[data-plan-link="lifetime"]:focus-visible {
  color: #fff;
  opacity: 1;
}

.scroll-cue {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.scroll-cue:hover,
.scroll-cue:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.audience {
  justify-self: end;
  width: min(100%, 550px);
  text-align: right;
}

.audience p {
  margin: 16px 0 0;
  color: var(--soft-white);
  font-size: clamp(13px, 0.86vw, 16px);
  line-height: 1.45;
}

@keyframes logoBreathe {
  from {
    opacity: 0;
    transform: translateY(5px) scale(0.985);
  }

  to {
    opacity: var(--logo-breathe-opacity, 0.32);
    transform: none;
  }
}

@keyframes terminalCursor {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

.scene-transition {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
}

.scene-transition::before,
.scene-transition::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.scene-transition::before {
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 42%);
  transform: translateX(-120%);
}

.scene-transition::after {
  background: linear-gradient(180deg, transparent 0 46%, rgba(255, 255, 255, 0.24) 49%, transparent 54% 100%);
  transform: translateY(-100%);
}

.scene-transition span {
  display: block;
  min-width: 0;
  background:
    linear-gradient(180deg, rgba(9, 9, 12, 0.96), #000 42%, rgba(14, 10, 13, 0.98)),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.08), transparent 34%);
  transform: translateY(-105%);
  will-change: transform, opacity;
}

.scene-transition span:nth-child(2n) {
  transform: translateY(105%);
}

.scene-transition.is-menu-entry,
.scene-transition.is-home-return {
  opacity: 1;
}

.scene-transition.is-menu-entry span {
  animation: curtainDrop 1.22s cubic-bezier(0.76, 0, 0.24, 1) both;
}

.scene-transition.is-menu-entry span:nth-child(1) { animation-delay: 0s; }
.scene-transition.is-menu-entry span:nth-child(2) { animation-delay: 0.035s; }
.scene-transition.is-menu-entry span:nth-child(3) { animation-delay: 0.07s; }
.scene-transition.is-menu-entry span:nth-child(4) { animation-delay: 0.105s; }
.scene-transition.is-menu-entry span:nth-child(5) { animation-delay: 0.14s; }
.scene-transition.is-menu-entry span:nth-child(6) { animation-delay: 0.175s; }
.scene-transition.is-menu-entry span:nth-child(7) { animation-delay: 0.21s; }
.scene-transition.is-menu-entry span:nth-child(8) { animation-delay: 0.245s; }
.scene-transition.is-menu-entry span:nth-child(9) { animation-delay: 0.28s; }
.scene-transition.is-menu-entry span:nth-child(10) { animation-delay: 0.315s; }
.scene-transition.is-menu-entry span:nth-child(11) { animation-delay: 0.35s; }
.scene-transition.is-menu-entry span:nth-child(12) { animation-delay: 0.385s; }

.scene-transition.is-menu-entry::before {
  animation: curtainGlint 1.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.scene-transition.is-home-return {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  background: transparent;
  animation: none;
}

.scene-transition.is-home-return span {
  display: block;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #050507, #000 52%, #111017);
  transform: translate3d(-125%, 125%, 0) skewX(-16deg) scaleX(1.18);
  animation: prismReturn 1.18s cubic-bezier(0.76, 0, 0.24, 1) both;
}

.scene-transition.is-home-return span:nth-child(1) { animation-delay: 0s; }
.scene-transition.is-home-return span:nth-child(2) { animation-delay: 0.025s; }
.scene-transition.is-home-return span:nth-child(3) { animation-delay: 0.05s; }
.scene-transition.is-home-return span:nth-child(4) { animation-delay: 0.075s; }
.scene-transition.is-home-return span:nth-child(5) { animation-delay: 0.1s; }
.scene-transition.is-home-return span:nth-child(6) { animation-delay: 0.125s; }
.scene-transition.is-home-return span:nth-child(7) { animation-delay: 0.15s; }
.scene-transition.is-home-return span:nth-child(8) { animation-delay: 0.175s; }
.scene-transition.is-home-return span:nth-child(9) { animation-delay: 0.2s; }
.scene-transition.is-home-return span:nth-child(10) { animation-delay: 0.225s; }
.scene-transition.is-home-return span:nth-child(11) { animation-delay: 0.25s; }
.scene-transition.is-home-return span:nth-child(12) { animation-delay: 0.275s; }

.scene-transition.is-home-return::before {
  content: none;
}

.scene-transition.is-home-return::after {
  content: none;
}

.game-section {
  position: fixed;
  inset: 0;
  z-index: 70;
  width: 100vw;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #000;
  color: #d1d1d1;
  font-family: "Times New Roman", Times, serif;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 100%, 0);
  transition:
    opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.84s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.84s;
  will-change: transform;
}

.game-section.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.game-bg,
.game-bg-video {
  position: absolute;
  inset: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  object-fit: cover;
  opacity: 0.04;
  filter: blur(1.3px) brightness(0.82) contrast(1.12) saturate(0.92);
  transform: scale(1.035);
  transition: opacity 1.18s cubic-bezier(0.22, 1, 0.36, 1), transform 3.5s ease;
}

.game-bg-video:not([src]),
.game-bg-video[src=""] {
  display: none;
}

.game-section.is-visible .game-bg {
  opacity: 1;
  transform: scale(1);
}

.game-section.has-game-video .game-bg {
  opacity: 0;
}

.game-section.has-game-video.is-visible .game-bg-video {
  opacity: 1;
  transform: scale(1);
}

.game-section::before,
.game-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.game-section::before {
  background:
    radial-gradient(circle at 74% 58%, transparent 0 18%, rgba(0, 0, 0, 0.1) 35%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.28) 29%, transparent 55%, rgba(0, 0, 0, 0.36));
}

.game-section::after {
  opacity: 0.055;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

.storm-flash {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: #fff;
  opacity: 0;
}

.storm-flash.flash {
  animation: lightningFlash 1.3s steps(1, end);
}

.clock-hands {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 46.4%;
  width: min(40vw, 430px);
  aspect-ratio: 1;
  display: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 1.2s ease 0.24s;
}

.game-section.is-visible .clock-hands {
  opacity: 0.56;
}

.hand {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 42%;
  background: rgba(180, 166, 139, 0.34);
  transform-origin: 50% 100%;
  transform: translate(-50%, -100%) rotate(0deg);
}

.hand.hour {
  width: 7px;
  height: 29%;
  background: rgba(174, 161, 138, 0.4);
  animation: clockSpin 180s linear infinite;
}

.hand.minute {
  width: 4px;
  height: 39%;
  animation: clockSpin 42s linear infinite;
}

.hand.second {
  width: 1px;
  height: 47%;
  background: rgba(190, 18, 18, 0.35);
  animation: clockSpin 7s steps(60, end) infinite;
}

.menu-container {
  position: absolute;
  z-index: 5;
  left: var(--menu-x, 24%);
  top: var(--menu-y, 55%);
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vh, 30px);
  width: min(470px, 44vw);
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -43%) scale(1.01);
  transition: opacity 1s ease 0.52s, transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.52s;
}

.game-section.is-visible .menu-container {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.menu-item {
  position: relative;
  color: #d1d1d1;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
}

.menu-item::before {
  content: "";
  position: absolute;
  left: -38px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #ff0000;
  background: transparent;
  filter: none;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(-20px);
}

.menu-item:hover,
.menu-item:focus-visible {
  color: #ff0000;
  transform: scale(1.1);
  text-shadow: 0 0 16px rgba(255, 0, 0, 0.45);
}

.menu-item:hover::before,
.menu-item:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

.menu-item.is-clicked {
  transform: scale(0.95);
}

@keyframes clockSpin {
  to { transform: translate(-50%, -100%) rotate(360deg); }
}

@keyframes lightningFlash {
  0%, 9%, 16% { opacity: 0; }
  5% { opacity: 0.18; }
  12% { opacity: 0.08; }
  19% { opacity: 0.12; }
  29%, 100% { opacity: 0; }
}

@keyframes curtainDrop {
  0% {
    opacity: 0;
    transform: translateY(var(--start-y, -105%));
  }

  38% {
    opacity: 1;
    transform: translateY(0);
  }

  62% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(var(--end-y, 105%));
  }
}

.scene-transition span:nth-child(2n) {
  --start-y: 105%;
  --end-y: -105%;
}

@keyframes curtainGlint {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }

  42% {
    opacity: 0.75;
  }

  72% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes prismReturn {
  0% {
    opacity: 0;
    transform: translate3d(-125%, 125%, 0) skewX(-16deg) scaleX(1.18);
  }

  36% {
    opacity: 1;
    transform: translate3d(0, 0, 0) skewX(-16deg) scaleX(1.18);
  }

  58% {
    opacity: 1;
    transform: translate3d(0, 0, 0) skewX(-16deg) scaleX(1.18);
  }

  100% {
    opacity: 0;
    transform: translate3d(125%, -125%, 0) skewX(-16deg) scaleX(1.18);
  }
}

@keyframes prismGlint {
  0% {
    opacity: 0;
    transform: translate3d(-130%, 90%, 0) skewX(-16deg);
  }

  42% {
    opacity: 0.88;
  }

  100% {
    opacity: 0;
    transform: translate3d(130%, -90%, 0) skewX(-16deg);
  }
}

@keyframes prismBloom {
  0%, 100% {
    opacity: 0;
    transform: scale(0.98);
  }

  48% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@media (max-width: 800px) {
  .menu-container {
    left: 50%;
    width: 72vw;
    gap: 24px;
  }

  .menu-item {
    white-space: normal;
  }

  .clock-hands {
    width: min(78vw, 430px);
  }
}

@keyframes introOut {
  to {
    opacity: 0;
    transform: scale(0.985);
    visibility: hidden;
  }
}

@keyframes mosaicIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes mosaicOut {
  to {
    opacity: 0;
    transform: scale(1.16);
    visibility: hidden;
  }
}

@keyframes driftGrid {
  from {
    transform: translate3d(0, 80px, 0) scale(0.86);
  }

  48% {
    transform: translate3d(0, -18px, 0) scale(1);
  }

  to {
    transform: translate3d(-24px, -210px, 0) scale(1.24);
  }
}

@keyframes tileArrive {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes tileFloat {
  to {
    transform: translate3d(0, -10px, 0) scale(1.015);
  }
}

@keyframes replayMosaicShell {
  0% {
    opacity: 0;
    transform: scale(1.04);
    visibility: visible;
  }

  12% {
    opacity: 1;
    transform: scale(1);
  }

  68% {
    opacity: 1;
    transform: scale(1.025);
  }

  100% {
    opacity: 0;
    transform: scale(1.16);
    visibility: hidden;
  }
}

@keyframes replayDriftGrid {
  from {
    transform: translate3d(0, 72px, 0) scale(0.88);
  }

  48% {
    transform: translate3d(0, -18px, 0) scale(1);
  }

  to {
    transform: translate3d(-24px, -210px, 0) scale(1.24);
  }
}

@keyframes replayTileArrive {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes replayTileFloat {
  to {
    transform: translate3d(0, -10px, 0) scale(1.015);
  }
}

@keyframes heroIn {
  0% {
    opacity: 0;
    transform: scale(1.07);
    clip-path: inset(6% 2.5% 6% 2.5%);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scale(1);
    clip-path: inset(0);
  }
}

@keyframes shardDrop {
  to {
    opacity: 0.34;
    transform: none;
  }
}

@media (max-width: 800px) {
  .experience {
    min-height: 720px;
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 2px;
  }

  .announcement {
    padding: 0 13px;
    min-height: 40px;
    font-size: 12px;
  }

  .hero-copy {
    top: 48%;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .side-arrow-left {
    left: 7px;
    top: -18px;
  }

  .side-arrow-right {
    left: calc(100% - 24px);
    top: calc(100% + 24px);
  }

  .side-arrow-return-left {
    left: 24px;
    top: 50%;
  }

  .side-arrow-return-right {
    left: calc(100% - 24px);
    top: 50%;
  }

  .waitlist {
    justify-self: start;
    width: min(100%, 390px);
  }

  .hero-footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .scroll-cue {
    display: none;
  }

  .audience {
    justify-self: start;
    text-align: left;
  }

  .partner-list {
    max-width: 420px;
  }
}
