@import url('https://fonts.googleapis.com/css2?family=Share+Tech&display=swap');

:root {
  --bg: #050505;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.68);
  --panel: rgba(8, 8, 8, 0.9);
  --line: rgba(255, 255, 255, 0.2);
  --glow: 0 0 18px rgba(255, 255, 255, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

main section {
  scroll-margin-top: 120px;
}

body {
  font-family: 'Share Tech', 'Courier New', monospace;
  background: var(--bg) url('assets/adam bg1.png') center/cover no-repeat fixed;
  color: var(--white);
  min-height: 100vh;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.modal-open {
  overflow: hidden;
}

html.modal-open,
body.modal-open {
  overflow: hidden !important;
  overflow-x: hidden !important;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.06), transparent 45%),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.04), transparent 50%);
  pointer-events: none;
  z-index: -3;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6) 1px,
      rgba(0, 0, 0, 0.2) 2px,
      rgba(0, 0, 0, 0.2) 3px
    );
  opacity: 0.35;
  pointer-events: none;
  z-index: -2;
}

.crt {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 45%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: screen;
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.32;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
  animation: grainDrift 6s steps(2, end) infinite;
}

.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 6px
  );
  opacity: 0.15;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
  animation: scanMove 3.2s linear infinite;
}

main {
  padding: 120px 8vw 80px;
  display: grid;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 20px 6vw;
  background: rgba(0, 0, 0, var(--topbar-opacity, 0.8));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.brand {
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.9rem;
  text-shadow: var(--glow);
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: min(140px, 36vw);
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.35));
  transition: filter 0.2s ease, transform 0.2s ease;
}

.brand.pulse img {
  animation: logoPulse 0.7s ease-out;
}

.brand:hover img,
.brand:focus-visible img {
  filter: drop-shadow(0 0 16px rgba(255, 60, 60, 0.8));
}

.brand:active img {
  transform: scale(0.98);
  filter: drop-shadow(0 0 20px rgba(255, 60, 60, 0.95));
}

@keyframes logoPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(255, 60, 60, 0.4));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 22px rgba(255, 60, 60, 0.8));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(255, 60, 60, 0.5));
  }
}

.menu-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  display: grid;
  gap: 6px;
  padding: 10px;
  cursor: pointer;
  color: inherit;
}

.menu-button span {
  display: block;
  height: 2px;
  background: var(--white);
  box-shadow: var(--glow);
}

.socials {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.socials a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.socials svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.socials a:hover,
.socials a:focus-visible {
  filter: drop-shadow(0 0 12px rgba(255, 60, 60, 0.85));
}

.socials a:active {
  transform: scale(0.98);
  filter: drop-shadow(0 0 18px rgba(255, 60, 60, 1));
}

.socials a[aria-label='Safe House'] {
  filter: drop-shadow(0 0 10px rgba(255, 226, 74, 0.6));
}

.socials a[aria-label='Safe House']:hover,
.socials a[aria-label='Safe House']:focus-visible {
  filter: drop-shadow(0 0 14px rgba(255, 226, 74, 0.85));
}

.socials a[aria-label='Safe House']:active {
  filter: drop-shadow(0 0 18px rgba(255, 226, 74, 1));
}

.terminal-alert {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0);
  background: rgba(0, 0, 0, 0.92);
  border: 1px solid rgba(57, 255, 122, 0.5);
  color: #39ff7a;
  padding: 12px 18px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 18px rgba(57, 255, 122, 0.25), inset 0 0 12px rgba(57, 255, 122, 0.12);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 60;
}

.terminal-alert.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.terminal-label {
  border-right: 1px solid rgba(57, 255, 122, 0.5);
  padding-right: 10px;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(300px, 80vw);
  background: rgba(4, 10, 6, 0.98);
  border-right: 1px solid var(--line);
  padding: 100px 28px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 20;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-nav {
  display: grid;
  gap: 18px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.drawer-nav a {
  color: var(--white);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 60, 60, 0.85), 0 0 24px rgba(255, 60, 60, 0.6);
}

.drawer-nav a:active {
  text-shadow: 0 0 12px rgba(255, 60, 60, 1), 0 0 28px rgba(255, 60, 60, 0.75);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  z-index: 15;
}

.hero {
  display: grid;
  justify-items: center;
  text-align: center;
  padding-top: 60px;
}

.hero-tape-wrap {
  position: relative;
  width: min(720px, 90vw);
  display: grid;
  place-items: center;
}

.hero-tape {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 28px rgba(255, 60, 60, 0.6));
  animation: tapeGlitch 3.2s infinite steps(2, end);
}

.hero-tape-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 4vw, 3.2rem);
  text-shadow:
    1px 0 0 rgba(255, 255, 255, 0.6),
    -1px 0 0 rgba(255, 255, 255, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.25),
    0 0 12px rgba(255, 255, 255, 0.35),
    0 0 8px rgba(255, 40, 40, 0.35);
  mix-blend-mode: screen;
  opacity: 0.92;
  filter: contrast(1.05) saturate(0.9) blur(0.2px);
  pointer-events: none;
  letter-spacing: 0.3em;
  transform: translateY(-2px) rotate(-1.2deg);
  animation: glitchSkew 3s infinite steps(2, end);
}

.hero-tape-text::before,
.hero-tape-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-tape-text::before {
  text-shadow: -2px 0 rgba(255, 0, 60, 0.8);
  animation: glitchShift 2.2s infinite steps(2, end);
}

.hero-tape-text::after {
  text-shadow: 2px 0 rgba(0, 180, 255, 0.7);
  animation: glitchShift 1.6s infinite steps(2, end) reverse;
}

@keyframes glitchSkew {
  0% { transform: translateY(-2px) rotate(-1.2deg); }
  12% { transform: translateY(-2px) rotate(-1.2deg) skewX(1deg); }
  14% { transform: translateY(-3px) rotate(-1.2deg) skewX(-1deg); }
  16% { transform: translateY(-2px) rotate(-1.2deg); }
  48% { transform: translateY(-2px) rotate(-1.2deg); }
  50% { transform: translateY(-2px) rotate(-1.2deg) skewX(2deg); }
  52% { transform: translateY(-2px) rotate(-1.2deg); }
  100% { transform: translateY(-2px) rotate(-1.2deg); }
}

@keyframes glitchShift {
  0% { clip-path: inset(0 0 0 0); transform: translate(0, 0); }
  10% { clip-path: inset(10% 0 60% 0); transform: translate(-2px, -2px); }
  12% { clip-path: inset(30% 0 30% 0); transform: translate(2px, 2px); }
  14% { clip-path: inset(60% 0 10% 0); transform: translate(-3px, 1px); }
  16% { clip-path: inset(0 0 0 0); transform: translate(0, 0); }
  50% { clip-path: inset(0 0 0 0); transform: translate(0, 0); }
  52% { clip-path: inset(25% 0 45% 0); transform: translate(2px, -1px); }
  54% { clip-path: inset(55% 0 20% 0); transform: translate(-2px, 2px); }
  56% { clip-path: inset(0 0 0 0); transform: translate(0, 0); }
  100% { clip-path: inset(0 0 0 0); transform: translate(0, 0); }
}

@keyframes tapeGlitch {
  0% { transform: translate(0, 0); filter: drop-shadow(0 0 28px rgba(255, 60, 60, 0.6)); }
  12% { transform: translate(-2px, 1px) skewX(-1deg); filter: drop-shadow(0 0 34px rgba(255, 60, 60, 0.8)); }
  14% { transform: translate(2px, -1px) skewX(1deg); }
  16% { transform: translate(0, 0); }
  48% { transform: translate(0, 0); }
  50% { transform: translate(-3px, 0) skewX(-2deg); filter: drop-shadow(0 0 40px rgba(255, 60, 60, 0.9)); }
  52% { transform: translate(0, 0); }
  100% { transform: translate(0, 0); filter: drop-shadow(0 0 28px rgba(255, 60, 60, 0.6)); }
}

@keyframes grainDrift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(2%, 1%); }
  100% { transform: translate(0, 0); }
}

@keyframes scanMove {
  0% { background-position: 0 0; }
  100% { background-position: 0 120px; }
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 42px;
  display: grid;
  gap: 18px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  border-radius: 18px;
}

#tour {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.35),
    0 0 32px rgba(255, 255, 255, 0.2);
}

.panel h2 {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 1.1rem;
}

.panel p {
  color: var(--white-soft);
  line-height: 1.7;
}

.checkout-result {
  display: none;
  border-color: rgba(57, 255, 122, 0.55);
  box-shadow:
    0 0 20px rgba(57, 255, 122, 0.28),
    0 0 34px rgba(57, 255, 122, 0.16);
}

.checkout-result.is-visible {
  display: grid;
}

.checkout-result-title {
  color: #39ff7a;
  text-shadow: 0 0 12px rgba(57, 255, 122, 0.35);
}

.checkout-result-message {
  color: rgba(57, 255, 122, 0.9);
}

.checkout-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.checkout-result-grid > div {
  border: 1px dashed rgba(57, 255, 122, 0.32);
  padding: 12px;
  background: rgba(0, 0, 0, 0.45);
}

.checkout-result-value {
  color: #ffffff;
  letter-spacing: 0.06em;
  word-break: break-word;
}

.embed iframe {
  width: 100%;
  border: none;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#tour .cta-row {
  justify-content: center;
}

#tour .request-tour {
  color: #ffe24a;
  border-color: rgba(255, 226, 74, 0.7);
  box-shadow: 0 0 16px rgba(255, 226, 74, 0.5), 0 0 28px rgba(255, 226, 74, 0.3);
}

#tour .request-tour:hover,
#tour .request-tour:focus-visible {
  border-color: #ffe24a;
  box-shadow: 0 0 22px rgba(255, 226, 74, 0.75), 0 0 36px rgba(255, 226, 74, 0.5);
}

#tour .request-tour:active {
  box-shadow: 0 0 18px rgba(255, 226, 74, 0.9), 0 0 30px rgba(255, 226, 74, 0.6);
}

.cta {
  display: inline-flex;
  padding: 12px 24px;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  box-shadow: var(--glow);
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cta.ghost {
  border-color: var(--line);
  color: var(--white-soft);
}

.cta:hover,
.cta:focus-visible {
  color: var(--white);
  border-color: var(--white);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.35);
}

.cta:active {
  transform: translateY(1px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 24px rgba(255, 255, 255, 0.5);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.tour-grid div {
  border: 1px dashed var(--line);
  padding: 16px;
}

.store {
  gap: 24px;
}

#store {
  border-color: rgba(255, 226, 74, 0.45);
  box-shadow:
    0 0 18px rgba(255, 226, 74, 0.35),
    0 0 32px rgba(255, 226, 74, 0.2);
}

.store-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mono-label {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.65rem;
  color: var(--white-soft);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.store-card {
  border: 1px solid var(--line);
  padding: 20px;
  display: grid;
  gap: 12px;
  background: rgba(5, 5, 5, 0.75);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.store-card:focus-visible {
  outline: 2px solid rgba(57, 255, 122, 0.6);
  outline-offset: 2px;
}

.store-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12), inset 0 0 18px rgba(255, 255, 255, 0.08);
}

.modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 16px 10px;
}

.modal[aria-hidden='false'] {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  pointer-events: none;
}

.modal-panel {
  position: relative;
  width: min(860px, calc(100vw - 20px));
  max-width: calc(100vw - 20px);
  background: rgba(5, 5, 5, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  z-index: 2;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.6);
  height: auto;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 32px;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.modal-product {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 2px solid rgba(255, 226, 74, 0.85);
  background: rgba(0, 0, 0, 0.75);
  color: #ffe24a;
  display: grid;
  place-items: center;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(255, 226, 74, 0.6), 0 0 36px rgba(255, 226, 74, 0.35);
  z-index: 3;
}

.modal-product:hover,
.modal-product:focus-visible {
  border-color: #ffe24a;
  box-shadow: 0 0 22px rgba(255, 226, 74, 0.65), 0 0 36px rgba(255, 226, 74, 0.45);
}

.modal-product.prev {
  left: 28px;
}

.modal-product.next {
  right: 28px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  cursor: pointer;
}

.modal-media {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 220px;
  flex: 0 0 auto;
  max-width: 100%;
  background: #040404;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 1;
}

.modal-media.is-hidden {
  display: none;
}

.modal-label {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 12px;
  border-radius: 999px;
}

.modal-label.is-hidden {
  display: none;
}

.modal-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  transform: none;
  display: block;
}

.modal-image[src=''] {
  display: none;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  cursor: pointer;
}

.modal-nav.prev {
  left: 12px;
}

.modal-nav.next {
  right: 12px;
}

.modal-nav:disabled {
  opacity: 0.3;
  cursor: default;
}

.modal-nav.is-hidden {
  display: none;
}

.modal-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-top: 0;
  flex: 0 0 auto;
  min-width: 0;
  overflow-x: clip;
  max-width: 100%;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}

.modal-scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffe24a;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
  cursor: pointer;
  user-select: none;
}

.modal-scroll-hint:focus-visible {
  outline: 1px solid rgba(255, 226, 74, 0.8);
  outline-offset: 3px;
}

.modal-scroll-hint .arrow {
  font-size: 1.8rem;
  animation: hintPulse 1.2s ease-in-out infinite;
}

@keyframes hintPulse {
  0% { transform: translateY(-2px); opacity: 0.4; }
  50% { transform: translateY(2px); opacity: 1; }
  100% { transform: translateY(-2px); opacity: 0.4; }
}

.modal-note {
  color: #ffe24a;
  font-size: 1.2rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.modal.tour-mode .modal-title,
.modal.tour-mode .modal-desc,
.modal.tour-mode .modal-details,
.modal.tour-mode .modal-note {
  color: #ffffff;
}

.modal-scroll-hint.is-hidden {
  display: none;
}

.modal-cta {
  color: #ffe24a;
  border-color: rgba(255, 226, 74, 0.7);
  box-shadow: 0 0 16px rgba(255, 226, 74, 0.45), 0 0 28px rgba(255, 226, 74, 0.25);
  cursor: pointer;
}

.modal-cta:hover,
.modal-cta:focus-visible {
  border-color: #ffe24a;
  box-shadow: 0 0 22px rgba(255, 226, 74, 0.7), 0 0 36px rgba(255, 226, 74, 0.45);
}

.modal-cta:active {
  box-shadow: 0 0 18px rgba(255, 226, 74, 0.9), 0 0 30px rgba(255, 226, 74, 0.6);
}

.modal-title {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.modal-price {
  color: #ffe24a;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.9rem;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.modal-purchase {
  border: 2px solid rgba(0, 0, 0, 0.9);
  background: #ffffff;
  padding: 12px;
  border-radius: 10px;
  display: grid;
  gap: 10px;
  min-width: 0;
  overflow-x: clip;
  max-width: 100%;
  font-weight: 800;
}

.modal-purchase.is-hidden {
  display: none;
}

.purchase-row {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
}

.purchase-field {
  display: grid;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
  font-weight: 800;
  min-width: 0;
  max-width: 100%;
}

.modal-purchase .purchase-size,
.modal-purchase .purchase-qty {
  background: #ffffff;
  color: #000000;
  border: 2px solid rgba(0, 0, 0, 0.9);
  font-weight: 800;
}

.modal-purchase .purchase-size:focus,
.modal-purchase .purchase-qty:focus {
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.purchase-help {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.modal-desc,
.modal-details,
.modal-note {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: #040404;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.product-shot {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.product-shot::after {
  content: attr(data-label);
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  background: rgba(255, 255, 255, 0.92);
  padding: 6px 12px;
  border-radius: 999px;
}

.product-shot:not([data-label])::after,
.product-shot[data-label='']::after {
  content: none;
}

.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-media.dual {
  position: relative;
}

.product-media.dual .product-shot {
  grid-area: 1 / 1;
}

.product-media.dual .back {
  opacity: 0;
  transform: scale(1.02);
}

.store-card:hover .product-media.dual .back,
.store-card:focus-within .product-media.dual .back {
  opacity: 1;
}

.store-card:hover .product-media.dual .product-shot:not(.back),
.store-card:focus-within .product-media.dual .product-shot:not(.back) {
  opacity: 0;
}

.store-card h3 {
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffe24a;
}

.coming-soon {
  color: #ffffff;
  font-size: 0.8em;
  letter-spacing: 0.12em;
}

.store-card p {
  color: var(--white-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.store-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
}

.store-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--white-soft);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.store-price {
  color: #ffe24a;
}

.scroll-indicators {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
  z-index: 12;
}

.scroll-indicator {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.6);
  color: #ff2d55;
  box-shadow: 0 0 18px rgba(255, 45, 85, 0.6), 0 0 32px rgba(255, 45, 85, 0.35);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.scroll-indicator:hover,
.scroll-indicator:focus-visible {
  border-color: rgba(255, 45, 85, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(255, 45, 85, 0.75), 0 0 36px rgba(255, 45, 85, 0.5);
}

.scroll-indicator:active {
  transform: translateY(0);
}

.scroll-indicator .arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  filter: drop-shadow(0 0 6px rgba(255, 45, 85, 0.8));
}

.scroll-up .arrow {
  animation: arrowUp 1.6s ease-in-out infinite;
}

.scroll-down .arrow {
  animation: arrowDown 1.6s ease-in-out infinite;
}

.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
}

@keyframes arrowDown {
  0% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
  100% { transform: translateY(-2px); }
}

@keyframes arrowUp {
  0% { transform: translateY(2px); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(2px); }
}

.signup {
  align-items: center;
  text-align: center;
  transition: box-shadow 0.6s ease, border-color 0.6s ease;
  background: rgba(0, 0, 0, 0.92);
  border-color: rgba(57, 255, 122, 0.4);
  box-shadow: 0 0 22px rgba(57, 255, 122, 0.12), inset 0 0 18px rgba(57, 255, 122, 0.08);
}

.signup.revealed {
  animation: signupGlow 1.2s ease-out both;
}

.signup h2,
.signup p {
  color: #39ff7a;
  text-shadow: 0 0 12px rgba(57, 255, 122, 0.25);
}

.signup p {
  color: rgba(57, 255, 122, 0.85);
}

.signup form {
  border: 1px solid rgba(57, 255, 122, 0.35);
  padding: 20px;
  background: rgba(0, 0, 0, 0.75);
  box-shadow: inset 0 0 18px rgba(57, 255, 122, 0.12);
}

.signup form::before {
  content: '>> JOIN_TERMINAL';
  display: block;
  text-align: left;
  color: #39ff7a;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  margin-bottom: 14px;
}

.signup label {
  color: rgba(57, 255, 122, 0.9);
}

.signup input {
  background: #020202;
  border-color: rgba(57, 255, 122, 0.35);
}

.signup input::placeholder {
  color: rgba(57, 255, 122, 0.45);
}

@keyframes signupGlow {
  0% {
    border-color: rgba(57, 255, 122, 0);
    box-shadow: 0 0 0 rgba(57, 255, 122, 0);
    transform: translateY(8px);
  }
  60% {
    border-color: rgba(57, 255, 122, 0.8);
    box-shadow:
      0 0 22px rgba(57, 255, 122, 0.5),
      0 0 40px rgba(57, 255, 122, 0.35);
    transform: translateY(0);
  }
  100% {
    border-color: rgba(57, 255, 122, 0.6);
    box-shadow:
      0 0 14px rgba(57, 255, 122, 0.35),
      0 0 26px rgba(57, 255, 122, 0.2);
    transform: translateY(0);
  }
}

.signup-form {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.signup-form.is-hidden {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.modal-cta.is-hidden {
  display: none;
}

.modal-signup {
  display: none;
  margin-top: 8px;
}

.modal-signup.is-visible {
  display: block;
}

.modal-signup .signup-success {
  margin-top: 12px;
}

.signup-success {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  font-size: 1.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #39ff7a;
}

.signup-duplicate {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  font-size: 1.4rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffe24a;
  margin-top: 10px;
}

.signup-success.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.signup-duplicate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.logo {
  width: min(320px, 70vw);
  height: auto;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.35));
}

form {
  width: 100%;
  max-width: 520px;
  display: grid;
  gap: 16px;
  margin: 10px auto 0;
}

label {
  display: grid;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--white-soft);
  text-align: left;
}

input {
  padding: 12px;
  background: #040404;
  border: 1px solid var(--line);
  color: #ffe24a;
  font-family: inherit;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(255, 226, 74, 0.35);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

select {
  padding: 12px;
  background: #040404;
  border: 1px solid var(--line);
  color: #ffe24a;
  font-family: inherit;
  font-size: 1rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

input:focus {
  outline: none;
  border-color: #ffe24a;
  box-shadow: 0 0 16px rgba(255, 226, 74, 0.6), 0 0 26px rgba(255, 226, 74, 0.35);
}

select:focus {
  outline: none;
  border-color: #ffe24a;
  box-shadow: 0 0 16px rgba(255, 226, 74, 0.6), 0 0 26px rgba(255, 226, 74, 0.35);
}

.signup .signup-form input {
  color: #39ff7a;
  text-shadow: 0 0 10px rgba(57, 255, 122, 0.35);
}

.signup .signup-form input:focus {
  border-color: #39ff7a;
  box-shadow: 0 0 16px rgba(57, 255, 122, 0.6), 0 0 26px rgba(57, 255, 122, 0.35);
}

button[type='submit'] {
  padding: 12px 24px;
  background: #000000;
  color: #ffe24a;
  border: 1px solid rgba(255, 226, 74, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(255, 226, 74, 0.45), 0 0 28px rgba(255, 226, 74, 0.25);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.strike {
  text-decoration: line-through;
}

button[type='submit']:hover,
button[type='submit']:focus-visible {
  box-shadow: 0 0 22px rgba(255, 226, 74, 0.7), 0 0 36px rgba(255, 226, 74, 0.45);
}

button[type='submit']:active {
  transform: translateY(1px);
  box-shadow: 0 0 18px rgba(255, 226, 74, 0.9), 0 0 30px rgba(255, 226, 74, 0.6);
}

.signup .signup-form button[type='submit'] {
  color: #39ff7a;
  border-color: rgba(57, 255, 122, 0.6);
  box-shadow: 0 0 16px rgba(57, 255, 122, 0.5), 0 0 28px rgba(57, 255, 122, 0.3);
}

.signup .signup-form button[type='submit']:hover,
.signup .signup-form button[type='submit']:focus-visible {
  box-shadow: 0 0 22px rgba(57, 255, 122, 0.75), 0 0 36px rgba(57, 255, 122, 0.5);
}

.signup .signup-form button[type='submit']:active {
  box-shadow: 0 0 18px rgba(57, 255, 122, 0.95), 0 0 30px rgba(57, 255, 122, 0.65);
}

.footer {
  text-align: center;
  padding: 32px 8vw 48px;
  color: var(--white-soft);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: grid;
  gap: 10px;
  justify-items: center;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #39ff7a;
  border-color: #39ff7a;
}

.hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 700px) {
  body {
    font-size: 1.15rem;
    line-height: 1.55;
  }

  main section {
    scroll-margin-top: 96px;
  }

  main {
    padding: 96px 6vw 64px;
    gap: 32px;
  }

  .panel {
    padding: 28px 18px;
    border-radius: 14px;
  }

  .panel h2 {
    font-size: 0.95rem;
    letter-spacing: 0.2em;
  }

  .panel p {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .purchase-row {
    grid-template-columns: 1fr;
  }

  .brand {
    font-size: 0.75rem;
  }

  h1 {
    letter-spacing: 0.25em;
  }

  .topbar {
    padding: 14px 5vw;
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    width: 38px;
    height: 38px;
    padding: 8px;
  }

  .socials a {
    width: 36px;
    height: 36px;
  }

  .socials {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-tape-text {
    letter-spacing: 0.12em;
    font-size: clamp(1rem, 4.6vw, 2.1rem);
    transform: translateY(0) rotate(0deg);
    animation: none;
  }

  .hero-tape-text::before,
  .hero-tape-text::after {
    animation: none;
    opacity: 0;
  }

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

  .cta {
    justify-content: center;
    width: 100%;
  }

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


  .store-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-card h3 {
    font-size: 0.95rem;
    letter-spacing: 0.14em;
  }

  .store-card p {
    font-size: 1rem;
  }

  .product-media,
  .modal-media {
    height: auto;
    min-height: 180px;
    flex: 0 0 auto;
    max-height: none;
  }

  .product-shot::after,
  .modal-label {
    font-size: 1.1rem;
    padding: 5px 10px;
    letter-spacing: 0.1em;
  }

  .scroll-indicators {
    right: 16px;
    bottom: 16px;
    gap: 8px;
  }

  .scroll-indicator {
    width: 40px;
    height: 40px;
  }

  form {
    max-width: 100%;
  }

  label {
    font-size: 0.65rem;
  }

  input {
    font-size: 0.95rem;
  }

  button[type='submit'] {
    width: 100%;
  }

  .modal-panel {
    width: 94vw;
    padding: 18px;
    gap: 16px;
    max-height: calc(100dvh - 24px);
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
  }

  .modal-nav {
    width: 34px;
    height: 34px;
  }

  .modal-title {
    font-size: 1rem;
  }

  .modal-price {
    font-size: 0.8rem;
  }
}
.drawer-nav a.safe-house-link {
  color: rgba(255, 255, 255, 0.35);
}

.drawer-nav a.safe-house-link:hover,
.drawer-nav a.safe-house-link:focus-visible {
  color: rgba(255, 255, 255, 0.6);
}
