:root {
  --acid: #f4ff4b;
  --pink: #ff4fa8;
  --orange: #ff6b35;
  --mint: #52f2c7;
  --cyan: #42d7ff;
  --violet: #8557ff;
  --blue: #3046ff;
  --ink: #17121b;
  --ink-soft: #28202f;
  --paper: #fff8de;
  --paper-deep: #efe4bd;
  --plum: #180d27;
  --plum-soft: #25113c;
  --gold: #e6bd50;
  --line: rgba(23, 18, 27, 0.22);
  --page: min(1440px, calc(100vw - 40px));
  --mono: "Space Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Archivo Black", Impact, sans-serif;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 8%, rgba(133, 87, 255, 0.24), transparent 32rem),
    radial-gradient(circle at 88% 42%, rgba(255, 79, 168, 0.18), transparent 36rem),
    #10091a;
  color: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
}

body::selection {
  background: var(--acid);
  color: var(--ink);
}

body.has-dialog {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  transform: translateY(-160%);
  background: var(--acid);
  color: var(--ink);
  font: 700 0.8rem/1 var(--mono);
  text-transform: uppercase;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 4px solid var(--acid);
  outline-offset: 4px;
}

.page-noise {
  position: fixed;
  z-index: 200;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.11) 4px),
    repeating-linear-gradient(90deg, transparent 0 17px, rgba(255, 255, 255, 0.03) 18px);
  mix-blend-mode: overlay;
}

.reality-wash {
  position: fixed;
  z-index: -1;
  inset: -20%;
  pointer-events: none;
  background:
    conic-gradient(
      from 90deg at 50% 50%,
      rgba(66, 215, 255, 0.12),
      rgba(133, 87, 255, 0.12),
      rgba(255, 79, 168, 0.08),
      rgba(82, 242, 199, 0.1),
      rgba(66, 215, 255, 0.12)
    );
  filter: blur(90px);
  animation: reality-breathe 14s ease-in-out infinite alternate;
}

@keyframes reality-breathe {
  from { transform: rotate(-7deg) scale(0.95); }
  to { transform: rotate(8deg) scale(1.08); }
}

.motion-paused *,
.motion-paused *::before,
.motion-paused *::after {
  animation-play-state: paused !important;
  scroll-behavior: auto !important;
}

/* Store header */
.store-header {
  position: sticky;
  z-index: 150;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto auto auto;
  align-items: center;
  min-height: 66px;
  border-bottom: 3px solid var(--ink);
  background: color-mix(in srgb, var(--acid) 94%, transparent);
  color: var(--ink);
  box-shadow: 0 8px 0 rgba(23, 18, 27, 0.18);
  backdrop-filter: blur(12px);
}

.nsp-mark,
.store-status,
.motion-toggle,
.menu-toggle,
.store-nav {
  min-height: 63px;
}

.nsp-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 22px;
  border-right: 3px solid var(--ink);
  font: 700 0.75rem/1 var(--mono);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nsp-mark__star {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--pink);
  font-size: 1.05rem;
  animation: mark-spin 12s linear infinite;
}

@keyframes mark-spin {
  to { transform: rotate(1turn); }
}

.store-status {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 0 18px;
  font: 700 0.68rem/1.25 var(--mono);
  text-transform: uppercase;
}

.status-light {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 79, 168, 0.24);
  animation: status-pulse 1.7s steps(2, end) infinite;
}

@keyframes status-pulse {
  50% { background: var(--mint); box-shadow: 0 0 0 7px rgba(82, 242, 199, 0.16); }
}

.motion-toggle,
.menu-toggle {
  border: 0;
  border-left: 3px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 0 15px;
  font: 700 0.66rem/1 var(--mono);
  text-transform: uppercase;
}

.motion-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
}

.motion-toggle span {
  font-size: 1rem;
}

.motion-toggle:hover,
.menu-toggle:hover {
  background: var(--paper);
}

.menu-toggle {
  display: none;
}

.store-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.store-nav a {
  display: flex;
  align-items: center;
  padding: 0 13px;
  border-left: 1px solid rgba(23, 18, 27, 0.3);
  font: 700 0.63rem/1 var(--mono);
  text-decoration: none;
  text-transform: uppercase;
}

.store-nav a:hover {
  background: var(--ink);
  color: var(--acid);
}

.store-nav .nav-code {
  background: var(--pink);
}

/* Basket tab */
.basket-tab {
  position: fixed;
  z-index: 140;
  top: 102px;
  right: 0;
  filter: drop-shadow(-7px 8px 0 rgba(23, 18, 27, 0.25));
}

.basket-tab button {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 10px;
  align-items: center;
  padding: 10px 13px 11px 12px;
  border: 3px solid var(--ink);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  background: var(--pink);
  color: var(--ink);
  cursor: pointer;
  text-transform: uppercase;
}

.basket-tab__icon {
  grid-row: 1 / 3;
  font-size: 1.65rem;
}

.basket-tab__label {
  font: 700 0.56rem/1 var(--mono);
}

.basket-tab strong {
  font: 900 1rem/1 var(--display);
}

/* Facade */
.facade {
  position: relative;
  display: grid;
  min-height: calc(100svh - 66px);
  place-items: center;
  overflow: hidden;
  padding: clamp(42px, 6vw, 80px) 20px 36px;
  border-bottom: 8px solid var(--ink);
  background:
    linear-gradient(rgba(10, 8, 19, 0.05), rgba(10, 8, 19, 0.5)),
    linear-gradient(180deg, #15102c 0 42%, #554264 42% 65%, #201825 65%);
  isolation: isolate;
}

.facade__sky {
  position: absolute;
  z-index: -2;
  inset: 0 0 35%;
  background:
    radial-gradient(circle at 20% 25%, rgba(244, 255, 75, 0.25), transparent 1px) 0 0 / 42px 42px,
    radial-gradient(circle at 70% 45%, rgba(82, 242, 199, 0.32), transparent 1.5px) 0 0 / 67px 67px,
    linear-gradient(180deg, #120c2b, #251343 80%, #563554);
}

.facade__sky::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 120%, transparent 0 42%, rgba(255, 79, 168, 0.18) 43% 45%, transparent 46%),
    radial-gradient(ellipse at 50% 120%, transparent 0 58%, rgba(66, 215, 255, 0.15) 59% 60%, transparent 61%);
}

.facade__sky span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 12px var(--paper);
  animation: facade-star 3s steps(2) infinite alternate;
}

.facade__sky span:nth-child(1) { left: 9%; top: 18%; }
.facade__sky span:nth-child(2) { left: 28%; top: 41%; animation-delay: -1s; }
.facade__sky span:nth-child(3) { left: 62%; top: 14%; animation-delay: -2s; }
.facade__sky span:nth-child(4) { left: 83%; top: 38%; animation-delay: -0.5s; }
.facade__sky span:nth-child(5) { left: 46%; top: 26%; animation-delay: -1.6s; }

@keyframes facade-star {
  to { transform: scale(2.5); opacity: 0.3; }
}

.facade__building {
  width: min(1130px, 94vw);
  margin-bottom: 80px;
  border: 5px solid var(--ink);
  background: #e9e0bc;
  color: var(--ink);
  box-shadow:
    0 24px 0 #16101e,
    0 38px 60px rgba(0, 0, 0, 0.55);
}

.facade__roofline {
  display: flex;
  justify-content: space-between;
  padding: 7px 12px;
  border-bottom: 3px solid var(--ink);
  background: var(--acid);
  font: 700 0.62rem/1 var(--mono);
  text-transform: uppercase;
}

.facade__sign {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 170px;
  padding: 20px;
  overflow: hidden;
  border-bottom: 5px solid var(--ink);
  background:
    repeating-linear-gradient(90deg, rgba(23, 18, 27, 0.04) 0 2px, transparent 2px 28px),
    linear-gradient(130deg, #fffce7, #f2e8bd);
  text-align: center;
}

.facade__star {
  display: grid;
  width: clamp(78px, 9vw, 118px);
  height: clamp(78px, 9vw, 118px);
  flex: 0 0 auto;
  place-items: center;
  border: 5px solid var(--ink);
  border-radius: 50%;
  background: conic-gradient(var(--pink), var(--orange), var(--acid), var(--mint), var(--cyan), var(--violet), var(--pink));
  box-shadow: 9px 10px 0 var(--ink);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  animation: sign-orbit 12s linear infinite;
}

@keyframes sign-orbit {
  to { filter: hue-rotate(360deg); }
}

.facade__sign p,
.facade__sign .facade__title,
.facade__sign strong {
  margin: 0;
  text-transform: uppercase;
}

.facade__sign p {
  font: 700 clamp(0.7rem, 1.4vw, 0.92rem)/1 var(--mono);
  letter-spacing: 0.3em;
}

.facade__sign .facade__title {
  font: 400 clamp(2.5rem, 7vw, 6.2rem)/0.88 var(--display);
  letter-spacing: -0.075em;
}

.facade__sign strong {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 12px;
  transform: rotate(-1deg);
  background: var(--pink);
  box-shadow: 5px 5px 0 var(--ink);
  font: 700 clamp(0.72rem, 1.5vw, 1.05rem)/1 var(--mono);
  letter-spacing: 0.15em;
}

.facade__orbit {
  position: absolute;
  right: -5%;
  width: 240px;
  aspect-ratio: 1;
  border: 2px dashed rgba(23, 18, 27, 0.25);
  border-radius: 50%;
}

.facade__orbit::before,
.facade__orbit::after {
  content: "";
  position: absolute;
  inset: 22%;
  border: inherit;
  border-radius: inherit;
}

.facade__orbit::after {
  inset: 42%;
  background: var(--ink);
}

.facade__windows {
  display: grid;
  grid-template-columns: 1fr 0.78fr 1fr;
  min-height: 320px;
  border-bottom: 5px solid var(--ink);
  background: #191128;
}

.facade-window,
.automatic-doors {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-right: 5px solid var(--ink);
}

.facade-window--right {
  border-right: 0;
}

.facade-window {
  background:
    linear-gradient(180deg, rgba(66, 215, 255, 0.25), rgba(133, 87, 255, 0.2)),
    repeating-linear-gradient(155deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 18px),
    #140d27;
  box-shadow: inset 0 0 80px rgba(66, 215, 255, 0.16);
}

.facade-window::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(244, 255, 75, 0.3);
  pointer-events: none;
}

.window-poster {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 26px;
  display: grid;
  width: 145px;
  aspect-ratio: 0.8;
  place-items: center;
  transform: rotate(-5deg);
  border: 4px solid var(--ink);
  background: var(--pink);
  box-shadow: 8px 9px 0 rgba(0, 0, 0, 0.4);
  text-align: center;
}

.window-poster b {
  font: 400 3.7rem/0.8 var(--display);
}

.window-poster small {
  font: 700 0.72rem/1.2 var(--mono);
  text-transform: uppercase;
}

.window-product {
  position: absolute;
  bottom: 16px;
  display: block;
  border: 3px solid var(--ink);
  background: var(--acid);
  box-shadow: 6px 7px 0 rgba(0, 0, 0, 0.4);
}

.window-product--one {
  right: 20px;
  width: 78px;
  height: 150px;
  border-radius: 50% 50% 15px 15px;
  background: linear-gradient(var(--cyan) 0 25%, var(--paper) 25% 30%, var(--violet) 30%);
}

.window-product--two {
  right: 100px;
  width: 85px;
  height: 90px;
  background:
    radial-gradient(circle, var(--ink) 0 10%, transparent 11%) center / 28px 28px,
    var(--orange);
}

.window-product--three {
  right: 190px;
  width: 45px;
  height: 120px;
  background: repeating-linear-gradient(45deg, var(--mint) 0 12px, var(--pink) 12px 24px);
}

.automatic-doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0c0714;
}

.automatic-doors::before {
  content: "AUTOMATIC CAUSALITY";
  position: absolute;
  z-index: 3;
  top: 12px;
  left: 50%;
  width: max-content;
  padding: 5px 10px;
  transform: translateX(-50%);
  border: 2px solid var(--ink);
  background: var(--acid);
  font: 700 0.56rem/1 var(--mono);
}

.automatic-doors__glass {
  display: grid;
  place-items: center;
  border-right: 2px solid rgba(244, 255, 75, 0.5);
  background:
    linear-gradient(110deg, transparent 0 35%, rgba(255, 255, 255, 0.2) 36% 39%, transparent 40%),
    radial-gradient(circle at 50% 62%, rgba(255, 79, 168, 0.25), transparent 10%, rgba(133, 87, 255, 0.1) 11% 24%, transparent 25%),
    rgba(66, 215, 255, 0.13);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.automatic-doors__glass--right {
  border-right: 0;
}

.automatic-doors__glass span {
  color: rgba(244, 255, 75, 0.68);
  font-size: 2.5rem;
}

.facade.is-opening .automatic-doors__glass--left {
  transform: translateX(-88%);
}

.facade.is-opening .automatic-doors__glass--right {
  transform: translateX(88%);
}

.enter-store {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  width: min(260px, calc(100% - 24px));
  padding: 11px 14px;
  transform: translateX(-50%) rotate(-1deg);
  border: 3px solid var(--ink);
  background: var(--pink);
  color: var(--ink);
  box-shadow: 7px 8px 0 var(--ink);
  cursor: pointer;
  text-align: left;
}

.enter-store:hover {
  transform: translate(-50%, -3px) rotate(1deg);
  background: var(--acid);
}

.enter-store span,
.enter-store strong,
.enter-store small {
  display: block;
}

.enter-store span,
.enter-store small {
  font: 700 0.52rem/1.25 var(--mono);
  text-transform: uppercase;
}

.enter-store strong {
  margin: 4px 0;
  font: 400 1rem/1 var(--display);
  text-transform: uppercase;
}

.window-hours {
  position: absolute;
  top: 48px;
  left: 50%;
  display: flex;
  width: 220px;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%) rotate(2deg);
  color: var(--acid);
  font: 400 1.3rem/1 var(--display);
  text-align: center;
  text-shadow: 0 0 18px rgba(244, 255, 75, 0.55);
  text-transform: uppercase;
}

.window-hours b {
  margin: 8px 0;
  font-size: 4rem;
}

.window-hours small {
  font: 700 0.62rem/1 var(--mono);
}

.facade-mote {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: grid;
  width: 92px;
  height: 72px;
  place-items: center;
  transform: translateX(-50%) rotate(-4deg);
  border: 3px solid var(--ink);
  background:
    repeating-linear-gradient(90deg, var(--ink) 0 3px, transparent 3px 7px) center 12px / 70% 20px no-repeat,
    var(--paper);
  box-shadow: 7px 8px 0 rgba(0, 0, 0, 0.5);
  font: 700 0.58rem/1 var(--mono);
}

.facade-mote span {
  width: 16px;
  height: 16px;
  margin-top: 15px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
}

.facade__curb {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  background: repeating-linear-gradient(135deg, var(--acid) 0 18px, var(--ink) 18px 36px);
  color: var(--paper);
  font: 700 0.6rem/1 var(--mono);
  text-shadow: 2px 2px 0 var(--ink);
  text-transform: uppercase;
}

.facade__invitation {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 25px;
  display: flex;
  max-width: 560px;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  border: 3px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 8px 9px 0 var(--pink);
}

.facade__invitation p {
  margin: 0;
  font-size: 0.78rem;
}

.facade__invitation p strong {
  display: block;
  font: 400 1rem/1 var(--display);
  text-transform: uppercase;
}

.facade__invitation button,
.facade__invitation a {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 700 0.62rem/1.2 var(--mono);
  text-decoration: underline;
  text-transform: uppercase;
}

.facade__invitation button {
  padding: 10px;
  background: var(--acid);
  text-decoration: none;
}

/* Interior hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(520px, 1.25fr);
  min-height: calc(100svh - 66px);
  overflow: hidden;
  border-bottom: 8px solid var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 79, 168, 0.25), transparent 30rem),
    radial-gradient(circle at 80% 75%, rgba(82, 242, 199, 0.15), transparent 34rem),
    #160a24;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 50% 50%, transparent 0 40px, rgba(244, 255, 75, 0.24) 41px 42px, transparent 43px 80px);
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 110px) clamp(26px, 5vw, 76px);
}

.department-stamp {
  display: flex;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  margin-bottom: 36px;
  transform: rotate(-1deg);
  border: 2px solid var(--acid);
  color: var(--acid);
  font: 700 0.55rem/1 var(--mono);
  text-transform: uppercase;
}

.department-stamp span {
  padding: 8px 10px;
  border-right: 1px solid currentColor;
}

.department-stamp span:last-child {
  border-right: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: currentColor;
  font: 700 0.65rem/1.4 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font: 400 clamp(3.2rem, 7vw, 7.4rem)/0.82 var(--display);
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  color: var(--paper);
}

.hero h1 strong {
  width: fit-content;
  margin-top: 12px;
  padding: 8px 12px 4px;
  transform: rotate(-1.5deg);
  background: var(--acid);
  color: var(--ink);
  box-shadow: 9px 10px 0 var(--pink);
  font-size: 0.82em;
}

.hero__tagline {
  margin: 34px 0 12px;
  color: var(--mint);
  font: 700 clamp(1rem, 2vw, 1.5rem)/1.15 var(--mono);
  text-transform: uppercase;
}

.hero__lede {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 248, 222, 0.78);
  font-size: clamp(0.96rem, 1.3vw, 1.1rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 17px;
  border: 3px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 6px 7px 0 var(--ink);
  font: 700 0.66rem/1.2 var(--mono);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

button.button {
  cursor: pointer;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 10px 0 var(--ink);
}

.button--ink {
  border-color: var(--acid);
  background: var(--ink);
  color: var(--acid);
  box-shadow: 6px 7px 0 var(--pink);
}

.button--acid {
  background: var(--acid);
}

.button--paper {
  background: var(--paper);
}

.button--large {
  min-height: 70px;
  flex-direction: column;
  gap: 3px;
  padding-inline: 28px;
  font: 400 1rem/1 var(--display);
}

.button--large span {
  font: 700 0.62rem/1 var(--mono);
}

.text-link {
  color: var(--paper);
  font: 700 0.65rem/1.2 var(--mono);
  text-underline-offset: 5px;
  text-transform: uppercase;
}

.customer-notice {
  display: flex;
  max-width: 540px;
  gap: 12px;
  margin-top: 36px;
  padding: 12px 14px;
  transform: rotate(0.6deg);
  border: 2px dashed rgba(255, 248, 222, 0.38);
  background: rgba(255, 248, 222, 0.06);
}

.customer-notice__icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font: 400 1rem/1 var(--display);
}

.customer-notice p {
  margin: 0;
  color: rgba(255, 248, 222, 0.7);
  font: 400 0.7rem/1.5 var(--mono);
}

.customer-notice strong {
  display: block;
  color: var(--paper);
  text-transform: uppercase;
}

.hero__world {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(30px, 5vw, 70px) clamp(24px, 4vw, 60px) clamp(80px, 8vw, 120px) 0;
}

.window-label {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  border: 3px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
  font: 700 0.58rem/1 var(--mono);
  text-transform: uppercase;
}

.window-label--top {
  border-bottom: 0;
}

.window-label--bottom {
  border-top: 0;
  background: var(--mint);
}

.store-window {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 4px solid var(--ink);
  background: var(--ink);
  box-shadow:
    16px 18px 0 rgba(255, 79, 168, 0.55),
    28px 30px 0 rgba(82, 242, 199, 0.2);
  perspective: 800px;
}

.store-window::before,
.store-window::after {
  content: "";
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

.store-window::before {
  inset: 12px;
  border: 1px solid rgba(244, 255, 75, 0.35);
}

.store-window::after {
  inset: 0;
  background:
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(244, 255, 75, 0.13), transparent 22%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.13), transparent 22% 78%, rgba(255, 255, 255, 0.08));
}

.store-window img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  transform: scale(1.015) translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform 180ms ease-out;
}

.store-window__tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 5, 22, 0.08), rgba(12, 5, 22, 0.32)),
    radial-gradient(circle at 50% 55%, transparent 35%, rgba(10, 3, 20, 0.46));
  pointer-events: none;
}

.world-hotspot {
  position: absolute;
  z-index: 10;
  left: var(--x);
  top: var(--y);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px 5px 5px;
  transform: translate(-50%, -50%);
  border: 2px solid var(--ink);
  border-radius: 99px;
  background: var(--acid);
  color: var(--ink);
  box-shadow: 4px 5px 0 rgba(23, 18, 27, 0.7);
  font: 700 clamp(0.48rem, 0.7vw, 0.68rem)/1 var(--mono);
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease;
}

.world-hotspot::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -8px;
  border: 2px solid rgba(244, 255, 75, 0.7);
  border-radius: inherit;
  animation: hotspot-ring 2.3s ease-out infinite;
}

.world-hotspot:nth-of-type(even)::after {
  animation-delay: -1.1s;
}

@keyframes hotspot-ring {
  from { transform: scale(0.78); opacity: 0.9; }
  to { transform: scale(1.25); opacity: 0; }
}

.world-hotspot:hover,
.world-hotspot:focus-visible {
  z-index: 12;
  transform: translate(-50%, -50%) scale(1.12) rotate(-2deg);
  background: var(--pink);
}

.world-hotspot span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
}

.attendant-card {
  position: absolute;
  right: 20px;
  bottom: 24px;
  display: flex;
  max-width: 390px;
  gap: 12px;
  padding: 12px;
  transform: rotate(-2deg);
  border: 3px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 7px 8px 0 var(--pink);
}

.attendant-card__portrait {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  background: radial-gradient(circle, var(--acid) 0 15%, var(--violet) 16% 45%, var(--ink) 46%);
  color: var(--paper);
  font-size: 1.4rem;
}

.attendant-card strong {
  font: 400 0.76rem/1.1 var(--display);
  text-transform: uppercase;
}

.attendant-card p {
  margin: 4px 0 0;
  font: 400 0.58rem/1.35 var(--mono);
}

/* Announcement */
.announcement {
  overflow: hidden;
  border-bottom: 5px solid var(--ink);
  background: var(--pink);
  color: var(--ink);
}

.announcement__track {
  display: flex;
  width: max-content;
  gap: 26px;
  padding: 11px 0;
  animation: announcement-scroll 26s linear infinite;
  font: 400 clamp(0.8rem, 1.3vw, 1.15rem)/1 var(--display);
  text-transform: uppercase;
}

.announcement__track i {
  font-style: normal;
}

@keyframes announcement-scroll {
  to { transform: translateX(-50%); }
}

/* Shared sections */
.section-shell {
  position: relative;
  width: 100%;
  padding: clamp(64px, 8vw, 120px) max(20px, calc((100vw - 1440px) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 36px;
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 66px);
}

.section-heading h2 {
  margin: 0;
  font: 400 clamp(2.4rem, 5.6vw, 5.8rem)/0.9 var(--display);
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 52ch;
  margin: 0;
  color: rgba(255, 248, 222, 0.72);
  font-size: 1.02rem;
}

/* Directory */
.directory {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 79, 168, 0.13), transparent 28%),
    var(--paper);
  color: var(--ink);
}

.directory::before {
  content: "DIRECTORY";
  position: absolute;
  top: 20px;
  right: -24px;
  color: rgba(23, 18, 27, 0.045);
  font: 400 clamp(5rem, 16vw, 15rem)/1 var(--display);
  letter-spacing: -0.08em;
}

.directory .section-heading > p {
  color: rgba(23, 18, 27, 0.72);
}

.aisle-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.aisle-card {
  position: relative;
  grid-column: span 4;
  min-height: 310px;
  overflow: hidden;
  padding: 23px;
  border: 4px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
  box-shadow: 9px 10px 0 var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.aisle-card:nth-child(2),
.aisle-card:nth-child(5) {
  transform: translateY(18px);
}

.aisle-card:hover {
  z-index: 2;
  transform: translate(-4px, -6px) rotate(-1deg);
  box-shadow: 15px 17px 0 var(--ink);
}

.aisle-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -45px;
  width: 170px;
  height: 170px;
  border: 20px solid rgba(23, 18, 27, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 20px transparent,
    0 0 0 22px rgba(23, 18, 27, 0.1),
    0 0 0 42px transparent,
    0 0 0 44px rgba(23, 18, 27, 0.1);
}

.aisle-card__number,
.aisle-card__status {
  position: relative;
  z-index: 1;
  font: 700 0.6rem/1 var(--mono);
  text-transform: uppercase;
}

.aisle-card__number {
  display: inline-block;
  padding: 7px 8px;
  border: 2px solid currentColor;
  background: rgba(255, 255, 255, 0.2);
}

.aisle-card__icon {
  position: absolute;
  top: 18px;
  right: 22px;
  font: 400 3.5rem/1 var(--display);
}

.aisle-card h3 {
  position: relative;
  z-index: 1;
  max-width: 9ch;
  margin: 70px 0 12px;
  font: 400 clamp(1.8rem, 3vw, 2.8rem)/0.9 var(--display);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.aisle-card p {
  position: relative;
  z-index: 1;
  max-width: 35ch;
  margin: 0 0 48px;
  font-weight: 600;
}

.aisle-card__status {
  position: absolute;
  z-index: 2;
  bottom: 19px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.aisle-card__status b {
  font-size: 1.4rem;
}

.aisle-card--night {
  background: var(--violet);
  color: var(--paper);
}

.aisle-card--library {
  background: var(--cyan);
}

.aisle-card--workshop {
  background: var(--orange);
}

.aisle-card--circle {
  background: var(--mint);
}

.aisle-card--garden {
  background: #56e26e;
}

.aisle-card--thoughts {
  background: var(--pink);
}

.aisle-card--sample {
  background:
    radial-gradient(circle at 82% 27%, rgba(244, 255, 75, 0.9) 0 4%, transparent 4.5%),
    radial-gradient(circle at 82% 27%, transparent 0 11%, rgba(244, 255, 75, 0.35) 11.5% 12%, transparent 12.5%),
    var(--ink);
  color: var(--paper);
}

/* Product shelf */
.shelf {
  border-top: 8px solid var(--ink);
  border-bottom: 8px solid var(--ink);
  background:
    linear-gradient(rgba(23, 18, 27, 0.06) 1px, transparent 1px) 0 0 / 100% 34px,
    linear-gradient(90deg, rgba(23, 18, 27, 0.05) 1px, transparent 1px) 0 0 / 34px 100%,
    var(--mint);
  color: var(--ink);
}

.section-heading--shelf > p {
  color: rgba(23, 18, 27, 0.74);
}

.shelf-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
  gap: clamp(26px, 4vw, 58px);
  align-items: start;
}

.product-bay {
  border: 5px solid var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 30%),
    #6d6381;
  box-shadow: 14px 16px 0 rgba(23, 18, 27, 0.25);
}

.shelf-sign {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 22px;
  border-bottom: 5px solid var(--ink);
  background: var(--pink);
  text-transform: uppercase;
}

.shelf-sign span {
  font: 400 clamp(1.1rem, 2.2vw, 2rem)/1 var(--display);
}

.shelf-sign strong {
  transform: rotate(2deg);
  font: 400 clamp(1.8rem, 4vw, 3.5rem)/1 var(--display);
}

.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 32px 18px;
  padding: clamp(32px, 5vw, 58px) clamp(20px, 4vw, 44px) 22px;
  background:
    linear-gradient(180deg, transparent 0 47%, #b6aebd 47% 49%, #3a3244 49% 53%, transparent 53% 96%, #b6aebd 96% 98%, #3a3244 98%);
}

.product {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
  padding: 0 0 62px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.product:hover .product__package,
.product:focus-visible .product__package {
  transform: translateY(-10px) rotate(1deg);
  filter: saturate(1.16);
}

.product__package {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  overflow: hidden;
  padding: 18px;
  border: 4px solid var(--ink);
  background: var(--paper);
  box-shadow: 7px 8px 0 rgba(23, 18, 27, 0.55);
  transition: transform 180ms ease, filter 180ms ease;
}

.product__seal {
  align-self: flex-end;
  padding: 5px 7px;
  transform: rotate(4deg);
  border: 2px solid currentColor;
  font: 700 0.48rem/1 var(--mono);
}

.product__brand {
  margin-top: 22px;
  font: 700 0.55rem/1 var(--mono);
  text-transform: uppercase;
}

.product__package > strong {
  position: relative;
  z-index: 2;
  margin: 7px 0 10px;
  font: 400 clamp(1.25rem, 2.1vw, 2rem)/0.9 var(--display);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.product__package > small {
  position: relative;
  z-index: 2;
  max-width: 20ch;
  font: 700 0.52rem/1.35 var(--mono);
  text-transform: uppercase;
}

.product__shelf-copy {
  display: block;
  margin-top: 18px;
  color: var(--paper);
}

.product__shelf-copy strong,
.product__shelf-copy span {
  display: block;
}

.product__shelf-copy strong {
  font: 700 0.75rem/1.15 var(--mono);
  text-transform: uppercase;
}

.product__shelf-copy span {
  margin-top: 4px;
  color: rgba(255, 248, 222, 0.6);
  font-size: 0.7rem;
}

.price-tag {
  position: absolute;
  right: 0;
  bottom: 8px;
  display: block;
  min-width: 78px;
  padding: 7px 8px;
  transform: rotate(-2deg);
  border: 3px solid var(--ink);
  background: var(--acid);
  box-shadow: 4px 5px 0 var(--ink);
  font: 400 1.55rem/1 var(--display);
  text-align: center;
}

.price-tag sup {
  font: 700 0.65rem/1 var(--mono);
}

.price-tag small {
  font-size: 0.65em;
}

.price-tag--free {
  background: var(--pink);
  font-size: 1.1rem;
}

.product--maybe .product__package {
  background:
    radial-gradient(circle at 50% 85%, rgba(255, 255, 255, 0.7) 0 14%, transparent 14.5%),
    linear-gradient(145deg, var(--pink), #ff9bd0);
}

.product__window {
  position: absolute;
  right: -18px;
  bottom: -28px;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 18px solid rgba(23, 18, 27, 0.12);
  border-radius: 50%;
  font: 400 5rem/1 var(--display);
}

.product--moon .product__package {
  background:
    repeating-linear-gradient(45deg, transparent 0 13px, rgba(255, 255, 255, 0.12) 13px 15px),
    var(--blue);
  color: var(--paper);
}

.product__moon {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 31%, rgba(23, 18, 27, 0.16) 0 8%, transparent 8.5%),
    radial-gradient(circle at 65% 62%, rgba(23, 18, 27, 0.13) 0 12%, transparent 12.5%),
    var(--acid);
  box-shadow: 0 0 25px var(--acid);
}

.product--deja .product__package {
  background: var(--orange);
}

.product__rings {
  position: absolute;
  right: -36px;
  bottom: -32px;
  width: 165px;
  height: 165px;
  border: 14px solid var(--paper);
  border-radius: 50%;
  box-shadow:
    0 0 0 13px var(--violet),
    0 0 0 26px var(--paper),
    0 0 0 39px var(--violet);
}

.product--threshold .product__package {
  background:
    linear-gradient(145deg, transparent 0 45%, rgba(255, 255, 255, 0.25) 45% 47%, transparent 47%),
    var(--acid);
}

.product__door {
  position: absolute;
  right: 18px;
  bottom: -5px;
  width: 95px;
  height: 140px;
  transform: perspective(400px) rotateY(-20deg);
  border: 7px solid var(--ink);
  background:
    radial-gradient(circle at 80% 50%, var(--acid) 0 3%, transparent 3.5%),
    linear-gradient(90deg, var(--violet), var(--pink));
  box-shadow: inset 10px 0 0 rgba(255, 255, 255, 0.18);
}

.product--ego .product__package {
  border-radius: 46% 46% 16% 16%;
  background: var(--cyan);
}

.product__spark {
  position: absolute;
  right: 2px;
  bottom: -20px;
  color: var(--paper);
  font-size: 9rem;
  line-height: 1;
  opacity: 0.56;
}

.product--ring .product__package {
  background:
    repeating-radial-gradient(circle at 50% 70%, transparent 0 16px, rgba(244, 255, 75, 0.2) 17px 19px),
    var(--plum);
  color: var(--paper);
}

.product__eye {
  position: absolute;
  right: -4px;
  bottom: -16px;
  color: var(--acid);
  font-size: 9rem;
  line-height: 1;
}

.shelf-edge {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 14px;
  border-top: 4px solid var(--ink);
  background: var(--acid);
  font: 700 0.55rem/1 var(--mono);
  text-transform: uppercase;
}

/* Receipt */
.receipt {
  position: sticky;
  top: 90px;
  min-height: 600px;
  padding: 28px 26px 34px;
  color: var(--ink);
  filter: drop-shadow(12px 14px 0 rgba(23, 18, 27, 0.22));
  background:
    linear-gradient(-45deg, transparent 10px, var(--paper) 0) 0 0 / 20px 20px repeat-x,
    linear-gradient(225deg, transparent 10px, var(--paper) 0) 0 100% / 20px 20px repeat-x,
    linear-gradient(var(--paper), var(--paper)) 0 10px / 100% calc(100% - 20px) no-repeat;
  font-family: var(--mono);
}

.receipt__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 2px dashed var(--ink);
}

.receipt__brand > span {
  font-size: 2.3rem;
}

.receipt__brand strong,
.receipt__brand small {
  display: block;
}

.receipt__brand strong {
  font: 400 0.8rem/1 var(--display);
  text-transform: uppercase;
}

.receipt__brand small {
  margin-top: 5px;
  font-size: 0.5rem;
  text-transform: uppercase;
}

.receipt__meta {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 2px dashed var(--ink);
  font-size: 0.56rem;
  text-transform: uppercase;
}

.receipt h3 {
  margin: 20px 0 12px;
  font: 400 1.25rem/1 var(--display);
  text-transform: uppercase;
}

.receipt__lines {
  min-height: 124px;
  padding-bottom: 14px;
  border-bottom: 2px dashed var(--ink);
}

.receipt__empty {
  margin: 30px 0;
  color: rgba(23, 18, 27, 0.54);
  font-size: 0.66rem;
  text-align: center;
}

.receipt-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 7px 0;
  font-size: 0.59rem;
  text-transform: uppercase;
}

.receipt-line b {
  font-weight: 700;
}

.receipt__total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.recall-code {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 3px solid var(--ink);
  background: var(--acid);
  text-align: center;
}

.recall-code span {
  font-size: 0.55rem;
}

.recall-code strong {
  font: 400 1.7rem/1 var(--display);
  letter-spacing: 0.3em;
}

.receipt__fineprint {
  margin: 15px 0;
  font-size: 0.5rem;
}

.receipt__actions {
  display: flex;
  gap: 8px;
}

.receipt__actions button {
  flex: 1;
  padding: 8px;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 700 0.52rem/1 var(--mono);
  text-transform: uppercase;
}

.receipt__actions button:hover {
  background: var(--pink);
}

.receipt__thanks {
  margin: 18px 0 9px;
  font: 400 0.72rem/1 var(--display);
  text-align: center;
  text-transform: uppercase;
}

.barcode {
  height: 52px;
  margin: 0 auto;
  background: repeating-linear-gradient(
    90deg,
    var(--ink) 0 2px,
    transparent 2px 4px,
    var(--ink) 4px 5px,
    transparent 5px 9px,
    var(--ink) 9px 13px,
    transparent 13px 15px
  );
}

/* Orientation */
.orientation {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: start;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 79, 168, 0.18), transparent 30rem),
    var(--plum);
}

.orientation__manual {
  min-width: 0;
}

.orientation h2 {
  max-width: 11ch;
  margin: 0;
  font: 400 clamp(3rem, 6vw, 6.4rem)/0.86 var(--display);
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.orientation__intro {
  max-width: 62ch;
  margin: 28px 0 36px;
  color: rgba(255, 248, 222, 0.75);
  font-size: 1.08rem;
}

.manual-pages {
  border-top: 3px solid rgba(255, 248, 222, 0.3);
}

.manual-pages details {
  border-bottom: 3px solid rgba(255, 248, 222, 0.3);
}

.manual-pages summary {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font: 400 clamp(0.94rem, 1.6vw, 1.25rem)/1.2 var(--display);
  list-style: none;
  text-transform: uppercase;
}

.manual-pages summary::-webkit-details-marker {
  display: none;
}

.manual-pages summary span {
  color: var(--acid);
  font: 700 0.7rem/1 var(--mono);
}

.manual-pages details[open] summary {
  color: var(--acid);
}

.manual-pages details p {
  max-width: 66ch;
  margin: -5px 0 22px 50px;
  color: rgba(255, 248, 222, 0.72);
}

.casefile-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 36px;
  padding: 16px;
  transform: rotate(-0.5deg);
  border: 3px solid var(--ink);
  background: var(--cyan);
  color: var(--ink);
  box-shadow: 8px 9px 0 var(--acid);
  text-decoration: none;
}

.casefile-link:hover {
  transform: rotate(0.5deg) translateY(-3px);
}

.casefile-link__stamp {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  transform: rotate(-7deg);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font: 400 0.66rem/1 var(--display);
  text-align: center;
  text-transform: uppercase;
}

.casefile-link small,
.casefile-link strong,
.casefile-link em {
  display: block;
}

.casefile-link small {
  font: 700 0.5rem/1 var(--mono);
  text-transform: uppercase;
}

.casefile-link strong {
  margin: 4px 0;
  font: 400 1.05rem/1 var(--display);
  text-transform: uppercase;
}

.casefile-link em {
  font: 400 0.62rem/1 var(--mono);
}

.casefile-link > b {
  font-size: 2rem;
}

.orientation__poster {
  position: sticky;
  top: 100px;
  overflow: hidden;
  padding: 20px 26px 30px;
  transform: rotate(1deg);
  border: 5px solid var(--ink);
  background: var(--pink);
  color: var(--ink);
  box-shadow:
    12px 14px 0 var(--acid),
    24px 28px 0 rgba(82, 242, 199, 0.3);
}

.poster-topline {
  padding-bottom: 10px;
  border-bottom: 3px solid var(--ink);
  font: 700 0.52rem/1 var(--mono);
  text-transform: uppercase;
}

.poster-title {
  display: block;
  margin: 22px 0;
  font: 400 clamp(2.1rem, 4vw, 4rem)/0.82 var(--display);
  letter-spacing: -0.05em;
}

.poster-eye {
  position: relative;
  display: grid;
  height: 160px;
  place-items: center;
  overflow: hidden;
  border: 4px solid var(--ink);
  background:
    repeating-radial-gradient(ellipse at center, transparent 0 17px, rgba(23, 18, 27, 0.2) 18px 21px),
    var(--acid);
}

.poster-eye::before,
.poster-eye::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 115px;
  border: 9px solid var(--ink);
  border-radius: 80% 0 80% 0;
  transform: rotate(45deg);
}

.poster-eye::after {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--violet);
  transform: none;
}

.poster-eye span {
  position: relative;
  z-index: 2;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--acid);
}

.orientation__poster ol {
  padding: 0;
  list-style: none;
  counter-reset: rules;
}

.orientation__poster li {
  position: relative;
  padding: 11px 0 11px 42px;
  border-bottom: 2px solid rgba(23, 18, 27, 0.28);
  counter-increment: rules;
  font-size: 0.8rem;
}

.orientation__poster li::before {
  content: counter(rules, decimal-leading-zero);
  position: absolute;
  left: 0;
  font: 700 0.65rem/1 var(--mono);
}

.orientation__poster > p {
  margin: 17px 0 0;
  font: 700 0.55rem/1.4 var(--mono);
  text-transform: uppercase;
}

/* Initiation path */
.signal-exchange {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(244, 255, 75, 0.08), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(82, 242, 199, 0.15), transparent 27rem),
    var(--plum);
}

.signal-exchange::before {
  content: "⌬  ↔  IDC  ↔  IDG  ↔  IDR  ↔  IRL  ↔  ⌬";
  position: absolute;
  top: 26px;
  right: -34px;
  transform: rotate(4deg);
  color: rgba(244, 255, 75, 0.12);
  font: 700 clamp(1.2rem, 3.6vw, 3.4rem)/1 var(--mono);
  letter-spacing: 0.08em;
  white-space: nowrap;
  pointer-events: none;
}

.section-heading--signals {
  position: relative;
  z-index: 1;
}

.section-heading--signals h2 {
  color: var(--acid);
}

.signal-exchange__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.signal-card {
  position: relative;
  min-height: 310px;
  padding: 22px 18px 18px;
  overflow: hidden;
  border: 3px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 7px 8px 0 var(--signal-accent, var(--pink));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.signal-card:hover,
.signal-card:focus-visible {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 11px 13px 0 var(--signal-accent, var(--pink));
}

.signal-card--idc {
  --signal-accent: var(--pink);
}

.signal-card--idg {
  --signal-accent: var(--acid);
}

.signal-card--idr {
  --signal-accent: var(--cyan);
}

.signal-card--irl {
  --signal-accent: var(--mint);
}

.signal-card__code {
  display: inline-grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--signal-accent, var(--pink));
  font: 400 1.05rem/1 var(--display);
  transform: rotate(-3deg);
}

.signal-card small {
  display: block;
  margin-top: 13px;
  font: 700 0.48rem/1.3 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-card h3 {
  margin: 9px 0 15px;
  font: 400 clamp(1.25rem, 2vw, 1.75rem)/0.98 var(--display);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.signal-card p {
  margin: 8px 0;
  font-size: 0.74rem;
  line-height: 1.45;
}

.signal-card p b {
  color: color-mix(in srgb, var(--signal-accent) 70%, var(--ink));
  font: 700 0.58rem/1 var(--mono);
}

.signal-card em {
  position: absolute;
  right: 16px;
  bottom: 14px;
  font: normal 700 0.52rem/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-exchange__ledger {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 14px 17px;
  border: 2px dashed var(--acid);
  background: rgba(23, 18, 27, 0.78);
}

.signal-exchange__ledger > span {
  color: var(--acid);
  font-size: 1.5rem;
}

.signal-exchange__ledger p {
  margin: 0;
  font-size: 0.74rem;
}

.signal-exchange__ledger a {
  padding: 8px 10px;
  border: 2px solid var(--paper);
  color: var(--paper);
  font: 700 0.5rem/1 var(--mono);
  text-decoration: none;
  text-transform: uppercase;
}

.signal-exchange__ledger a:hover,
.signal-exchange__ledger a:focus-visible {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.path {
  overflow: hidden;
  border-top: 8px solid var(--ink);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 79, 168, 0.18), transparent 40rem),
    #08050d;
}

.path::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background:
    repeating-radial-gradient(circle at 50% 50%, transparent 0 60px, var(--acid) 61px 62px, transparent 63px 120px);
}

.section-heading--path,
.path-counter {
  position: relative;
}

.path-counter {
  overflow-x: auto;
  padding: 20px 10px 34px;
  scrollbar-color: var(--pink) var(--ink-soft);
}

.path-counter ol {
  display: grid;
  width: max-content;
  grid-template-columns: repeat(22, 126px);
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-counter li {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: end;
  overflow: hidden;
  padding: 14px;
  border: 3px solid rgba(255, 248, 222, 0.26);
  background: rgba(255, 248, 222, 0.04);
}

.path-counter li::before {
  content: "LOCKED";
  position: absolute;
  top: 36px;
  left: -17px;
  width: 90px;
  transform: rotate(-45deg);
  border-block: 1px solid currentColor;
  color: rgba(255, 248, 222, 0.25);
  font: 700 0.46rem/1.6 var(--mono);
  text-align: center;
}

.path-counter li.is-stocked {
  border-color: var(--acid);
  background:
    radial-gradient(circle at 50% 30%, rgba(244, 255, 75, 0.2), transparent 40%),
    rgba(133, 87, 255, 0.18);
  box-shadow: 5px 6px 0 var(--pink);
}

.path-counter li.is-stocked::before {
  content: "STOCKED";
  color: var(--acid);
}

.path-counter span,
.path-counter b,
.path-counter small {
  display: block;
}

.path-counter span {
  position: absolute;
  top: 11px;
  right: 11px;
  color: var(--acid);
  font: 400 1.6rem/1 var(--display);
}

.path-counter b {
  font: 400 1rem/1 var(--display);
  text-transform: uppercase;
}

.path-counter small {
  margin-top: 6px;
  color: rgba(255, 248, 222, 0.55);
  font: 700 0.56rem/1 var(--mono);
  text-transform: uppercase;
}

/* Membership */
.membership {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(70px, 10vw, 140px) max(20px, calc((100vw - 1320px) / 2));
  overflow: hidden;
  border-block: 8px solid var(--ink);
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(255, 255, 255, 0.18) 58% 60%, transparent 60%),
    var(--pink);
  color: var(--ink);
}

.membership::before {
  content: "JOIN JOIN JOIN JOIN";
  position: absolute;
  right: -40px;
  bottom: -32px;
  color: rgba(23, 18, 27, 0.08);
  font: 400 clamp(4rem, 10vw, 9rem)/0.7 var(--display);
  white-space: nowrap;
}

.membership__burst {
  position: relative;
  z-index: 1;
  display: flex;
  width: clamp(160px, 17vw, 240px);
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 5px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  box-shadow:
    11px 13px 0 var(--ink),
    19px 22px 0 var(--mint);
}

.membership__burst::before,
.membership__burst::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px dashed var(--ink);
  border-radius: 50%;
  animation: mark-spin 18s linear infinite;
}

.membership__burst::after {
  inset: -16px;
  border-style: dotted;
  animation-direction: reverse;
}

.membership__burst span {
  font: 400 clamp(4rem, 8vw, 7.5rem)/0.8 var(--display);
  letter-spacing: -0.1em;
}

.membership__burst span::before {
  content: "$";
  margin-right: 2px;
  font: 700 0.16em/1 var(--mono);
  vertical-align: top;
}

.membership__burst small {
  font: 700 0.6rem/1.15 var(--mono);
  text-transform: uppercase;
}

.membership__copy {
  position: relative;
  z-index: 1;
}

.membership__copy h2 {
  max-width: 14ch;
  margin: 0;
  font: 400 clamp(2.5rem, 5vw, 5rem)/0.88 var(--display);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.membership__copy > p:not(.eyebrow) {
  max-width: 65ch;
  margin: 24px 0;
  font-size: 1rem;
  font-weight: 600;
}

.membership__copy ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  font: 700 0.64rem/1.3 var(--mono);
  text-transform: uppercase;
}

.membership__copy li::before {
  content: "◆";
  margin-right: 9px;
}

.membership__actions {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 260px;
  gap: 14px;
  justify-items: stretch;
}

.membership__actions .text-link {
  color: var(--ink);
  text-align: center;
}

/* Footer */
.store-footer {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px max(20px, calc((100vw - 1440px) / 2));
  background: var(--ink);
  font-size: 0.74rem;
}

.store-footer strong,
.store-footer span {
  display: block;
}

.store-footer strong {
  color: var(--acid);
  font: 400 0.85rem/1 var(--display);
  text-transform: uppercase;
}

.store-footer span,
.store-footer p {
  margin: 7px 0 0;
  color: rgba(255, 248, 222, 0.58);
}

.store-footer a {
  color: var(--pink);
  font: 700 0.65rem/1 var(--mono);
  text-transform: uppercase;
}

/* Dialogs */
dialog {
  max-width: min(960px, calc(100vw - 28px));
  max-height: min(90vh, 820px);
  overflow: auto;
  padding: 0;
  border: 5px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 16px 18px 0 var(--pink);
}

dialog::backdrop {
  background:
    repeating-linear-gradient(45deg, rgba(244, 255, 75, 0.05) 0 10px, transparent 10px 20px),
    rgba(10, 5, 18, 0.86);
  backdrop-filter: blur(7px);
}

.dialog-close {
  position: absolute;
  z-index: 5;
  top: 9px;
  right: 9px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
  cursor: pointer;
  font: 400 1.3rem/1 var(--display);
}

.scanner-header {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 9px 58px 9px 14px;
  border-bottom: 4px solid var(--ink);
  background: var(--mint);
  font: 700 0.58rem/1 var(--mono);
  text-transform: uppercase;
}

.scanner-header b {
  margin-left: auto;
}

.scanner-light {
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  animation: status-pulse 1.2s steps(2) infinite;
}

.scanner-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 550px;
}

.scanner-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-right: 4px solid var(--ink);
  background:
    linear-gradient(rgba(23, 18, 27, 0.07) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(90deg, rgba(23, 18, 27, 0.07) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--violet);
}

.scanner-visual::before {
  content: attr(data-symbol);
  position: relative;
  z-index: 1;
  font: 400 9rem/1 var(--display);
}

.scanner-visual::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 4px dashed var(--acid);
  border-radius: 50%;
  box-shadow:
    0 0 0 30px rgba(244, 255, 75, 0.08),
    0 0 0 60px rgba(244, 255, 75, 0.06);
  animation: mark-spin 16s linear infinite;
}

.scanner-copy {
  padding: clamp(30px, 5vw, 64px);
}

.scanner-copy h2 {
  margin: 0 0 18px;
  font: 400 clamp(2.4rem, 6vw, 5.6rem)/0.86 var(--display);
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.scanner-copy__description {
  max-width: 50ch;
  font-size: 1rem;
  font-weight: 600;
}

.scanner-copy dl {
  margin: 26px 0;
  border-block: 3px solid var(--ink);
}

.scanner-copy dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(23, 18, 27, 0.3);
}

.scanner-copy dl div:last-child {
  border-bottom: 0;
}

.scanner-copy dt {
  font: 700 0.55rem/1.3 var(--mono);
  text-transform: uppercase;
}

.scanner-copy dd {
  margin: 0;
  font-size: 0.83rem;
}

.scanner-warning {
  padding: 10px;
  background: var(--acid);
  font: 700 0.58rem/1.4 var(--mono);
  text-transform: uppercase;
}

.scanner-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 700 0.6rem/1 var(--mono);
  text-decoration: underline;
  text-transform: uppercase;
}

.is-hidden {
  display: none !important;
}

.recall-dialog {
  width: min(680px, calc(100vw - 28px));
  padding: clamp(40px, 6vw, 76px);
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 79, 168, 0.28), transparent 18rem),
    var(--paper);
  text-align: center;
}

.recall-dialog__stamp {
  width: fit-content;
  margin: 0 auto 22px;
  padding: 8px 12px;
  transform: rotate(-4deg);
  border: 4px solid var(--ink);
  background: var(--acid);
  box-shadow: 6px 7px 0 var(--pink);
  font: 400 0.82rem/1 var(--display);
  text-transform: uppercase;
}

.recall-dialog h2 {
  margin: 0;
  font: 400 clamp(2.8rem, 8vw, 6.3rem)/0.86 var(--display);
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.recall-dialog h2 span {
  color: var(--pink);
}

.recall-dialog > p:not(.eyebrow) {
  max-width: 55ch;
  margin: 24px auto;
}

.recall-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* MOTE */
.mote {
  position: fixed;
  z-index: 180;
  left: 18px;
  bottom: 18px;
}

.mote__sprite {
  position: relative;
  display: grid;
  width: 116px;
  min-height: 78px;
  grid-template-columns: 40px 1fr;
  gap: 3px 7px;
  align-items: center;
  padding: 10px;
  transform: rotate(-2deg);
  border: 3px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 7px 8px 0 var(--pink);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease;
}

.mote__sprite:hover {
  transform: rotate(1deg) translateY(-4px);
}

.mote__morph {
  position: relative;
  grid-row: 1 / 3;
  display: grid;
  width: 40px;
  height: 54px;
  place-items: center;
  isolation: isolate;
}

.mote__body {
  position: absolute;
  inset: 3px 4px;
  z-index: -1;
  border: 3px solid var(--ink);
  background:
    repeating-linear-gradient(90deg, var(--ink) 0 2px, transparent 2px 4px, var(--ink) 4px 7px, transparent 7px 9px),
    var(--paper);
  transition: inset 220ms ease, transform 220ms ease, border-radius 220ms ease, clip-path 220ms ease, background 220ms ease;
}

.mote__morph::before,
.mote__morph::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 14px;
  width: 19px;
  height: 27px;
  border: 2px solid var(--ink);
  background: var(--paper);
  opacity: 0;
  transition: opacity 180ms ease, transform 220ms ease, clip-path 220ms ease, border-radius 220ms ease, background 220ms ease;
}

.mote__morph::before {
  left: -7px;
}

.mote__morph::after {
  right: -7px;
}

.mote__eye {
  position: relative;
  z-index: 2;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
  box-shadow: 0 0 7px rgba(230, 189, 80, 0.72);
  font-size: 0.55rem;
  animation: mote-blink 4s steps(1) infinite;
}

.mote[data-mote-form="wayfinding-glint"] .mote__body,
.mote[data-mote-form="signal-router"] .mote__body {
  inset: 8px 2px;
  transform: rotate(45deg) scale(0.82);
  clip-path: none;
  background: conic-gradient(from 45deg, var(--pink), var(--violet), var(--mint), var(--acid), var(--pink));
}

.mote[data-mote-form="directory-moth"] .mote__body {
  inset: 4px 11px;
  border-radius: 52% 52% 42% 42%;
  background: linear-gradient(var(--paper), var(--paper-deep));
}

.mote[data-mote-form="directory-moth"] .mote__morph::before,
.mote[data-mote-form="directory-moth"] .mote__morph::after,
.mote[data-mote-form="winged-bookmark"] .mote__morph::before,
.mote[data-mote-form="winged-bookmark"] .mote__morph::after {
  opacity: 1;
}

.mote[data-mote-form="directory-moth"] .mote__morph::before {
  transform: rotate(-24deg);
  clip-path: polygon(100% 0, 100% 100%, 0 72%, 40% 50%, 0 25%);
  background: var(--pink);
}

.mote[data-mote-form="directory-moth"] .mote__morph::after {
  transform: rotate(24deg);
  clip-path: polygon(0 0, 100% 25%, 60% 50%, 100% 72%, 0 100%);
  background: var(--mint);
}

.mote[data-mote-form="scanner-imp"] .mote__body {
  inset: 2px 4px;
  clip-path: polygon(20% 13%, 34% 0, 47% 20%, 64% 0, 82% 14%, 100% 84%, 50% 100%, 0 84%);
  background:
    repeating-linear-gradient(90deg, var(--ink) 0 3px, transparent 3px 6px),
    var(--acid);
}

.mote[data-mote-form="winged-bookmark"] .mote__body {
  inset: 1px 8px 2px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
  background: linear-gradient(145deg, var(--paper) 0 48%, var(--violet) 49% 56%, var(--paper-deep) 57%);
}

.mote[data-mote-form="winged-bookmark"] .mote__morph::before {
  transform: rotate(-28deg);
  clip-path: polygon(100% 0, 100% 100%, 0 72%, 40% 50%, 0 25%);
}

.mote[data-mote-form="winged-bookmark"] .mote__morph::after {
  transform: rotate(28deg);
  clip-path: polygon(0 0, 100% 25%, 60% 50%, 100% 72%, 0 100%);
}

.mote[data-mote-form="keyhole-wisp"] .mote__body,
.mote[data-mote-form="smoke-curl"] .mote__body {
  inset: 4px 5px 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 32%, var(--paper), var(--violet) 42%, var(--ink) 78%);
}

.mote[data-mote-form="keyhole-wisp"] .mote__morph::after,
.mote[data-mote-form="smoke-curl"] .mote__morph::after {
  top: 34px;
  right: 6px;
  display: block;
  width: 17px;
  height: 18px;
  opacity: 1;
  transform: rotate(34deg);
  border-radius: 0 0 90% 0;
  border-width: 0 3px 3px 0;
  background: var(--violet);
}

.mote[data-mote-form="masked-reveler"] .mote__body {
  inset: 5px 2px;
  border-radius: 48% 48% 38% 38%;
  clip-path: polygon(50% 0, 100% 28%, 82% 88%, 50% 100%, 18% 88%, 0 28%);
  background: linear-gradient(135deg, var(--pink), var(--violet) 52%, var(--mint));
}

.mote[data-mote-form="signal-router"] .mote__morph::before,
.mote[data-mote-form="signal-router"] .mote__morph::after {
  top: 18px;
  width: 13px;
  height: 13px;
  opacity: 1;
  transform: rotate(45deg);
  background: var(--acid);
}

@keyframes mote-blink {
  0%, 46%, 50%, 100% { transform: scaleY(1); }
  48% { transform: scaleY(0.08); }
}

.mote__sprite strong {
  align-self: end;
  font: 400 0.8rem/1 var(--display);
}

.mote__sprite small {
  align-self: start;
  font: 700 0.46rem/1.2 var(--mono);
  text-transform: uppercase;
}

.mote__panel {
  position: absolute;
  bottom: calc(100% + 15px);
  left: 0;
  width: min(380px, calc(100vw - 36px));
  padding: 18px;
  border: 4px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 10px 12px 0 var(--violet);
}

.mote__panel::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 32px;
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
  border-right: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--paper);
}

.mote__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 2px dashed var(--ink);
  font: 700 0.5rem/1.25 var(--mono);
  text-transform: uppercase;
}

.mote__panel-head button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 400 1.2rem/1 var(--display);
}

.mote__panel > p:not(.mote__glyphs) {
  font-size: 0.82rem;
}

.mote__choices {
  display: grid;
  gap: 7px;
}

.mote__choices button {
  padding: 8px 10px;
  border: 2px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
  cursor: pointer;
  font: 700 0.54rem/1.25 var(--mono);
  text-align: left;
  text-transform: uppercase;
}

.mote__choices button:hover {
  background: var(--pink);
}

.mote__channel-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 10px;
}

.mote__channel-links a {
  padding: 7px 4px;
  border: 2px solid var(--ink);
  background: var(--paper-deep);
  color: var(--ink);
  font: 700 0.48rem/1 var(--mono);
  text-align: center;
  text-decoration: none;
}

.mote__channel-links a:hover,
.mote__channel-links a:focus-visible {
  background: var(--mint);
}

.mote__glyphs {
  display: grid;
  gap: 4px;
  margin: 14px 0 0;
  padding: 10px;
  background: var(--ink);
  color: var(--acid);
  text-align: center;
}

.mote__glyphs span {
  font-size: 1.3rem;
  letter-spacing: 0.15em;
}

.mote__glyphs small {
  font: 700 0.42rem/1 var(--mono);
}

.mote.is-fractured .mote__sprite {
  box-shadow:
    7px 8px 0 var(--pink),
    16px 17px 0 rgba(82, 242, 199, 0.7),
    27px 28px 0 rgba(133, 87, 255, 0.55),
    40px 41px 0 rgba(255, 107, 53, 0.35);
  animation: mote-fracture 600ms steps(2) 3;
}

@keyframes mote-fracture {
  50% { transform: perspective(220px) rotateY(20deg) scale(1.05); filter: hue-rotate(90deg); }
}

.noscript-notice {
  position: fixed;
  z-index: 300;
  right: 12px;
  bottom: 12px;
  max-width: 420px;
  padding: 14px;
  border: 3px solid var(--ink);
  background: var(--acid);
  color: var(--ink);
  font: 700 0.64rem/1.4 var(--mono);
}

/* Responsive */
@media (max-width: 1180px) {
  .store-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .store-nav {
    position: absolute;
    top: 100%;
    right: 0;
    display: none;
    width: min(360px, 100vw);
    height: auto;
    flex-direction: column;
    border: 3px solid var(--ink);
    border-right: 0;
    background: var(--acid);
  }

  .store-nav.is-open {
    display: flex;
  }

  .store-nav a {
    min-height: 50px;
    border: 0;
    border-bottom: 1px solid rgba(23, 18, 27, 0.3);
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    padding-bottom: 40px;
  }

  .hero__world {
    padding: 0 clamp(20px, 5vw, 60px) 120px;
  }

  .aisle-card {
    grid-column: span 6;
  }

  .aisle-card:nth-child(2),
  .aisle-card:nth-child(5) {
    transform: none;
  }

  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-exchange__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .membership__actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .membership__actions .text-link {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .store-header {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
  }

  .store-status {
    justify-content: center;
  }

  .motion-toggle {
    position: static;
    min-height: 63px;
    border: 0;
    border-left: 3px solid var(--ink);
    background: transparent;
    box-shadow: none;
  }

  .facade__building {
    margin-bottom: 120px;
  }

  .facade__windows {
    grid-template-columns: 1fr 1fr;
  }

  .facade-window--left {
    display: none;
  }

  .facade__invitation {
    left: 20px;
    right: 20px;
    max-width: none;
    min-height: 94px;
    padding-left: 140px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shelf-layout {
    grid-template-columns: 1fr;
  }

  .receipt {
    position: relative;
    top: auto;
    width: min(430px, 100%);
    justify-self: center;
  }

  .orientation {
    grid-template-columns: 1fr;
  }

  .orientation__poster {
    position: relative;
    top: auto;
    width: min(520px, 100%);
    justify-self: center;
  }

  .store-footer {
    grid-template-columns: 1fr;
    padding-bottom: 142px;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100vw - 28px);
  }

  .page-noise {
    display: none;
  }

  .store-header {
    min-height: 58px;
    grid-template-columns: auto 1fr auto;
  }

  .nsp-mark,
  .motion-toggle,
  .menu-toggle {
    min-height: 55px;
  }

  .nsp-mark {
    padding-inline: 12px;
    border-right: 2px solid var(--ink);
  }

  .nsp-mark span:last-child {
    display: none;
  }

  .nsp-mark__star {
    width: 30px;
    height: 30px;
  }

  .store-status {
    display: none;
  }

  .motion-toggle {
    padding-inline: 10px;
    border-left: 2px solid var(--ink);
    font-size: 0;
  }

  .motion-toggle span {
    font-size: 1rem;
  }

  .menu-toggle {
    padding-inline: 10px;
    border-left-width: 2px;
    font-size: 0.56rem;
  }

  .basket-tab {
    top: 75px;
  }

  .basket-tab__label {
    display: none;
  }

  .basket-tab button {
    grid-template-columns: auto;
  }

  .basket-tab__icon {
    grid-row: auto;
  }

  .facade {
    min-height: calc(100svh - 58px);
    padding-inline: 10px;
  }

  .facade__building {
    width: 100%;
    border-width: 3px;
  }

  .facade__roofline span:first-child,
  .facade__orbit {
    display: none;
  }

  .facade__roofline {
    justify-content: center;
  }

  .facade__sign {
    min-height: 150px;
    justify-content: flex-start;
    gap: 7px;
    padding-inline: 8px;
  }

  .facade__star {
    width: 50px;
    height: 50px;
    border-width: 3px;
    box-shadow: 5px 6px 0 var(--ink);
    font-size: 1.55rem;
  }

  .facade__sign .facade__title {
    font-size: clamp(1.75rem, 9.2vw, 3.15rem);
  }

  .facade__sign strong {
    letter-spacing: 0.08em;
  }

  .facade__windows {
    grid-template-columns: 1fr;
  }

  .facade-window--right {
    display: none;
  }

  .facade__curb span:first-child {
    display: none;
  }

  .facade__invitation {
    bottom: 18px;
    flex-wrap: wrap;
    gap: 8px 12px;
    min-height: 0;
    padding-left: 16px;
    padding-bottom: 82px;
  }

  .facade__invitation p {
    width: 100%;
  }

  .hero__copy {
    padding: 60px 20px 32px;
  }

  .department-stamp span:nth-child(2) {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 18vw, 5rem);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button,
  .hero__actions .text-link {
    width: 100%;
  }

  .hero__actions .text-link {
    padding: 8px 0;
    text-align: center;
  }

  .hero__world {
    padding: 0 12px 130px;
  }

  .window-label {
    gap: 14px;
    font-size: 0.46rem;
  }

  .window-label span:last-child {
    text-align: right;
  }

  .store-window {
    overflow: visible;
    box-shadow: 8px 9px 0 var(--pink);
  }

  .world-hotspot {
    width: 28px;
    height: 28px;
    overflow: hidden;
    padding: 2px;
    color: transparent;
  }

  .world-hotspot span {
    flex: 0 0 auto;
  }

  .attendant-card {
    right: 18px;
    bottom: 20px;
    left: 18px;
  }

  .announcement__track {
    animation-duration: 19s;
  }

  .section-shell {
    padding: 68px 14px;
  }

  .section-heading h2,
  .orientation h2 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .signal-exchange__grid {
    grid-template-columns: 1fr;
  }

  .signal-card {
    min-height: 0;
  }

  .signal-exchange__ledger {
    grid-template-columns: 1fr;
  }

  .orientation h2 {
    overflow-wrap: anywhere;
  }

  .aisle-grid {
    gap: 13px;
  }

  .aisle-card {
    grid-column: 1 / -1;
    min-height: 270px;
    padding: 19px;
    border-width: 3px;
    box-shadow: 6px 7px 0 var(--ink);
  }

  .aisle-card h3 {
    margin-top: 55px;
  }

  .shelf-sign {
    min-height: 76px;
    padding: 12px;
  }

  .shelf-sign span {
    font-size: 0.95rem;
  }

  .shelf-sign strong {
    font-size: 1.7rem;
  }

  .products {
    gap: 28px 12px;
    padding-inline: 12px;
  }

  .product__package {
    min-height: 230px;
    padding: 13px;
    border-width: 3px;
  }

  .product__package > strong {
    font-size: clamp(1rem, 6vw, 1.45rem);
  }

  .product__package > small {
    font-size: 0.44rem;
  }

  .product__shelf-copy strong {
    font-size: 0.62rem;
  }

  .price-tag {
    min-width: 68px;
    font-size: 1.2rem;
  }

  .manual-pages summary {
    grid-template-columns: 38px 1fr;
    font-size: 0.9rem;
  }

  .manual-pages details p {
    margin-left: 38px;
  }

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

  .casefile-link__stamp {
    display: none;
  }

  .membership {
    grid-template-columns: 1fr;
    padding: 70px 18px;
  }

  .membership__burst {
    width: 170px;
    justify-self: center;
  }

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

  .membership__actions .text-link {
    grid-column: auto;
  }

  .scanner-grid {
    grid-template-columns: 1fr;
  }

  .scanner-visual {
    min-height: 220px;
    border-right: 0;
    border-bottom: 4px solid var(--ink);
  }

  .scanner-visual::before {
    font-size: 6rem;
  }

  .scanner-visual::after {
    width: 180px;
    height: 180px;
  }

  .scanner-copy {
    padding: 28px 18px;
  }

  .scanner-copy h2 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .scanner-copy dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .store-footer {
    padding-bottom: 112px;
  }

  .mote {
    left: 10px;
    bottom: 10px;
  }

  .mote__sprite {
    width: 76px;
    min-height: 62px;
    grid-template-columns: 24px 1fr;
    padding: 7px;
  }

  .mote__sprite small {
    display: none;
  }

  .mote__morph {
    width: 26px;
    height: 42px;
  }

  .mote__eye {
    width: 16px;
    height: 16px;
    font-size: 0.42rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media print {
  body * {
    visibility: hidden !important;
  }

  .receipt,
  .receipt * {
    visibility: visible !important;
  }

  .receipt {
    position: absolute;
    top: 0;
    left: 50%;
    width: 360px;
    transform: translateX(-50%);
    filter: none;
  }

  .receipt__actions {
    display: none;
  }
}
