:root {
  --vx-void: #07070b;
  --vx-deep: #0b0810;
  --vx-panel: #100c17;
  --vx-panel-soft: #16101f;
  --vx-white: #f7f2f9;
  --vx-body: #d7d0da;
  --vx-muted: #8c8491;
  --vx-lime: #95ff58;
  --vx-lime-soft: #c8ffa5;
  --vx-purple: #a847ff;
  --vx-purple-soft: #d086ff;
  --vx-rule: rgba(173, 91, 255, 0.25);
  --vx-rule-bright: rgba(173, 91, 255, 0.52);
  --vx-green-rule: rgba(149, 255, 88, 0.42);
  --vx-wrap: 1220px;
  --vx-header: 72px;
  --vx-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-padding-top: var(--vx-header);
}

body {
  padding-bottom: 34px;
  background:
    radial-gradient(circle at 17% 8%, rgba(98, 30, 158, 0.19), transparent 35rem),
    radial-gradient(circle at 82% 87%, rgba(68, 136, 42, 0.1), transparent 32rem),
    linear-gradient(135deg, #050507, #0b0710 48%, #050708);
}

.vault-site {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  overflow: clip;
  color: var(--vx-body);
  background:
    radial-gradient(circle at 75% 10%, rgba(163, 64, 255, 0.08), transparent 36rem),
    radial-gradient(circle at 12% 74%, rgba(149, 255, 88, 0.045), transparent 32rem),
    linear-gradient(135deg, rgba(7, 7, 11, 0.98), rgba(12, 8, 17, 0.98) 52%, rgba(6, 8, 8, 0.98));
}

.vault-site::before {
  content: "";
  position: fixed;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: 0.21;
  background-image:
    linear-gradient(rgba(176, 79, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 79, 255, 0.075) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 78%);
  mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 78%);
}

.vault-site::after {
  content: "";
  position: fixed;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 50% 50%, transparent 45%, rgba(0, 0, 0, 0.38) 100%);
}

.vault-site main,
.vx-footer {
  position: relative;
  z-index: 5;
}

.vault-site .ambient-fx {
  z-index: 8;
  opacity: 0.78;
}

.vx-wrap {
  width: min(calc(100% - 48px), var(--vx-wrap));
  margin-inline: auto;
}

.vx-header {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto;
  height: var(--vx-header);
  border-bottom: 1px solid rgba(176, 79, 255, 0.2);
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.93), rgba(7, 7, 10, 0.72));
  backdrop-filter: blur(16px) saturate(1.25);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.vx-header.is-scrolled {
  background: rgba(7, 7, 10, 0.94);
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.vx-header-inner {
  width: min(calc(100% - 48px), var(--vx-wrap));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-inline: auto;
}

.vx-brand,
.vx-footer-brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.vx-brand span {
  border: 1px solid var(--vx-green-rule);
  padding: 0.31rem 0.5rem;
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.vx-main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.2vw, 2.5rem);
}

.vx-main-nav > a:not(.vx-button),
.vx-footer nav a {
  position: relative;
  color: rgba(247, 242, 249, 0.66);
  font-family: var(--font-mono), monospace;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.vx-main-nav > a:not(.vx-button)::after,
.vx-footer nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.72rem;
  left: 0;
  height: 1px;
  background: var(--vx-lime);
  box-shadow: 0 0 10px rgba(149, 255, 88, 0.75);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.vx-footer nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.vx-main-nav > a:hover,
.vx-main-nav > a.is-active,
.vx-footer nav a:hover {
  color: var(--vx-white);
}

.vx-main-nav > a:hover::after,
.vx-main-nav > a.is-active::after,
.vx-footer nav a:hover::after {
  transform: scaleX(1);
}

.vx-progress {
  position: absolute;
  right: auto;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--vx-purple), var(--vx-lime));
  box-shadow: 0 0 12px rgba(149, 255, 88, 0.6);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

.vx-menu-button {
  position: relative;
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid var(--vx-rule);
  padding: 0;
  background: rgba(13, 9, 18, 0.72);
  cursor: pointer;
}

.vx-menu-button span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 1px;
  background: var(--vx-white);
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 240ms ease, opacity 180ms ease;
}

.vx-menu-button span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.vx-menu-button span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.vx-menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.vx-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.vx-menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.vx-mobile-menu {
  position: fixed;
  z-index: 55;
  inset: 0;
  display: none;
  align-content: center;
  gap: 0;
  padding: calc(var(--vx-header) + 2rem) 28px 3rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(176, 79, 255, 0.25), transparent 25rem),
    radial-gradient(circle at 10% 90%, rgba(149, 255, 88, 0.1), transparent 22rem),
    rgba(7, 7, 10, 0.98);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity 240ms ease, transform 460ms var(--vx-ease);
}

.vx-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.vx-mobile-menu > a {
  min-height: 64px;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid var(--vx-rule);
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(1.8rem, 10vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
}

.vx-mobile-menu > a i {
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.64rem;
  font-style: normal;
}

.vx-mobile-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 2rem;
}

.vx-mobile-controls button,
.vx-rail-controls button {
  min-height: 44px;
  border: 1px solid var(--vx-rule);
  background: rgba(15, 10, 21, 0.82);
  color: var(--vx-body);
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vx-mobile-controls button[aria-pressed="true"],
.vx-rail-controls button[aria-pressed="true"] {
  border-color: var(--vx-green-rule);
  color: var(--vx-lime-soft);
}

.vx-chapter-rail {
  position: fixed;
  z-index: 35;
  top: 50%;
  left: clamp(10px, 1.25vw, 24px);
  width: 84px;
  display: grid;
  gap: 1.2rem;
  transform: translateY(-45%);
}

.vx-chapter-rail nav {
  display: grid;
}

.vx-chapter-rail nav a {
  position: relative;
  min-height: 48px;
  display: grid;
  align-content: center;
  border-bottom: 1px solid rgba(176, 79, 255, 0.22);
  padding: 0.5rem 0.4rem 0.5rem 0;
  color: rgba(215, 208, 218, 0.48);
  font-family: var(--font-mono), monospace;
  text-transform: uppercase;
  transition: color 180ms ease, padding-left 180ms ease;
}

.vx-chapter-rail nav a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--vx-lime);
  box-shadow: 0 0 8px var(--vx-lime);
  transition: width 180ms ease;
}

.vx-chapter-rail nav a span {
  color: var(--vx-lime);
  font-size: 0.47rem;
  letter-spacing: 0.09em;
}

.vx-chapter-rail nav a b {
  margin-top: 0.18rem;
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}

.vx-chapter-rail nav a:hover,
.vx-chapter-rail nav a.is-active {
  padding-left: 0.35rem;
  color: var(--vx-white);
}

.vx-chapter-rail nav a.is-active::before {
  width: 22px;
}

.vx-rail-controls {
  display: grid;
  gap: 0.4rem;
}

.vx-rail-controls button {
  min-height: 35px;
  padding: 0.45rem;
  font-size: 0.48rem;
}

.vx-rail-controls button i {
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: var(--vx-lime);
  box-shadow: 0 0 8px var(--vx-lime);
}

.fx-paused .vx-rail-controls button i {
  background: var(--vx-muted);
  box-shadow: none;
}

.vx-button {
  min-height: 50px;
  width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 1px solid transparent;
  padding: 0.9rem 1.35rem;
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 260ms var(--vx-ease),
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}

.vx-button-fill {
  background: var(--vx-lime);
  color: #07090a;
  box-shadow: 0 0 0 rgba(149, 255, 88, 0);
}

.vx-button-fill:hover {
  background: var(--vx-lime-soft);
  box-shadow: 0 0 24px rgba(149, 255, 88, 0.18);
}

.vx-button-line {
  border-color: rgba(176, 79, 255, 0.35);
  background: rgba(10, 7, 14, 0.5);
  color: var(--vx-white);
}

.vx-button-line:hover {
  border-color: var(--vx-green-rule);
  color: var(--vx-lime-soft);
}

.vx-button-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--vx-muted);
}

.vx-button:disabled {
  cursor: not-allowed;
  opacity: 0.34;
  transform: none !important;
}

.vx-button:active:not(:disabled),
.vx-menu-button:active,
.vx-audio-toggle:active {
  transform: translateY(1px) scale(0.985);
}

.vx-nav-cta {
  min-height: 42px;
  padding: 0.7rem 1rem;
}

.vx-hero {
  position: relative;
  isolation: isolate;
  min-height: max(780px, 100svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--vx-rule);
  padding: calc(var(--vx-header) + 4rem) 0 4.5rem;
}

.vx-hero-scene,
.vx-hero-background,
.vx-hero-background img,
.vx-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vx-hero-scene {
  z-index: -3;
  isolation: isolate;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0) scale(1.042);
  transform-origin: 50% 50%;
  will-change: transform;
  animation: vx-scene-drift 42s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.vx-hero-background {
  z-index: 0;
}

.vx-hero-background img {
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.18) brightness(0.8) contrast(1.17);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.vx-hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 7, 9, 0.93) 0%, rgba(7, 7, 10, 0.57) 45%, rgba(7, 7, 10, 0.6) 100%),
    linear-gradient(180deg, rgba(7, 7, 10, 0.2), rgba(7, 7, 10, 0.28) 62%, rgba(7, 7, 10, 0.98));
}

.vx-hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(3.5rem, 8vw, 8.5rem);
}

.vx-hero-copy {
  max-width: 650px;
}

.vx-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
  color: var(--vx-white);
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vx-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vx-lime);
  box-shadow: 0 0 12px var(--vx-lime);
  animation: vx-signal 1.5s steps(2, end) infinite;
}

.atm-cover-copy p strong {
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(149, 255, 88, 0.34);
}

.atm-exit-button,
.dw-exit-button {
  position: fixed;
  z-index: 110;
  top: max(1rem, env(safe-area-inset-top));
  left: max(1rem, env(safe-area-inset-left));
  border: 1px solid rgba(176, 79, 255, 0.4);
  padding: 0.62rem 0.78rem;
  background: rgba(7, 7, 10, 0.56);
  color: rgba(247, 242, 249, 0.66);
  font-family: var(--font-mono), monospace;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.atm-exit-button:hover,
.atm-exit-button:focus-visible,
.dw-exit-button:hover,
.dw-exit-button:focus-visible {
  border-color: rgba(149, 255, 88, 0.62);
  background: rgba(7, 7, 10, 0.88);
  color: var(--vx-lime);
}

.atm-route-notice {
  position: absolute;
  z-index: 90;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.6rem;
  padding: 2rem;
  background: rgba(4, 3, 7, 0.74);
  text-align: center;
  pointer-events: none;
  backdrop-filter: blur(6px);
  animation: vx-route-notice-in 160ms ease both;
}

.atm-route-notice::before {
  content: "";
  position: absolute;
  inset: 22% 14%;
  border: 1px solid rgba(176, 79, 255, 0.46);
  background:
    linear-gradient(90deg, var(--vx-lime) 0 34px, transparent 34px) top left / 100% 1px no-repeat,
    linear-gradient(90deg, transparent calc(100% - 34px), var(--vx-lime) 0) bottom left / 100% 1px no-repeat,
    rgba(11, 7, 16, 0.94);
  box-shadow: 0 0 42px rgba(176, 79, 255, 0.18);
}

.atm-route-notice > * {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.atm-route-notice span {
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.atm-route-notice b {
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(1rem, 2vw, 1.65rem);
  line-height: 1.25;
  text-transform: uppercase;
}

.atm-route-notice.is-crypto b {
  font-size: clamp(2rem, 5vw, 4.4rem);
}

@keyframes vx-route-notice-in {
  from { opacity: 0; filter: contrast(1.8); }
  to { opacity: 1; filter: contrast(1); }
}

.vx-hero h1,
.vx-heading {
  margin: 0;
  font-family: var(--font-display), Impact, sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-transform: uppercase;
}

.vx-hero h1 {
  font-size: clamp(5.2rem, 8vw, 8.6rem);
}

.vx-hero h1 span,
.vx-hero h1 b {
  display: block;
}

.vx-hero h1 span {
  color: var(--vx-lime);
  text-shadow: 0 0 35px rgba(149, 255, 88, 0.13);
}

.vx-hero h1 b {
  color: var(--vx-purple);
  font-weight: 900;
  -webkit-text-stroke: 1px rgba(229, 194, 255, 0.24);
  text-shadow:
    3px 3px 0 rgba(149, 255, 88, 0.13),
    0 0 32px rgba(176, 79, 255, 0.25);
}

.vx-command {
  margin-top: 1.25rem;
  color: var(--vx-purple-soft);
  font-family: var(--font-mono), monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.vx-command span {
  width: 8px;
  height: 1em;
  display: inline-block;
  margin-left: 3px;
  vertical-align: -2px;
  background: var(--vx-lime);
  animation: vx-cursor 1.05s steps(1) infinite;
}

.vx-hero-sub {
  max-width: 590px;
  margin: 1rem 0 0;
  color: var(--vx-white);
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  font-weight: 600;
  line-height: 1.65;
}

.vx-hero-sub strong,
.vx-about-copy strong,
.vx-lede strong {
  color: var(--vx-lime);
}

.vx-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-top: 1.35rem;
}

.vx-chips span {
  border: 1px solid rgba(176, 79, 255, 0.3);
  padding: 0.42rem 0.58rem;
  background: rgba(10, 7, 15, 0.56);
  color: var(--vx-body);
  font-family: var(--font-mono), monospace;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.vx-hero-buttons,
.vx-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.vx-id-card {
  justify-self: end;
  width: min(100%, 450px);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
}

.vx-id-frame {
  position: relative;
  border: 1px solid rgba(176, 79, 255, 0.42);
  padding: 1.55rem 0.7rem 0.72rem;
  background:
    linear-gradient(135deg, rgba(176, 79, 255, 0.15), transparent 22%),
    rgba(4, 4, 7, 0.87);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.vx-id-frame > img {
  width: 100%;
  height: clamp(410px, 53vh, 580px);
  object-fit: cover;
  object-position: 50% 26%;
  border: 1px solid rgba(176, 79, 255, 0.32);
  filter: saturate(0.85) contrast(1.05) brightness(0.9);
}

.vx-ruler {
  position: absolute;
  z-index: 2;
  top: 1.55rem;
  bottom: 0.72rem;
  left: 0.7rem;
  width: 14px;
  border-left: 1px solid var(--vx-purple);
  background: repeating-linear-gradient(to bottom, rgba(176, 79, 255, 0.75) 0 1px, transparent 1px 16px);
}

.vx-frame-tag {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  color: var(--vx-purple-soft);
  font-family: var(--font-mono), monospace;
  font-size: 0.47rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.vx-atm {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  border: 1px solid rgba(149, 255, 88, 0.24);
  padding: 0.8rem 1rem;
  background:
    linear-gradient(90deg, rgba(176, 79, 255, 0.09), transparent 48%),
    rgba(6, 6, 9, 0.96);
  font-family: var(--font-mono), monospace;
}

.vx-atm-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--vx-rule);
  padding-bottom: 0.58rem;
  color: var(--vx-muted);
  font-size: 0.47rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.vx-atm-head b {
  color: var(--vx-lime);
  font-weight: 700;
}

.vx-atm-head b i {
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: var(--vx-lime);
  box-shadow: 0 0 8px var(--vx-lime);
}

.vx-atm > span,
.vx-atm > small {
  display: block;
  color: var(--vx-muted);
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.vx-atm > strong {
  display: block;
  margin: 0.22rem 0 0.25rem;
  color: var(--vx-lime);
  font-size: clamp(1.6rem, 2.7vw, 2.45rem);
  letter-spacing: -0.05em;
  line-height: 1;
  text-shadow: 0 0 17px rgba(149, 255, 88, 0.32);
}

.vx-atm > strong b {
  font-size: 0.75em;
}

.vx-scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 1.35rem;
  left: clamp(24px, 4vw, 68px);
  color: rgba(215, 208, 218, 0.55);
  font-family: var(--font-mono), monospace;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.vx-scroll-cue::before {
  content: "";
  width: 18px;
  height: 1px;
  display: inline-block;
  margin-right: 0.55rem;
  vertical-align: middle;
  background: var(--vx-lime);
  box-shadow: 0 0 8px var(--vx-lime);
}

.vx-consent-rail {
  position: relative;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--vx-rule);
  background:
    radial-gradient(circle at 12% 50%, rgba(149, 255, 88, 0.1), transparent 24rem),
    radial-gradient(circle at 82% 50%, rgba(176, 79, 255, 0.13), transparent 28rem),
    linear-gradient(90deg, rgba(7, 7, 10, 0.96), rgba(13, 8, 18, 0.96), rgba(7, 9, 8, 0.96));
}

.vx-consent-rail span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(176, 79, 255, 0.18);
  color: rgba(247, 242, 249, 0.72);
  font-family: var(--font-mono), monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.vx-consent-rail span:first-child,
.vx-consent-rail span:last-child {
  color: var(--vx-lime-soft);
}

.vx-report,
.vx-services,
.vx-about,
.vx-gallery-section,
.vx-tribute,
.vx-spin,
.vx-request {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--vx-rule);
}

.vx-report {
  min-height: 760px;
  display: grid;
  place-items: center;
  padding: 8rem 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(174, 76, 255, 0.14), transparent 25rem),
    radial-gradient(circle at 20% 80%, rgba(149, 255, 88, 0.055), transparent 25rem),
    linear-gradient(145deg, rgba(7, 7, 11, 0.98), rgba(14, 9, 20, 0.98));
}

.vx-report::before,
.vx-services::before,
.vx-gallery-section::before,
.vx-tribute::before,
.vx-request::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(176, 79, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 79, 255, 0.09) 1px, transparent 1px);
  background-size: 78px 78px;
  -webkit-mask-image: radial-gradient(circle, #000, transparent 77%);
  mask-image: radial-gradient(circle, #000, transparent 77%);
}

.vx-report-watermark {
  position: absolute;
  z-index: -1;
  inset: 50% auto auto 50%;
  color: rgba(176, 79, 255, 0.035);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: min(46vw, 44rem);
  font-weight: 900;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.vx-receipt {
  position: relative;
  width: min(100%, 640px);
  margin-inline: auto;
  border: 1px solid rgba(176, 79, 255, 0.42);
  padding: clamp(2rem, 4vw, 3.3rem);
  background:
    linear-gradient(135deg, rgba(176, 79, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(18, 12, 25, 0.95), rgba(10, 8, 14, 0.97));
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.36);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.vx-receipt::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(176, 79, 255, 0.2);
  pointer-events: none;
}

.vx-receipt-head {
  display: grid;
  justify-items: center;
  margin-bottom: 1.7rem;
  border-bottom: 1px solid var(--vx-rule);
  padding-bottom: 1.4rem;
  text-align: center;
}

.vx-receipt-head span {
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.7rem;
  letter-spacing: 0.6em;
}

.vx-receipt-head b {
  margin-top: 0.55rem;
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.75rem;
  text-transform: uppercase;
}

.vx-receipt-head small {
  margin-top: 0.35rem;
  color: var(--vx-muted);
  font-family: var(--font-mono), monospace;
  font-size: 0.48rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vx-receipt dl {
  margin: 0;
}

.vx-receipt dl > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 0.65rem;
  min-height: 38px;
  font-family: var(--font-mono), monospace;
  font-size: 0.61rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.vx-receipt dt {
  color: var(--vx-muted);
}

.vx-receipt dd {
  margin: 0;
  color: var(--vx-white);
  font-weight: 800;
  text-align: right;
}

.vx-receipt dl i {
  height: 1px;
  margin-bottom: 0.2rem;
  border-bottom: 1px dotted rgba(215, 208, 218, 0.25);
}

.vx-receipt .vx-receipt-total {
  min-height: 54px;
  margin-top: 0.7rem;
  border-top: 1px solid var(--vx-green-rule);
  color: var(--vx-lime);
}

.vx-receipt .vx-receipt-total dt,
.vx-receipt .vx-receipt-total dd {
  color: var(--vx-lime);
}

.vx-barcode {
  width: 100%;
  height: 34px;
  display: block;
  margin-top: 1.1rem;
  opacity: 0.45;
  background: repeating-linear-gradient(90deg, var(--vx-white) 0 1px, transparent 1px 4px, var(--vx-white) 4px 7px, transparent 7px 10px);
}

.vx-receipt > p {
  margin: 0.9rem 0 0;
  color: var(--vx-muted);
  font-family: var(--font-mono), monospace;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.vx-services,
.vx-gallery-section,
.vx-tribute,
.vx-request {
  padding: clamp(6.5rem, 10vw, 10rem) 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(176, 79, 255, 0.08), transparent 26rem),
    radial-gradient(circle at 12% 80%, rgba(149, 255, 88, 0.04), transparent 24rem),
    linear-gradient(145deg, rgba(7, 7, 11, 0.98), rgba(12, 8, 17, 0.98));
}

.vx-section-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vx-section-label span {
  color: var(--vx-purple);
}

.vx-section-label i {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--vx-lime), transparent);
}

.vx-heading {
  max-width: 920px;
  color: var(--vx-white);
  font-size: clamp(3.8rem, 7vw, 7rem);
}

.vx-heading em {
  color: var(--vx-lime);
  font-style: normal;
  text-shadow: 0 0 28px rgba(149, 255, 88, 0.11);
}

.vx-heading em::first-letter {
  color: var(--vx-purple-soft);
}

.vx-lede {
  max-width: 720px;
  margin: 1.4rem 0 0;
  color: rgba(247, 242, 249, 0.74);
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}

.vx-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3.4rem;
  border-top: 1px solid var(--vx-rule);
  border-left: 1px solid var(--vx-rule);
}

.vx-service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--vx-rule);
  border-bottom: 1px solid var(--vx-rule);
  padding: clamp(1.5rem, 2.7vw, 2.5rem);
  background:
    radial-gradient(circle at 92% 8%, rgba(176, 79, 255, 0.13), transparent 12rem),
    linear-gradient(145deg, rgba(18, 12, 25, 0.8), rgba(8, 7, 11, 0.85));
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 260ms var(--vx-ease);
}

.vx-service-card:hover {
  z-index: 2;
  background:
    radial-gradient(circle at 88% 12%, rgba(149, 255, 88, 0.12), transparent 13rem),
    linear-gradient(145deg, rgba(22, 14, 31, 0.95), rgba(9, 8, 12, 0.96));
  box-shadow: inset 0 0 0 1px rgba(149, 255, 88, 0.22), 0 20px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.vx-service-top {
  display: flex;
  justify-content: space-between;
  color: var(--vx-muted);
  font-family: var(--font-mono), monospace;
}

.vx-service-top > span {
  display: flex;
  gap: 4px;
}

.vx-service-top i {
  width: 12px;
  height: 4px;
  display: block;
  background: rgba(176, 79, 255, 0.34);
}

.vx-service-top i:first-child {
  background: var(--vx-lime);
  box-shadow: 0 0 8px rgba(149, 255, 88, 0.6);
}

.vx-service-top b {
  color: var(--vx-lime);
  font-size: 0.65rem;
}

.vx-service-card h3 {
  margin: 3rem 0 0;
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.7rem);
  line-height: 1;
  text-transform: uppercase;
}

.vx-service-card > p {
  max-width: 32rem;
  margin: 1rem 0 1.8rem;
  color: rgba(215, 208, 218, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
}

.vx-service-card > small {
  margin-top: auto;
  border-top: 1px solid rgba(176, 79, 255, 0.2);
  padding-top: 0.85rem;
  color: var(--vx-muted);
  font-family: var(--font-mono), monospace;
  font-size: 0.52rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.vx-service-card > small b {
  color: var(--vx-purple-soft);
}

.vx-service-card.is-unavailable {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(176, 79, 255, 0.1), transparent 58%),
    linear-gradient(145deg, rgba(13, 9, 18, 0.96), rgba(5, 5, 8, 0.98));
}

.vx-service-card.is-unavailable::before,
.vx-service-card.is-unavailable::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.vx-service-card.is-unavailable::before {
  background:
    linear-gradient(180deg, rgba(4, 3, 7, 0.12), rgba(4, 3, 7, 0.68)),
    repeating-linear-gradient(112deg, transparent 0 20px, rgba(176, 79, 255, 0.055) 20px 21px);
  backdrop-filter: blur(1.5px) saturate(0.65);
}

.vx-service-card.is-unavailable::after {
  inset: 18% -12%;
  border-top: 1px solid rgba(149, 255, 88, 0.2);
  border-bottom: 1px solid rgba(176, 79, 255, 0.24);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(176, 79, 255, 0.14), transparent 56%),
    linear-gradient(90deg, transparent, rgba(149, 255, 88, 0.045) 38%, rgba(176, 79, 255, 0.08) 58%, transparent);
  transform: rotate(-3deg);
  box-shadow: 0 0 46px rgba(176, 79, 255, 0.06);
}

.vx-service-unavailable {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(calc(100% - 3rem), 250px);
  transform: translate(-50%, -50%);
  border-top: 1px solid rgba(149, 255, 88, 0.72);
  border-bottom: 1px solid rgba(176, 79, 255, 0.72);
  padding: 0.82rem 1rem;
  background: linear-gradient(90deg, rgba(5, 4, 8, 0.94), rgba(15, 8, 20, 0.96), rgba(5, 4, 8, 0.94));
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: clamp(0.7rem, 1.1vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  box-shadow:
    0 0 0 5px rgba(5, 4, 8, 0.38),
    0 0 32px rgba(149, 255, 88, 0.1);
}

.vx-image-chapter {
  padding: clamp(6.5rem, 10vw, 10rem) 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 11, 0.98), rgba(12, 8, 17, 0.92)),
    url("/images/campaign/afterhours-divider.webp") center / cover;
}

.vx-image-chapter::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(176, 79, 255, 0.15), transparent 28rem),
    linear-gradient(180deg, rgba(7, 7, 10, 0.7), rgba(7, 7, 10, 0.94));
}

.vx-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.vx-about-copy > p {
  max-width: 700px;
  margin: 1.15rem 0 0;
  color: rgba(247, 242, 249, 0.78);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.vx-about-copy blockquote {
  margin: 1.8rem 0 0;
  border-left: 2px solid var(--vx-purple);
  padding: 0.8rem 1rem;
  color: var(--vx-purple-soft);
  font-family: var(--font-mono), monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.vx-about-photo {
  position: relative;
  margin: 0;
  border: 1px solid rgba(176, 79, 255, 0.38);
  padding: 0.65rem;
  background: rgba(6, 5, 9, 0.86);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.vx-about-photo > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(0.9) contrast(1.05);
}

.vx-about-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 1.3rem;
  bottom: 1.2rem;
  left: 1.4rem;
  display: grid;
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  text-transform: uppercase;
  text-shadow: 0 2px 12px #000;
}

.vx-about-photo figcaption small {
  font-family: var(--font-mono), monospace;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
}

.vx-about-photo figcaption b {
  font-size: 1.8rem;
}

.vx-about-photo > i {
  position: absolute;
  z-index: 2;
  right: 0.8rem;
  bottom: 0.8rem;
  border: 1px solid var(--vx-green-rule);
  padding: 0.4rem 0.55rem;
  background: rgba(7, 10, 7, 0.82);
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.48rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.11em;
  transform: rotate(-4deg);
}

.vx-about-photo .vx-ruler {
  z-index: 2;
  top: 0.65rem;
  bottom: 0.65rem;
  left: 0.65rem;
}

.vx-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3.5rem;
  background: var(--vx-rule);
  border: 1px solid var(--vx-rule);
}

.vx-gallery-item {
  position: relative;
  height: 420px;
  min-height: 0;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--vx-panel);
  cursor: zoom-in;
  color: inherit;
}

.vx-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.74) contrast(1.12);
  transform: scale(1.02);
  transition: filter 450ms ease, transform 700ms var(--vx-ease);
}

.vx-gallery-item:nth-child(2) img {
  object-position: 52% 50%;
}

.vx-gallery-item:nth-child(4) img {
  object-position: 50% 50%;
}

.vx-gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 10, 0.12), transparent 45%, rgba(7, 7, 10, 0.88)),
    linear-gradient(90deg, rgba(176, 79, 255, 0.12), transparent);
  pointer-events: none;
}

.vx-gallery-item:hover img,
.vx-gallery-item:focus-visible img {
  filter: saturate(1.05) brightness(0.9) contrast(1.04);
  transform: scale(1.075);
}

.vx-gallery-item.is-coming-soon {
  cursor: default;
  opacity: 1;
}

.vx-gallery-item.is-coming-soon img,
.vx-gallery-item.is-coming-soon:hover img,
.vx-gallery-item.is-coming-soon:focus-visible img {
  filter: blur(13px) saturate(0.7) brightness(0.48) contrast(1.1);
  transform: scale(1.1);
}

.vx-gallery-coming-soon {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: 1px solid var(--vx-lime);
  border-bottom: 1px solid rgba(176, 79, 255, 0.7);
  padding: 0.7rem 0.95rem;
  background: rgba(5, 4, 8, 0.78);
  color: var(--vx-white);
  font-family: var(--font-mono), monospace;
  font-size: clamp(0.62rem, 1vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.vx-gallery-number {
  position: absolute;
  z-index: 3;
  top: 0.8rem;
  left: 0.8rem;
  border: 1px solid var(--vx-rule-bright);
  padding: 0.35rem 0.48rem;
  background: rgba(7, 7, 10, 0.72);
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.52rem;
}

.vx-gallery-bar {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--vx-rule);
  padding: 0.8rem 1rem;
  background: rgba(8, 7, 11, 0.78);
  backdrop-filter: blur(10px);
  text-align: left;
}

.vx-gallery-bar b {
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.vx-gallery-bar i {
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 1rem;
  font-style: normal;
}

.vx-gallery-note {
  margin: 1.6rem 0 0;
  color: var(--vx-muted);
  font-family: var(--font-mono), monospace;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.vx-gallery-note strong {
  color: var(--vx-white);
}

.vx-tribute {
  background:
    radial-gradient(circle at 83% 26%, rgba(149, 255, 88, 0.07), transparent 28rem),
    radial-gradient(circle at 18% 76%, rgba(176, 79, 255, 0.12), transparent 32rem),
    linear-gradient(145deg, rgba(7, 7, 11, 0.99), rgba(13, 8, 18, 0.98));
}

.vx-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
  perspective: 900px;
}

.vx-pay-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(176, 79, 255, 0.3);
  padding: clamp(1.5rem, 2.8vw, 2.5rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 5%, rgba(176, 79, 255, 0.16), transparent 15rem),
    linear-gradient(145deg, rgba(18, 12, 25, 0.95), rgba(8, 7, 11, 0.97));
  color: inherit;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  transition: transform 260ms var(--vx-ease), border-color 180ms ease, box-shadow 180ms ease;
}

.vx-pay-card::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 13rem;
  height: 13rem;
  border: 1px solid rgba(176, 79, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(176, 79, 255, 0.025), 0 0 0 44px rgba(176, 79, 255, 0.018);
  pointer-events: none;
}

.vx-pay-card:hover {
  border-color: var(--vx-green-rule);
  box-shadow: 0 25px 75px rgba(0, 0, 0, 0.36);
}

.vx-pay-card.is-primary {
  border-color: var(--vx-green-rule);
  background:
    radial-gradient(circle at 90% 4%, rgba(149, 255, 88, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(19, 28, 16, 0.95), rgba(9, 8, 12, 0.98));
}

.vx-pay-badge {
  position: absolute;
  top: 0;
  right: 1.2rem;
  padding: 0.45rem 0.7rem;
  background: var(--vx-lime);
  color: #070907;
  font-family: var(--font-mono), monospace;
  font-size: 0.49rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vx-pay-card > small {
  color: var(--vx-purple-soft);
  font-family: var(--font-mono), monospace;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vx-pay-card.is-primary > small {
  color: var(--vx-lime);
}

.vx-pay-card h3 {
  margin: 2.4rem 0 0;
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.vx-pay-card code {
  margin-top: 0.6rem;
  color: var(--vx-muted);
  font-family: var(--font-mono), monospace;
  font-size: 0.55rem;
  letter-spacing: 0.03em;
}

.vx-pay-card p {
  position: relative;
  z-index: 2;
  margin: 1.7rem 0 2rem;
  color: rgba(215, 208, 218, 0.74);
  font-size: 0.9rem;
  line-height: 1.65;
}

.vx-pay-card p strong {
  color: var(--vx-white);
}

.vx-pay-card > b {
  position: relative;
  z-index: 2;
  margin-top: auto;
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.62rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vx-tribute-fine {
  margin-top: 2rem;
  border-top: 1px solid var(--vx-rule);
  padding-top: 1.1rem;
  color: var(--vx-muted);
  font-family: var(--font-mono), monospace;
  font-size: 0.56rem;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

.vx-spin {
  background:
    linear-gradient(90deg, rgba(7, 7, 11, 0.97), rgba(11, 7, 15, 0.84)),
    url("/images/campaign/afterhours-divider.webp") center / cover;
}

.vx-spin-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  margin-top: 3.5rem;
  overflow: hidden;
  border: 1px solid rgba(176, 79, 255, 0.36);
  background:
    radial-gradient(circle at 74% 45%, rgba(176, 79, 255, 0.15), transparent 30rem),
    rgba(8, 7, 11, 0.9);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}

.vx-spin-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
}

.vx-spin-copy > span {
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vx-spin-copy h3 {
  margin: 1.15rem 0 0;
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.vx-spin-title-mobile {
  display: none;
}

.vx-spin-copy > p {
  max-width: 520px;
  margin: 1.4rem 0 1.8rem;
  color: rgba(215, 208, 218, 0.76);
  line-height: 1.7;
}

.vx-spin-copy > small {
  max-width: 420px;
  margin-top: 1.2rem;
  color: var(--vx-muted);
  font-family: var(--font-mono), monospace;
  font-size: 0.5rem;
  line-height: 1.5;
}

.vx-spin-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-left: 1px solid var(--vx-rule);
}

.vx-spin-visual > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) brightness(0.93) contrast(1.04);
}

.vx-spin-visual > .vx-smoke-field {
  transform-origin: 50% 50%;
}

.vx-spin-emblem {
  position: absolute;
  z-index: 2;
  right: -15%;
  bottom: -28%;
  width: 72%;
  height: auto;
  opacity: 0.38;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 22px rgba(176, 79, 255, 0.55));
  animation: vx-spin-emblem 28s linear infinite;
}

.vx-request {
  padding-bottom: clamp(8rem, 13vw, 13rem);
}

.vx-intake-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.vx-form-shell,
.vx-request-receipt {
  border: 1px solid rgba(176, 79, 255, 0.32);
  background:
    radial-gradient(circle at 90% 4%, rgba(176, 79, 255, 0.11), transparent 18rem),
    linear-gradient(145deg, rgba(17, 11, 24, 0.95), rgba(8, 7, 11, 0.97));
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.vx-form-shell {
  padding: clamp(1.4rem, 3vw, 2.6rem);
}

.vx-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.vx-steps button {
  min-height: 44px;
  border: 0;
  border-bottom: 2px solid rgba(176, 79, 255, 0.2);
  padding: 0.5rem 0.25rem;
  background: transparent;
  color: var(--vx-muted);
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
}

.vx-steps button.is-active {
  border-bottom-color: var(--vx-lime);
  color: var(--vx-lime);
}

.vx-steps button.is-done {
  border-bottom-color: rgba(149, 255, 88, 0.38);
  color: var(--vx-white);
}

.vx-steps button:disabled {
  cursor: default;
}

.vx-form-panel {
  min-height: 390px;
  margin: 0;
  border: 0;
  padding: 0;
  animation: vx-panel-in 340ms var(--vx-ease) both;
}

.vx-form-panel h3,
.vx-form-panel legend,
.vx-request-success h3 {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.vx-form-panel > p {
  margin: 0.65rem 0 1.7rem;
  color: var(--vx-purple-soft);
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  font-weight: 700;
}

.vx-form-panel > label:not(.vx-confirm-row),
.vx-request-receipt > label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--vx-body);
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vx-form-panel input:not([type="radio"]):not([type="checkbox"]),
.vx-form-panel textarea,
.vx-request-receipt textarea {
  width: 100%;
  border: 1px solid rgba(176, 79, 255, 0.32);
  border-radius: 0;
  padding: 0.95rem 1rem;
  background: rgba(5, 5, 8, 0.76);
  color: var(--vx-white);
  font-family: var(--font-mono), monospace;
  font-size: 0.86rem;
  line-height: 1.55;
  outline: none;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.vx-form-panel input:not([type="radio"]):not([type="checkbox"]) {
  min-height: 54px;
}

.vx-form-panel input:focus,
.vx-form-panel textarea:focus,
.vx-request-receipt textarea:focus {
  border-color: var(--vx-lime);
  box-shadow: 0 0 0 3px rgba(149, 255, 88, 0.08);
}

.vx-form-panel > small {
  display: block;
  margin-top: 0.7rem;
  color: var(--vx-muted);
  font-family: var(--font-mono), monospace;
  font-size: 0.5rem;
  line-height: 1.55;
}

.vx-request-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.vx-request-types label {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(176, 79, 255, 0.24);
  padding: 0.75rem 0.85rem;
  background: rgba(7, 6, 10, 0.54);
  cursor: pointer;
  color: var(--vx-body);
  font-family: var(--font-mono), monospace;
  font-size: 0.62rem;
  font-weight: 700;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.vx-request-types label:hover,
.vx-request-types label.is-selected {
  border-color: var(--vx-green-rule);
  background: rgba(149, 255, 88, 0.045);
  color: var(--vx-lime-soft);
}

.vx-request-types input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vx-request-types span {
  display: grid;
  gap: 0.24rem;
}

.vx-request-types small {
  color: var(--vx-muted);
  font-size: 0.49rem;
  font-weight: 500;
}

.vx-request-types label > b {
  color: var(--vx-purple-soft);
  font-size: 1rem;
}

.vx-confirm-row {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.8rem;
  margin-top: 1.2rem;
  color: var(--vx-muted);
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.52rem;
  line-height: 1.55;
}

.vx-confirm-row input {
  width: 18px;
  height: 18px;
  margin: 0.05rem 0 0;
  accent-color: var(--vx-lime);
}

.vx-form-error {
  margin: 0.8rem 0 0;
  border-left: 2px solid #ff596b;
  padding: 0.65rem 0.8rem;
  background: rgba(255, 89, 107, 0.06);
  color: #ffb8c0;
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  line-height: 1.5;
}

.vx-form-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--vx-rule);
  padding-top: 1.4rem;
}

.vx-clear-draft {
  min-height: 44px;
  border: 0;
  margin-top: 1rem;
  padding: 0;
  background: transparent;
  color: var(--vx-muted);
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.vx-request-receipt {
  align-self: start;
  position: sticky;
  top: calc(var(--vx-header) + 1.5rem);
  padding: clamp(1.5rem, 2.7vw, 2.3rem);
  background:
    linear-gradient(135deg, rgba(149, 255, 88, 0.07), transparent 26%),
    linear-gradient(180deg, rgba(18, 12, 25, 0.96), rgba(9, 8, 12, 0.98));
}

.vx-request-receipt-title {
  margin-bottom: 1.3rem;
  border-bottom: 1px solid var(--vx-green-rule);
  padding-bottom: 1rem;
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.vx-request-receipt dl {
  margin: 0 0 1.2rem;
}

.vx-request-receipt dl > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.8rem;
  min-height: 48px;
  border-bottom: 1px dotted rgba(176, 79, 255, 0.25);
  padding: 0.75rem 0;
  font-family: var(--font-mono), monospace;
  font-size: 0.56rem;
  line-height: 1.5;
}

.vx-request-receipt dt {
  color: var(--vx-muted);
  text-transform: uppercase;
}

.vx-request-receipt dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--vx-white);
  text-align: right;
}

.vx-request-receipt textarea {
  min-height: 130px;
  font-size: 0.58rem;
}

.vx-request-receipt > div:last-of-type {
  margin-top: 1rem;
  border: 1px solid var(--vx-rule);
  padding: 0.7rem;
  color: var(--vx-purple-soft);
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.vx-request-receipt > div:last-of-type.is-ready {
  border-color: var(--vx-green-rule);
  color: var(--vx-lime);
}

.vx-request-receipt > small {
  display: block;
  margin-top: 1rem;
  color: var(--vx-muted);
  font-family: var(--font-mono), monospace;
  font-size: 0.48rem;
  line-height: 1.55;
}

.vx-request-success {
  min-height: 460px;
  display: grid;
  align-content: center;
  justify-items: start;
  animation: vx-panel-in 340ms var(--vx-ease) both;
}

.vx-request-success > span {
  color: var(--vx-lime);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 30px rgba(149, 255, 88, 0.2);
}

.vx-request-success > p {
  max-width: 600px;
  color: rgba(215, 208, 218, 0.76);
  line-height: 1.7;
}

.vx-footer {
  padding: 7rem 0 6rem;
  border-top: 1px solid var(--vx-rule);
  background:
    radial-gradient(circle at 50% 0%, rgba(176, 79, 255, 0.12), transparent 30rem),
    linear-gradient(145deg, rgba(7, 7, 11, 0.99), rgba(11, 8, 15, 0.99));
}

.vx-footer .vx-wrap {
  display: grid;
  justify-items: center;
  text-align: center;
}

.vx-footer-brand {
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  background: linear-gradient(90deg, var(--vx-lime), var(--vx-white) 48%, var(--vx-purple-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.045em;
  text-shadow: 0 0 44px rgba(176, 79, 255, 0.1);
}

.vx-footer-social {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 1.4rem;
  border: 1px solid var(--vx-green-rule);
  padding: 0.6rem 1rem;
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vx-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.vx-footer > .vx-wrap > p {
  max-width: 760px;
  margin: 2rem 0 0;
  color: rgba(215, 208, 218, 0.68);
  font-size: 0.7rem;
  line-height: 1.7;
}

.vx-footer > .vx-wrap > small {
  margin-top: 0.8rem;
  color: rgba(184, 176, 188, 0.68);
  font-family: var(--font-mono), monospace;
  font-size: 0.48rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vx-ticker {
  position: fixed;
  z-index: 58;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34px;
  overflow: hidden;
  border-top: 1px solid var(--vx-rule);
  background: rgba(7, 7, 10, 0.95);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.vx-ticker > div {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  animation: vx-ticker 34s linear infinite;
}

.vx-ticker span {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  margin-right: 1.1rem;
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vx-ticker span:nth-child(2n) {
  color: var(--vx-purple-soft);
}

.vx-ticker i {
  color: rgba(247, 242, 249, 0.22);
  font-style: normal;
}

.vx-lightbox {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(56px, 1fr) minmax(0, 980px) minmax(56px, 1fr);
  place-items: center;
  padding: 4rem;
  background: rgba(3, 3, 5, 0.9);
  backdrop-filter: blur(16px) saturate(0.8);
  animation: vx-lightbox-in 220ms ease both;
}

.vx-lightbox figure {
  max-width: 980px;
  max-height: calc(100vh - 8rem);
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--vx-rule-bright);
  background: var(--vx-panel);
}

.vx-lightbox figure img {
  max-width: 100%;
  max-height: calc(100vh - 12rem);
  object-fit: contain;
}

.vx-lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: var(--vx-white);
  font-family: var(--font-mono), monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vx-lightbox figcaption span {
  color: var(--vx-lime);
}

.vx-lightbox-close,
.vx-lightbox-arrow {
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--vx-rule);
  background: rgba(10, 7, 14, 0.82);
  color: var(--vx-white);
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.vx-lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  padding: 0.7rem 1rem;
}

.vx-lightbox-arrow {
  border-radius: 50%;
  font-size: 1.2rem;
}

.discreet-mode .vx-hero-background img,
.discreet-mode .vx-id-frame > img,
.discreet-mode .vx-about-photo > img,
.discreet-mode .vx-gallery-item img,
.discreet-mode .vx-lightbox figure img {
  opacity: 0;
}

.discreet-mode .vx-id-frame > img,
.discreet-mode .vx-about-photo,
.discreet-mode .vx-gallery-item {
  background:
    radial-gradient(circle at 52% 40%, rgba(149, 255, 88, 0.13), transparent 12rem),
    url("/images/effects/xs-emblem-760.webp") center / 74% no-repeat,
    linear-gradient(135deg, #120a1b, #08090a);
}

.discreet-mode .vx-hero {
  background:
    radial-gradient(circle at 72% 32%, rgba(176, 79, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 24% 74%, rgba(149, 255, 88, 0.1), transparent 26rem),
    linear-gradient(135deg, #07070b, #12091b 52%, #07100a);
}

.fx-on [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--vx-ease), transform 700ms var(--vx-ease);
}

.fx-on [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.fx-on .vx-service-card:nth-child(2),
.fx-on .vx-gallery-item:nth-child(2),
.fx-on .vx-pay-card:nth-child(2) {
  transition-delay: 60ms;
}

.fx-on .vx-service-card:nth-child(3),
.fx-on .vx-gallery-item:nth-child(3),
.fx-on .vx-pay-card:nth-child(3) {
  transition-delay: 120ms;
}

.fx-on .vx-service-card:nth-child(4),
.fx-on .vx-gallery-item:nth-child(4) {
  transition-delay: 180ms;
}

.fx-on .vx-service-card:nth-child(5) {
  transition-delay: 240ms;
}

.fx-on .vx-service-card:nth-child(6) {
  transition-delay: 300ms;
}

.fx-paused [data-reveal] {
  opacity: 1;
  transform: none;
}

.fx-paused .vx-hero-scene,
.fx-paused .atm-cover-plate,
.fx-paused .vx-spin-emblem,
.fx-paused .vx-live-dot,
.fx-paused .vx-command span,
.fx-paused .vx-ticker > div {
  animation-play-state: paused;
}

@keyframes vx-scene-drift {
  from { transform: translate3d(-0.26%, 0.08%, 0) scale(1.042); }
  to { transform: translate3d(0.34%, -0.24%, 0) scale(1.054); }
}

@keyframes vx-signal {
  50% { opacity: 0.28; }
}

@keyframes vx-cursor {
  50% { opacity: 0; }
}

@keyframes vx-spin-emblem {
  to { transform: rotate(360deg); }
}

@keyframes vx-panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes vx-ticker {
  to { transform: translateX(-50%); }
}

@keyframes vx-lightbox-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1400px) {
  .vx-chapter-rail {
    display: none;
  }
}

@media (max-width: 1100px) {
  .vx-main-nav {
    gap: 1.25rem;
  }

  .vx-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.76fr);
    gap: 3rem;
  }

  .vx-hero h1 {
    font-size: clamp(5rem, 10vw, 7.3rem);
  }

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

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

  .vx-gallery-item {
    height: 470px;
  }

  .vx-pay-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vx-pay-card.is-primary {
    grid-column: span 2;
    min-height: 350px;
  }
}

@media (max-width: 900px) {
  :root {
    --vx-header: 66px;
  }

  body {
    padding-bottom: 38px;
  }

  .vx-wrap,
  .vx-header-inner {
    width: min(calc(100% - 34px), var(--vx-wrap));
  }

  .vx-main-nav {
    display: none;
  }

  .vx-menu-button,
  .vx-mobile-menu {
    display: grid;
  }

  .vx-hero {
    min-height: auto;
    padding: calc(var(--vx-header) + 4rem) 0 6rem;
  }

  .vx-hero-grid,
  .vx-about-grid,
  .vx-spin-card,
  .vx-intake-grid {
    grid-template-columns: 1fr;
  }

  .vx-hero-copy {
    max-width: 720px;
  }

  .vx-id-card {
    justify-self: stretch;
    width: 100%;
    max-width: 600px;
  }

  .vx-id-frame > img {
    height: 560px;
  }

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

  .vx-consent-rail span:nth-child(2) {
    border-right: 0;
  }

  .vx-consent-rail span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(176, 79, 255, 0.18);
  }

  .vx-about-photo {
    max-width: 650px;
  }

  .vx-spin-visual {
    min-height: 460px;
    border-top: 1px solid var(--vx-rule);
    border-left: 0;
  }

  .vx-request-receipt {
    position: relative;
    top: auto;
  }
}

@media (max-width: 680px) {
  .vault-site::before {
    background-size: 44px 44px;
    opacity: 0.12;
  }

  .vx-wrap,
  .vx-header-inner {
    width: min(calc(100% - 28px), var(--vx-wrap));
  }

  .vx-brand {
    font-size: 1rem;
  }

  .vx-brand span {
    display: none;
  }

  .vx-hero {
    padding-top: calc(var(--vx-header) + 3.2rem);
  }

  .vx-hero-background img {
    object-position: 52% 44%;
  }

  .vx-hero-scrim {
    background:
      linear-gradient(180deg, rgba(6, 7, 9, 0.76), rgba(7, 7, 10, 0.55) 34%, rgba(7, 7, 10, 0.9) 70%, rgba(7, 7, 10, 1)),
      linear-gradient(90deg, rgba(6, 7, 9, 0.82), rgba(7, 7, 10, 0.42));
  }

  .vx-eyebrow {
    font-size: 0.5rem;
    line-height: 1.5;
  }

  .vx-hero h1 {
    font-size: clamp(4rem, 21vw, 6.2rem);
  }

  .vx-hero-sub {
    font-size: 0.92rem;
  }

  .vx-chips span {
    font-size: 0.48rem;
  }

  .vx-hero-buttons,
  .vx-inline-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vx-hero-buttons .vx-button,
  .vx-inline-actions .vx-button {
    width: 100%;
  }

  .vx-id-frame > img {
    height: 480px;
  }

  .vx-scroll-cue {
    bottom: 1.1rem;
    left: 14px;
  }

  .vx-report {
    min-height: 680px;
    padding: 6rem 0;
  }

  .vx-receipt {
    padding: 2rem 1.45rem;
  }

  .vx-receipt dl > div {
    font-size: 0.54rem;
  }

  .vx-services,
  .vx-gallery-section,
  .vx-tribute,
  .vx-request,
  .vx-image-chapter {
    padding: 6.4rem 0;
  }

  .vx-heading {
    font-size: clamp(3.25rem, 17vw, 5.4rem);
    line-height: 0.88;
  }

  .vx-lede {
    font-size: 0.93rem;
  }

  .vx-service-grid,
  .vx-pay-grid,
  .vx-request-types {
    grid-template-columns: 1fr;
  }

  .vx-service-card {
    min-height: 260px;
  }

  .vx-pay-card.is-primary {
    grid-column: auto;
  }

  .vx-gallery {
    grid-template-columns: 1fr;
  }

  .vx-gallery-item {
    height: 470px;
  }

  .vx-about-photo > img {
    aspect-ratio: 3 / 4;
  }

  .vx-spin-copy {
    padding: 2.2rem 1.35rem;
  }

  .vx-spin-copy h3 {
    font-size: 3.5rem;
  }

  .vx-spin-copy .vx-button {
    width: 100%;
  }

  .vx-spin-visual {
    min-height: 340px;
  }

  .vx-steps {
    grid-template-columns: repeat(5, minmax(52px, 1fr));
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .vx-steps button {
    font-size: 0.47rem;
  }

  .vx-form-panel {
    min-height: 430px;
  }

  .vx-form-nav .vx-button {
    flex: 1;
    padding-inline: 0.75rem;
  }

  .vx-lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    padding: 4rem 0.25rem 2rem;
  }

  .vx-lightbox figure img {
    max-height: calc(100vh - 13rem);
  }

  .vx-lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
  }

  .vx-footer {
    padding: 5rem 0 4.5rem;
  }

  .vx-footer nav {
    gap: 1rem;
  }
}

@media (max-width: 390px) {
  .vx-hero h1 {
    font-size: 4rem;
  }

  .vx-id-frame > img {
    height: 400px;
  }

  .vx-consent-rail span {
    min-height: 52px;
    padding: 0.6rem;
    font-size: 0.48rem;
  }

  .vx-receipt {
    padding-inline: 1.15rem;
  }

  .vx-gallery-item {
    height: 410px;
  }

  .vx-form-shell {
    padding: 1.15rem;
  }
}

@media (max-height: 520px) and (min-width: 681px) {
  .atm-stage {
    height: min(420px, calc(100dvh - var(--vx-header) - 24px));
    min-height: 270px;
    aspect-ratio: auto;
  }

  .atm-cover-copy {
    bottom: 1rem;
  }

  .atm-cover-copy h3 {
    font-size: clamp(2.7rem, 7vw, 4.6rem);
  }

  .atm-cover-copy p {
    display: none;
  }

  .atm-ghost-control {
    top: 76%;
  }

  .atm-screen-target {
    top: 43%;
  }
}

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

  .vault-site *,
  .vault-site *::before,
  .vault-site *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .vault-site [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

.vx-spin-visual {
  display: block;
  width: 100%;
  margin: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.vx-spin-enter-tag {
  position: absolute;
  z-index: 4;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid rgba(149, 255, 88, 0.68);
  padding: 0.68rem 0.85rem;
  background: rgba(6, 8, 7, 0.82);
  box-shadow:
    0 0 0 4px rgba(6, 8, 7, 0.36),
    0 0 28px rgba(149, 255, 88, 0.14);
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.vx-spin-visual:hover .vx-spin-enter-tag,
.vx-spin-visual:focus-visible .vx-spin-enter-tag {
  background: var(--vx-lime);
  color: #071006;
  transform: translate(-4px, -4px);
}

.vx-spin-visual:focus-visible {
  outline: 2px solid var(--vx-lime);
  outline-offset: -5px;
}

.drain-cinema-active .vault-site main {
  position: relative;
  z-index: 1700;
}

.drain-cinema-active .vault-site main > :not(.vx-spin),
.drain-cinema-active .vx-header,
.drain-cinema-active .vx-chapter-rail,
.drain-cinema-active .vx-mobile-menu,
.drain-cinema-active .vx-ticker,
.drain-cinema-active .vx-consent-rail {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.drain-cinema-active .vault-site main > .vx-spin {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.drain-cinema-active .ambient-fx {
  z-index: 1750;
  opacity: 0.3;
}

.drain-wheel-cinema {
  position: fixed;
  z-index: 1700;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 46% 48%, rgba(75, 23, 93, 0.18), transparent 32%),
    #010102;
  color: #f8f4fb;
  isolation: isolate;
  overscroll-behavior: none;
  touch-action: none;
}

.dw-scene,
.dw-video-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.dw-video-viewport {
  background:
    radial-gradient(circle at 18% 50%, rgba(131, 38, 176, 0.13), transparent 34%),
    radial-gradient(circle at 79% 57%, rgba(73, 255, 111, 0.07), transparent 28%),
    #010102;
}

.dw-video-viewport::before {
  position: absolute;
  z-index: 0;
  inset: -2rem;
  content: "";
  background:
    linear-gradient(rgba(1, 1, 2, 0.5), rgba(1, 1, 2, 0.68)),
    url("/images/campaign/drain-wheel-first.webp") 50% 50% / cover no-repeat;
  filter: blur(18px) saturate(0.85) brightness(0.42);
  opacity: 0.6;
  transform: scale(1.05);
}

.dw-video-plane {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: max(100vw, calc(100dvh * 16 / 9));
  aspect-ratio: 16 / 9;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.dw-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.08) brightness(0.82);
}

.dw-label-rotor {
  position: absolute;
  z-index: 4;
  top: 48.3%;
  left: 44.55%;
  width: 42.2%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: 50% 50%;
  pointer-events: none;
  opacity: 1;
  transition: opacity 110ms linear;
  will-change: transform;
}

.drain-wheel-cinema:not([data-phase="ready"]) .dw-label-rotor {
  opacity: 0;
}

.dw-label-spoke {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: rotate(var(--dw-segment-angle));
  transform-origin: 50% 50%;
}

.dw-label-spoke b {
  position: absolute;
  top: 7.2%;
  left: 50%;
  transform: translateX(-50%);
  color: #fbf7ff;
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(0.78rem, 1.18vw, 1.3rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.88;
  mix-blend-mode: screen;
  text-align: center;
  text-shadow:
    0 0 3px rgba(255, 255, 255, 0.92),
    0 0 10px rgba(176, 79, 255, 0.88),
    0 0 24px rgba(176, 79, 255, 0.46);
}

.dw-label-spoke:nth-child(3n + 1) b {
  color: var(--vx-lime);
  text-shadow:
    0 0 3px rgba(236, 255, 225, 0.96),
    0 0 10px rgba(149, 255, 88, 0.88),
    0 0 24px rgba(149, 255, 88, 0.42);
}

.dw-video-grade {
  position: absolute;
  z-index: 7;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(1, 1, 2, 0.5) 0, transparent 19%, transparent 68%, rgba(1, 1, 2, 0.76) 100%),
    radial-gradient(ellipse at 50% 49%, transparent 35%, rgba(0, 0, 0, 0.58) 100%);
  box-shadow: inset 0 0 9vw rgba(0, 0, 0, 0.72);
}

.dw-scan-lines {
  position: absolute;
  z-index: 8;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: overlay;
}

.dw-corner {
  position: absolute;
  z-index: 18;
  width: 32px;
  height: 32px;
  pointer-events: none;
}

.dw-corner-a {
  top: 4.8rem;
  left: 1rem;
  border-top: 1px solid var(--vx-lime);
  border-left: 1px solid var(--vx-lime);
}

.dw-corner-b {
  right: 1rem;
  bottom: 1rem;
  border-right: 1px solid rgba(176, 79, 255, 0.8);
  border-bottom: 1px solid rgba(176, 79, 255, 0.8);
}

.dw-topbar {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  border-bottom: 1px solid rgba(176, 79, 255, 0.28);
  padding: 0.7rem clamp(1rem, 2vw, 2rem);
  background:
    linear-gradient(90deg, rgba(3, 4, 4, 0.97), rgba(8, 4, 12, 0.91) 48%, rgba(3, 5, 4, 0.96));
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.62);
}

.dw-topbar > div {
  display: grid;
  gap: 0.2rem;
}

.dw-topbar span,
.dw-topbar b,
.dw-sound-toggle {
  font-family: var(--font-mono), monospace;
  text-transform: uppercase;
}

.dw-topbar span {
  color: var(--vx-lime);
  font-size: 0.46rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.dw-topbar b {
  color: rgba(248, 244, 251, 0.9);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.dw-sound-toggle {
  min-height: 38px;
  border: 1px solid rgba(149, 255, 88, 0.42);
  padding: 0.45rem 0.78rem;
  background: rgba(5, 7, 6, 0.75);
  color: var(--vx-lime);
  cursor: pointer;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.dw-control-deck {
  position: absolute;
  z-index: 24;
  top: 5.15rem;
  left: 50%;
  width: min(calc(100vw - 2rem), 1320px);
  transform: translateX(-50%);
  border: 1px solid rgba(176, 79, 255, 0.38);
  padding: 1rem;
  background:
    linear-gradient(110deg, rgba(5, 5, 8, 0.94), rgba(13, 7, 18, 0.82) 58%, rgba(5, 8, 6, 0.9));
  box-shadow:
    0 16px 70px rgba(0, 0, 0, 0.55),
    0 0 32px rgba(176, 79, 255, 0.08);
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
  transition: opacity 300ms ease, transform 400ms var(--vx-ease);
}

.dw-control-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(176, 79, 255, 0.18);
  margin-bottom: 0.78rem;
  padding: 0 0.2rem 0.7rem;
  font-family: var(--font-mono), monospace;
}

.dw-control-heading span {
  color: var(--vx-lime);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.dw-control-heading b {
  color: rgba(248, 244, 251, 0.77);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
}

.dw-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.dw-tier {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.68rem;
  min-width: 0;
  min-height: 70px;
  border: 1px solid rgba(176, 79, 255, 0.24);
  padding: 0.62rem 0.74rem;
  background: rgba(3, 4, 5, 0.78);
  color: #f9f5fb;
  cursor: pointer;
  text-align: left;
  transition: border-color 170ms ease, background 170ms ease, transform 170ms ease;
}

.dw-tier:hover,
.dw-tier:focus-visible {
  border-color: rgba(176, 79, 255, 0.8);
  background: rgba(27, 11, 35, 0.9);
  transform: translateY(-2px);
}

.dw-tier.is-active {
  border-color: var(--vx-lime);
  background:
    linear-gradient(100deg, rgba(149, 255, 88, 0.14), rgba(176, 79, 255, 0.11)),
    rgba(3, 5, 4, 0.92);
  box-shadow: inset 3px 0 0 var(--vx-lime), 0 0 20px rgba(149, 255, 88, 0.08);
}

.dw-tier > i {
  color: rgba(176, 79, 255, 0.72);
  font-family: var(--font-mono), monospace;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 900;
}

.dw-tier.is-active > i {
  color: var(--vx-lime);
}

.dw-tier > span {
  display: grid;
  gap: 0.1rem;
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.32rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.dw-tier > span small {
  color: rgba(208, 201, 211, 0.48);
  font-family: var(--font-mono), monospace;
  font-size: 0.42rem;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.dw-tier > b {
  color: rgba(248, 244, 251, 0.78);
  font-family: var(--font-mono), monospace;
  font-size: 0.6rem;
  white-space: nowrap;
}

.dw-custom-range {
  display: grid;
  grid-template-columns: minmax(90px, 0.7fr) auto minmax(90px, 0.7fr) minmax(115px, 0.52fr) 1.2fr;
  align-items: end;
  gap: 0.55rem;
  margin-top: 0.6rem;
  border-top: 1px solid rgba(176, 79, 255, 0.18);
  padding: 0.58rem 0.15rem 0;
}

.dw-custom-range label {
  display: grid;
  gap: 0.25rem;
}

.dw-custom-range label span,
.dw-custom-range > small {
  color: rgba(215, 208, 218, 0.6);
  font-family: var(--font-mono), monospace;
  font-size: 0.43rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.dw-custom-range input {
  min-width: 0;
  height: 34px;
  border: 1px solid rgba(176, 79, 255, 0.36);
  padding: 0 0.55rem;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: var(--font-mono), monospace;
  font-size: 0.68rem;
  font-weight: 800;
}

.dw-custom-range > i {
  padding-bottom: 0.68rem;
  color: rgba(176, 79, 255, 0.6);
  font-style: normal;
}

.dw-custom-range > button {
  height: 34px;
  border: 1px solid rgba(149, 255, 88, 0.64);
  background: rgba(149, 255, 88, 0.08);
  color: var(--vx-lime);
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.45rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.dw-custom-range > small {
  align-self: center;
  color: var(--vx-lime);
}

.dw-status-line {
  position: absolute;
  z-index: 24;
  right: clamp(1rem, 2vw, 2rem);
  bottom: 6.8rem;
  left: clamp(1rem, 2vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(176, 79, 255, 0.38);
  padding-top: 0.6rem;
  color: rgba(241, 235, 244, 0.7);
  font-family: var(--font-mono), monospace;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dw-status-line span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.dw-status-line span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vx-lime);
  box-shadow: 0 0 14px rgba(149, 255, 88, 0.9);
}

.dw-status-line b {
  color: var(--vx-lime);
  font-size: inherit;
}

.dw-spin-button {
  position: absolute;
  z-index: 25;
  bottom: 1.35rem;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100vw - 2rem), 650px);
  min-height: 82px;
  transform: translateX(-50%);
  border: 1px solid var(--vx-lime);
  padding: 1rem 1.45rem;
  background:
    linear-gradient(100deg, #95ff58, #b3ff87 67%, #96ff59);
  box-shadow:
    0 0 0 5px rgba(149, 255, 88, 0.09),
    0 0 34px rgba(149, 255, 88, 0.22);
  color: #071006;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  font-family: var(--font-mono), monospace;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
  transition: filter 180ms ease, transform 180ms ease;
}

.dw-spin-button:hover,
.dw-spin-button:focus-visible {
  filter: brightness(1.12);
  transform: translateX(-50%) translateY(-3px);
}

.dw-spin-button:disabled {
  cursor: wait;
  filter: saturate(0.55) brightness(0.78);
}

.dw-spin-button i {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.35rem;
  font-style: normal;
}

.drain-wheel-cinema[data-phase="spinning"] .dw-control-deck {
  opacity: 0.23;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
}

.drain-wheel-cinema[data-phase="spinning"] .dw-status-line {
  color: rgba(248, 244, 251, 0.9);
}

.dw-result-overlay {
  position: absolute;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(63, 15, 81, 0.26), transparent 42%),
    rgba(1, 1, 2, 0.72);
  backdrop-filter: blur(8px);
}

.dw-result-impact {
  text-align: center;
  animation: dw-impact-in 520ms steps(7, end) both;
}

.dw-result-impact > span,
.dw-result-card > span {
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: clamp(0.48rem, 0.7vw, 0.7rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dw-result-impact h2 {
  position: relative;
  margin: 0.75rem 0 0;
  color: #fff;
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(5.5rem, 15vw, 14rem);
  line-height: 0.72;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  text-shadow:
    -7px 0 0 rgba(176, 79, 255, 0.68),
    6px 0 0 rgba(149, 255, 88, 0.48),
    0 0 44px rgba(176, 79, 255, 0.38);
  animation: dw-impact-shiver 190ms steps(2, end) 3;
}

.dw-result-card {
  display: grid;
  justify-items: center;
  width: min(calc(100vw - 2rem), 590px);
  border: 1px solid rgba(176, 79, 255, 0.62);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background:
    radial-gradient(circle at 50% 23%, rgba(176, 79, 255, 0.2), transparent 46%),
    linear-gradient(145deg, rgba(13, 7, 18, 0.97), rgba(3, 4, 4, 0.98));
  box-shadow:
    0 0 0 7px rgba(176, 79, 255, 0.06),
    0 24px 100px rgba(0, 0, 0, 0.8),
    0 0 75px rgba(176, 79, 255, 0.16);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  text-align: center;
  animation: dw-card-in 500ms var(--vx-ease) both;
}

.dw-result-card h2 {
  margin: 0.7rem 0 0;
  color: #fff;
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(6rem, 13vw, 10rem);
  line-height: 0.82;
  letter-spacing: -0.07em;
  text-shadow: 0 0 36px rgba(176, 79, 255, 0.42);
}

.dw-result-card h2 small {
  color: var(--vx-lime);
  font-size: 0.35em;
  vertical-align: top;
}

.dw-result-card p {
  margin: 1.1rem 0 1.4rem;
  color: rgba(225, 217, 228, 0.72);
}

.dw-pay-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 420px);
  min-height: 60px;
  padding: 0.75rem 1rem;
  background: var(--vx-lime);
  box-shadow: 0 0 30px rgba(149, 255, 88, 0.2);
  color: #071006;
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.dw-pay-button i {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.1rem;
  font-style: normal;
}

.dw-result-card > small {
  margin-top: 0.7rem;
  color: rgba(215, 208, 218, 0.48);
  font-family: var(--font-mono), monospace;
  font-size: 0.4rem;
  letter-spacing: 0.08em;
}

.dw-spin-again {
  margin-top: 1.3rem;
  border: 0;
  border-bottom: 1px solid rgba(176, 79, 255, 0.68);
  padding: 0.4rem;
  background: transparent;
  color: rgba(248, 244, 251, 0.72);
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes dw-impact-in {
  0% { opacity: 0; filter: blur(12px); transform: scale(1.24) skewX(-8deg); }
  28% { opacity: 1; filter: blur(0); transform: scale(0.94) skewX(4deg); }
  54% { transform: scale(1.06) skewX(-2deg); }
  100% { transform: scale(1) skewX(0); }
}

@keyframes dw-impact-shiver {
  0%, 100% { transform: translate(0); }
  33% { transform: translate(-7px, 2px); }
  66% { transform: translate(6px, -2px); }
}

@keyframes dw-card-in {
  from { opacity: 0; filter: blur(10px); transform: translateY(26px) scale(0.95); }
  to { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
}

@media (max-width: 780px) {
  .vx-spin-enter-tag {
    font-size: 0.44rem;
  }

  .drain-cinema-active .ambient-fx {
    opacity: 0.2;
  }

  .dw-video-plane {
    left: 50%;
    
    width: calc(100vw / 0.46);
    transform: translate(-44.55%, -50%);
  }

  .dw-video {
    filter: saturate(1.02) contrast(1.09) brightness(0.76);
  }

  .dw-topbar {
    min-height: 56px;
    padding: 0.55rem 0.7rem;
  }

  .dw-topbar span {
    font-size: 0.38rem;
  }

  .dw-topbar b {
    font-size: 0.49rem;
  }

  .dw-sound-toggle {
    min-height: 34px;
    padding: 0.35rem 0.5rem;
    font-size: 0.4rem;
  }

  .dw-corner-a {
    top: 4.1rem;
    left: 0.55rem;
  }

  .dw-corner-b {
    right: 0.55rem;
    bottom: 0.55rem;
  }

  .dw-control-deck {
    top: 4rem;
    width: calc(100vw - 1rem);
    padding: 0.5rem;
  }

  .dw-control-heading {
    margin-bottom: 0.42rem;
    padding-bottom: 0.38rem;
  }

  .dw-control-heading span,
  .dw-control-heading b {
    font-size: 0.39rem;
  }

  .dw-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.32rem;
  }

  .dw-tier {
    grid-template-columns: auto 1fr auto;
    min-height: 49px;
    gap: 0.34rem;
    padding: 0.35rem 0.4rem;
  }

  .dw-tier > span {
    font-size: 0.98rem;
  }

  .dw-tier > span small {
    display: none;
  }

  .dw-tier > b {
    font-size: 0.46rem;
  }

  .dw-custom-range {
    grid-template-columns: minmax(68px, 1fr) auto minmax(68px, 1fr) minmax(90px, 0.8fr);
    gap: 0.34rem;
    margin-top: 0.38rem;
    padding-top: 0.4rem;
  }

  .dw-custom-range > small {
    display: none;
  }

  .dw-custom-range input,
  .dw-custom-range > button {
    height: 31px;
  }

  .dw-label-spoke b {
    top: 7.2%;
    font-size: clamp(0.68rem, 3.2vw, 0.95rem);
  }

  .dw-status-line {
    right: 0.7rem;
    bottom: 5.95rem;
    left: 0.7rem;
    padding-top: 0.42rem;
    font-size: 0.38rem;
  }

  .dw-status-line b {
    display: none;
  }

  .dw-spin-button {
    bottom: 1rem;
    width: calc(100vw - 1.4rem);
    min-height: 68px;
    font-size: 0.6rem;
  }

  .dw-result-impact h2 {
    font-size: clamp(5rem, 29vw, 8rem);
  }

  .dw-result-card {
    width: calc(100vw - 1.25rem);
    padding: 1.6rem 1rem;
  }

  .dw-result-card h2 {
    font-size: clamp(6rem, 32vw, 9rem);
  }
}

@media (max-width: 430px) and (max-height: 740px) {
  .dw-control-deck {
    top: 3.65rem;
  }

  .dw-tier {
    min-height: 44px;
  }

  .dw-custom-range {
    margin-top: 0.28rem;
    padding-top: 0.3rem;
  }

  .dw-status-line {
    bottom: 5.5rem;
  }

  .dw-spin-button {
    min-height: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dw-result-impact,
  .dw-result-impact h2,
  .dw-result-card {
    animation: none !important;
  }
}

.vault-site .ambient-fx {
  z-index: 8;
  opacity: 0.96;
  mix-blend-mode: screen;
}

.vault-site.fx-paused .ambient-fx {
  opacity: 0;
}

.atm-cinema-active .vault-site .ambient-fx {
  z-index: 1250;
  opacity: 0.78;
}

.vx-smoke-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  contain: paint;
}

.vx-smoke-video {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: auto;
  height: 116%;
  aspect-ratio: 9 / 16;
  display: block;
  border: 0;
  object-fit: cover;
  opacity: 0.2;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: saturate(1.16) brightness(1.24) contrast(1.16);
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  -webkit-mask-image:
    radial-gradient(ellipse 70% 88% at 50% 50%, #000 0 50%, rgba(0, 0, 0, 0.74) 68%, transparent 96%);
  mask-image:
    radial-gradient(ellipse 70% 88% at 50% 50%, #000 0 50%, rgba(0, 0, 0, 0.74) 68%, transparent 96%);
}

.vx-smoke-video-atm {
  aspect-ratio: 1 / 1;
}

.vx-smoke-field-hero {
  z-index: 2;
}

.vx-smoke-field-hero .vx-smoke-video {
  top: 45%;
  left: 86%;
  width: auto;
  height: 90%;
  opacity: 0.24;
  filter: saturate(1.25) brightness(1.35) contrast(1.17);
  transform: translate(-50%, -50%) rotate(-2deg) scaleX(1);
  -webkit-mask-image:
    radial-gradient(ellipse 67% 86% at 50% 50%, #000 0 48%, rgba(0, 0, 0, 0.7) 68%, transparent 96%);
  mask-image:
    radial-gradient(ellipse 67% 86% at 50% 50%, #000 0 48%, rgba(0, 0, 0, 0.7) 68%, transparent 96%);
}

.vx-about-photo .vx-smoke-field,
.vx-spin-visual .vx-smoke-field {
  z-index: 1;
}

.vx-about-photo .vx-smoke-field {
  inset: 0.65rem;
}

.vx-smoke-field-about .vx-smoke-video {
  top: 50%;
  left: 23%;
  width: auto;
  height: 95%;
  opacity: 0.21;
  filter: saturate(1.16) brightness(1.22) contrast(1.14);
  transform: translate(-50%, -50%) rotate(-2deg) scaleX(-0.82);
  -webkit-mask-image:
    radial-gradient(ellipse 68% 88% at 50% 50%, #000 0 48%, rgba(0, 0, 0, 0.66) 68%, transparent 95%);
  mask-image:
    radial-gradient(ellipse 68% 88% at 50% 50%, #000 0 48%, rgba(0, 0, 0, 0.66) 68%, transparent 95%);
}

.vx-smoke-field-spin .vx-smoke-video {
  top: 46%;
  left: 30%;
  width: auto;
  height: 120%;
  opacity: 0.22;
  filter: saturate(1.16) brightness(1.22) contrast(1.15);
  transform: translate(-50%, -50%) rotate(-4deg) scaleX(0.8);
  -webkit-mask-image:
    radial-gradient(ellipse 62% 88% at 54% 50%, #000 0 48%, rgba(0, 0, 0, 0.62) 67%, transparent 94%);
  mask-image:
    radial-gradient(ellipse 62% 88% at 54% 50%, #000 0 48%, rgba(0, 0, 0, 0.62) 67%, transparent 94%);
}

.atm-cover-smoke {
  z-index: 2;
  opacity: 0;
  transition: opacity 480ms ease;
}

.atm-cover-smoke .vx-smoke-video {
  top: 69.5%;
  left: 82%;
  width: auto;
  height: 38%;
  opacity: 0.21;
  filter: saturate(1.12) brightness(1.08) contrast(1.12);
  transform: translate(-50%, -50%) rotate(1.5deg) scaleX(0.72);
  -webkit-mask-image:
    radial-gradient(ellipse 64% 110% at 50% 70%, #000 0 55%, rgba(0, 0, 0, 0.78) 74%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 64% 110% at 50% 70%, #000 0 55%, rgba(0, 0, 0, 0.78) 74%, transparent 100%);
}

.atm-experience[data-phase="cover"] .atm-cover-smoke,
.atm-experience[data-phase="glitch"] .atm-cover-smoke {
  opacity: 1;
}

@media (min-width: 821px) and (min-aspect-ratio: 7 / 3) {
  .atm-cover-smoke .vx-smoke-video {
    top: 76%;
    left: 72%;
  }
}

@media (min-width: 681px) and (max-width: 820px) {
  .atm-cover-smoke .vx-smoke-video {
    top: 73%;
    left: 65%;
    height: 38%;
    opacity: 0.2;
    transform: translate(-50%, -50%) rotate(1.5deg) scaleX(0.72);
  }
}

@media (max-width: 680px) {
  .vault-site .ambient-fx {
    opacity: 0.9;
  }

  .vx-smoke-video {
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: auto;
    height: 124%;
    opacity: 0.15;
    object-fit: cover;
    transform: translate(-50%, -50%);
  }

  .vx-smoke-field-hero .vx-smoke-video {
    top: 52%;
    left: 80%;
    width: auto;
    height: 90%;
    opacity: 0.21;
    transform: translate(-50%, -50%) rotate(-3deg) scaleX(0.95);
  }

  .atm-cover-smoke .vx-smoke-video {
    top: 65%;
    left: 64%;
    width: auto;
    height: 118%;
    opacity: 0.37;
    filter: saturate(1.2) brightness(1.18) contrast(1.15);
    transform: translate(-50%, -50%) rotate(1deg) scaleX(1.08);
  }

  .vx-smoke-field-about .vx-smoke-video {
    top: 49%;
    left: 24%;
    width: auto;
    height: 105%;
    opacity: 0.19;
    transform: translate(-50%, -50%) rotate(-2deg) scaleX(-0.82);
  }

  .vx-smoke-field-spin .vx-smoke-video {
    top: 59%;
    left: 50%;
    width: auto;
    height: 190%;
    opacity: 0.38;
    filter: saturate(1.22) brightness(1.24) contrast(1.16);
    transform: translate(-50%, -50%) rotate(-3deg) scaleX(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .vx-smoke-video {
    will-change: auto;
  }

  .atm-experience[data-phase="cover"] .atm-cover-smoke,
  .atm-experience[data-phase="glitch"] .atm-cover-smoke {
    opacity: 0.72;
  }

  .vault-site .ambient-fx {
    opacity: 0.46;
  }
}

.vx-hero-buttons .vx-button {
  min-height: 64px;
  padding: 1.08rem 1.65rem;
  font-size: 0.66rem;
  letter-spacing: 0.11em;
}

.vx-hero-buttons .vx-button-fill {
  min-width: 224px;
  box-shadow:
    0 0 0 1px rgba(149, 255, 88, 0.18),
    0 18px 48px rgba(149, 255, 88, 0.14),
    0 0 42px rgba(149, 255, 88, 0.1);
}

.vx-tribute-first {
  padding: 0 0 clamp(5.4rem, 8vw, 8.5rem);
  background:
    radial-gradient(circle at 76% 14%, rgba(149, 255, 88, 0.1), transparent 30rem),
    radial-gradient(circle at 18% 48%, rgba(176, 79, 255, 0.16), transparent 38rem),
    linear-gradient(145deg, rgba(7, 7, 11, 0.99), rgba(15, 8, 21, 0.98));
}

.vx-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.atm-experience {
  position: relative;
  z-index: 4;
  width: 100%;
  margin: 0;
  border: 0;
  padding: 0;
  outline: none;
  background: #050507;
  box-shadow: none;
  clip-path: none;
}

.atm-experience::before {
  content: "";
  position: absolute;
  display: none;
}

.atm-stage {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: max(700px, 100svh);
  overflow: hidden;
  overflow: clip;
  outline: none;
  background:
    radial-gradient(circle at 52% 45%, rgba(176, 79, 255, 0.2), transparent 40%),
    #050507;
  perspective: 1200px;
}

.atm-stage:focus-visible {
  box-shadow: inset 0 0 0 3px var(--vx-lime), inset 0 0 35px rgba(149, 255, 88, 0.12);
}

.atm-experience[data-phase="scrub"] .atm-stage,
.atm-experience[data-phase="control"] .atm-stage,
.atm-experience[data-phase="payment"] .atm-stage {
  cursor: crosshair;
  touch-action: none;
}

.atm-camera,
.atm-cover-plate,
.atm-control-scene,
.atm-payment-scene,
.atm-arm-rig,
.atm-arm-press,
.atm-cover-picture,
.atm-cover-image,
.atm-approach-video,
.atm-approach-frame,
.atm-locked-still,
.atm-base-image,
.atm-arm-image,
.atm-payment-blank,
.atm-payment-options {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.atm-camera {
  z-index: 1;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  transform-style: preserve-3d;
  will-change: transform;
}

.atm-cover-plate {
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0) scale(1.036);
  transform-origin: 50% 50%;
  will-change: transform;
}

.atm-experience[data-phase="cover"] .atm-cover-plate {
  animation: atm-cover-drift 44s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.atm-cover-image,
.atm-approach-video,
.atm-approach-frame,
.atm-locked-still,
.atm-base-image,
.atm-arm-image,
.atm-payment-blank,
.atm-payment-options {
  display: block;
  object-fit: cover;
}

.atm-cover-image {
  z-index: 1;
  opacity: 0;
  object-position: center;
  filter: saturate(1.06) contrast(1.05) brightness(0.78);
  transition: opacity 220ms ease;
}

.atm-experience[data-phase="cover"] .atm-cover-image {
  filter: blur(1.35px) saturate(0.78) contrast(1.03) brightness(0.49);
  transform: translateZ(0);
}

.atm-approach-video {
  z-index: 2;
  opacity: 0;
  background: #07070a;
  filter: saturate(1.04) contrast(1.035) brightness(0.9);
}

.atm-approach-frame {
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  background: transparent;
  filter: saturate(1.04) contrast(1.035) brightness(0.9);
}

.atm-locked-still {
  z-index: 3;
  opacity: 0;
  filter: saturate(1.04) contrast(1.035) brightness(0.9);
  transition: opacity 180ms ease;
}

.atm-control-scene {
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.atm-payment-scene {
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.atm-base-image {
  z-index: 1;
  filter: saturate(1.04) contrast(1.035) brightness(0.9);
}

.atm-arm-image {
  z-index: 2;
  object-fit: cover;
  transform: none;
}

.atm-arm-rig {
  z-index: 8;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
  transform-origin: 82% 82%;
  will-change: transform;
  transition: opacity 180ms ease;
}

.atm-arm-press {
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: 72% 72%;
  will-change: transform;
}

.atm-payment-blank {
  z-index: 1;
  filter: saturate(1.04) contrast(1.035) brightness(0.9);
}

.atm-payment-options {
  z-index: 2;
  opacity: 0;
  filter: saturate(1.04) contrast(1.035) brightness(0.9);
}

.atm-cover-plate,
.atm-approach-video,
.atm-locked-still,
.atm-control-scene,
.atm-payment-scene {
  visibility: hidden;
}

.atm-experience[data-phase="cover"] .atm-cover-image,
.atm-experience[data-phase="glitch"] .atm-cover-image {
  opacity: 1;
}

.atm-experience[data-phase="cover"] .atm-cover-plate,
.atm-experience[data-phase="glitch"] .atm-cover-plate,
.atm-experience[data-phase="scrub"] .atm-approach-video,
.atm-experience[data-phase="handoff"] .atm-approach-video {
  visibility: visible;
}

.atm-experience[data-phase="scrub"] .atm-approach-video,
.atm-experience[data-phase="handoff"] .atm-approach-video {
  opacity: 1;
}

.atm-experience[data-frame-scrub="true"] .atm-approach-video {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.atm-experience[data-frame-scrub="true"][data-phase="scrub"] .atm-approach-frame,
.atm-experience[data-frame-scrub="true"][data-phase="handoff"] .atm-approach-frame {
  opacity: 1;
  visibility: visible;
}

.atm-experience[data-phase="handoff"] .atm-locked-still {
  opacity: 1;
  visibility: visible;
  transition: opacity 180ms ease 100ms;
}

.atm-experience[data-phase="control"] .atm-approach-video,
.atm-experience[data-phase="control"] .atm-locked-still,
.atm-experience[data-phase="amountPress"] .atm-approach-video,
.atm-experience[data-phase="amountPress"] .atm-locked-still {
  opacity: 0;
  visibility: hidden;
}

.atm-experience[data-phase="control"] .atm-control-scene,
.atm-experience[data-phase="amountPress"] .atm-control-scene {
  opacity: 1;
  visibility: visible;
}

.atm-experience[data-phase="processing"] .atm-payment-scene,
.atm-experience[data-phase="payment"] .atm-payment-scene {
  opacity: 1;
  visibility: visible;
}

.atm-experience[data-phase="payment"] .atm-payment-options {
  opacity: 1;
  animation: atm-options-arrive 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.atm-experience[data-phase="scrub"] .atm-stage,
.atm-experience[data-phase="handoff"] .atm-stage {
  background-image: url("/images/atm-experience/approach-poster.jpg");
  background-position: center;
  background-size: cover;
}

.atm-experience[data-phase="control"] .atm-stage,
.atm-experience[data-phase="amountPress"] .atm-stage {
  background-image: url("/images/atm-experience/atm-base.png");
  background-position: center;
  background-size: cover;
}

.atm-experience[data-phase="processing"] .atm-stage {
  background-image: url("/images/atm-experience/atm-payment-blank.png");
  background-position: center;
  background-size: cover;
}

.atm-experience[data-phase="payment"] .atm-stage {
  background-image: url("/images/atm-experience/atm-payment-options.png");
  background-position: center;
  background-size: cover;
}

.atm-experience[data-phase="control"] .atm-arm-rig,
.atm-experience[data-phase="amountPress"] .atm-arm-rig,
.atm-experience[data-phase="processing"] .atm-arm-rig,
.atm-experience[data-phase="payment"] .atm-arm-rig {
  opacity: 1;
}

.atm-experience.is-amount-pressing .atm-arm-press,
.atm-experience.is-method-pressing .atm-arm-press {
  animation: atm-hand-press 640ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.atm-scene-vignette,
.atm-scene-scan,
.atm-glitch-layer {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}

.atm-scene-vignette {
  background:
    linear-gradient(180deg, rgba(3, 2, 5, 0.35), transparent 22%, transparent 72%, rgba(3, 2, 5, 0.52)),
    radial-gradient(circle at 50% 48%, transparent 48%, rgba(3, 2, 5, 0.55) 100%);
}

.atm-experience[data-phase="cover"] .atm-scene-vignette {
  background:
    linear-gradient(90deg, rgba(3, 3, 6, 0.82) 0%, rgba(4, 3, 7, 0.68) 22%, rgba(4, 3, 7, 0.28) 42%, transparent 66%),
    linear-gradient(180deg, rgba(3, 2, 5, 0.28), transparent 20%, transparent 62%, rgba(5, 4, 8, 0.82) 100%),
    radial-gradient(ellipse at 52% 46%, transparent 38%, rgba(3, 2, 5, 0.56) 100%);
}

.atm-experience[data-phase="cover"] .atm-scene-scan {
  opacity: 0.055;
}

.atm-experience:not(.is-cinema)::after {
  content: "";
  position: absolute;
  z-index: 7;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(110px, 12vw, 220px);
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(8, 6, 11, 0.68) 58%, #0b0810 100%);
}

.atm-scene-scan {
  opacity: 0.12;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.14) 0 1px,
    transparent 1px 4px
  );
  mix-blend-mode: overlay;
}

.atm-glitch-layer {
  z-index: 20;
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(149, 255, 88, 0.2), transparent 22%, rgba(176, 79, 255, 0.24) 72%, transparent),
    repeating-linear-gradient(to bottom, transparent 0 11px, rgba(255, 255, 255, 0.32) 11px 13px);
  mix-blend-mode: screen;
}

.atm-experience[data-phase="glitch"] .atm-glitch-layer {
  opacity: 0.8;
  animation: atm-glitch-flash 430ms steps(2, jump-none) both;
}

.atm-experience[data-phase="glitch"] .atm-cover-plate {
  animation: atm-glitch-plate 430ms steps(2, jump-none) both;
}

.atm-cover-copy {
  position: absolute;
  z-index: 8;
  top: 50%;
  left: clamp(9rem, 12vw, 24rem);
  bottom: auto;
  width: min(690px, 39vw);
  border-left: 3px solid var(--vx-lime);
  padding: clamp(1.2rem, 2.4vw, 2.25rem);
  background:
    radial-gradient(ellipse at 0% 50%, rgba(4, 4, 7, 0.88), rgba(6, 5, 9, 0.56) 58%, transparent 88%);
  box-shadow: -34px 0 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(2px);
  transform: translateY(-50%);
}

.atm-cover-copy > span,
.atm-scrub-instruction > span,
.atm-control-instruction > span {
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.atm-cover-copy h3 {
  margin: 0.45rem 0 0;
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(4.5rem, 8vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.58);
}

.atm-cover-copy p {
  max-width: 460px;
  margin: 1rem 0 1.25rem;
  color: rgba(247, 242, 249, 0.84);
  font-size: clamp(0.82rem, 1.25vw, 1rem);
  line-height: 1.55;
}

.atm-enter-button {
  min-width: min(100%, 290px);
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border: 1px solid var(--vx-lime);
  padding: 1rem 1.35rem;
  background: var(--vx-lime);
  color: #080b07;
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow:
    0 14px 48px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(149, 255, 88, 0.26);
  transition: filter 180ms ease, box-shadow 180ms ease, transform 180ms var(--vx-ease);
}

.atm-enter-button:hover {
  filter: brightness(1.08);
  box-shadow:
    0 18px 56px rgba(0, 0, 0, 0.42),
    0 0 46px rgba(149, 255, 88, 0.38);
  transform: translateY(-2px);
}

.atm-enter-button:active {
  transform: translateY(0) scale(0.985);
}

.atm-enter-button:focus-visible,
.atm-skip-approach:focus-visible {
  outline: 3px solid var(--vx-white);
  outline-offset: 3px;
}

.atm-cover-copy > small {
  display: block;
  margin-top: 0.75rem;
  color: rgba(215, 208, 218, 0.62);
  font-family: var(--font-mono), monospace;
  font-size: 0.49rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.atm-scrub-instruction,
.atm-control-instruction {
  position: absolute;
  z-index: 9;
  top: clamp(1rem, 4vw, 3rem);
  left: clamp(1rem, 4vw, 3.5rem);
  max-width: min(430px, calc(100% - 2rem));
  border-left: 2px solid var(--vx-purple);
  padding: 0.9rem 1rem;
  background: linear-gradient(90deg, rgba(5, 5, 8, 0.88), rgba(5, 5, 8, 0.3), transparent);
  text-shadow: 0 2px 16px #000;
}

.atm-control-instruction {
  border-color: var(--vx-lime);
}

.atm-scrub-instruction b,
.atm-control-instruction b {
  display: block;
  margin-top: 0.28rem;
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2.2rem);
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.atm-scrub-instruction small,
.atm-control-instruction small {
  display: block;
  margin-top: 0.46rem;
  color: rgba(247, 242, 249, 0.72);
  font-family: var(--font-mono), monospace;
  font-size: 0.5rem;
  letter-spacing: 0.07em;
}

.atm-skip-approach {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.8rem;
  border: 1px solid rgba(176, 79, 255, 0.42);
  padding: 0.65rem 0.9rem;
  background: rgba(9, 6, 13, 0.72);
  color: rgba(247, 242, 249, 0.78);
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.atm-skip-approach:hover {
  border-color: var(--vx-green-rule);
  background: rgba(13, 18, 12, 0.82);
  color: var(--vx-lime-soft);
}

.atm-skip-approach i {
  color: var(--vx-lime);
  font-style: normal;
}

.atm-ghost-control {
  position: absolute;
  z-index: 9;
  left: 50%;
  top: 82%;
  width: clamp(58px, 7vw, 82px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  color: var(--vx-white);
  font-family: var(--font-mono), monospace;
  font-size: 0.47rem;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px #000;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.06),
    0 0 26px rgba(255, 255, 255, 0.2);
  animation: atm-ghost-pulse 1.6s ease-in-out infinite;
}

.atm-ghost-control i,
.atm-screen-target i {
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(149, 255, 88, 0.8);
  border-radius: 50%;
}

.atm-screen-target {
  position: absolute;
  z-index: 9;
  left: 50%;
  top: 43%;
  width: clamp(48px, 6vw, 72px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(149, 255, 88, 0.84);
  border-radius: 50%;
  background: rgba(6, 10, 6, 0.22);
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.45rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 34px rgba(149, 255, 88, 0.25);
}

.atm-screen-target::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: min(30vh, 250px);
  background: linear-gradient(to bottom, rgba(149, 255, 88, 0.6), transparent);
  transform: translateX(-50%);
}

.atm-lock-flash {
  position: absolute;
  z-index: 18;
  inset: 0;
  display: grid;
  place-content: center;
  background:
    radial-gradient(circle, transparent 18%, rgba(6, 3, 9, 0.34) 64%),
    rgba(176, 79, 255, 0.08);
  text-align: center;
  animation: atm-lock-arrive 420ms ease-out both;
}

.atm-lock-flash span {
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: clamp(0.55rem, 1.1vw, 0.8rem);
  font-weight: 900;
  letter-spacing: 0.24em;
}

.atm-lock-flash b {
  display: block;
  margin-top: 0.45rem;
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-shadow:
    3px 0 0 rgba(149, 255, 88, 0.55),
    -3px 0 0 rgba(176, 79, 255, 0.75),
    0 10px 50px #000;
}

.atm-selected-amount {
  position: absolute;
  z-index: 2;
  box-sizing: border-box;
  border: 0;
  border-radius: 6% / 9%;
  background:
    radial-gradient(circle at 50% 45%, rgba(208, 134, 255, 0.19), transparent 74%),
    rgba(176, 79, 255, 0.16);
  box-shadow:
    inset 0 0 0 1px rgba(220, 157, 255, 0.98),
    inset 0 0 24px rgba(176, 79, 255, 0.14),
    0 0 16px rgba(176, 79, 255, 0.26);
  pointer-events: none;
  animation: atm-amount-confirm 640ms ease-out both;
}

.atm-amount-buttons,
.atm-payment-buttons {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.atm-amount-buttons button,
.atm-payment-buttons button {
  position: absolute;
  min-width: 0;
  min-height: 0;
  border: 1px solid transparent;
  padding: 0;
  background: transparent;
  color: transparent;
  pointer-events: none;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 120ms ease;
}

.atm-amount-buttons button {
  border-radius: 6% / 9%;
}

.atm-payment-buttons button {
  border-radius: 3.2% / 16%;
}

.atm-amount-buttons button.is-targeted,
.atm-payment-buttons button.is-targeted {
  border-color: rgba(218, 150, 255, 0.88);
  background: rgba(176, 79, 255, 0.085);
  box-shadow:
    inset 0 0 22px rgba(176, 79, 255, 0.08),
    0 0 13px rgba(176, 79, 255, 0.2);
}

.atm-amount-buttons button:focus-visible,
.atm-payment-buttons button:focus-visible {
  border-color: rgba(218, 150, 255, 0.88);
  outline: 2px solid rgba(218, 150, 255, 0.95);
  outline-offset: 2px;
}

.atm-amount-buttons button:disabled,
.atm-payment-buttons button:disabled {
  pointer-events: none;
}

.atm-amount-buttons button span,
.atm-payment-buttons button span {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.atm-amount-buttons button,
.atm-payment-buttons button {
  cursor: default;
}

.atm-payment-buttons button:active {
  transform: none;
}

.atm-payment-buttons button.is-selected {
  border-color: rgba(222, 164, 255, 0.96);
  background: rgba(176, 79, 255, 0.15);
  box-shadow:
    inset 0 0 0 1px rgba(218, 150, 255, 0.34),
    inset 0 0 28px rgba(176, 79, 255, 0.13),
    0 0 18px rgba(176, 79, 255, 0.22);
}

.atm-payment-scene::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 23.5%;
  left: 28.6%;
  width: 37%;
  height: 2px;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(208, 134, 255, 0.88), rgba(149, 255, 88, 0.82), transparent);
  box-shadow: 0 0 18px rgba(176, 79, 255, 0.48);
}

.atm-experience[data-phase="processing"] .atm-payment-scene::after {
  opacity: 0.72;
  animation: atm-screen-scan 720ms ease-in-out both;
}

.atm-payment-amount {
  position: absolute;
  z-index: 4;
  top: 28.5%;
  left: 62.8%;
  width: 7rem;
  color: #f5f3f7;
  font-family: var(--font-body), sans-serif;
  font-size: clamp(0.72rem, 1.7vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: right;
  text-shadow: 0 0 12px rgba(228, 218, 239, 0.22);
  transform: translate(-100%, -50%);
}

.atm-experience[data-phase="processing"] .atm-payment-amount {
  animation: atm-amount-type 620ms steps(4, end) both;
}

.atm-screen-zone {
  position: absolute;
  z-index: 9;
  left: 25.5%;
  top: 21%;
  width: 41.5%;
  height: 49.5%;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
}

.atm-hand-reticle {
  position: absolute;
  z-index: 3;
  left: 51.5%;
  top: 38.2%;
  width: clamp(32px, 4vw, 52px);
  aspect-ratio: 1;
  border: 1px solid rgba(149, 255, 88, 0.7);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
  box-shadow:
    0 0 0 6px rgba(149, 255, 88, 0.05),
    0 0 20px rgba(149, 255, 88, 0.22);
}

.atm-hand-reticle i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--vx-lime);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--vx-lime);
}

.atm-experience.is-control-ready .atm-hand-reticle {
  opacity: 1;
}

.atm-hand-reticle.is-hot,
.atm-experience.is-amount-pressing .atm-hand-reticle {
  border-color: rgba(208, 134, 255, 0.95);
  opacity: 1;
  box-shadow:
    0 0 0 7px rgba(176, 79, 255, 0.075),
    0 0 24px rgba(176, 79, 255, 0.38);
}

.atm-hand-reticle.is-hot i,
.atm-experience.is-amount-pressing .atm-hand-reticle i {
  background: var(--vx-purple-soft);
  box-shadow: 0 0 10px var(--vx-purple);
}

.atm-live-instruction {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.vx-tribute-routes {
  position: relative;
  z-index: 5;
  padding-top: clamp(4.5rem, 8vw, 8rem);
}

.vx-tribute-routes::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 100vw;
  height: clamp(150px, 16vw, 280px);
  background:
    radial-gradient(ellipse at 25% 0%, rgba(150, 64, 226, 0.12), transparent 38%),
    linear-gradient(180deg, #0b0810, rgba(11, 8, 16, 0.62) 62%, transparent);
  transform: translateX(-50%);
}

.vx-payment-heading {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(300px, 1.15fr);
  column-gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-top: 0;
  border-top: 1px solid rgba(176, 79, 255, 0.28);
  padding-top: clamp(2.2rem, 4vw, 3.5rem);
}

.atm-experience.is-cinema {
  position: fixed;
  z-index: 1200;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  display: grid;
  grid-template-rows: auto;
  place-content: center;
  justify-items: center;
  margin: 0;
  border: 0;
  padding: 0;
  overflow: clip;
  overscroll-behavior: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(77, 31, 113, 0.2), transparent 44%),
    #020204;
  box-shadow: none;
  clip-path: none;
  isolation: isolate;
  touch-action: none;
}

.atm-cinema-active .vault-site main {
  z-index: 1200;
}

.atm-cinema-active .vault-site main > :not(.vx-tribute) {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.atm-cinema-active .vault-site main > .vx-tribute {
  z-index: 1;
  overflow: visible;
}

.atm-cinema-active .vx-header,
.atm-cinema-active .vx-hero,
.atm-cinema-active .vx-consent-rail,
.atm-cinema-active .vx-chapter-rail,
.atm-cinema-active .vx-mobile-menu,
.atm-cinema-active .vx-ticker {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.atm-experience.is-cinema::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18%;
  display: block;
  opacity: 0.8;
  background:
    radial-gradient(ellipse at 20% 66%, rgba(154, 70, 230, 0.16), transparent 27%),
    radial-gradient(ellipse at 82% 30%, rgba(98, 186, 59, 0.1), transparent 25%),
    radial-gradient(ellipse at 50% 50%, rgba(14, 10, 19, 0.72), #010102 72%);
  filter: blur(34px);
  animation: atm-cinema-breathe 7s ease-in-out infinite alternate;
}

.atm-experience.is-cinema::after {
  content: "";
  position: absolute;
  z-index: 30;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 13%, transparent 84%, rgba(0, 0, 0, 0.68)),
    radial-gradient(ellipse at 50% 48%, transparent 42%, rgba(0, 0, 0, 0.7) 100%);
  box-shadow: inset 0 0 13vw rgba(0, 0, 0, 0.92);
}

.atm-experience.is-cinema .atm-stage {
  position: relative;
  z-index: 2;
  width: min(100vw, calc(100dvh * 1.5));
}

.atm-experience.is-cinema .atm-stage {
  min-height: 0;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(190, 111, 255, 0.48);
  box-shadow:
    0 0 0 7px rgba(10, 7, 13, 0.95),
    0 34px 120px rgba(0, 0, 0, 0.9),
    0 0 70px rgba(164, 73, 255, 0.14);
}

.vx-payment-heading > span {
  grid-column: 1 / -1;
  margin-bottom: 0.8rem;
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.53rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.vx-payment-heading h3 {
  margin: 0;
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  letter-spacing: -0.04em;
  line-height: 0.84;
  text-transform: uppercase;
}

.vx-payment-heading p {
  max-width: 570px;
  margin: 0;
  color: rgba(215, 208, 218, 0.74);
  font-size: 0.94rem;
  line-height: 1.65;
}

@keyframes atm-glitch-flash {
  0% { clip-path: inset(0 0 76% 0); transform: translateX(-1.8%); }
  18% { clip-path: inset(42% 0 34% 0); transform: translateX(2%); }
  38% { clip-path: inset(72% 0 8% 0); transform: translateX(-2.4%); }
  58% { clip-path: inset(12% 0 62% 0); transform: translateX(1.4%); }
  78% { clip-path: inset(56% 0 16% 0); transform: translateX(-1%); }
  100% { clip-path: inset(0); transform: translateX(0); opacity: 0; }
}

@keyframes atm-glitch-plate {
  0% { transform: translate3d(0, 0, 0) scale(1.036); filter: hue-rotate(0) saturate(1.1); }
  20% { transform: translate3d(1.4%, -0.5%, 0) scale(1.051); filter: hue-rotate(32deg) saturate(1.7); }
  42% { transform: translate3d(-1.2%, 0.6%, 0) scale(1.056); filter: hue-rotate(-32deg) saturate(1.8); }
  66% { transform: translate3d(0.8%, 0, 0) scale(1.046); filter: contrast(1.4) saturate(1.25); }
  100% { transform: translate3d(0, 0, 0) scale(1.036); filter: saturate(1.06) contrast(1.05); }
}

@keyframes atm-ghost-pulse {
  0%, 100% { opacity: 0.72; transform: translate(-50%, -50%) scale(0.96); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes atm-lock-arrive {
  0% { opacity: 0; transform: scale(1.04); }
  35% { opacity: 1; }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes atm-hand-press {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  32% { transform: translate3d(-0.42%, -0.5%, 0) scale(1.008); }
  48% { transform: translate3d(-0.52%, -0.6%, 0) scale(1.01); }
  72% { transform: translate3d(-0.12%, -0.14%, 0) scale(1.002); }
}

@keyframes atm-amount-confirm {
  0% { opacity: 0; transform: scale(0.96); }
  28% { opacity: 1; transform: scale(1.025); }
  68% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.88; transform: scale(1); }
}

@keyframes atm-screen-scan {
  0% { top: 24%; opacity: 0; }
  15% { opacity: 0.82; }
  78% { opacity: 0.58; }
  100% { top: 65%; opacity: 0; }
}

@keyframes atm-amount-type {
  0% { opacity: 0; clip-path: inset(0 100% 0 0); }
  35% { opacity: 1; }
  100% { opacity: 1; clip-path: inset(0); }
}

@keyframes atm-options-arrive {
  0% { opacity: 0; clip-path: inset(0 0 55% 0); filter: brightness(1.24) blur(1px); }
  58% { opacity: 1; filter: brightness(1.08) blur(0); }
  100% { opacity: 1; clip-path: inset(0); filter: saturate(1.04) contrast(1.035) brightness(0.9); }
}

@keyframes atm-cinema-breathe {
  from { opacity: 0.62; transform: scale(0.98) translate3d(-1%, 0, 0); }
  to { opacity: 0.9; transform: scale(1.04) translate3d(1%, -1%, 0); }
}

@keyframes atm-cover-drift {
  from { transform: translate3d(-0.22%, 0.08%, 0) scale(1.036); }
  to { transform: translate3d(0.3%, -0.2%, 0) scale(1.048); }
}

@media (max-width: 900px) {
  .vx-payment-heading {
    grid-template-columns: 1fr;
  }

  .vx-payment-heading p {
    margin-top: 1rem;
  }

  .atm-cover-copy {
    width: min(450px, calc(100% - 2.3rem));
  }
}

@media (max-width: 680px) {
  .vx-hero-buttons .vx-button {
    min-height: 62px;
    font-size: 0.62rem;
  }

  .vx-tribute-first {
    padding-top: 0;
  }

  .atm-experience {
    margin-inline: 0;
    padding: 0;
    clip-path: none;
  }

  .atm-experience::before {
    display: none;
  }

  .atm-stage {
    min-height: max(560px, calc(100svh - 96px));
    aspect-ratio: auto;
  }

  .atm-cover-copy {
    inset: 0;
    width: 100%;
    border-left: 0;
    padding: 0.85rem;
    background:
      linear-gradient(180deg, rgba(5, 5, 8, 0.86), transparent 47%),
      linear-gradient(0deg, rgba(5, 5, 8, 0.82), transparent 36%);
    box-shadow: none;
    pointer-events: none;
    transform: none;
  }

  .atm-cover-copy > span {
    position: relative;
    z-index: 2;
    font-size: 0.42rem;
  }

  .atm-cover-copy h3 {
    position: relative;
    z-index: 2;
    margin-top: 0.3rem;
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

  .atm-cover-copy p {
    display: block;
    max-width: 270px;
    margin: 0.65rem 0 0;
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .atm-enter-button {
    position: absolute;
    z-index: 2;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    width: auto;
    min-height: 54px;
    min-width: 0;
    padding: 0.8rem 1rem;
    pointer-events: auto;
    font-size: 0.59rem;
  }

  .atm-cover-copy > small {
    display: none;
  }

  .atm-scrub-instruction,
  .atm-control-instruction {
    top: 0.65rem;
    left: 0.65rem;
    max-width: calc(100% - 1.3rem);
    padding: 0.6rem 0.7rem;
    background: linear-gradient(90deg, rgba(5, 5, 8, 0.94), rgba(5, 5, 8, 0.78) 70%, rgba(5, 5, 8, 0.18));
  }

  .atm-scrub-instruction > span,
  .atm-control-instruction > span {
    font-size: 0.42rem;
  }

  .atm-scrub-instruction b,
  .atm-control-instruction b {
    font-size: 1.1rem;
  }

  .atm-scrub-instruction small,
  .atm-control-instruction small {
    margin-top: 0.26rem;
    font-size: 0.4rem;
  }

  .atm-skip-approach {
    min-height: 44px;
    margin-top: 0.5rem;
    padding: 0.5rem 0.65rem;
    font-size: 0.4rem;
  }

  .atm-ghost-control {
    top: 81%;
    width: 56px;
    font-size: 0.39rem;
  }

  .atm-screen-target {
    top: 46%;
    width: 46px;
    font-size: 0.38rem;
  }

  .atm-lock-flash b {
    font-size: clamp(2.8rem, 17vw, 5rem);
  }

  .vx-payment-heading {
    margin-top: 0;
  }

  .vx-tribute-routes {
    padding-top: 4.7rem;
  }

  .atm-cover-image {
    object-position: 47% 50%;
    filter: saturate(1.06) contrast(1.05) brightness(0.68);
  }

  .atm-experience.is-cinema {
    padding: 0;
  }

  .atm-experience.is-cinema .atm-stage {
    width: min(100vw, calc(100dvh * 1.5));
  }

  .atm-experience.is-cinema .atm-stage {
    min-height: 0;
    aspect-ratio: 3 / 2;
    border-inline: 0;
    box-shadow:
      0 0 0 4px rgba(10, 7, 13, 0.96),
      0 26px 90px rgba(0, 0, 0, 0.92),
      0 0 42px rgba(164, 73, 255, 0.13);
  }
}

@media (max-width: 390px) {
  .atm-experience:not(.is-cinema) .atm-stage {
    aspect-ratio: 1.22 / 1;
  }

  .atm-cover-copy h3 {
    font-size: 2.45rem;
  }

  .atm-cover-copy p {
    max-width: 29rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atm-camera,
  .atm-cover-plate,
  .atm-arm-rig {
    transform: none !important;
  }

  .atm-ghost-control,
  .atm-glitch-layer,
  .atm-cover-image,
  .atm-lock-flash,
  .atm-arm-press,
  .atm-selected-amount,
  .atm-payment-amount,
  .atm-payment-options,
  .atm-payment-scene::after {
    animation: none !important;
  }
}

.vx-ambient-audio {
  position: fixed;
  z-index: 82;
  right: 1rem;
  bottom: 3.25rem;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  transition: opacity 220ms ease, transform 300ms var(--vx-ease);
}

.vx-ambient-audio[data-suppressed="true"],
.discreet-mode .vx-ambient-audio {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.atm-cinema-active .vx-ambient-audio,
.drain-cinema-active .vx-ambient-audio {
  z-index: 1950;
}

.vx-ambient-audio > audio {
  display: none;
}

.vx-audio-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid rgba(176, 79, 255, 0.52);
  padding: 0;
  background:
    linear-gradient(145deg, rgba(17, 10, 23, 0.94), rgba(4, 6, 5, 0.92));
  box-shadow:
    0 0 0 3px rgba(7, 7, 11, 0.68),
    0 10px 28px rgba(0, 0, 0, 0.46),
    inset 0 0 18px rgba(176, 79, 255, 0.08);
  color: var(--vx-lime);
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.vx-audio-toggle:hover,
.vx-audio-toggle:focus-visible {
  border-color: var(--vx-lime);
  color: var(--vx-white);
  transform: translateY(-2px);
  outline: none;
}

.vx-audio-toggle svg {
  width: 19px;
  height: 19px;
  overflow: visible;
}

.vx-speaker-body {
  fill: currentColor;
}

.vx-speaker-wave,
.vx-speaker-slash {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.6;
}

.vx-speaker-slash {
  stroke: var(--vx-purple-soft);
  stroke-width: 2;
}

.vx-audio-status {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--vx-lime);
  box-shadow: 0 0 8px rgba(149, 255, 88, 0.9);
  animation: vx-audio-pulse 2.4s ease-in-out infinite;
}

.vx-ambient-audio.is-muted .vx-audio-status,
.vx-ambient-audio.is-waiting .vx-audio-status,
.vx-ambient-audio.is-paused .vx-audio-status {
  background: var(--vx-purple);
  box-shadow: 0 0 7px rgba(176, 79, 255, 0.72);
  animation: none;
}

.vx-audio-popover {
  position: absolute;
  right: calc(100% + 0.6rem);
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.9rem;
  width: 220px;
  min-height: 54px;
  border: 1px solid rgba(176, 79, 255, 0.42);
  padding: 0.58rem 0.7rem;
  background:
    linear-gradient(105deg, rgba(6, 7, 8, 0.97), rgba(18, 9, 23, 0.94));
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.52),
    inset 3px 0 0 rgba(149, 255, 88, 0.72);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px) scale(0.96);
  transform-origin: 100% 100%;
  transition: opacity 160ms ease, transform 220ms var(--vx-ease);
}

.vx-ambient-audio:hover .vx-audio-popover,
.vx-ambient-audio:focus-within .vx-audio-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.vx-audio-popover > span {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.vx-audio-popover b,
.vx-audio-popover small,
.vx-audio-popover i {
  font-family: var(--font-mono), monospace;
  font-style: normal;
  text-transform: uppercase;
}

.vx-audio-popover b {
  color: var(--vx-white);
  font-size: 0.48rem;
  letter-spacing: 0.1em;
}

.vx-audio-popover small {
  color: var(--vx-lime);
  font-size: 0.37rem;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.vx-audio-popover label {
  display: grid;
  grid-template-columns: 74px 1.5rem;
  align-items: center;
  gap: 0.4rem;
}

.vx-audio-popover input[type="range"] {
  width: 74px;
  height: 14px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.vx-audio-popover input[type="range"]::-webkit-slider-runnable-track {
  height: 3px;
  background: linear-gradient(90deg, var(--vx-purple), var(--vx-lime));
  box-shadow: 0 0 8px rgba(176, 79, 255, 0.34);
}

.vx-audio-popover input[type="range"]::-webkit-slider-thumb {
  width: 12px;
  height: 12px;
  margin-top: -4.5px;
  border: 1px solid #081006;
  border-radius: 50%;
  appearance: none;
  background: var(--vx-lime);
  box-shadow:
    0 0 0 2px rgba(149, 255, 88, 0.2),
    0 0 9px rgba(149, 255, 88, 0.72);
}

.vx-audio-popover input[type="range"]::-moz-range-track {
  height: 3px;
  background: linear-gradient(90deg, var(--vx-purple), var(--vx-lime));
}

.vx-audio-popover input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 1px solid #081006;
  border-radius: 50%;
  background: var(--vx-lime);
  box-shadow: 0 0 9px rgba(149, 255, 88, 0.72);
}

.vx-audio-popover i {
  color: rgba(247, 242, 249, 0.7);
  font-size: 0.42rem;
  text-align: right;
}

@keyframes vx-audio-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.16); }
}

@media (max-width: 680px) {
  .vx-ambient-audio {
    right: max(0.72rem, env(safe-area-inset-right));
    bottom: calc(3.35rem + env(safe-area-inset-bottom));
  }

  .vx-audio-toggle {
    width: 44px;
    height: 44px;
  }

  .vx-audio-popover {
    width: 205px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vx-audio-status {
    animation: none;
  }
}

.dw-mobile-master {
  display: none;
}

.vx-mobile-atm-shell {
  display: none;
}

@media (max-width: 680px) {
  :root {
    --vx-header: 64px;
  }

  .vx-wrap,
  .vx-header-inner {
    width: min(calc(100% - 32px), var(--vx-wrap));
  }

  .vx-header {
    height: var(--vx-header);
  }

  .vx-header-inner {
    gap: 1rem;
  }

  .vx-brand {
    font-size: 1.02rem;
  }

  .vx-menu-button {
    width: 48px;
    height: 48px;
  }

  .vx-hero {
    min-height: auto;
    padding: var(--vx-header) 0 0;
  }

  .vx-hero-scene {
    transform: none;
    animation-duration: 58s;
  }

  .vx-hero-background img {
    inset: auto 0 auto;
    top: -81.5%;
    height: 190%;
    object-position: 50% 50%;
    image-rendering: auto;
    filter: saturate(1.05) brightness(0.74) contrast(1.17);
  }

  .vx-hero-scrim {
    background:
      linear-gradient(180deg, rgba(4, 4, 7, 0.04) 0%, rgba(5, 5, 8, 0.14) 23%, rgba(5, 4, 8, 0.5) 62%, rgba(5, 4, 8, 0.9) 85%, #050507 100%),
      radial-gradient(ellipse at 50% 27%, transparent 18%, rgba(4, 3, 7, 0.18) 62%, rgba(4, 3, 7, 0.54) 100%);
  }

  .vx-smoke-field-hero .vx-smoke-video {
    top: 52%;
    left: 53%;
    height: 96%;
    opacity: 0.17;
    transform: translate(-50%, -50%) rotate(-2deg) scaleX(0.92);
  }

  .vx-hero-grid {
    display: block;
    min-height: 872px;
    padding-top: clamp(15.5rem, 34svh, 18rem);
    padding-bottom: 1.5rem;
  }

  .vx-id-card {
    display: none;
  }

  .vx-hero-copy {
    max-width: none;
    padding-top: 0;
  }

  .vx-eyebrow {
    justify-content: center;
    margin-bottom: 0.95rem;
    font-size: 0.48rem;
    letter-spacing: 0.16em;
    text-align: center;
  }

  .vx-mobile-mask-copy {
    display: none;
  }

  .vx-hero h1 {
    font-size: clamp(3.85rem, 18vw, 4.45rem);
    line-height: 0.82;
    text-align: center;
  }

  .vx-command {
    margin-top: 1.15rem;
    font-size: 0.55rem;
    text-align: center;
  }

  .vx-hero-sub {
    max-width: 305px;
    margin: 1.25rem auto 0;
    font-size: 0.84rem;
    line-height: 1.5;
    text-align: center;
  }

  .vx-chips {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(54px, 0.5fr) minmax(0, 1.65fr);
    gap: 0.42rem;
    margin-top: 1.9rem;
  }

  .vx-chips span {
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 0.42rem 0.34rem;
    background: rgba(8, 6, 12, 0.62);
    font-size: 0.46rem;
    text-align: center;
  }

  .vx-chips span:nth-child(4) {
    grid-column: 1 / -1;
    width: 62%;
    justify-self: center;
  }

  .vx-chips span:nth-child(5) {
    display: none;
  }

  .vx-hero-buttons {
    gap: 0.65rem;
    margin-top: clamp(7.25rem, 15svh, 8.5rem);
  }

  .vx-hero-buttons .vx-button {
    min-height: 58px;
  }

  .vx-scroll-cue {
    display: none;
  }

  .vx-consent-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--vx-rule);
    border-bottom: 1px solid var(--vx-rule);
    background:
      linear-gradient(90deg, rgba(176, 79, 255, 0.09), transparent 48%),
      rgba(6, 6, 9, 0.96);
  }

  .vx-consent-rail span {
    min-height: 48px;
    border-right: 1px solid var(--vx-rule) !important;
    border-bottom: 0 !important;
    padding: 0.35rem 0.2rem;
    color: var(--vx-muted);
    font-size: 0.43rem;
    letter-spacing: 0.1em;
    line-height: 1.35;
  }

  .vx-consent-rail span:first-child,
  .vx-consent-rail span:last-child {
    color: var(--vx-lime);
  }

  .vx-consent-rail span:last-child {
    border-right: 0 !important;
  }

  .vx-mobile-atm-shell {
    position: relative;
    z-index: 7;
    display: block;
    border-bottom: 1px solid var(--vx-rule);
    background:
      radial-gradient(circle at 85% 20%, rgba(149, 255, 88, 0.08), transparent 15rem),
      #050507;
  }

  .vx-atm-mobile {
    width: 100%;
    margin: 0;
    border: 0;
    padding: 0.95rem 1rem 1.05rem;
    background:
      linear-gradient(90deg, rgba(176, 79, 255, 0.09), transparent 48%),
      rgba(6, 6, 9, 0.96);
  }

  .vx-atm-mobile .vx-atm-head {
    margin-bottom: 0.65rem;
  }

  .vx-atm-mobile > strong {
    font-size: 2rem;
  }

  .vx-report,
  .vx-services,
  .vx-gallery-section,
  .vx-tribute,
  .vx-request,
  .vx-image-chapter {
    padding: 4.5rem 0;
  }

  .vx-report,
  .vx-spin,
  .vx-services,
  .vx-about,
  .vx-gallery-section,
  .vx-request,
  .vx-tribute-first {
    border-bottom: 1px solid var(--vx-rule);
    box-shadow: inset 0 -76px 64px -54px rgba(2, 2, 4, 0.96);
  }

  .vx-tribute-first {
    padding: 0;
  }

  .vx-report {
    min-height: 0;
    padding: 3.5rem 0 2.25rem;
  }

  .vx-heading {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 3.8rem);
    line-height: 0.9;
  }

  .vx-lede {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.58;
  }

  .vx-section-label {
    margin-bottom: 0.9rem;
    font-size: 0.54rem;
  }

  .vx-receipt {
    padding: 1.5rem 1rem;
  }

  .vx-receipt-head {
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
  }

  .vx-receipt-head b {
    font-size: 1.45rem;
  }

  .vx-receipt dl > div {
    gap: 0.42rem;
    min-height: 34px;
    font-size: 0.5rem;
  }

  .vx-spin-card {
    position: relative;
    display: block;
    min-height: clamp(590px, 76svh, 650px);
    margin-top: 0;
    border: 0;
    background: #050507;
    clip-path: none;
  }

  .vx-spin-copy {
    position: absolute;
    z-index: 4;
    inset: 0;
    justify-content: flex-end;
    padding: 1rem;
    background:
      linear-gradient(180deg, rgba(4, 4, 7, 0.08) 0%, rgba(4, 4, 7, 0.16) 42%, rgba(5, 4, 8, 0.88) 69%, #050507 100%),
      linear-gradient(90deg, rgba(5, 4, 8, 0.72), transparent 72%);
    pointer-events: none;
  }

  .vx-spin-copy > span {
    font-size: 0.48rem;
  }

  .vx-spin-copy h3 {
    margin-top: 0.45rem;
    font-size: clamp(2.85rem, 13vw, 3.45rem);
  }

  .vx-spin-title-desktop {
    display: none;
  }

  .vx-spin-title-mobile {
    display: block;
  }

  .vx-spin-title-mobile b {
    display: block;
    color: var(--vx-lime);
    font-weight: inherit;
  }

  .vx-spin-copy > p {
    max-width: 310px;
    margin: 0.85rem 0 1rem;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .vx-spin-copy > small {
    display: none;
  }

  .vx-spin-copy .vx-button {
    width: 100%;
    pointer-events: auto;
  }

  .vx-spin-visual {
    position: absolute;
    z-index: 1;
    inset: 0;
    height: 100%;
    min-height: 0;
    border: 0;
  }

  .vx-spin-visual > img:first-child {
    position: absolute;
    inset: 0;
    object-position: 66% 50%;
    filter: saturate(1.12) brightness(0.97) contrast(1.04);
  }

  .vx-spin-emblem,
  .vx-spin-enter-tag {
    display: none;
  }

  .vx-spin {
    padding: 0;
  }

  .vx-spin > .vx-wrap {
    width: 100%;
  }

  .vx-spin > .vx-wrap > .vx-section-label,
  .vx-spin > .vx-wrap > .vx-heading,
  .vx-spin > .vx-wrap > .vx-lede {
    display: none;
  }

  .vx-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
  }

  .vx-service-card {
    min-height: 218px;
    padding: 1rem 0.85rem;
  }

  .vx-service-card h3 {
    margin-top: 1.6rem;
    font-size: clamp(1.75rem, 9vw, 2.25rem);
  }

  .vx-service-card > p {
    margin: 0.75rem 0 1rem;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .vx-service-card > small {
    padding-top: 0.65rem;
    font-size: 0.54rem;
    line-height: 1.4;
  }

  .vx-service-unavailable {
    width: calc(100% - 1rem);
    padding: 0.68rem 0.45rem;
    font-size: 0.56rem;
    letter-spacing: 0.075em;
  }

  .vx-about-grid {
    gap: 2rem;
  }

  .vx-about-photo {
    grid-row: 1;
    max-width: none;
  }

  .vx-about-photo > img {
    height: min(64svh, 560px);
    aspect-ratio: auto;
    object-position: 50% 17%;
  }

  .vx-about-copy {
    grid-row: 2;
  }

  .vx-about-copy > p {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .vx-about-copy blockquote {
    font-size: 0.64rem;
  }

  .vx-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
  }

  .vx-gallery-item,
  .vx-gallery-item:nth-child(n) {
    height: 270px;
  }

  .vx-gallery-bar {
    min-height: 50px;
    padding: 0.65rem 0.7rem;
  }

  .vx-gallery-bar b {
    font-size: 0.92rem;
  }

  .vx-pay-grid {
    margin-top: 2rem;
  }

  .vx-pay-card,
  .vx-pay-card.is-primary {
    min-height: 310px;
    padding: 1.25rem;
  }

  .vx-pay-card h3 {
    margin-top: 1.7rem;
    font-size: 2.65rem;
  }

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

  .vx-intake-grid {
    margin-top: 2rem;
  }

  .vx-form-panel {
    min-height: 360px;
  }

  
  .atm-experience[data-phase="cover"] .atm-stage {
    min-height: clamp(590px, 74svh, 640px);
  }

  .atm-experience[data-phase="cover"]:not(.is-cinema) .atm-stage::before {
    content: "";
    position: absolute;
    z-index: 7;
    top: 0;
    right: 0;
    left: 0;
    height: 72px;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      #050507 0%,
      rgba(5, 5, 7, 0.9) 18%,
      rgba(5, 5, 7, 0.5) 52%,
      transparent 100%
    );
  }

  .atm-experience[data-phase="cover"] .atm-cover-image {
    inset: -130px 0 auto;
    height: calc(100% + 130px);
    object-position: 46% 50%;
    filter: blur(0.42px) saturate(0.85) contrast(1.05) brightness(0.58);
  }

  .atm-experience[data-phase="cover"] .atm-scene-vignette {
    background:
      linear-gradient(180deg, rgba(3, 3, 6, 0.18) 0%, transparent 42%, rgba(3, 2, 5, 0.9) 78%, #050507 100%),
      radial-gradient(ellipse at 62% 42%, transparent 30%, rgba(3, 2, 5, 0.38) 100%);
  }

  .atm-cover-copy {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    border: 0;
    border-top: 0;
    padding: 1.2rem 1rem 1rem;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    transform: none;
  }

  .atm-cover-copy > span {
    font-size: 0.48rem;
  }

  .atm-cover-copy h3 {
    margin-top: 0.4rem;
    font-size: clamp(2.8rem, 14vw, 3.6rem);
  }

  .atm-cover-copy p {
    max-width: 340px;
    margin: 0.7rem 0 0;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .atm-enter-button {
    position: static;
    width: 100%;
    min-height: 58px;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    font-size: 0.62rem;
  }

  .atm-experience.is-cinema .atm-stage {
    width: 100vw;
    height: 100dvh;
    min-height: 0;
    aspect-ratio: auto;
    border: 0;
    box-shadow: none;
  }

  .atm-experience.is-cinema .atm-camera {
    inset: 0 auto 0 calc(50% + 7vw);
    width: 150dvh;
    height: 100dvh;
    margin-left: -75dvh;
    backface-visibility: visible;
    transform-style: flat;
    will-change: auto;
  }

  .atm-experience.is-cinema .atm-stage {
    overflow: hidden;
    perspective: none;
  }

  .atm-experience.is-cinema .atm-cover-plate,
  .atm-experience.is-cinema .atm-approach-video,
  .atm-experience.is-cinema .atm-approach-frame,
  .atm-experience.is-cinema .atm-locked-still,
  .atm-experience.is-cinema .atm-base-image,
  .atm-experience.is-cinema .atm-payment-blank,
  .atm-experience.is-cinema .atm-payment-options {
    backface-visibility: visible;
    filter: none;
  }

  .atm-experience.is-cinema::after {
    box-shadow: inset 0 0 18vw rgba(0, 0, 0, 0.8);
  }

  .atm-scrub-instruction,
  .atm-control-instruction {
    top: max(0.75rem, env(safe-area-inset-top));
    left: 50%;
    width: calc(100% - 1.5rem);
    max-width: 360px;
    border-left: 0;
    border-top: 1px solid rgba(176, 79, 255, 0.52);
    padding: 0.75rem 0.9rem 0.85rem;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(5, 5, 8, 0.9) 12%,
      rgba(5, 5, 8, 0.9) 88%,
      transparent
    );
    text-align: center;
    transform: translateX(-50%);
  }

  .atm-control-instruction {
    top: auto;
    bottom: max(0.8rem, env(safe-area-inset-bottom));
    border-top-color: rgba(149, 255, 88, 0.54);
  }

  .atm-scrub-instruction b,
  .atm-control-instruction b {
    font-size: 1.2rem;
  }

  .atm-scrub-instruction small,
  .atm-control-instruction small {
    font-size: 0.43rem;
    line-height: 1.45;
  }

  .atm-skip-approach {
    width: min(180px, 72%);
    min-height: 50px;
    display: flex;
    justify-content: center;
    margin: 0.65rem auto 0;
    padding: 0.72rem 1rem;
    font-size: 0.52rem;
  }

  .atm-ghost-control {
    top: 84%;
    width: 64px;
  }

  .atm-screen-target {
    top: 43%;
    width: 52px;
    height: auto;
  }

  
  .drain-wheel-cinema {
    overflow: hidden;
    padding: 0;
    overscroll-behavior: none;
    touch-action: none;
  }

  .dw-scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100dvh;
    min-height: 0;
    overflow: hidden;
    padding: 0;
  }

  .dw-topbar {
    position: absolute;
    top: 0;
    min-height: 60px;
    padding: 0.55rem 0.75rem 0.55rem 4.75rem;
  }

  .dw-topbar span {
    font-size: 0.4rem;
  }

  .dw-topbar b {
    font-size: 0.52rem;
  }

  .dw-sound-toggle {
    min-width: 84px;
    min-height: 44px;
    border-color: rgba(149, 255, 88, 0.28);
    background: rgba(5, 7, 6, 0.48);
    font-size: 0.42rem;
  }

  .dw-control-deck {
    top: 66px;
    width: calc(100vw - 1rem);
    border-color: rgba(176, 79, 255, 0.26);
    padding: 0.65rem;
  }

  .dw-control-heading {
    margin-bottom: 0.55rem;
    padding-bottom: 0.5rem;
  }

  .dw-control-heading span,
  .dw-control-heading b {
    font-size: 0.42rem;
  }

  .dw-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(176, 79, 255, 0.3);
  }

  .dw-tier {
    min-height: 66px;
    border: 0;
    padding: 0.5rem;
    background: rgba(3, 4, 5, 0.58);
    touch-action: manipulation;
  }

  .dw-tier:nth-child(odd) {
    border-right: 1px solid rgba(176, 79, 255, 0.2);
  }

  .dw-tier:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(176, 79, 255, 0.2);
  }

  .dw-tier:hover {
    transform: none;
  }

  .dw-tier:focus-visible {
    outline: 2px solid var(--vx-lime);
    outline-offset: -2px;
    transform: none;
  }

  .dw-tier.is-active {
    border-color: transparent;
    background:
      linear-gradient(100deg, rgba(149, 255, 88, 0.12), rgba(176, 79, 255, 0.045)),
      rgba(3, 5, 4, 0.72);
    box-shadow: inset 3px 0 0 var(--vx-lime);
  }

  .dw-tier > span {
    font-size: 1.15rem;
  }

  .dw-tier > b {
    font-size: 0.44rem;
  }

  .dw-custom-range {
    grid-template-columns: minmax(68px, 1fr) auto minmax(68px, 1fr);
    gap: 0.4rem;
    padding: 0.55rem 0 0;
  }

  .dw-custom-range > button {
    grid-column: 1 / -1;
    min-height: 44px;
  }

  .dw-custom-range input {
    height: 44px;
    font-size: 1rem;
  }

  .dw-video-viewport {
    top: 252px;
    bottom: 0;
    height: auto;
    min-height: 0;
    transition: top 360ms var(--vx-ease);
  }

  .drain-wheel-cinema[data-tier="custom"] .dw-video-viewport {
    top: 368px;
  }

  .drain-wheel-cinema[data-phase="spinning"] .dw-video-viewport {
    top: 60px;
  }

  .drain-wheel-cinema[data-phase="spinning"] .dw-control-deck {
    opacity: 0;
    visibility: hidden;
  }

  .dw-video-plane {
    top: 42%;
    left: 50%;
    width: 255vw;
    height: auto;
    transform: translate(-66%, -50%);
    transition:
      top 760ms cubic-bezier(0.22, 1, 0.36, 1),
      width 760ms cubic-bezier(0.22, 1, 0.36, 1),
      transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: top, width, transform;
  }

  .drain-wheel-cinema[data-phase="spinning"] .dw-video-plane {
    top: 45%;
    width: 210vw;
    transform: translate(-44.55%, -50%);
  }

  .dw-label-spoke b {
    font-size: clamp(0.82rem, 3.8vw, 1.05rem);
  }

  .dw-status-line {
    position: fixed;
    z-index: 42;
    right: 0.75rem;
    bottom: calc(7rem + env(safe-area-inset-bottom));
    left: 0.75rem;
    padding: 0.45rem 0.2rem 0;
    background: rgba(2, 2, 3, 0.68);
    backdrop-filter: blur(8px);
  }

  .dw-spin-button {
    position: fixed;
    z-index: 44;
    bottom: max(1.75rem, calc(env(safe-area-inset-bottom) + 0.75rem));
    width: calc(100vw - 1.5rem);
    min-height: 68px;
    touch-action: manipulation;
  }

  .dw-result-overlay {
    position: fixed;
  }

  .drain-cinema-active .vx-ambient-audio,
  .atm-cinema-active .vx-ambient-audio {
    right: 0.75rem;
    bottom: calc(7.25rem + env(safe-area-inset-bottom));
  }
}

.vx-trance {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--vx-rule);
  background:
    radial-gradient(circle at 72% 28%, rgba(176, 79, 255, 0.12), transparent 29rem),
    radial-gradient(circle at 16% 76%, rgba(149, 255, 88, 0.045), transparent 24rem),
    linear-gradient(128deg, rgba(6, 6, 10, 0.985), rgba(13, 7, 18, 0.97));
}

.vx-trance::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(176, 79, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(176, 79, 255, 0.08) 1px, transparent 1px);
  background-size: 78px 78px;
  -webkit-mask-image: radial-gradient(circle at 56% 50%, #000, transparent 76%);
  mask-image: radial-gradient(circle at 56% 50%, #000, transparent 76%);
}

.vx-trance-card {
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.4),
    0 0 62px rgba(176, 79, 255, 0.07);
}

.vx-trance-visual > img:first-child {
  object-position: 50% 50%;
  filter: saturate(1.08) brightness(0.79) contrast(1.09);
  transition: filter 500ms ease, transform 1400ms var(--vx-ease);
}

.vx-trance-visual:hover > img:first-child,
.vx-trance-visual:focus-visible > img:first-child {
  filter: saturate(1.15) brightness(0.9) contrast(1.07);
  transform: scale(1.018);
}

.vx-trance-visual::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 54%, rgba(2, 2, 4, 0.48)),
    radial-gradient(circle at 57% 49%, rgba(176, 79, 255, 0.12), transparent 24%);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.46);
}

.vx-smoke-field-trance {
  z-index: 2;
  inset: auto -8% -14% 28%;
  height: 48%;
  opacity: 0.42;
  mix-blend-mode: screen;
}

body.hypno-cinema-active {
  overflow: hidden !important;
  overscroll-behavior: none;
}

.hypno-cinema-active .vault-site main {
  position: relative;
  z-index: 2300;
}

.hypno-cinema-active .vault-site main > :not(.vx-trance),
.hypno-cinema-active .vx-header,
.hypno-cinema-active .vx-chapter-rail,
.hypno-cinema-active .vx-mobile-menu,
.hypno-cinema-active .vx-ticker,
.hypno-cinema-active .vx-consent-rail {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hypno-cinema-active .vault-site main > .vx-trance {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.hypno-cinema-active .vx-ambient-audio {
  opacity: 0 !important;
  pointer-events: none !important;
}

.hypno-cinema {
  position: fixed;
  z-index: 2400;
  inset: 0;
  overflow: hidden;
  background: #010102;
  color: #f9f5fb;
  isolation: isolate;
  overscroll-behavior: none;
  touch-action: none;
}

.ht-stage,
.ht-gate-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ht-stage {
  z-index: 1;
  background:
    radial-gradient(circle at 16% 50%, rgba(91, 23, 141, 0.3), transparent 38%),
    radial-gradient(circle at 86% 48%, rgba(48, 93, 37, 0.14), transparent 34%),
    #010102;
}

.ht-video-backdrop {
  position: absolute;
  z-index: 0;
  inset: -5%;
  opacity: 0.86;
  background:
    linear-gradient(90deg, rgba(12, 2, 19, 0.3), transparent 28% 72%, rgba(4, 12, 7, 0.36)),
    radial-gradient(circle at 18% 52%, rgba(176, 79, 255, 0.28), transparent 34%),
    radial-gradient(circle at 82% 50%, rgba(149, 255, 88, 0.12), transparent 34%),
    url("/images/campaign/neon-trance-first.webp") 50% 50% / cover no-repeat;
  filter: blur(24px) saturate(1.28) brightness(0.54) contrast(1.08);
  transform: scale(1.1);
  transition: opacity 900ms ease, filter 900ms ease;
}

.ht-video-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(90deg, transparent 0 9vw, rgba(176, 79, 255, 0.05) 9vw calc(9vw + 1px)),
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(1, 1, 2, 0.7) 100%);
}

.ht-video,
.ht-final-frame,
.ht-glitch-copy {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}

.ht-video {
  z-index: 2;
  filter: saturate(1.08) contrast(1.09) brightness(0.83);
  transition: opacity 280ms ease, filter 520ms ease;
}

.ht-final-frame {
  z-index: 4;
  opacity: 0;
  filter: saturate(1.12) contrast(1.1) brightness(0.87);
  pointer-events: none;
}

.hypno-cinema.is-transition .ht-video,
.hypno-cinema.is-spiral .ht-video {
  opacity: 0;
}

.hypno-cinema.is-transition .ht-final-frame {
  opacity: 1;
  animation: ht-frame-collapse 1380ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.hypno-cinema.is-spiral .ht-final-frame {
  opacity: 0;
}

.hypno-cinema.is-transition .ht-video-backdrop {
  opacity: 0.56;
  filter: blur(30px) saturate(1.42) brightness(0.42) contrast(1.15);
}

.hypno-cinema.is-spiral .ht-video-backdrop {
  opacity: 0;
}

.ht-spiral {
  position: absolute;
  z-index: 5;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  background: #010102;
  filter: blur(12px);
  transform: scale(0.76);
  transform-origin: 50% 49%;
  transition:
    opacity 700ms ease,
    filter 900ms ease,
    transform 1050ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hypno-cinema.is-transition .ht-spiral {
  opacity: 0.46;
  filter: blur(5px);
  transform: scale(0.9);
}

.hypno-cinema.is-spiral .ht-spiral {
  opacity: 1;
  filter: none;
  transform: scale(1);
}

.ht-spiral-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(1.08) contrast(1.08);
}

.ht-spiral-fallback {
  position: absolute;
  inset: -45vmax;
  background:
    radial-gradient(circle, transparent 0 5%, rgba(176, 79, 255, 0.28) 5.5%, transparent 7%),
    repeating-conic-gradient(from 0turn, #050108 0deg 12deg, #881eff 12deg 24deg);
  filter: saturate(1.15) contrast(1.12);
  animation: ht-fallback-turn 24s linear infinite;
  transform-origin: 50% 50%;
}

.ht-spiral.has-fallback .ht-spiral-canvas {
  visibility: hidden;
}

.hypno-cinema.is-paused .ht-spiral-fallback,
.hypno-cinema.is-paused .ht-glitch-field,
.hypno-cinema.is-paused .ht-glitch-copy,
.hypno-cinema.is-paused .ht-signal-rip {
  animation-play-state: paused !important;
}

.ht-glitch-copy {
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  will-change: clip-path, opacity, transform, filter;
}

.hypno-cinema.is-transition .ht-glitch-copy-a {
  animation: ht-glitch-slice-a 1380ms steps(1, end) both;
  filter: saturate(1.65) contrast(1.3) brightness(1.05) hue-rotate(32deg);
  mix-blend-mode: screen;
}

.hypno-cinema.is-transition .ht-glitch-copy-b {
  animation: ht-glitch-slice-b 1380ms steps(1, end) both;
  filter: saturate(1.55) contrast(1.36) brightness(0.94) hue-rotate(286deg);
  mix-blend-mode: lighten;
}

.ht-signal-rip {
  position: absolute;
  z-index: 6;
  top: 49%;
  left: 50%;
  width: 13vmin;
  aspect-ratio: 1;
  border: 1px solid rgba(219, 173, 255, 0.7);
  border-radius: 50%;
  opacity: 0;
  background:
    repeating-radial-gradient(circle, transparent 0 7%, rgba(176, 79, 255, 0.18) 7.5% 8.5%, transparent 9% 15%);
  box-shadow:
    0 0 34px rgba(176, 79, 255, 0.5),
    inset 0 0 28px rgba(149, 255, 88, 0.14);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.24);
  mix-blend-mode: screen;
}

.hypno-cinema.is-transition .ht-signal-rip {
  animation: ht-signal-rip 1380ms cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

.ht-glitch-field {
  position: absolute;
  z-index: 7;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 7%, rgba(190, 74, 255, 0.22) 7.2% 8.1%, transparent 8.3% 15%),
    linear-gradient(90deg, rgba(149, 255, 88, 0.13), transparent 34%, rgba(176, 79, 255, 0.2));
  mix-blend-mode: screen;
}

.hypno-cinema.is-transition .ht-glitch-field {
  animation: ht-glitch-open 1380ms steps(9, end) both;
}

.ht-cinema-grade {
  position: absolute;
  z-index: 8;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 4px),
    radial-gradient(ellipse at 50% 49%, transparent 38%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(180deg, rgba(1, 1, 2, 0.28), transparent 22%, transparent 76%, rgba(1, 1, 2, 0.4));
  box-shadow: inset 0 0 11vw rgba(0, 0, 0, 0.62);
}

.ht-controls {
  position: absolute;
  z-index: 40;
  top: max(1rem, env(safe-area-inset-top));
  right: clamp(1rem, 2.5vw, 2.25rem);
  left: clamp(1rem, 2.5vw, 2.25rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

.ht-controls button {
  min-height: 46px;
  border: 1px solid rgba(176, 79, 255, 0.58);
  padding: 0.72rem 1rem;
  background: rgba(4, 3, 7, 0.82);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
  color: rgba(248, 244, 251, 0.9);
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: auto;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.ht-controls button:hover,
.ht-controls button:focus-visible {
  border-color: var(--vx-lime);
  background: rgba(11, 15, 9, 0.9);
  color: var(--vx-lime);
}

.ht-controls button span {
  margin-right: 0.45rem;
  color: var(--vx-lime);
  font-size: 0.8rem;
}

.ht-control-cluster,
.ht-volume {
  display: flex;
  align-items: center;
}

.ht-control-cluster {
  justify-content: flex-end;
  gap: 0.65rem;
  min-width: 0;
  pointer-events: auto;
}

.ht-volume {
  min-height: 46px;
  border: 1px solid rgba(176, 79, 255, 0.58);
  padding-right: 0.75rem;
  background: rgba(4, 3, 7, 0.82);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.ht-volume .ht-mute {
  min-height: 44px;
  border: 0;
  padding-right: 0.7rem;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.ht-volume input[type="range"] {
  width: clamp(82px, 10vw, 150px);
  accent-color: var(--vx-lime);
  cursor: pointer;
}

.ht-volume output {
  min-width: 2.2rem;
  margin-left: 0.55rem;
  color: rgba(248, 244, 251, 0.72);
  font-family: var(--font-mono), monospace;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: right;
}

.ht-volume.is-muted output {
  color: rgba(248, 244, 251, 0.38);
}

.ht-gate-shell {
  z-index: 20;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 4rem);
}

.ht-gate-backdrop {
  position: absolute;
  inset: -2rem;
  background:
    radial-gradient(circle at 54% 49%, rgba(176, 79, 255, 0.18), transparent 25%),
    linear-gradient(rgba(1, 1, 2, 0.76), rgba(1, 1, 2, 0.9)),
    url("/images/campaign/neon-trance-first.webp") 50% 50% / cover no-repeat;
  filter: blur(11px) saturate(0.84);
  transform: scale(1.04);
}

.ht-gate {
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  border: 1px solid rgba(176, 79, 255, 0.62);
  padding: clamp(1.5rem, 4vw, 3.25rem);
  background:
    linear-gradient(145deg, rgba(17, 8, 24, 0.96), rgba(3, 4, 5, 0.97));
  box-shadow:
    0 0 0 7px rgba(176, 79, 255, 0.055),
    0 32px 120px rgba(0, 0, 0, 0.72),
    0 0 80px rgba(176, 79, 255, 0.14);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.ht-gate-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  color: rgba(215, 208, 218, 0.34);
  font-family: var(--font-mono), monospace;
  font-size: 0.55rem;
  font-weight: 900;
}

.ht-gate-progress span.is-active {
  color: var(--vx-lime);
  text-shadow: 0 0 14px rgba(149, 255, 88, 0.46);
}

.ht-gate-progress i {
  height: 1px;
  background: linear-gradient(90deg, rgba(149, 255, 88, 0.55), rgba(176, 79, 255, 0.4));
}

.ht-gate-kicker {
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ht-gate h2 {
  max-width: 590px;
  margin: 0.8rem 0 0;
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.84;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.ht-gate p {
  max-width: 590px;
  margin: 1.5rem 0 1.8rem;
  color: rgba(230, 224, 233, 0.76);
  font-size: clamp(0.92rem, 1.4vw, 1.08rem);
  line-height: 1.72;
}

.ht-gate > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 430px);
  min-height: 62px;
  border: 1px solid var(--vx-lime);
  padding: 0.9rem 1.1rem;
  background: var(--vx-lime);
  box-shadow: 0 0 32px rgba(149, 255, 88, 0.17);
  color: #071006;
  cursor: pointer;
  font-family: var(--font-mono), monospace;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
}

.ht-transition-copy,
.ht-spiral-copy {
  position: absolute;
  z-index: 30;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: 1rem;
  display: grid;
  justify-items: center;
  pointer-events: none;
  text-align: center;
}

.ht-transition-copy span,
.ht-spiral-copy span,
.ht-spiral-copy small {
  font-family: var(--font-mono), monospace;
  text-transform: uppercase;
}

.ht-transition-copy span,
.ht-spiral-copy span {
  color: var(--vx-lime);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.ht-transition-copy b {
  margin-top: 0.3rem;
  color: #fff;
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(2.5rem, 8vw, 7.5rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-shadow:
    -4px 0 0 rgba(176, 79, 255, 0.58),
    4px 0 0 rgba(149, 255, 88, 0.32);
  animation: ht-copy-shiver 140ms steps(2, end) 5;
}

.ht-spiral-copy small {
  margin-top: 0.45rem;
  color: rgba(231, 225, 234, 0.48);
  font-size: 0.43rem;
  letter-spacing: 0.08em;
}

@keyframes ht-frame-collapse {
  0% { opacity: 1; clip-path: circle(100% at 50% 49%); filter: saturate(1.12) contrast(1.1) brightness(0.87); }
  18% { opacity: 1; clip-path: circle(92% at 50% 49%); filter: saturate(1.2) contrast(1.14) brightness(0.9); }
  62% { opacity: 0.88; clip-path: circle(19% at 50% 49%); filter: saturate(1.65) contrast(1.35) brightness(1.02); }
  100% { opacity: 0; clip-path: circle(2% at 50% 49%); filter: saturate(1.8) contrast(1.5) brightness(1.2); }
}

@keyframes ht-fallback-turn {
  to { transform: rotate(1turn); }
}

@keyframes ht-glitch-open {
  0% { opacity: 0; transform: translateX(0); }
  9% { opacity: 0.72; transform: translateX(-1.2%); }
  18% { opacity: 0.16; transform: translateX(1.8%); }
  36% { opacity: 0.62; transform: translateX(-0.8%); }
  53% { opacity: 0.14; transform: translateX(1.2%); }
  72% { opacity: 0.5; transform: translateX(-0.4%); }
  87% { opacity: 0.18; transform: translateX(0.3%); }
  100% { opacity: 0; transform: translateX(0); }
}

@keyframes ht-glitch-slice-a {
  0%, 7%, 100% { opacity: 0; clip-path: inset(0 0 100%); transform: translate3d(0, 0, 0); }
  8%, 16% { opacity: 0.58; clip-path: inset(14% 0 68%); transform: translate3d(-2.4%, 0, 0); }
  17%, 30% { opacity: 0; clip-path: inset(0 0 100%); transform: translate3d(0, 0, 0); }
  31%, 43% { opacity: 0.48; clip-path: inset(52% 0 31%); transform: translate3d(1.8%, 0, 0); }
  44%, 63% { opacity: 0; clip-path: inset(0 0 100%); transform: translate3d(0, 0, 0); }
  64%, 76% { opacity: 0.38; clip-path: inset(34% 0 53%); transform: translate3d(-1.1%, 0, 0); }
  77%, 99% { opacity: 0; clip-path: inset(0 0 100%); transform: translate3d(0, 0, 0); }
}

@keyframes ht-glitch-slice-b {
  0%, 19%, 100% { opacity: 0; clip-path: inset(0 0 100%); transform: translate3d(0, 0, 0); }
  20%, 28% { opacity: 0.42; clip-path: inset(71% 0 17%); transform: translate3d(2.1%, 0, 0); }
  29%, 48% { opacity: 0; clip-path: inset(0 0 100%); transform: translate3d(0, 0, 0); }
  49%, 58% { opacity: 0.52; clip-path: inset(24% 0 62%); transform: translate3d(-1.7%, 0, 0); }
  59%, 79% { opacity: 0; clip-path: inset(0 0 100%); transform: translate3d(0, 0, 0); }
  80%, 89% { opacity: 0.34; clip-path: inset(45% 0 41%); transform: translate3d(0.9%, 0, 0); }
  90%, 99% { opacity: 0; clip-path: inset(0 0 100%); transform: translate3d(0, 0, 0); }
}

@keyframes ht-signal-rip {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.24) rotate(0deg); }
  16% { opacity: 0.76; }
  68% { opacity: 0.42; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(11) rotate(42deg); }
}

@keyframes ht-copy-shiver {
  0%, 100% { transform: translate(0); }
  40% { transform: translate(-5px, 1px); }
  70% { transform: translate(4px, -1px); }
}

@media (min-width: 681px) and (min-aspect-ratio: 16/9) {
  .ht-video,
  .ht-final-frame,
  .ht-glitch-copy {
    inset: 0 auto 0 calc(50% - 88.888889dvh);
    width: 177.777778dvh;
    height: 100dvh;
    object-fit: cover;
    box-shadow:
      -2vw 0 5vw rgba(79, 20, 118, 0.24),
      2vw 0 5vw rgba(41, 86, 34, 0.12);
  }
}

@media (max-width: 680px) {
  .vx-trance {
    padding: 0;
    border-bottom: 1px solid var(--vx-rule);
    box-shadow: inset 0 -76px 64px -54px rgba(2, 2, 4, 0.96);
  }

  .vx-trance > .vx-wrap {
    width: 100%;
  }

  .vx-trance > .vx-wrap > .vx-section-label,
  .vx-trance > .vx-wrap > .vx-heading,
  .vx-trance > .vx-wrap > .vx-lede {
    display: none;
  }

  .vx-trance-card {
    min-height: clamp(590px, 76svh, 650px);
  }

  .vx-trance-visual > img:first-child {
    object-position: 51% 50%;
    filter: saturate(1.1) brightness(0.86) contrast(1.09);
  }

  .vx-smoke-field-trance {
    inset: auto -28% 20% 12%;
    height: 34%;
    opacity: 0.46;
  }

  .ht-video,
  .ht-final-frame,
  .ht-glitch-copy {
    object-fit: cover;
    object-position: 50% 50%;
  }

  .ht-video-backdrop {
    inset: -3rem;
    opacity: 0.7;
    filter: blur(18px) saturate(1.22) brightness(0.48) contrast(1.08);
  }

  .ht-controls {
    top: max(0.7rem, env(safe-area-inset-top));
    right: 0.7rem;
    left: 0.7rem;
  }

  .ht-controls button {
    min-height: 44px;
    padding: 0.62rem 0.72rem;
    font-size: 0.5rem;
  }

  .ht-control-cluster {
    gap: 0.4rem;
  }

  .ht-volume {
    min-height: 44px;
    padding-right: 0.55rem;
  }

  .ht-volume .ht-mute {
    width: 42px;
    padding: 0;
    font-size: 0;
  }

  .ht-volume .ht-mute span {
    margin: 0;
    font-size: 0.78rem;
  }

  .ht-volume input[type="range"] {
    width: clamp(58px, 16vw, 82px);
  }

  .ht-volume output {
    display: none;
  }

  .ht-gate-shell {
    align-items: center;
    padding: calc(4.6rem + env(safe-area-inset-top)) 0.8rem calc(1rem + env(safe-area-inset-bottom));
  }

  .ht-gate {
    padding: 1.35rem 1.1rem 1.2rem;
  }

  .ht-gate-progress {
    margin-bottom: 1.5rem;
  }

  .ht-gate h2 {
    font-size: clamp(2.7rem, 13.5vw, 3.75rem);
    line-height: 0.88;
  }

  .ht-gate p {
    margin: 1rem 0 1.25rem;
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .ht-gate > button {
    width: 100%;
    min-height: 58px;
  }

  .ht-transition-copy,
  .ht-spiral-copy {
    bottom: calc(1.2rem + env(safe-area-inset-bottom));
  }

  .ht-transition-copy b {
    font-size: clamp(3rem, 15vw, 5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hypno-cinema.is-transition .ht-glitch-copy,
  .hypno-cinema.is-transition .ht-glitch-field,
  .hypno-cinema.is-transition .ht-signal-rip {
    animation: none !important;
    opacity: 0 !important;
  }

  .hypno-cinema.is-transition .ht-final-frame {
    animation: none !important;
    opacity: 0.18;
  }

  .ht-spiral {
    filter: none;
    transform: none;
    transition: opacity 220ms ease;
  }
}

@media (min-width: 901px) {
  .vx-about-photo {
    align-self: center;
    overflow: hidden;
  }

  .vx-about-photo > img {
    display: block;
    height: clamp(520px, 68vh, 700px);
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 50% 24%;
  }
}

.dw-payment-choice {
  position: absolute;
  z-index: 95;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.85rem;
  padding: 2rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(176, 79, 255, 0.2), transparent 34rem),
    rgba(3, 3, 6, 0.88);
  text-align: center;
  backdrop-filter: blur(12px);
}

.dw-payment-choice > span {
  color: var(--vx-lime);
  font-family: var(--font-mono), monospace;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.dw-payment-choice > h2 {
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.dw-payment-choice > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.dw-payment-choice > div > button {
  min-height: 112px;
  display: grid;
  place-content: center;
  gap: 0.38rem;
  border: 1px solid rgba(176, 79, 255, 0.52);
  background: rgba(12, 8, 18, 0.88);
  color: var(--vx-white);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.dw-payment-choice > div > button:hover,
.dw-payment-choice > div > button:focus-visible {
  border-color: var(--vx-lime);
  background: rgba(149, 255, 88, 0.08);
  transform: translateY(-2px);
}

.dw-payment-choice > div b {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

.dw-payment-choice > div small {
  color: rgba(215, 208, 218, 0.62);
  font-family: var(--font-mono), monospace;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dw-payment-close {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  width: 42px;
  height: 42px;
  border: 1px solid rgba(176, 79, 255, 0.46);
  color: var(--vx-white);
  cursor: pointer;
  font-size: 1.25rem;
}

@media (max-width: 780px) {
  .atm-exit-button,
  .dw-exit-button {
    top: max(0.65rem, env(safe-area-inset-top));
    left: max(0.65rem, env(safe-area-inset-left));
    padding: 0.5rem 0.6rem;
    background: rgba(5, 4, 8, 0.38);
    font-size: 0.44rem;
  }

  .atm-route-notice {
    padding: 1rem;
  }

  .atm-route-notice::before {
    inset: 28% 7%;
  }

  .atm-route-notice b {
    max-width: 310px;
    font-size: 0.88rem;
  }

  .atm-route-notice.is-crypto b {
    font-size: 2.25rem;
  }

  .dw-payment-choice {
    padding: 1.25rem;
  }

  .dw-payment-choice > h2 {
    font-size: clamp(2.4rem, 13vw, 3.8rem);
  }

  .dw-payment-choice > div {
    grid-template-columns: 1fr;
    width: min(330px, calc(100vw - 2.5rem));
  }

  .dw-payment-choice > div > button {
    min-height: 88px;
  }
}

.vx-legal {
  min-height: calc(100dvh - 34px);
  padding: clamp(5rem, 10vw, 9rem) 1.5rem;
  background:
    radial-gradient(circle at 78% 12%, rgba(168, 71, 255, 0.14), transparent 34rem),
    radial-gradient(circle at 12% 78%, rgba(149, 255, 88, 0.06), transparent 28rem),
    linear-gradient(145deg, rgba(5, 5, 8, 0.99), rgba(13, 8, 18, 0.98));
}

.vx-legal-shell {
  width: min(100%, 920px);
  margin-inline: auto;
}

.vx-legal-back,
.vx-legal-kicker,
.vx-legal h2 {
  font-family: var(--font-mono), monospace;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vx-legal-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--vx-rule);
  padding: 0.75rem 0.9rem;
  color: var(--vx-lime);
  font-size: 0.58rem;
}

.vx-legal-kicker {
  margin-top: clamp(3rem, 7vw, 5rem);
  color: var(--vx-lime);
  font-size: 0.58rem;
}

.vx-legal h1 {
  max-width: 800px;
  margin-top: 0.8rem;
  color: var(--vx-white);
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  line-height: 0.86;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.vx-legal section {
  margin-top: 3.5rem;
  border-top: 1px solid var(--vx-rule-bright);
  padding-top: 1.35rem;
}

.vx-legal h2 {
  color: var(--vx-purple-soft);
  font-size: 0.72rem;
}

.vx-legal section p {
  max-width: 760px;
  margin-top: 1rem;
  color: rgba(231, 224, 234, 0.78);
  font-size: 0.96rem;
  line-height: 1.75;
}

.vx-legal section .vx-button {
  margin-top: 1.4rem;
}

@media (max-width: 680px) {
  .vx-legal {
    padding: 4.5rem 1rem 5rem;
  }

  .vx-legal h1 {
    font-size: clamp(3.1rem, 15vw, 4.3rem);
  }

  .vx-legal section {
    margin-top: 2.75rem;
  }

  .vx-legal section p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}

.vault-site {
  --master-xsire-scenes-ready: v8;
}
