:root {
  color-scheme: dark;
  --bg: #050608;
  --panel: rgba(14, 17, 24, 0.82);
  --panel-soft: rgba(22, 25, 34, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --pearl: #f4ece1;
  --smoke: #a1a8b8;
  --chrome-1: #ffffff;
  --chrome-2: #d8dbe1;
  --chrome-3: #777d89;
  --accent: #ff835c;
  --accent-blue: #7d98ff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable both-edges;
  background: #050608;
}

html.gate-active {
  scrollbar-gutter: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 219, 225, 0.16), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(125, 152, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #040506, #090b0f 28%, #050608 100%);
  color: var(--pearl);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 128px 128px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 80%);
}

::selection {
  color: #fff9f2;
  background: rgba(255, 131, 92, 0.34);
}

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

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

button,
input {
  font: inherit;
}

#root {
  position: relative;
  z-index: 1;
}

.page-shell {
  position: relative;
  overflow-x: clip;
}

.site-print-frame {
  --frame-pad: clamp(28px, 2.8vw, 40px);
  position: relative;
  isolation: isolate;
  margin: 18px;
  padding: var(--frame-pad);
  border-radius: 46px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 14, 18, 0.98), rgba(4, 5, 7, 0.98)),
    rgba(0, 0, 0, 0.88);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 26px 80px rgba(0, 0, 0, 0.3);
}

.site-print-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  padding: var(--frame-pad);
  background:
    linear-gradient(180deg, rgba(10, 12, 16, 0.995), rgba(4, 5, 7, 0.995));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.site-print-frame::after {
  content: "";
  position: absolute;
  inset: var(--frame-pad);
  border-radius: 30px;
  pointer-events: none;
  z-index: 0;
  box-shadow:
    inset 0 0 0 2px rgba(255, 248, 239, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-print-frame__inner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 72px);
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 219, 225, 0.13), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(125, 152, 255, 0.11), transparent 24%),
    linear-gradient(180deg, #040506, #090b0f 28%, #050608 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 30px 70px rgba(0, 0, 0, 0.26);
}

.gate-print-shell {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gate-print-shell::before {
  content: none;
}

.gate-print-shell::after {
  content: none;
}

.gate-print-shell__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(18, 21, 27, 0.92) 0, rgba(18, 21, 27, 0.72) 18%, transparent 34%),
    radial-gradient(circle at 100% 0, rgba(18, 21, 27, 0.9) 0, rgba(18, 21, 27, 0.68) 18%, transparent 34%),
    radial-gradient(circle at 20% 12%, rgba(216, 219, 225, 0.08), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(125, 152, 255, 0.06), transparent 22%),
    linear-gradient(180deg, #040506, #090b0f 28%, #050608 100%);
}

.gate-chain-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: 0;
  overflow: hidden;
}

.gate-chain-frame::before {
  content: none;
}

.gate-chain-frame__edge {
  position: absolute;
  left: 0;
  right: 0;
  overflow: hidden;
  height: clamp(20px, 1.9vw, 28px);
  --gate-chain-scale: 408%;
  --gate-chain-offset: 53%;
  background-image: url("./asset-gate-chain-link.png");
  background-repeat: repeat-x;
  background-size: auto var(--gate-chain-scale);
  background-position: left var(--gate-chain-offset);
  opacity: 0.98;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.42));
}

.gate-chain-frame__edge::before,
.gate-chain-frame__edge::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask-image: url("./asset-gate-chain-link.png");
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-size: auto var(--gate-chain-scale);
  -webkit-mask-position: left var(--gate-chain-offset);
  mask-image: url("./asset-gate-chain-link.png");
  mask-repeat: repeat-x;
  mask-size: auto var(--gate-chain-scale);
  mask-position: left var(--gate-chain-offset);
}

.gate-chain-frame__edge::before {
  background:
    radial-gradient(circle at 4% 46%, rgba(255, 255, 255, 0.98) 0 1.4px, rgba(255, 255, 255, 0.44) 2.3px, transparent 8px),
    radial-gradient(circle at 13% 34%, rgba(214, 231, 255, 0.88) 0 1.25px, rgba(214, 231, 255, 0.34) 2.15px, transparent 7px),
    radial-gradient(circle at 22% 58%, rgba(255, 255, 255, 0.96) 0 1.5px, rgba(255, 255, 255, 0.4) 2.45px, transparent 8px),
    radial-gradient(circle at 31% 38%, rgba(235, 241, 255, 0.9) 0 1.35px, rgba(235, 241, 255, 0.32) 2.25px, transparent 8px),
    radial-gradient(circle at 44% 52%, rgba(255, 255, 255, 0.95) 0 1.45px, rgba(255, 255, 255, 0.42) 2.45px, transparent 8px),
    radial-gradient(circle at 57% 30%, rgba(210, 229, 255, 0.86) 0 1.2px, rgba(210, 229, 255, 0.3) 2.1px, transparent 7px),
    radial-gradient(circle at 68% 60%, rgba(255, 255, 255, 0.94) 0 1.4px, rgba(255, 255, 255, 0.38) 2.35px, transparent 8px),
    radial-gradient(circle at 78% 42%, rgba(246, 249, 255, 0.92) 0 1.3px, rgba(246, 249, 255, 0.34) 2.2px, transparent 7px),
    radial-gradient(circle at 88% 54%, rgba(255, 255, 255, 0.98) 0 1.5px, rgba(255, 255, 255, 0.42) 2.45px, transparent 8px),
    radial-gradient(circle at 96% 35%, rgba(219, 233, 255, 0.84) 0 1.15px, rgba(219, 233, 255, 0.28) 2px, transparent 7px);
  mix-blend-mode: screen;
  opacity: 0;
  animation: chainSparkle 12.6s ease-in-out infinite;
}

.gate-chain-frame__edge::after {
  background:
    linear-gradient(
      104deg,
      transparent 0%,
      transparent 44%,
      rgba(255, 255, 255, 0.02) 47%,
      rgba(255, 255, 255, 0.38) 50%,
      rgba(196, 220, 255, 0.28) 53%,
      rgba(255, 255, 255, 0.05) 58%,
      transparent 63%,
      transparent 100%
    );
  background-size: 220% 100%;
  background-position: 132% 50%;
  mix-blend-mode: screen;
  opacity: 0.12;
  animation: chainSheen 11.5s linear infinite;
}

.gate-chain-frame__edge--top {
  top: 0;
}

.gate-chain-frame__edge--bottom {
  bottom: 0;
}

.gate-chain-frame__edge--top::before {
  animation-delay: -1.3s;
}

.gate-chain-frame__edge--bottom::before {
  animation-delay: -6.4s;
  animation-duration: 10.9s;
}

.gate-chain-frame__edge--top::after {
  animation-delay: -2s;
}

.gate-chain-frame__edge--bottom::after {
  animation-delay: -7.1s;
  animation-duration: 13.3s;
}

.gate-print-shell__inner::before,
.gate-print-shell__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gate-print-shell__inner::before {
  opacity: 0.8;
  background-image:
    radial-gradient(circle at 6% 14%, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0.4) 0.85px, transparent 2.9px),
    radial-gradient(circle at 12% 68%, rgba(204, 223, 255, 0.9) 0, rgba(204, 223, 255, 0.26) 0.95px, transparent 3.1px),
    radial-gradient(circle at 18% 34%, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0.32) 0.8px, transparent 2.7px),
    radial-gradient(circle at 24% 56%, rgba(235, 240, 255, 0.88) 0, rgba(235, 240, 255, 0.24) 0.9px, transparent 2.8px),
    radial-gradient(circle at 29% 18%, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0.34) 0.78px, transparent 2.4px),
    radial-gradient(circle at 34% 78%, rgba(190, 214, 255, 0.86) 0, rgba(190, 214, 255, 0.22) 0.95px, transparent 3px),
    radial-gradient(circle at 41% 28%, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.24) 0.85px, transparent 2.9px),
    radial-gradient(circle at 48% 64%, rgba(255, 255, 255, 0.94) 0, rgba(255, 255, 255, 0.34) 0.92px, transparent 2.8px),
    radial-gradient(circle at 54% 16%, rgba(216, 228, 255, 0.86) 0, rgba(216, 228, 255, 0.25) 1px, transparent 3px),
    radial-gradient(circle at 59% 48%, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.26) 0.84px, transparent 2.7px),
    radial-gradient(circle at 63% 82%, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0.34) 0.88px, transparent 2.9px),
    radial-gradient(circle at 69% 24%, rgba(198, 218, 255, 0.84) 0, rgba(198, 218, 255, 0.22) 0.96px, transparent 2.9px),
    radial-gradient(circle at 74% 58%, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0.28) 0.86px, transparent 2.8px),
    radial-gradient(circle at 81% 12%, rgba(255, 255, 255, 0.88) 0, rgba(255, 255, 255, 0.24) 0.8px, transparent 2.6px),
    radial-gradient(circle at 86% 73%, rgba(214, 229, 255, 0.88) 0, rgba(214, 229, 255, 0.25) 0.95px, transparent 2.8px),
    radial-gradient(circle at 91% 41%, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0.34) 0.88px, transparent 2.8px),
    radial-gradient(circle at 95% 20%, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.26) 0.84px, transparent 2.7px);
  animation: starfieldTwinkle 7.4s ease-in-out infinite;
}

.gate-print-shell__inner::after {
  opacity: 0.56;
  background-image:
    radial-gradient(circle at 9% 30%, rgba(255, 255, 255, 0.95) 0, rgba(255, 255, 255, 0.24) 1.4px, transparent 5px),
    radial-gradient(circle at 22% 74%, rgba(196, 215, 255, 0.8) 0, rgba(196, 215, 255, 0.18) 1.6px, transparent 5.8px),
    radial-gradient(circle at 37% 20%, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.22) 1.35px, transparent 5px),
    radial-gradient(circle at 52% 70%, rgba(255, 255, 255, 0.94) 0, rgba(255, 255, 255, 0.22) 1.5px, transparent 5.4px),
    radial-gradient(circle at 66% 36%, rgba(206, 224, 255, 0.78) 0, rgba(206, 224, 255, 0.18) 1.45px, transparent 5.3px),
    radial-gradient(circle at 79% 60%, rgba(255, 255, 255, 0.92) 0, rgba(255, 255, 255, 0.22) 1.55px, transparent 5.4px),
    radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.88) 0, rgba(255, 255, 255, 0.18) 1.3px, transparent 4.8px);
  animation:
    starfieldTwinkleAlt 9.6s ease-in-out infinite,
    starfieldDrift 24s linear infinite;
}

.gate-interior-glow {
  position: absolute;
  inset: 0;
  border-radius: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.05), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(214, 220, 228, 0.08), transparent 24%);
}

.section-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.section-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(216, 219, 225, 0.12), transparent 24%),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 35%);
}

.section-frame::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.preview-header-frame {
  background:
    linear-gradient(180deg, rgba(8, 10, 15, 0.99), rgba(11, 13, 18, 0.985)),
    linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.008)),
    rgba(9, 11, 16, 0.96);
}

.preview-header-frame::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(84, 117, 214, 0.055), transparent 26%),
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 26%);
}

.glass-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(10, 12, 16, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.chrome-text {
  color: transparent;
  background: linear-gradient(180deg, var(--chrome-1) 0%, #eff1f6 24%, var(--chrome-2) 58%, var(--chrome-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.2);
}

.header-wordmark {
  position: relative;
  display: inline-block;
  isolation: isolate;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 20%, #eef4ff 44%, #d8deea 72%, #858e9d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.72),
    0 0 18px rgba(228, 233, 242, 0.26),
    0 0 34px rgba(28, 78, 210, 0.18);
  filter:
    drop-shadow(0 0 7px rgba(255, 255, 255, 0.08))
    drop-shadow(0 0 16px rgba(20, 63, 184, 0.14));
}

.header-wordmark::before,
.header-wordmark::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.header-wordmark::before {
  color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 26%, rgba(214, 225, 245, 0.62) 56%, rgba(214, 225, 245, 0.16) 86%, rgba(214, 225, 245, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.42;
}

.header-wordmark::after {
  color: transparent;
  background-image: linear-gradient(
    102deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0) 46%,
    rgba(255, 255, 255, 0.34) 50%,
    rgba(168, 203, 255, 0.26) 53%,
    rgba(255, 255, 255, 0.05) 58%,
    transparent 64%,
    transparent 100%
  );
  background-size: 220% 100%;
  background-position: 130% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  mix-blend-mode: screen;
  opacity: 0.09;
  animation: headerSheen 10.8s linear infinite;
}

.hero-wordmark,
.hero-wordmark * {
  user-select: none;
  -webkit-user-select: none;
}

.outline-ink {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.18);
  color: transparent;
}

.badge-chip {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.lux-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.lux-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 131, 92, 0.22);
  box-shadow: 0 0 30px rgba(255, 131, 92, 0.2);
}

.hero-grid {
  perspective: 1400px;
}

.hero-tilt {
  transform-style: preserve-3d;
}

.audio-bars span {
  transform-origin: bottom center;
  animation: audioPulse 1.25s ease-in-out infinite;
  animation-delay: var(--delay);
}

.orbit-ring {
  background:
    radial-gradient(circle at center, transparent 58%, rgba(255, 255, 255, 0.07) 59%, transparent 62%),
    conic-gradient(from 0deg, rgba(255, 255, 255, 0.02), rgba(255, 131, 92, 0.18), rgba(125, 152, 255, 0.2), rgba(255, 255, 255, 0.03));
  filter: blur(0.3px);
  animation: spinSlow 22s linear infinite;
}

.chrome-orb {
  background: radial-gradient(circle at 28% 28%, #ffffff, #d8dbe1 34%, #7c8391 62%, #10131a 100%);
  box-shadow:
    inset 0 1px 12px rgba(255, 255, 255, 0.28),
    0 24px 60px rgba(0, 0, 0, 0.36);
}

.campaign-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(160deg, rgba(17, 20, 28, 0.96), rgba(8, 10, 14, 0.98));
  box-shadow: var(--shadow);
}

.campaign-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.campaign-card:hover::after {
  opacity: 1;
}

.ticker-track {
  width: max-content;
  min-width: 100%;
  animation: marquee 30s linear infinite;
}

.ticker-track.reverse {
  animation-direction: reverse;
}

.ticker-track.slow {
  animation-duration: 42s;
}

.stamp-spin {
  animation: spinSlow 28s linear infinite;
}

.floating-card {
  animation: floatCard 6.8s ease-in-out infinite;
}

.floating-card.delay {
  animation-delay: -2.1s;
}

.floating-card.long {
  animation-delay: -3.7s;
  animation-duration: 8.4s;
}

.intro-orb {
  animation: introFloat 10.5s ease-in-out infinite;
}

.intro-orb.delay {
  animation-delay: -3.2s;
  animation-duration: 12.4s;
}

.enter-button-wrap {
  position: relative;
  display: inline-flex;
  padding: 1px;
  border-radius: 999px;
  isolation: isolate;
}

.enter-button-wrap::before {
  content: "";
  position: absolute;
  inset: -10px -26px;
  z-index: -2;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.34) 0, rgba(219, 231, 255, 0.26) 34%, rgba(103, 137, 243, 0.18) 58%, transparent 74%),
    radial-gradient(circle at 12% 50%, rgba(255, 255, 255, 0.3) 0, rgba(186, 209, 255, 0.2) 24%, transparent 44%),
    radial-gradient(circle at 88% 50%, rgba(255, 255, 255, 0.3) 0, rgba(186, 209, 255, 0.2) 24%, transparent 44%);
  filter: blur(24px);
  opacity: 0.92;
  animation: buttonHalo 3.8s ease-in-out infinite;
}

.enter-button-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(230, 236, 247, 0.97) 52%, rgba(126, 156, 255, 0.78));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 28px rgba(168, 194, 255, 0.16),
    0 12px 34px rgba(108, 141, 255, 0.1);
}

.enter-button {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 234, 239, 0.95) 56%, rgba(178, 184, 195, 0.96));
  color: #050608;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 8px 24px rgba(214, 225, 255, 0.1),
    0 0 32px rgba(95, 126, 235, 0.1);
}

.enter-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 30%, rgba(255, 255, 255, 0.32) 50%, transparent 70%, rgba(255, 255, 255, 0.08));
  mix-blend-mode: screen;
  opacity: 0.6;
  animation: buttonShimmer 3.6s linear infinite;
}

.hover-glow {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.hover-glow:hover {
  border-color: var(--line-strong);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.grain-mask {
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent 100%);
}

.pill-link {
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.pill-link:hover {
  transform: translateY(-2px);
}

.product-media {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(248, 248, 246, 0.995));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 0 0 1px rgba(12, 16, 23, 0.03),
    0 16px 36px rgba(0, 0, 0, 0.12);
}

.belt-pill {
  position: relative;
}

.belt-pill::before {
  content: "";
  position: absolute;
  inset: auto 7% 50%;
  height: 28%;
  transform: translateY(50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.1), rgba(5, 6, 8, 0.02));
  filter: blur(18px);
  opacity: 0.72;
  pointer-events: none;
}

.belt-pill__image {
  position: relative;
  z-index: 1;
}

.editorial-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 88%);
}

.scrollbar-none {
  scrollbar-width: none;
}

.scrollbar-none::-webkit-scrollbar {
  display: none;
}

body {
  scrollbar-color: rgba(255, 255, 255, 0.18) #050608;
}

body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: #050608;
}

body::-webkit-scrollbar-thumb {
  border: 3px solid #050608;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes audioPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scaleY(0.48);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.32);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes introFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.04);
  }
}

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

  50% {
    opacity: 1;
    transform: scale(1.03, 0.96);
  }
}

@keyframes buttonShimmer {
  from {
    transform: translateX(-48%);
  }

  to {
    transform: translateX(48%);
  }
}

@keyframes starfieldTwinkle {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(1);
  }

  25% {
    opacity: 0.7;
  }

  50% {
    opacity: 0.96;
    transform: scale(1.015);
  }

  75% {
    opacity: 0.6;
  }
}

@keyframes starfieldTwinkleAlt {
  0%,
  100% {
    opacity: 0.24;
  }

  35% {
    opacity: 0.54;
  }

  60% {
    opacity: 0.78;
  }
}

@keyframes starfieldDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-0.35%, 0.5%, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes chromeSweep {
  0%,
  100% {
    transform: translateX(-2%);
    opacity: 0.72;
  }

  35% {
    transform: translateX(1%);
    opacity: 0.98;
  }

  65% {
    transform: translateX(2%);
    opacity: 0.84;
  }
}

@keyframes headerSheen {
  0%,
  58% {
    background-position: 130% 50%;
    opacity: 0.08;
  }

  64% {
    opacity: 0.14;
  }

  74% {
    background-position: -28% 50%;
    opacity: 0.18;
  }

  100% {
    background-position: -28% 50%;
    opacity: 0.08;
  }
}

@keyframes chainSheen {
  0%,
  60% {
    background-position: 132% 50%;
    opacity: 0.03;
  }

  66% {
    opacity: 0.08;
  }

  74% {
    opacity: 0.18;
  }

  82% {
    background-position: -30% 50%;
    opacity: 0.28;
  }

  100% {
    background-position: -30% 50%;
    opacity: 0.03;
  }
}

@keyframes chainSparkle {
  0%,
  7%,
  16%,
  27%,
  41%,
  52%,
  67%,
  81%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1);
  }

  9% {
    opacity: 0.16;
  }

  12% {
    opacity: 0.46;
    transform: translate3d(0.15%, 0, 0) scale(1.01);
  }

  14% {
    opacity: 0.06;
  }

  30% {
    opacity: 0.18;
  }

  33% {
    opacity: 0.52;
    transform: translate3d(-0.18%, 0, 0) scale(1.012);
  }

  36% {
    opacity: 0.05;
  }

  55% {
    opacity: 0.14;
  }

  58% {
    opacity: 0.44;
    transform: translate3d(0.22%, 0, 0) scale(1.008);
  }

  61% {
    opacity: 0.04;
  }

  71% {
    opacity: 0.12;
  }

  74% {
    opacity: 0.34;
    transform: translate3d(-0.12%, 0, 0) scale(1.01);
  }

  78% {
    opacity: 0.04;
  }

  88% {
    opacity: 0.18;
  }

  91% {
    opacity: 0.48;
    transform: translate3d(0.18%, 0, 0) scale(1.012);
  }

  95% {
    opacity: 0.06;
  }
}

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

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

@media (max-width: 900px) {
  .site-print-frame {
    margin: 10px;
    padding: 16px;
  }

  .site-print-frame__inner {
    min-height: calc(100vh - 52px);
    border-radius: 22px;
  }

  .gate-chain-frame {
    inset: 0;
    border-radius: 0;
  }

  .gate-chain-frame__edge {
    height: clamp(15px, 4vw, 20px);
  }
}

@media (max-width: 640px) {
  .enter-button-wrap {
    padding: 1px;
  }
}
