:root {
  font-family:
    Manrope,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    sans-serif;
  color: #f8f7ff;
  background: #06040d;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --color-bg: #06040d;
  --color-surface: #0e0a18;
  --color-surface-raised: #151020;
  --color-text: #f8f7ff;
  --color-muted: #aaa5bb;
  --color-violet: #c13cff;
  --color-purple: #8f00ff;
  --color-cyan: #22d3ee;
  --color-border: rgba(255, 255, 255, .11);
  --shadow-glow: 0 24px 80px rgba(158, 0, 255, .26);
}
* {
  box-sizing: border-box;
}
html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--color-bg);
}
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-bg);
}
body.modal-open {
  overflow: hidden;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
video {
  display: block;
  max-width: 100%;
}
::selection {
  color: #fff;
  background: #7c3aedbf;
}
:focus-visible {
  outline: 3px solid var(--color-cyan);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 98px;
  pointer-events: none;
}
.header-glow,
.header-surface {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 76%, 66% 76%, 64% 100%, 36% 100%, 34% 76%, 0 76%);
  transition:
    height .22s ease,
    opacity .22s ease,
    background .22s ease;
}
.header-glow {
  height: 98px;
  background:
    linear-gradient(
      90deg,
      transparent 4%,
      #7600ff 28%,
      #d52dff 50%,
      #7600ff 72%,
      transparent 96%);
  filter: blur(9px);
  opacity: .58;
}
.header-surface {
  height: 92px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: #030207f2;
  box-shadow: 0 18px 42px #0000005c;
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  pointer-events: auto;
}
.site-header--scrolled .header-glow {
  height: 86px;
  opacity: .22;
}
.site-header--scrolled .header-surface {
  height: 80px;
  background: #030207fb;
}
.navbar {
  width: min(1280px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 5.5rem);
  display: grid;
  grid-template-columns: 1fr minmax(250px, 330px) 1fr;
  align-items: center;
  gap: 1.25rem;
}
.nav-cluster {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 4vw, 4.5rem);
  transform: translateY(-4px);
}
.nav-cluster--left {
  justify-content: flex-start;
}
.nav-cluster--right {
  justify-content: flex-end;
  gap: clamp(1.4rem, 3vw, 3.5rem);
}
.nav-cluster > a:not(.nav-contact),
.mobile-nav > a:not(.mobile-contact) {
  position: relative;
  padding: .55rem 0;
  color: #aaa5b3;
  font-family: Manrope, sans-serif;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .055em;
  transition: color .18s ease, transform .18s ease;
}
.nav-cluster > a:not(.nav-contact):hover,
.nav-cluster > a.active {
  color: #fff;
  transform: translateY(-1px);
}
.nav-underline {
  position: absolute;
  right: 0;
  bottom: .1rem;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: #cd38ff;
  box-shadow: 0 0 12px #cd38ffd9;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}
.nav-cluster > a:hover .nav-underline,
.nav-cluster > a.active .nav-underline {
  transform: scaleX(1);
  transform-origin: left;
}
.navbar-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  align-self: stretch;
}
.brand-outline {
  width: 50px;
  height: 48px;
  flex: 0 0 auto;
  overflow: visible;
  color: #fff;
}
.brand-wordmark {
  color: #fff;
  font-family:
    Sora,
    Manrope,
    sans-serif;
  font-size: clamp(1.44rem, 1.82vw, 1.72rem);
  font-weight: 760;
  letter-spacing: -.055em;
  white-space: nowrap;
}
.brand-wordmark span {
  color: #d64cff;
}
.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .035em;
  transition: color .18s ease, transform .18s ease;
}
.nav-contact .brand-icon {
  flex: 0 0 auto;
  color: #fff;
}
.nav-contact:hover {
  color: #e29aff;
  transform: translateY(-2px);
}
.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  margin-left: auto;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
}
.mobile-nav {
  display: none;
}
@media (max-width: 900px) {
  .site-header {
    height: 76px;
  }
  .header-glow,
  .header-surface {
    clip-path: none;
  }
  .header-glow {
    height: 74px;
    opacity: .36;
    filter: blur(12px);
  }
  .header-surface,
  .site-header--scrolled .header-surface {
    height: 68px;
  }
  .site-header--scrolled .header-glow {
    height: 72px;
  }
  .navbar {
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
  }
  .nav-cluster {
    display: none;
  }
  .navbar-brand {
    position: absolute;
    left: 50%;
    align-self: center;
    transform: translate(-50%);
  }
  .brand-wordmark {
    font-size: 1.3rem;
  }
  .brand-outline {
    width: 43px;
    height: 41px;
  }
  .nav-toggle {
    display: grid;
  }
  .mobile-nav {
    position: absolute;
    top: 74px;
    right: .75rem;
    left: .75rem;
    padding: .8rem 1rem 1rem;
    display: grid;
    gap: .15rem;
    border: 1px solid rgba(255, 255, 255, .11);
    border-top: 2px solid #bd2cff;
    border-radius: 0 0 1rem 1rem;
    background: #040208fa;
    box-shadow: 0 24px 58px #0000008f;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity .18s ease,
      transform .18s ease,
      visibility .18s ease;
  }
  .mobile-nav--open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .mobile-nav > a:not(.mobile-contact) {
    padding: .8rem .2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .065);
    font-size: .92rem;
  }
  .mobile-nav > a.active {
    color: #fff;
  }
  .mobile-nav .nav-underline {
    right: auto;
    left: .2rem;
    width: 24px;
    transform: scaleX(1);
  }
  .mobile-contact {
    margin-top: .65rem;
    padding: .75rem .9rem;
    border: 1px solid rgba(213, 76, 255, .42);
    border-radius: .65rem;
    color: #fff;
    font-family: Manrope, sans-serif;
    font-size: .78rem;
    font-weight: 800;
    text-align: center;
  }
}
.light-pillar-fallback {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: #888;
  font-size: 14px;
}
.light-pillar-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}
.light-pillar-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-section {
  position: relative;
  min-height: max(780px, 100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #000;
}
.hero-light-pillar,
.hero-space-overlay,
.hero-noise,
.hero-bottom-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-light-pillar {
  z-index: -5;
  pointer-events: none;
}
.hero-mosaic {
  --tile-size: clamp(116px, 9.9vw, 150px);
  position: absolute;
  z-index: -3;
  top: calc(50% + 30px);
  right: clamp(3.25rem, 5vw, 6rem);
  width: max-content;
  display: grid;
  grid-template-columns: repeat(4, var(--tile-size));
  grid-auto-rows: var(--tile-size);
  gap: clamp(.4rem, .7vw, .7rem);
  opacity: .95;
  perspective: 1200px;
  transform-style: preserve-3d;
  transform: perspective(1400px) translateY(-50%) rotateY(-18deg) rotate(4deg) skewY(1deg);
  transform-origin: center right;
  pointer-events: none;
  animation: mosaicDrift 11s ease-in-out infinite;
}
.mosaic-float {
  --tile-depth: 14px;
  --tile-rotate-x: .7deg;
  --tile-rotate-y: -1deg;
  --float-x: 3px;
  --float-y: -8px;
  --float-rotate-start: -.45deg;
  --float-rotate-end: .65deg;
  --float-duration: 5.6s;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  transform-style: preserve-3d;
  will-change: transform;
  animation: tileFloat var(--float-duration) ease-in-out infinite alternate;
  animation-delay: var(--float-delay, 0s);
}
.mosaic-float:nth-child(3n+1) {
  --tile-depth: 23px;
  --tile-rotate-x: 1.2deg;
  --tile-rotate-y: -1.6deg;
}
.mosaic-float:nth-child(3n+2) {
  --tile-depth: 9px;
  --tile-rotate-x: -.8deg;
  --tile-rotate-y: 1.2deg;
}
.mosaic-tile {
  --hover-rotate-x: 0deg;
  --hover-rotate-y: 0deg;
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: clamp(.8rem, 1.3vw, 1.2rem);
  background: #09090b;
  box-shadow:
    inset 1px 1px #ffffff47,
    inset -2px -3px #0000006b,
    8px 8px #252329f0,
    17px 22px 38px #00000094,
    7px 7px 24px #a643ff1f;
  transform: translateZ(var(--tile-depth)) rotateX(calc(var(--tile-rotate-x) + var(--hover-rotate-x))) rotateY(calc(var(--tile-rotate-y) + var(--hover-rotate-y)));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition:
    transform .24s cubic-bezier(.2, .75, .25, 1),
    box-shadow .24s ease,
    border-color .24s ease;
}
.mosaic-tile:before,
.mosaic-tile:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
}
.mosaic-tile:before {
  background:
    radial-gradient(
      circle at var(--pointer-x) var(--pointer-y),
      rgba(255, 255, 255, .28) 0%,
      rgba(255, 255, 255, .08) 18%,
      transparent 44%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .18) 0%,
      transparent 24%,
      transparent 68%,
      rgba(152, 55, 255, .1) 100%);
  opacity: .72;
  transition: opacity .18s ease;
}
.mosaic-tile:after {
  box-shadow:
    inset 0 0 0 1px #ffffff0f,
    inset 8px 10px 18px #ffffff09,
    inset -12px -14px 22px #0000003d;
}
.mosaic-tile img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(2px) scale(1.025);
  transition: transform .24s cubic-bezier(.2, .75, .25, 1), filter .24s ease;
}
.mosaic-float--13 {
  grid-column: 2;
}
.hero-space-overlay {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      #000 0%,
      rgba(0, 0, 0, .9) 22%,
      rgba(0, 0, 0, .56) 43%,
      rgba(0, 0, 0, .1) 70%,
      transparent 100%),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, .38) 0%,
      transparent 28%,
      transparent 72%,
      rgba(0, 0, 0, .72) 100%);
}
.hero-noise {
  z-index: -1;
  opacity: .14;
  background-image: radial-gradient(rgba(255, 255, 255, .34) .55px, transparent .55px);
  background-size: 24px 24px;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      black,
      transparent 54%);
  mask-image:
    linear-gradient(
      90deg,
      black,
      transparent 54%);
}
.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 10rem 0 6rem;
  pointer-events: none;
}
.hero-copy {
  max-width: 650px;
  pointer-events: auto;
}
.hero-copy h1 {
  max-width: 590px;
  margin: 0;
  font-family:
    Sora,
    Manrope,
    sans-serif;
  font-size: clamp(2.45rem, 4vw, 3.95rem);
  font-weight: 800;
  line-height: 1.01;
  letter-spacing: -.06em;
  text-shadow: 0 12px 45px rgba(0, 0, 0, .45);
}
.hero-title-line {
  display: block;
  white-space: nowrap;
}
.hero-price-mask {
  display: inline-block;
}
.hero-copy h1 .hero-title-accent {
  color: #d255ff;
}
.hero-description {
  max-width: 610px;
  margin: 1.5rem 0 0;
  color: #d0cbd7;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.65;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .7);
}
.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.primary-action,
.secondary-action {
  min-height: 52px;
  padding: .85rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: .55rem;
  font-size: .88rem;
  font-weight: 800;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}
.primary-action {
  color: #fff;
  background:
    linear-gradient(
      135deg,
      #c400ff,
      #7900ff);
  box-shadow: none;
}
.secondary-action {
  color: #fff;
  background: #0906109e;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-3px);
}
.primary-action:hover {
  box-shadow: none;
}
.secondary-action:hover {
  background: #7c3aed47;
}
.owner-signature {
  width: min(515px, 100%);
  min-height: 76px;
  margin-top: 2.8rem;
  padding: 1rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-left: 3px solid #c33bff;
  border-radius: .75rem;
  background: #07050d9e;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 35px #0003;
}
.owner-signature small {
  color: #b54cff;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.owner-signature strong {
  width: 0;
  overflow: hidden;
  color: #ece8f0;
  font-family:
    Courier New,
    Courier,
    monospace;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  font-weight: 700;
  letter-spacing: .025em;
  white-space: nowrap;
  border-right: 2px solid #d255ff;
  animation: ownerTyping 1.9s steps(24, end) 1.55s forwards, ownerCaret .62s step-end 1.55s 4;
}
.hero-bottom-fade {
  top: auto;
  z-index: 1;
  height: 11%;
  background:
    linear-gradient(
      to bottom,
      transparent,
      #000000);
  pointer-events: none;
}
@keyframes mosaicDrift {
  0%, to {
    transform: perspective(1400px) translateY(-50%) rotateY(-18deg) rotate(4deg) skewY(1deg);
  }
  50% {
    transform: perspective(1400px) translateY(calc(-50% - 8px)) rotateY(-20deg) rotate(3.4deg) skewY(1.3deg);
  }
}
@keyframes tileFloat {
  0% {
    transform: translateZ(0) rotate(var(--float-rotate-start));
  }
  50% {
    transform: translate3d(var(--float-x), var(--float-y), 12px) rotate(var(--float-rotate-end));
  }
  to {
    transform: translateZ(0) rotate(var(--float-rotate-start));
  }
}
@keyframes ownerTyping {
  to {
    width: 26ch;
  }
}
@keyframes ownerCaret {
  50% {
    border-color: transparent;
  }
}
@media (max-width: 1080px) {
  .hero-mosaic {
    --tile-size: clamp(96px, 11.4vw, 120px);
    right: 1.5%;
    opacity: .84;
  }
  .hero-space-overlay {
    background:
      linear-gradient(
        90deg,
        #000,
        #000000e6 34%,
        #00000094 58%,
        #0000001f),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, .48),
        transparent 42%,
        rgba(0, 0, 0, .66));
  }
  .hero-copy {
    max-width: 560px;
  }
  .hero-copy h1 {
    max-width: 560px;
    font-size: clamp(2.55rem, 5.2vw, 3.55rem);
  }
}
@media (max-width: 760px) {
  .hero-section {
    min-height: auto;
    align-items: flex-start;
  }
  .hero-mosaic {
    --tile-size: clamp(72px, 20vw, 88px);
    top: 6.3rem;
    right: 1.6rem;
    grid-template-columns: repeat(4, var(--tile-size));
    opacity: .72;
    transform: rotate(4deg) skewY(1deg);
    transform-origin: top center;
    animation: none;
  }
  .hero-light-pillar {
    opacity: .38;
    filter: brightness(.72);
  }
  .mosaic-float--13 {
    grid-column: 2;
  }
  .hero-space-overlay {
    background:
      linear-gradient(
        180deg,
        #0000001a,
        #0000005c 25%,
        #000 48%,
        #000),
      linear-gradient(
        90deg,
        #0000009e,
        #00000014);
  }
  .hero-noise {
    -webkit-mask-image:
      linear-gradient(
        to bottom,
        transparent,
        black 50%,
        black);
    mask-image:
      linear-gradient(
        to bottom,
        transparent,
        black 50%,
        black);
  }
  .hero-shell {
    width: min(100% - 1.5rem, 1180px);
    padding: 21rem 0 5rem;
  }
  .hero-copy {
    max-width: none;
    text-align: center;
  }
  .hero-copy h1 {
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(1.72rem, 7.5vw, 2.25rem);
    line-height: 1.04;
  }
  .hero-description {
    margin-inline: auto;
    font-size: .96rem;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .primary-action,
  .secondary-action {
    width: 100%;
  }
  .owner-signature {
    width: 100%;
    margin-top: 1.8rem;
    align-items: center;
    flex-direction: column;
    gap: .4rem;
    text-align: center;
  }
  .owner-signature strong {
    font-size: 1.08rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .hero-mosaic {
    pointer-events: auto;
  }
  .hero-space-overlay,
  .hero-noise {
    pointer-events: none;
  }
  .mosaic-float:hover {
    z-index: 3;
  }
  .mosaic-tile:hover {
    z-index: 3;
    border-color: #ffffff7a;
    box-shadow:
      inset 1px 1px #ffffff57,
      inset -2px -3px #0006,
      11px 11px #29262df2,
      22px 28px 44px #0000009e,
      9px 9px 30px #b748ff33;
    transform: translate3d(-3px, -3px, calc(var(--tile-depth) + 22px)) rotateX(calc(var(--tile-rotate-x) + var(--hover-rotate-x))) rotateY(calc(var(--tile-rotate-y) + var(--hover-rotate-y)));
    transition-duration: 90ms;
  }
  .mosaic-tile:hover:before {
    opacity: 1;
  }
  .mosaic-tile:hover img {
    filter: saturate(1.08) brightness(1.06);
    transform: translateZ(7px) scale(1.055);
  }
  .mosaic-tile:active {
    box-shadow:
      inset 1px 1px #ffffff47,
      inset -2px -3px #0000007a,
      4px 4px #222026f2,
      10px 14px 24px #0000008f;
    transform: translate3d(4px, 4px, calc(var(--tile-depth) + 4px)) rotateX(calc(var(--tile-rotate-x) + var(--hover-rotate-x))) rotateY(calc(var(--tile-rotate-y) + var(--hover-rotate-y)));
  }
}
@media (max-width: 410px) {
  .hero-mosaic {
    right: 1.1rem;
  }
  .hero-shell {
    padding-top: 20.5rem;
  }
  .hero-copy h1 {
    font-size: clamp(1.6rem, 7.4vw, 1.9rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mosaic-float {
    animation: none;
  }
  .owner-signature strong {
    width: 26ch;
    border-color: transparent;
    animation: none;
  }
}
.brands-marquee {
  position: relative;
  z-index: 5;
  padding: .45rem 0 .75rem;
  overflow: hidden;
  background: #06040d;
}
.marquee-window {
  position: relative;
  width: min(1500px, 96%);
  height: 108px;
  margin: 0 auto;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, .085);
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent,
      black 6%,
      black 94%,
      transparent);
  mask-image:
    linear-gradient(
      90deg,
      transparent,
      black 6%,
      black 94%,
      transparent);
}
.marquee-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  animation: marqueeSlide 28s linear infinite;
  will-change: transform;
}
.marquee-window:hover .marquee-track {
  animation-play-state: paused;
}
.brand-group {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 2.2vw, 2rem);
  padding-right: clamp(.9rem, 2.2vw, 2rem);
}
.brand-chip {
  width: clamp(112px, 9.3vw, 138px);
  height: 98px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: transparent;
}
.brand-chip img {
  width: min(100%, 132px);
  height: 78px;
  object-fit: contain;
  opacity: .82;
  filter: grayscale(1) saturate(0) brightness(1.8) contrast(1.16);
  transition:
    opacity .18s ease,
    filter .18s ease,
    transform .18s ease;
}
.brand-chip:hover img {
  opacity: 1;
  filter: grayscale(1) saturate(0) brightness(2.1) contrast(1.25);
  transform: scale(1.06);
}
@keyframes marqueeSlide {
  to {
    transform: translate(-50%);
  }
}
@media (max-width: 600px) {
  .brands-marquee {
    padding-bottom: .45rem;
  }
  .marquee-window {
    width: 100%;
    height: 96px;
  }
  .brand-chip {
    width: 118px;
    height: 88px;
  }
  .brand-chip img {
    width: 110px;
    height: 70px;
  }
  .brand-group {
    gap: .75rem;
    padding-right: .75rem;
  }
}
.services-section {
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 1200px;
  padding: clamp(4rem, 8vw, 7rem) max(1rem, calc((100vw - 1180px)/2));
  overflow: hidden;
  background: #06040d;
}
.services-section:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: .12;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .38) .7px, transparent .7px);
  background-size: 28px 28px;
  -webkit-mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 52%);
  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 52%);
}
.services-heading,
.catalog-toolbar,
.services-grid {
  position: relative;
  z-index: 4;
}
.services-section > .services-light-rays {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 600px;
}
.services-heading {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.services-heading h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.services-heading p {
  max-width: 580px;
  margin: 1rem auto 0;
  color: var(--color-muted);
  font-size: .98rem;
  line-height: 1.65;
}
.catalog-toolbar {
  width: min(100%, 1180px);
  margin: 0 auto 2rem;
  padding: .85rem;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.25rem;
  background: #ffffff09;
  box-shadow: 0 18px 50px #0000002e;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.search-box {
  min-height: 48px;
  padding: 0 .9rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  border: 1px solid rgba(255, 255, 255, .095);
  border-radius: .9rem;
  background: #0201066b;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.search-box:focus-within {
  border-color: #8b5cf699;
  box-shadow: 0 0 0 3px #7c3aed1f;
}
.search-icon {
  flex: 0 0 auto;
  color: #777185;
}
.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: .85rem;
}
.search-box input::placeholder {
  color: #777185;
}
.search-box input::-webkit-search-cancel-button {
  filter: invert(1);
  opacity: .5;
}
.filters-wrapper {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.filter-btn {
  min-height: 40px;
  padding: .55rem .75rem;
  border: 1px solid transparent;
  border-radius: .75rem;
  color: #9690a3;
  background: transparent;
  font-size: .76rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    color .18s ease,
    background .18s ease,
    border-color .18s ease;
}
.filter-btn:hover {
  color: #fff;
  background: #ffffff0e;
}
.filter-btn.active {
  border-color: #a78bfa47;
  color: #fff;
  background: #7c3aed33;
}
.result-count {
  padding-right: .35rem;
  color: #777185;
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap;
}
.services-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}
.service-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.25rem;
  background:
    linear-gradient(
      155deg,
      #1a1327eb,
      #0a0711f0);
  box-shadow: 0 18px 38px #0000002e;
  transition:
    transform .22s cubic-bezier(.2, .8, .2, 1),
    border-color .22s ease,
    box-shadow .22s ease;
}
.service-card:hover,
.service-card:focus-within {
  z-index: 2;
  border-color: #8b5cf67a;
  box-shadow: 0 24px 55px #00000061, 0 0 35px #6d28d921;
  transform: translateY(-7px);
}
.service-card-trigger {
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  display: block;
  border-radius: inherit;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  border-radius: 1.2rem 1.2rem 0 0;
  background: #0b0811;
}
.card-logo,
.card-video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-logo {
  transition: transform .5s cubic-bezier(.2, .8, .2, 1), filter .3s ease;
}
.service-card:hover .card-logo {
  transform: scale(1.06);
  filter: brightness(.8);
}
.card-video {
  z-index: 1;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .26s ease;
}
.card-video--visible {
  opacity: 1;
}
.card-media:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      #0302070a 45%,
      #07040cd9);
}
.card-category,
.card-open-icon {
  position: absolute;
  z-index: 3;
  top: .75rem;
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  background: #08050ead;
  box-shadow: 0 8px 20px #00000038;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.card-category {
  left: .75rem;
  padding: .4rem .6rem;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.card-open-icon {
  right: .75rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: .7rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease;
}
.service-card:hover .card-open-icon,
.service-card:focus-within .card-open-icon {
  opacity: 1;
  transform: none;
}
.card-details {
  min-height: 96px;
  padding: 1rem;
  display: grid;
  gap: .7rem;
}
.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}
.card-title {
  overflow: hidden;
  color: #f8f7ff;
  font-family: Sora, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-rating {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  flex: 0 0 auto;
  color: #facc15;
  font-size: .7rem;
  font-weight: 700;
}
.card-price {
  color: #d35cff;
  font-size: .9rem;
  font-weight: 800;
}
.card-price small {
  margin-right: .2rem;
  color: #777185;
  font-size: .64rem;
  font-weight: 600;
  text-transform: uppercase;
}
.video-capture-mask {
  position: relative;
  isolation: isolate;
  color: transparent !important;
  text-shadow: none !important;
  -webkit-user-select: none;
  user-select: none;
}
.video-capture-mask:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 20%;
  right: -.12rem;
  bottom: 20%;
  left: -.12rem;
  border: 1px solid rgba(211, 92, 255, .25);
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      #0f0a18fa,
      #7428a9d1,
      #0f0a18fa);
  box-shadow: 0 0 10px #ae40ff80;
  filter: blur(2.6px);
  pointer-events: none;
}
.video-capture-mask.price-capture-mask {
  color: #d35cff6b !important;
  filter: blur(3.2px);
  opacity: .62;
}
.video-capture-mask.price-capture-mask:after {
  display: none;
}
.video-capture-mask.hero-price-mask {
  color: #ffffff52 !important;
  filter: blur(4.5px);
  opacity: .58;
}
.video-capture-mask.hero-price-mask:after {
  display: none;
}
.no-results {
  grid-column: 1 / -1;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .6rem;
  border: 1px dashed rgba(255, 255, 255, .14);
  border-radius: 1.25rem;
  color: #777185;
  text-align: center;
}
.no-results strong {
  color: #d7d2e0;
}
.no-results span {
  font-size: .85rem;
}
.modal-overlay {
  position: fixed;
  z-index: 500;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  display: grid;
  place-items: center;
  background: #020106d6;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: modalFade .18s ease both;
}
.service-modal {
  position: relative;
  width: min(900px, 100%);
  max-height: min(680px, calc(100svh - 2rem));
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(360px, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 1.6rem;
  color: #fff;
  background: #0d0915;
  box-shadow: 0 40px 120px #000000a3, 0 0 80px #4c1d9529;
  animation: modalEnter .26s cubic-bezier(.2, .8, .2, 1) both;
}
.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: .85rem;
  color: #fff;
  background: #06030cad;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.modal-close-btn:hover {
  background: #ffffff1f;
  transform: rotate(4deg);
}
.modal-preview {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #08050e;
}
.modal-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-preview-shade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(13, 9, 21, .92));
  pointer-events: none;
}
.modal-category {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: .45rem .65rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: #07040ca3;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.modal-content {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  overflow-y: auto;
}
.modal-content h2 {
  margin: 0;
  padding-right: 2.5rem;
  font-family: Sora, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.modal-description {
  margin: 1rem 0 0;
  color: #aaa5bb;
  font-size: .88rem;
  line-height: 1.65;
}
.modal-options {
  margin-top: 1.5rem;
  display: grid;
  gap: .55rem;
}
.modal-options > p,
.purchase-area > p {
  margin: 0 0 .15rem;
  color: #d4cfdd;
  font-size: .75rem;
  font-weight: 700;
}
.modal-options button {
  width: 100%;
  min-height: 48px;
  padding: .7rem .85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: .8rem;
  color: #d8d3df;
  background: #ffffff09;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.modal-options button:hover {
  border-color: #a78bfa59;
}
.modal-options button.selected {
  border-color: #8b5cf6a6;
  background: #7c3aed26;
}
.modal-options button span {
  font-size: .78rem;
  font-weight: 600;
}
.modal-options button strong {
  color: #d35cff;
  font-size: .82rem;
}
.purchase-area {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.purchase-actions {
  margin-top: .75rem;
  display: flex;
  gap: .55rem;
}
.purchase-channel-button {
  min-width: 0;
  min-height: 50px;
  padding: .7rem .8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex: 1 1 0;
  border-radius: .8rem;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}
.purchase-channel-button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.purchase-brand-logo {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}
.purchase-channel-button--whatsapp {
  background: #25d366;
}
.purchase-channel-button--telegram {
  background: #26a5e4;
}
.purchase-channel-button--facebook {
  background: #0866ff;
}
@keyframes modalFade {
  0% {
    opacity: 0;
  }
}
@keyframes modalEnter {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(.98);
  }
}
@media (max-width: 1020px) {
  .catalog-toolbar {
    grid-template-columns: 1fr auto;
  }
  .filters-wrapper {
    grid-column: 1 / -1;
    order: 3;
    justify-content: center;
    flex-wrap: wrap;
  }
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .services-section {
    padding-top: 3rem;
    padding-inline: .75rem;
  }
  .catalog-toolbar {
    grid-template-columns: 1fr;
  }
  .result-count {
    display: none;
  }
  .filters-wrapper {
    grid-column: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .filters-wrapper::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    flex: 0 0 auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .95rem;
  }
  .service-modal {
    grid-template-columns: 1fr;
    max-width: 520px;
    overflow-y: auto;
  }
  .modal-preview {
    min-height: 230px;
    max-height: 32svh;
  }
  .modal-content {
    overflow: visible;
  }
}
@media (max-width: 450px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
  }
  .service-card {
    border-radius: .9rem;
  }
  .card-media {
    aspect-ratio: 16 / 9;
  }
  .card-category {
    top: .5rem;
    left: .5rem;
    padding: .3rem .45rem;
    font-size: .5rem;
  }
  .card-open-icon {
    display: none;
  }
  .card-details {
    min-height: 82px;
    padding: .72rem;
    gap: .55rem;
  }
  .card-title {
    font-size: .78rem;
  }
  .card-rating {
    display: none;
  }
  .card-price {
    font-size: .78rem;
  }
  .card-price small {
    font-size: .54rem;
  }
  .service-modal {
    max-height: calc(100svh - 1rem);
    border-radius: 1.2rem;
  }
  .modal-overlay {
    padding: .5rem;
  }
  .modal-preview {
    min-height: 200px;
  }
  .modal-content {
    padding: 1.25rem;
  }
  .purchase-actions {
    display: flex;
    gap: .3rem;
  }
  .purchase-channel-button {
    width: auto;
    min-height: 44px;
    padding: .5rem .25rem;
    gap: .3rem;
    font-size: .56rem;
  }
  .purchase-channel-button .purchase-brand-logo {
    width: 15px;
    height: 15px;
  }
}
.light-rays-container {
  width: 100%;
  height: 100%;
  position: relative;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.light-rays-container canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.site-footer {
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
  padding: 1rem max(1rem, calc((100vw - 1180px)/2)) 1.5rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #040208;
}
.footer-glow {
  position: absolute;
  right: -12%;
  bottom: -60%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: #a600ff40;
  filter: blur(100px);
  pointer-events: none;
}
.footer-gengar {
  position: absolute;
  left: 43%;
  bottom: -72px;
  width: min(390px, 34vw);
  height: auto;
  opacity: .09;
  filter: grayscale(.2) drop-shadow(0 0 35px rgba(179, 0, 255, .35));
  pointer-events: none;
}
.footer-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
}
.footer-callout {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: -1px;
  padding: clamp(1.5rem, 4vw, 2.6rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(167, 139, 250, .2);
  border-radius: 1.5rem;
  background: #07040d;
  box-shadow: inset 0 1px #ffffff14, 0 24px 60px #0000003d;
}
.footer-callout:before,
.footer-callout:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.footer-callout:before {
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      #05030af7,
      #05030ae6 46%,
      #05030a85 72%,
      #05030a61),
    url(assets/backgrounds/footer-gaming.webp) center 56% / cover no-repeat;
}
.footer-callout:after {
  z-index: 1;
  width: 78%;
  background:
    linear-gradient(
      105deg,
      transparent 16%,
      rgba(183, 75, 255, .14) 48%,
      transparent 76%);
  mix-blend-mode: screen;
  transform: translate(-80%);
  animation: footerAmbientSweep 9s ease-in-out infinite;
}
.footer-callout > * {
  position: relative;
  z-index: 2;
}
.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #c43cff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-callout h2 {
  max-width: 650px;
  margin: .55rem 0 0;
  font-family: Sora, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  line-height: 1.03;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.footer-callout p {
  margin: .75rem 0 0;
  color: #aaa5bb;
  font-size: .9rem;
}
.footer-callout > a {
  min-height: 52px;
  padding: .85rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: .9rem;
  background:
    linear-gradient(
      135deg,
      #c000ff,
      #7800ff);
  box-shadow: none;
  font-size: .82rem;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease;
}
.footer-callout > a:hover {
  background:
    linear-gradient(
      135deg,
      #cd2dff,
      #8515ff);
  transform: translateY(-3px);
}
.footer-main {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 10vw, 8rem);
}
.footer-wordmark {
  font-family: Sora, sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -.06em;
}
.footer-wordmark span {
  color: #c43cff;
}
.footer-brand > p {
  max-width: 360px;
  margin: 1rem 0 1.4rem;
  color: #817b8d;
  font-size: .86rem;
  line-height: 1.65;
}
.footer-status {
  width: fit-content;
  padding: .5rem .7rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 999px;
  color: #b9b4c3;
  font-size: .7rem;
  font-weight: 600;
}
.footer-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #22c55e;
}
.footer-column-title {
  margin: 0 0 1rem;
  color: #817b8d;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}
.contact-grid a {
  min-width: 0;
  padding: .8rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: .9rem;
  background: #ffffff06;
  transition:
    border-color .18s ease,
    background .18s ease,
    transform .18s ease;
}
.contact-grid a:hover {
  border-color: #8b5cf659;
  background: #7c3aed14;
  transform: translateY(-2px);
}
.contact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: .75rem;
  color: #d35cff;
  background: #a900ff21;
}
.contact-grid a > span:last-child {
  min-width: 0;
  display: grid;
  gap: .1rem;
}
.contact-grid small {
  color: #777185;
  font-size: .62rem;
}
.contact-grid strong {
  overflow: hidden;
  color: #ded9e6;
  font-size: .76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.footer-bottom {
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .075);
  color: #5f596a;
  font-size: .68rem;
}
.footer-bottom strong {
  color: #8e879a;
  font-weight: 700;
}
@keyframes footerAmbientSweep {
  0%, 18% {
    transform: translate(-80%);
    opacity: 0;
  }
  42% {
    opacity: .75;
  }
  72%, to {
    transform: translate(155%);
    opacity: 0;
  }
}
@media (max-width: 760px) {
  .footer-gengar {
    left: 50%;
    bottom: 0;
    width: 310px;
    transform: translate(-50%);
    opacity: .065;
  }
  .footer-callout {
    align-items: stretch;
    flex-direction: column;
  }
  .footer-callout > a {
    width: 100%;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 430px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-callout:after {
    animation: none;
    opacity: 0;
  }
}
.intro-splash {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity var(--intro-exit-duration, .45s) ease, visibility var(--intro-exit-duration, .45s) ease;
}
.intro-splash--leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-content {
  width: min(480px, calc(100% - 2rem));
  display: grid;
  justify-items: center;
  text-align: center;
}
.intro-gengar-shell {
  width: 330px;
  height: 285px;
  display: grid;
  place-items: center;
}
.intro-outline {
  width: 100%;
  height: 100%;
  overflow: visible;
  color: #fff;
}
.gengar-outline--animated .gengar-contour {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: introTrace 1.05s cubic-bezier(.5, 0, .2, 1) 80ms forwards;
}
.gengar-outline--animated .gengar-eye {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: introEyesIn .36s cubic-bezier(.2, .9, .25, 1) .67s forwards;
}
.gengar-outline--animated .gengar-eye--left {
  transform: translate(-16px) scale(.72);
}
.gengar-outline--animated .gengar-eye--right {
  transform: translate(16px) scale(.72);
}
.intro-content h1 {
  margin: .1rem 0 0;
  font-family:
    Sora,
    Manrope,
    sans-serif;
  font-size: clamp(2.45rem, 8vw, 3.65rem);
  font-weight: 800;
  letter-spacing: -.065em;
  opacity: 0;
  transform: translateY(10px);
  animation: introNameIn .38s .72s ease-out forwards;
}
.intro-content h1 span {
  color: #c240ff;
}
.intro-progress {
  width: min(320px, 76vw);
  height: 6px;
  margin-top: 1.25rem;
  overflow: hidden;
  border-radius: 999px;
  background: #ffffff1f;
}
.intro-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      #6d00ff,
      #cc2cff,
      #fff);
  transform-origin: left;
  animation: introLoad var(--intro-hold-duration, 2.2s) linear both;
}
@keyframes introTrace {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes introEyesIn {
  to {
    opacity: 1;
    transform: translate(0) scale(1.24);
  }
}
@keyframes introLoad {
  0% {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes introNameIn {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 520px) {
  .intro-gengar-shell {
    width: 270px;
    height: 235px;
  }
  .intro-content h1 {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }
}
.app {
  min-height: 100vh;
  background: var(--color-bg);
}
.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 1000;
  padding: .75rem 1rem;
  border-radius: .75rem;
  color: #fff;
  background: #6519a8;
  transform: translateY(-160%);
  transition: transform .18s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

.css-pillar {
  background:
    radial-gradient(ellipse 18% 75% at 64% 48%, rgba(181, 43, 255, .22), transparent 72%),
    radial-gradient(ellipse 12% 58% at 68% 42%, rgba(94, 35, 255, .16), transparent 78%),
    #000;
  animation: cosmicPulse 9s ease-in-out infinite alternate;
}

.css-pillar:after {
  content: "";
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 215deg at 73% 45%, transparent 0 38%, rgba(205, 48, 255, .24) 43%, transparent 49% 100%);
  filter: blur(35px);
  animation: cosmicSpin 18s linear infinite;
}

.css-rays {
  background:
    linear-gradient(104deg, transparent 22%, rgba(255, 255, 255, .075) 22.5%, transparent 23.5%),
    linear-gradient(77deg, transparent 38%, rgba(190, 120, 255, .08) 38.5%, transparent 39.8%),
    radial-gradient(ellipse at 50% -18%, rgba(181, 78, 255, .28), transparent 55%);
  opacity: .75;
  pointer-events: none;
}

.purchase-channel-button { text-decoration: none; }

@keyframes cosmicPulse {
  from { filter: saturate(.95) brightness(.86); transform: scale(1.01); }
  to { filter: saturate(1.16) brightness(1.05); transform: scale(1.045); }
}

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


/* =========================================================
   NEXUSTOREX MARKETPLACE — COMUNIDAD / SOPORTE
   ========================================================= */
.inner-page {
  background: #030207;
}
.inner-page .navbar {
  grid-template-columns: 1fr minmax(250px, 330px) 1fr;
}
.inner-page .nav-cluster--right {
  gap: clamp(1.1rem, 2.5vw, 2.5rem);
}
.portal-main {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(129, 41, 255, .13), transparent 28rem),
    #05030a;
}
.portal-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 9.5rem max(1rem, calc((100vw - 1180px)/2)) 5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: #030207;
}
.portal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 72% 45%, rgba(184, 45, 255, .21), transparent 25%),
    radial-gradient(circle at 76% 42%, rgba(40, 136, 255, .1), transparent 38%),
    linear-gradient(110deg, #030207 0 42%, rgba(3,2,7,.82) 61%, rgba(3,2,7,.42));
}
.portal-hero--support::before {
  background:
    radial-gradient(circle at 73% 43%, rgba(68, 115, 255, .19), transparent 25%),
    radial-gradient(circle at 65% 55%, rgba(192, 43, 255, .12), transparent 36%),
    linear-gradient(110deg, #030207 0 45%, rgba(3,2,7,.78) 64%, rgba(3,2,7,.52));
}
.portal-grid-lines {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(circle at 70% 44%, #000, transparent 58%);
  mask-image: radial-gradient(circle at 70% 44%, #000, transparent 58%);
  transform: perspective(900px) rotateX(58deg) translateY(23%);
  transform-origin: bottom;
  animation: portalGridDrift 12s linear infinite;
}
.portal-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
}
.portal-copy {
  max-width: 670px;
}
.portal-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #d35aff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.portal-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
  animation: statusBlink 1.7s ease-in-out infinite;
}
.portal-kicker--support {
  color: #78a4ff;
}
.portal-copy h1 {
  max-width: 700px;
  margin: 1rem 0 0;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(3rem, 6vw, 5.7rem);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.07em;
  text-wrap: balance;
}
.portal-copy h1 span {
  color: #cb45ff;
  text-shadow: 0 0 34px rgba(194, 57, 255, .22);
}
.portal-hero--support .portal-copy h1 span {
  color: #8fb0ff;
}
.portal-copy > p {
  max-width: 610px;
  margin: 1.45rem 0 0;
  color: #aaa5bb;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
}
.portal-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.portal-button {
  min-height: 50px;
  padding: .82rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: .75rem;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .015em;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.portal-button:hover {
  transform: translateY(-3px);
}
.portal-button--primary {
  background: linear-gradient(135deg, #c12cff, #6d20ff);
  box-shadow: 0 12px 36px rgba(131, 38, 255, .18);
}
.portal-button--primary:hover {
  box-shadow: 0 16px 42px rgba(163, 48, 255, .26);
}
.portal-button--ghost {
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(12px);
}
.portal-button--ghost:hover {
  border-color: rgba(205,76,255,.38);
  background: rgba(136,57,255,.09);
}
.portal-button-icon {
  font-size: 1rem;
}
.community-mini-stats {
  margin-top: 2.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  color: #777283;
  font-size: .72rem;
  font-weight: 700;
}
.community-mini-stats span {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.community-mini-stats strong {
  color: #d555ff;
  font-family: Sora, sans-serif;
}
.community-visual {
  min-height: 500px;
  display: grid;
  place-items: center;
}
.community-core {
  position: relative;
  width: min(380px, 78vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.community-core::before,
.community-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(207, 91, 255, .19);
}
.community-core::before { inset: 6%; animation: ringSpin 14s linear infinite; }
.community-core::after { inset: 18%; border-style: dashed; animation: ringSpinReverse 10s linear infinite; }
.community-core-glow {
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background: #9a29ff54;
  filter: blur(48px);
  animation: corePulse 3.4s ease-in-out infinite alternate;
}
.community-avatar {
  position: relative;
  z-index: 4;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 30%;
  color: #fff;
  background: linear-gradient(145deg, #181020, #6d15a2);
  box-shadow: inset 0 1px #ffffff30, 0 0 50px rgba(172,45,255,.34);
  font-family: Sora, sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  transform: rotate(-8deg);
  animation: avatarFloat 4s ease-in-out infinite alternate;
}
.community-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}
.community-ring--a { inset: 0; animation: ringSpin 18s linear infinite; }
.community-ring--b { inset: 12%; border-color: rgba(135, 79, 255, .18); animation: ringSpinReverse 13s linear infinite; }
.community-node {
  position: absolute;
  z-index: 5;
  padding: .55rem .75rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #c6c1cf;
  background: #08050ed9;
  box-shadow: 0 14px 34px #0007;
  backdrop-filter: blur(14px);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  animation: nodeFloat 3.6s ease-in-out infinite alternate;
}
.community-node--1 { top: 5%; left: 10%; }
.community-node--2 { top: 21%; right: -3%; animation-delay: -.8s; }
.community-node--3 { bottom: 10%; right: 4%; animation-delay: -1.4s; }
.community-node--4 { bottom: 17%; left: -1%; animation-delay: -2s; }
.portal-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}
.portal-orb--one {
  right: 5%;
  top: 20%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(205, 63, 255, .1);
  box-shadow: inset 0 0 90px rgba(135, 0, 255, .06);
  animation: orbFloat 10s ease-in-out infinite alternate;
}
.portal-orb--two {
  right: 18%;
  top: 38%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(112, 78, 255, .13);
  animation: orbFloat 7s ease-in-out -2s infinite alternate-reverse;
}
.portal-section {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.portal-section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}
.portal-section-heading > span {
  color: #b049ff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.portal-section-heading h2 {
  margin: .7rem 0 0;
  font-family: Sora, sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -.055em;
}
.portal-section-heading p {
  margin: 1rem 0 0;
  color: #8e8998;
  line-height: 1.7;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.feature-card,
.support-side-card,
.support-form,
.faq-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  box-shadow: inset 0 1px rgba(255,255,255,.035), 0 24px 70px rgba(0,0,0,.17);
}
.feature-card::before,
.support-side-card::before,
.support-form::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  left: calc(var(--mx, 50%) - 115px);
  top: calc(var(--my, 50%) - 115px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 62, 255, .11), transparent 67%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.feature-card:hover::before,
.support-side-card:hover::before,
.support-form:hover::before { opacity: 1; }
.feature-card {
  min-height: 290px;
  padding: 1.5rem;
  border-radius: 1.2rem;
}
.feature-number {
  position: absolute;
  top: 1.3rem;
  right: 1.4rem;
  color: #4f4958;
  font-family: Sora, sans-serif;
  font-size: .72rem;
}
.feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202,71,255,.2);
  border-radius: .9rem;
  color: #d95cff;
  background: #a42eff14;
  font-size: 1.2rem;
}
.feature-card h3 {
  margin: 3.5rem 0 .7rem;
  font-family: Sora, sans-serif;
  font-size: 1.18rem;
}
.feature-card p {
  margin: 0;
  color: #898390;
  font-size: .86rem;
  line-height: 1.65;
}
.community-join {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 6rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid rgba(187,64,255,.18);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 80% 50%, rgba(174,46,255,.11), transparent 30%),
    #08050e;
}
.community-join h2 {
  max-width: 720px;
  margin: .7rem 0 0;
  font-family: Sora, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  letter-spacing: -.055em;
}
.community-join p {
  max-width: 680px;
  margin: .8rem 0 0;
  color: #8d8797;
  line-height: 1.65;
}
.portal-shell--support {
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
}
.support-scan {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 8%;
  width: 44%;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(79,134,255,.08), transparent);
  transform: translateY(-100%);
  animation: supportScan 5.5s ease-in-out infinite;
}
.support-status-row {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #777384;
  font-size: .75rem;
}
.support-status-pill {
  padding: .55rem .75rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid rgba(84, 226, 158, .16);
  border-radius: 999px;
  color: #a7d9be;
  background: rgba(30, 118, 75, .08);
}
.support-status-pill i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px #22c55e;
}
.support-terminal {
  overflow: hidden;
  border: 1px solid rgba(122,164,255,.17);
  border-radius: 1.25rem;
  background: rgba(5,7,14,.82);
  box-shadow: 0 30px 90px rgba(0,0,0,.44), 0 0 60px rgba(62,99,255,.08);
  backdrop-filter: blur(18px);
  transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
}
.terminal-top {
  height: 48px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: .45rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #666d7e;
  font-size: .64rem;
  letter-spacing: .13em;
}
.terminal-top span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3d4350;
}
.terminal-top b { margin-left: auto; font-weight: 700; }
.terminal-body {
  min-height: 330px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  font-family: "Courier New", monospace;
}
.terminal-body p {
  margin: 0;
  color: #a8adbb;
  font-size: .78rem;
}
.terminal-body em {
  margin-right: .8rem;
  color: #79a6ff;
  font-style: normal;
}
.terminal-line {
  height: 1px;
  margin: .6rem 0;
  overflow: hidden;
  background: rgba(255,255,255,.07);
}
.terminal-line span {
  display: block;
  width: 35%;
  height: 100%;
  background: #759eff;
  box-shadow: 0 0 15px #5d84ff;
  animation: terminalLine 2.4s ease-in-out infinite alternate;
}
.terminal-body strong {
  color: #91aeff;
  font-size: .72rem;
  letter-spacing: .12em;
  animation: terminalBlink 1.1s steps(2,end) infinite;
}
.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 1rem;
}
.support-form {
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: 1.25rem;
}
.support-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.support-form label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .55rem;
}
.support-form label > span {
  color: #aca6b5;
  font-size: .72rem;
  font-weight: 700;
}
.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: .75rem;
  outline: 0;
  color: #f3eff8;
  background: rgba(255,255,255,.035);
  font: inherit;
  font-size: .84rem;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.support-form input,
.support-form select { min-height: 49px; padding: 0 .9rem; }
.support-form textarea { padding: .9rem; resize: vertical; min-height: 145px; }
.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgba(128, 162, 255, .55);
  background: rgba(104, 129, 255, .055);
  box-shadow: 0 0 0 3px rgba(72,113,255,.08);
}
.support-form select option { color: #fff; background: #0a0710; }
.support-message-field { margin-top: 1rem; }
.support-submit { margin-top: 1.1rem; }
.support-form-note {
  margin: .8rem 0 0;
  color: #6f6977;
  font-size: .68rem;
}
.support-side {
  display: grid;
  align-content: start;
  gap: 1rem;
}
.support-side-card {
  padding: 1.35rem;
  border-radius: 1.15rem;
}
.support-side-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(108,150,255,.24);
  border-radius: .8rem;
  color: #9bb8ff;
  background: rgba(73,110,255,.08);
  font-family: Sora, sans-serif;
  font-weight: 800;
}
.support-side-card h3 { margin: 1rem 0 .7rem; font-family: Sora, sans-serif; font-size: 1rem; }
.support-side-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #837e8c;
  font-size: .78rem;
  line-height: 1.7;
}
.support-side-card--fast > span {
  color: #7d9ff1;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.support-side-card--fast .portal-button { margin-top: .7rem; width: 100%; }
.support-result {
  margin-top: 1rem;
  padding: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(84,226,158,.14);
  border-radius: 1.15rem;
  background: rgba(30,118,75,.055);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
}
.support-result[hidden] { display: none; }
.support-result--visible { opacity: 1; transform: none; }
.support-result > div > span {
  color: #70c999;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.support-result h3 {
  margin: .35rem 0 0;
  font-family: "Courier New", monospace;
  font-size: 1.4rem;
}
.support-result p { margin: .45rem 0 0; color: #807a89; font-size: .76rem; }
.faq-section { padding-top: 1rem; }
.faq-grid { display: grid; gap: .65rem; }
.faq-card {
  border-radius: .95rem;
  padding: 0;
}
.faq-card summary {
  padding: 1.15rem 1.25rem;
  list-style: none;
  cursor: pointer;
  font-family: Sora, sans-serif;
  font-size: .86rem;
  font-weight: 650;
}
.faq-card summary::-webkit-details-marker { display: none; }
.faq-card summary::after {
  content: "+";
  float: right;
  color: #a87cff;
  font-size: 1.1rem;
}
.faq-card[open] summary::after { content: "−"; }
.faq-card p { margin: 0; padding: 0 1.25rem 1.2rem; color: #88828f; font-size: .8rem; line-height: 1.65; }
.compact-footer { padding-top: 0; }
.compact-footer .footer-bottom { padding: 1.5rem 0 .25rem; justify-content: center; }
.reveal-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease var(--reveal-delay,0ms), transform .65s cubic-bezier(.2,.8,.2,1) var(--reveal-delay,0ms);
}
.reveal-card.is-visible { opacity: 1; transform: none; }

/* Intros de Comunidad y Soporte */
.page-intro {
  background:
    radial-gradient(circle at 50% 45%, rgba(147,31,255,.16), transparent 28%),
    #000;
}
.page-intro-content {
  position: relative;
  z-index: 3;
  width: min(500px, calc(100% - 2rem));
  display: grid;
  justify-items: center;
  text-align: center;
}
.page-intro-badge {
  margin-bottom: .8rem;
  color: #ba74ff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .22em;
  opacity: 0;
  animation: introNameIn .45s .2s ease forwards;
}
.page-intro-logo-shell {
  position: relative;
  width: 210px;
  height: 175px;
  display: grid;
  place-items: center;
}
.page-intro-logo-shell::before,
.page-intro-logo-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(202,65,255,.22);
  animation: introOrbit 2.8s linear infinite;
}
.page-intro-logo-shell::before { inset: -22px -34px; }
.page-intro-logo-shell::after { inset: -8px -17px; animation-direction: reverse; animation-duration: 2.1s; }
.page-intro-mark {
  width: 100%;
  height: 100%;
  overflow: visible;
  color: #fff;
  filter: drop-shadow(0 0 22px rgba(187,48,255,.16));
}
.page-intro-mark .gengar-contour {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: introTrace 1.1s cubic-bezier(.5,0,.2,1) .2s forwards;
}
.page-intro-eyes {
  opacity: 0;
  animation: introEyesFlash .45s .82s ease forwards;
}
.page-intro-content h1 {
  margin: 1rem 0 0;
  font-family: Sora, sans-serif;
  font-size: clamp(2rem, 7vw, 3.1rem);
  letter-spacing: -.06em;
  opacity: 0;
  transform: translateY(10px);
  animation: introNameIn .4s .82s ease forwards;
}
.page-intro-content h1 span { color: #c94aff; }
.page-intro-content > p {
  margin: .55rem 0 0;
  color: #767080;
  font-size: .72rem;
  letter-spacing: .06em;
  opacity: 0;
  animation: introNameIn .4s 1s ease forwards;
}
.page-intro-particles {
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: radial-gradient(rgba(221,155,255,.7) 1px, transparent 1px);
  background-size: 46px 46px;
  animation: particleDrift 9s linear infinite;
}
.page-intro--support {
  background:
    radial-gradient(circle at 50% 45%, rgba(73,118,255,.17), transparent 27%),
    #000;
}
.page-intro--support .page-intro-badge,
.page-intro--support .page-intro-content h1 span { color: #89aaff; }
.page-intro--support .intro-progress span {
  background: linear-gradient(90deg, #315cff, #8e68ff, #fff);
}
.support-intro-grid {
  position: absolute;
  inset: -20%;
  opacity: .22;
  background-image:
    linear-gradient(rgba(117,151,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117,151,255,.16) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(600px) rotateX(65deg);
  animation: supportIntroGrid 5s linear infinite;
}
.support-intro-shield {
  position: relative;
  width: 118px;
  height: 138px;
  display: grid;
  place-items: center;
  border: 2px solid #8ca9ff;
  color: #fff;
  background: linear-gradient(160deg, rgba(82,119,255,.22), rgba(143,73,255,.09));
  clip-path: polygon(50% 0, 93% 17%, 86% 70%, 50% 100%, 14% 70%, 7% 17%);
  box-shadow: 0 0 45px rgba(83,111,255,.22);
  animation: shieldEnter .75s cubic-bezier(.2,.8,.2,1) .25s both, shieldFloat 2.4s ease-in-out 1s infinite alternate;
}
.support-intro-shield span {
  font-family: Sora, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
}
.support-intro-shield i {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255,255,255,.18);
  clip-path: inherit;
}
@keyframes portalGridDrift { to { background-position: 54px 54px; } }
@keyframes statusBlink { 50% { opacity: .35; transform: scale(.78); } }
@keyframes ringSpin { to { transform: rotate(360deg); } }
@keyframes ringSpinReverse { to { transform: rotate(-360deg); } }
@keyframes corePulse { to { transform: scale(1.18); opacity: .72; } }
@keyframes avatarFloat { to { transform: translateY(-12px) rotate(-4deg); } }
@keyframes nodeFloat { to { transform: translateY(-9px); } }
@keyframes orbFloat { to { transform: translate(-20px, 18px) scale(1.04); } }
@keyframes supportScan { 0%,15% { transform: translateY(-100%); opacity: 0; } 40% { opacity: 1; } 80%,100% { transform: translateY(100%); opacity: 0; } }
@keyframes terminalLine { to { transform: translateX(185%); } }
@keyframes terminalBlink { 50% { opacity: .3; } }
@keyframes introOrbit { to { transform: rotate(360deg); } }
@keyframes introEyesFlash { to { opacity: 1; filter: drop-shadow(0 0 10px #c9184f); } }
@keyframes particleDrift { to { background-position: 46px 46px; } }
@keyframes supportIntroGrid { to { background-position: 60px 60px; } }
@keyframes shieldEnter { from { opacity: 0; transform: scale(.45) rotate(-14deg); filter: blur(8px); } to { opacity: 1; transform: scale(1); filter: none; } }
@keyframes shieldFloat { to { transform: translateY(-10px); } }

@media (max-width: 900px) {
  .portal-hero { min-height: auto; padding-top: 8rem; }
  .portal-shell,
  .portal-shell--support { grid-template-columns: 1fr; }
  .community-visual { min-height: 400px; }
  .support-terminal { max-width: 580px; transform: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .support-layout { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .portal-copy { text-align: center; margin: 0 auto; }
  .portal-copy h1 { font-size: clamp(2.55rem, 12vw, 4.1rem); }
  .portal-kicker,
  .portal-actions,
  .support-status-row { justify-content: center; }
  .community-mini-stats { justify-content: center; }
  .community-visual { min-height: 330px; }
  .community-core { width: min(310px, 80vw); }
  .community-avatar { width: 92px; height: 92px; font-size: 3rem; }
  .community-node { font-size: .54rem; }
  .community-join { flex-direction: column; text-align: center; }
  .community-join .portal-kicker { justify-content: center; }
  .support-form-grid { grid-template-columns: 1fr; }
  .support-result { align-items: stretch; flex-direction: column; }
  .support-result .portal-button { width: 100%; }
}
@media (max-width: 480px) {
  .portal-hero { padding-inline: .85rem; }
  .portal-section { width: min(100% - 1.4rem, 1180px); }
  .community-node--2 { right: 0; }
  .community-node--4 { left: 0; }
  .page-intro-logo-shell { width: 170px; height: 145px; }
}
@media (prefers-reduced-motion: reduce) {
  .portal-grid-lines, .community-core::before, .community-core::after, .community-ring,
  .community-avatar, .community-node, .portal-orb, .support-scan, .terminal-line span,
  .page-intro-logo-shell::before, .page-intro-logo-shell::after, .page-intro-particles,
  .support-intro-grid, .support-intro-shield { animation: none !important; }
  .reveal-card { opacity: 1; transform: none; }
}

/* =========================================================
   BOTÓN ATRÁS - COMUNIDAD / SOPORTE
   ========================================================= */
.portal-back-button {
  position: fixed;
  z-index: 120;
  top: 1.35rem;
  left: max(1rem, calc((100vw - 1180px) / 2));
  min-height: 46px;
  padding: .72rem 1rem .72rem .8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .58rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #f7f3ff;
  background:
    linear-gradient(135deg, rgba(25,12,39,.94), rgba(8,5,16,.9));
  box-shadow:
    inset 0 1px rgba(255,255,255,.08),
    0 14px 38px rgba(0,0,0,.4),
    0 0 26px rgba(163,50,255,.12);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  backdrop-filter: blur(16px) saturate(135%);
  font-family: Manrope, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .045em;
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.portal-back-arrow {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(198,94,255,.2);
  border-radius: 50%;
  color: #e5b2ff;
  background: rgba(180,55,255,.09);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}

.portal-back-button:hover {
  border-color: rgba(205,76,255,.42);
  background:
    linear-gradient(135deg, rgba(55,20,83,.96), rgba(10,6,19,.94));
  box-shadow:
    inset 0 1px rgba(255,255,255,.1),
    0 18px 46px rgba(0,0,0,.46),
    0 0 30px rgba(179,55,255,.24);
  transform: translateY(-2px);
}

.portal-back-button:hover .portal-back-arrow {
  transform: translateX(-4px);
  background: rgba(187,59,255,.18);
}

.portal-back-button:active {
  transform: translateY(0) scale(.98);
}

/* =========================================================
   GENGAR CENTRAL - COMUNIDAD
   Sustituye la letra N por favicon-gengar.svg
   ========================================================= */
.community-avatar--gengar {
  position: relative;
  width: 132px;
  height: 132px;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transform: none;
  animation: gengarCommunityFloat 4.6s cubic-bezier(.45,.05,.25,1) infinite alternate;
  isolation: isolate;
}

.community-avatar--gengar::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -28%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(190,72,255,.34) 0%, rgba(131,40,255,.15) 35%, transparent 68%);
  filter: blur(17px);
  opacity: .78;
  animation: gengarAuraPulse 2.8s ease-in-out infinite alternate;
}

.community-avatar--gengar::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -12%;
  border: 1px solid rgba(218,134,255,.2);
  border-radius: 50%;
  box-shadow:
    0 0 24px rgba(184,55,255,.16),
    inset 0 0 20px rgba(138,58,255,.08);
  animation: gengarHaloSpin 8s linear infinite;
}

.community-gengar-logo {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 10px 16px rgba(0,0,0,.48))
    drop-shadow(0 0 18px rgba(192,69,255,.28));
  transform-origin: 50% 55%;
  animation: gengarLogoBreathe 3.2s ease-in-out infinite;
  will-change: transform, filter;
}

.community-core:hover .community-gengar-logo {
  filter:
    drop-shadow(0 14px 20px rgba(0,0,0,.52))
    drop-shadow(0 0 30px rgba(207,91,255,.48));
  transform: scale(1.08) rotate(-2deg);
}

.community-core:hover .community-avatar--gengar::before {
  opacity: 1;
}

@keyframes gengarCommunityFloat {
  0% {
    transform: translate3d(0, 8px, 0) rotate(-3deg) scale(.98);
  }
  45% {
    transform: translate3d(-3px, -5px, 18px) rotate(1deg) scale(1.025);
  }
  100% {
    transform: translate3d(4px, -12px, 24px) rotate(3deg) scale(1.04);
  }
}

@keyframes gengarLogoBreathe {
  0%, 100% {
    transform: scale(.98);
  }
  50% {
    transform: scale(1.055);
  }
}

@keyframes gengarAuraPulse {
  from {
    transform: scale(.86);
    opacity: .5;
  }
  to {
    transform: scale(1.18);
    opacity: .96;
  }
}

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

@media (max-width: 760px) {
  .portal-back-button {
    top: .85rem;
    left: .8rem;
    min-height: 42px;
    padding: .62rem .85rem .62rem .65rem;
    font-size: .75rem;
  }

  .portal-back-arrow {
    width: 25px;
    height: 25px;
  }

  .community-avatar--gengar {
    width: 108px;
    height: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .community-avatar--gengar,
  .community-avatar--gengar::before,
  .community-avatar--gengar::after,
  .community-gengar-logo {
    animation: none !important;
  }
}


/* =========================================================
   NEXUSTOREX — LOGIN Y REGISTRO EN VENTANA MODAL
   Todo funciona dentro de index.html. No usa páginas aparte.
   ========================================================= */

.nav-auth-actions {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .65rem;
  transform: translateY(-4px);
}

.nav-auth-button,
.mobile-auth-button {
  font-family: Manrope, sans-serif;
  cursor: pointer;
}

.nav-auth-button {
  min-height: 42px;
  padding: .68rem .92rem;
  border: 1px solid rgba(207, 76, 255, .25);
  border-radius: .78rem;
  color: #f8f5fb;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .045em;
  white-space: nowrap;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.nav-auth-button--login {
  background: rgba(12, 7, 19, .74);
  box-shadow: inset 0 1px rgba(255,255,255,.04);
}

.nav-auth-button--register {
  border-color: rgba(204, 70, 255, .5);
  background: linear-gradient(135deg, #a708e1, #7508e8);
  box-shadow: 0 10px 28px rgba(108, 23, 190, .18);
}

.nav-auth-button:hover {
  transform: translateY(-3px);
}

.nav-auth-button--login:hover {
  border-color: rgba(215, 87, 255, .56);
  background: rgba(93, 25, 134, .18);
}

.nav-auth-button--register:hover {
  box-shadow: 0 15px 35px rgba(142, 30, 223, .3);
}

.mobile-auth-actions {
  margin-top: .55rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
}

.mobile-auth-button {
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  color: #fff;
  background: rgba(255,255,255,.035);
  font-size: .68rem;
  font-weight: 800;
}

.mobile-auth-button--register {
  border-color: rgba(201, 65, 255, .4);
  background: linear-gradient(135deg, #a308e0, #7208df);
}

.card-details {
  min-height: 132px;
}

.card-auth-cta {
  min-height: 38px;
  margin-top: .1rem;
  padding: .62rem .72rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  border: 1px solid rgba(204, 74, 255, .18);
  border-radius: .7rem;
  color: #ded8e5;
  background: linear-gradient(110deg, rgba(112,28,171,.1), rgba(64,18,111,.14));
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .025em;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.card-auth-cta b {
  color: #d85cff;
  font-size: 1rem;
  transition: transform .2s ease;
}

.service-card:hover .card-auth-cta,
.service-card:focus-within .card-auth-cta {
  border-color: rgba(216, 91, 255, .48);
  background: linear-gradient(110deg, rgba(141,36,207,.2), rgba(80,27,148,.22));
  box-shadow: 0 8px 20px rgba(111, 26, 183, .12);
  transform: translateY(-1px);
}

.service-card:hover .card-auth-cta b {
  transform: translateX(4px);
}

.card-login-hover {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 1rem;
  min-height: 32px;
  padding: .46rem .66rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(6,3,11,.74);
  box-shadow: 0 12px 26px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 10px) scale(.96);
  transition: opacity .2s ease, transform .2s ease;
}

.card-login-hover b {
  color: #db64ff;
  text-shadow: 0 0 12px rgba(215,89,255,.7);
}

.service-card:hover .card-login-hover,
.service-card:focus-within .card-login-hover {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

/* Capa exterior */
.auth-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  padding: clamp(.65rem, 2vw, 1.5rem);
  display: none;
  place-items: center;
  overflow-y: auto;
  background: rgba(1, 0, 4, .86);
  -webkit-backdrop-filter: blur(12px) saturate(105%);
  backdrop-filter: blur(12px) saturate(105%);
  opacity: 0;
  transition: opacity .24s ease;
}

.auth-modal-overlay.is-open {
  display: grid;
}

.auth-modal-overlay.is-ready {
  opacity: 1;
}

/* Ventana principal */
.auth-modal-window {
  position: relative;
  isolation: isolate;
  width: min(920px, 100%);
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(410px, 1.14fr);
  overflow: hidden;
  border: 1px solid rgba(200, 55, 255, .5);
  border-radius: 1.45rem;
  color: #fff;
  background: #08020d;
  box-shadow:
    0 45px 120px rgba(0,0,0,.78),
    0 0 80px rgba(139, 22, 218, .15),
    inset 0 1px rgba(255,255,255,.045);
  opacity: 0;
  transform: translateY(18px) scale(.975);
  filter: blur(4px);
  transition:
    opacity .3s ease,
    transform .3s cubic-bezier(.18,.8,.2,1),
    filter .3s ease;
}

.auth-modal-overlay.is-ready .auth-modal-window {
  opacity: 1;
  transform: none;
  filter: none;
}

.auth-modal-window::before {
  content: "";
  position: absolute;
  z-index: 15;
  top: 0;
  left: -40%;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d955ff, transparent);
  box-shadow: 0 0 18px #b92cff;
  animation: authModalScan 5.5s ease-in-out infinite;
  pointer-events: none;
}

.auth-modal-window::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 14;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
  pointer-events: none;
}

/* Cerrar */
.auth-modal-close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  z-index: 30;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: .75rem;
  color: #fff;
  background: rgba(10,5,15,.86);
  box-shadow: 0 10px 25px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.auth-modal-close span {
  position: absolute;
  width: 14px;
  height: 1.5px;
  border-radius: 99px;
  background: currentColor;
}

.auth-modal-close span:first-child { transform: rotate(45deg); }
.auth-modal-close span:last-child { transform: rotate(-45deg); }

.auth-modal-close:hover {
  border-color: rgba(218,90,255,.48);
  background: rgba(93,22,122,.23);
  transform: rotate(4deg);
}

/* Lado visual */
.auth-modal-showcase {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.1rem;
  border-right: 1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(circle at 52% 48%, rgba(130, 22, 190, .19), transparent 33%),
    linear-gradient(150deg, #0d0417, #030106 72%);
}

.auth-showcase-grid {
  position: absolute;
  inset: -20%;
  opacity: .18;
  background-image:
    linear-gradient(rgba(206,95,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(206,95,255,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(650px) rotateX(61deg) translateY(25%);
  mask-image: radial-gradient(circle at center, #000, transparent 68%);
  animation: authShowcaseGrid 14s linear infinite;
}

.auth-showcase-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(140, 30, 225, .12);
  filter: blur(70px);
  animation: authGlowPulse 3.5s ease-in-out infinite alternate;
}

.auth-showcase-visual {
  position: relative;
  width: min(330px, 80%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.auth-showcase-ring {
  position: absolute;
  border: 1px solid rgba(207,77,255,.22);
  border-radius: 50%;
}

.auth-showcase-ring--one {
  inset: 9%;
  animation: authRingSpin 16s linear infinite;
}

.auth-showcase-ring--two {
  inset: 22%;
  border-color: rgba(173,54,255,.3);
  animation: authRingSpinReverse 11s linear infinite;
}

.auth-showcase-ring--three {
  inset: 34%;
  border-style: dashed;
  border-color: rgba(224,118,255,.22);
  animation: authRingSpin 8s linear infinite;
}

.auth-showcase-gengar {
  position: relative;
  z-index: 6;
  width: 57%;
  max-width: 170px;
  filter:
    drop-shadow(0 0 12px rgba(255,255,255,.16))
    drop-shadow(0 0 26px rgba(194,47,255,.38));
  animation: authGengarFloat 4s ease-in-out infinite alternate;
}

.auth-showcase-dot {
  position: absolute;
  z-index: 7;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c92cff;
  box-shadow: 0 0 15px #c92cff;
  animation: authDotPulse 1.8s ease-in-out infinite;
}

.auth-showcase-dot--one { top: 21%; left: 18%; }
.auth-showcase-dot--two { top: 34%; right: 13%; animation-delay: -.7s; }
.auth-showcase-dot--three { bottom: 15%; left: 34%; animation-delay: -1.2s; background: #efbdff; }

.auth-showcase-brand {
  position: relative;
  z-index: 8;
  max-width: 310px;
  padding: 0 1.2rem 1rem;
  text-align: center;
}

.auth-showcase-brand strong {
  display: block;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  line-height: 1;
  letter-spacing: -.065em;
}

.auth-showcase-brand strong span {
  color: #d23eff;
}

.auth-showcase-brand p {
  max-width: 260px;
  margin: .8rem auto 0;
  color: #8d8496;
  font-size: .75rem;
  line-height: 1.65;
}

/* Lado formulario */
.auth-modal-content {
  min-width: 0;
  padding: clamp(2.25rem, 5vw, 3.4rem) clamp(1.6rem, 4vw, 2.8rem) 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 100% 100%, rgba(139, 22, 213, .08), transparent 30%),
    #09030d;
}

.auth-tabs {
  width: min(100%, 430px);
  margin: 0 auto 2.2rem;
  padding: .32rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .25rem;
  border: 1px solid rgba(187,54,255,.3);
  border-radius: .75rem;
  background: rgba(26,7,34,.58);
}

.auth-tab {
  min-height: 42px;
  border-radius: .55rem;
  color: #777080;
  background: transparent;
  font-size: .72rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    color .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.auth-tab:hover {
  color: #d9d3df;
}

.auth-tab.is-active {
  color: #fff;
  background: linear-gradient(135deg, #8c05cc, #7005b8);
  box-shadow: 0 8px 22px rgba(111,4,173,.24);
}

.auth-panel {
  width: min(100%, 430px);
  margin: 0 auto;
}

.auth-panel[hidden] {
  display: none;
}

.auth-panel.is-active {
  animation: authPanelEnter .3s cubic-bezier(.2,.8,.2,1) both;
}

.auth-modal-heading > span {
  color: #d34cff;
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .18em;
}

.auth-modal-heading h2 {
  margin: .75rem 0 0;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.auth-modal-heading p {
  margin: .75rem 0 0;
  color: #817986;
  font-size: .75rem;
  line-height: 1.55;
}

.auth-modal-form {
  margin-top: 1.65rem;
  display: grid;
  gap: .9rem;
}

.auth-modal-form label {
  display: grid;
  gap: .44rem;
}

.auth-modal-form label > span {
  color: #b9b1c0;
  font-size: .65rem;
  font-weight: 700;
}

.auth-control {
  min-height: 49px;
  padding: 0 .72rem;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: .35rem;
  border: 1px solid rgba(174,74,209,.24);
  border-radius: .7rem;
  background: rgba(7,2,10,.65);
  box-shadow: inset 0 7px 20px rgba(0,0,0,.13);
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

.auth-control:focus-within {
  border-color: rgba(213, 75, 255, .66);
  background: rgba(19,4,26,.72);
  box-shadow:
    0 0 0 3px rgba(149,33,205,.1),
    0 0 24px rgba(180,50,231,.08);
}

.auth-control i {
  color: #746c7a;
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  text-align: center;
}

.auth-control input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: .74rem;
}

.auth-control input::placeholder {
  color: #554e5a;
}

.auth-show-password {
  padding: .45rem .25rem;
  color: #a06aad;
  background: transparent;
  font-size: .51rem;
  font-weight: 900;
  letter-spacing: .06em;
  cursor: pointer;
}

.auth-primary-button {
  position: relative;
  min-height: 49px;
  margin-top: .2rem;
  padding: 0 .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  overflow: hidden;
  border: 1px solid rgba(222,90,255,.28);
  border-radius: .7rem;
  color: #fff;
  background: linear-gradient(100deg, #a600ff, #d500ec 57%, #a200fa);
  box-shadow: 0 13px 28px rgba(126, 13, 190, .22);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .025em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.auth-primary-button::before {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -22%;
  width: 16%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transform: skewX(-18deg);
  transition: left .55s ease;
}

.auth-primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 36px rgba(148, 17, 215, .33);
}

.auth-primary-button:hover::before {
  left: 110%;
}

.auth-primary-button b {
  position: absolute;
  right: .9rem;
  font-size: .95rem;
  transition: transform .2s ease;
}

.auth-primary-button:hover b {
  transform: translateX(3px);
}

.auth-button-lock {
  font-size: .78rem;
}

.auth-switch-text {
  margin: .15rem 0 0;
  color: #625a68;
  font-size: .62rem;
  text-align: center;
}

.auth-switch-text button {
  padding: 0;
  color: #d558ff;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.auth-switch-text button:hover {
  color: #eca2ff;
}

.auth-security-note {
  margin: .25rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .42rem;
  color: #4f4953;
  font-size: .53rem;
  line-height: 1.5;
  text-align: center;
}

.auth-form-status {
  width: min(100%, 430px);
  min-height: 0;
  margin: .8rem auto 0;
  padding: 0;
  border: 0;
  color: #958b9c;
  font-size: .61rem;
  line-height: 1.5;
  text-align: center;
}

.auth-form-status--info {
  padding: .65rem .75rem;
  border: 1px solid rgba(195,74,255,.17);
  border-radius: .65rem;
  color: #b6aabd;
  background: rgba(117,25,160,.08);
  animation: authPanelEnter .25s ease both;
}

.auth-form-shake {
  animation: authFormShake .33s ease;
}

@keyframes authModalScan {
  0%, 12% { left: -40%; opacity: 0; }
  30% { opacity: 1; }
  68% { opacity: .8; }
  82%, 100% { left: 118%; opacity: 0; }
}

@keyframes authShowcaseGrid {
  to { background-position: 42px 42px; }
}

@keyframes authGlowPulse {
  to { transform: scale(1.18); opacity: .82; }
}

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

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

@keyframes authGengarFloat {
  to { transform: translateY(-12px) scale(1.035); }
}

@keyframes authDotPulse {
  50% { opacity: .35; transform: scale(.7); }
}

@keyframes authPanelEnter {
  from { opacity: 0; transform: translateY(10px); filter: blur(3px); }
  to { opacity: 1; transform: none; filter: none; }
}

@keyframes authFormShake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-3px); }
}

@media (max-width: 1120px) {
  .navbar {
    padding-inline: 1.4rem;
    grid-template-columns: minmax(350px, 1fr) minmax(220px, 280px) minmax(235px, .8fr);
    gap: .7rem;
  }

  .nav-cluster {
    gap: 1rem !important;
  }

  .nav-cluster > a:not(.nav-contact) {
    font-size: .76rem;
  }

  .nav-auth-button {
    padding-inline: .65rem;
    font-size: .58rem;
  }
}

@media (max-width: 900px) {
  .nav-auth-actions {
    display: none;
  }

  .auth-modal-window {
    grid-template-columns: minmax(230px, .72fr) minmax(360px, 1.28fr);
  }

  .auth-modal-showcase {
    padding: 1rem;
  }

  .auth-showcase-visual {
    width: min(260px, 86%);
  }

  .auth-showcase-brand strong {
    font-size: 1.8rem;
  }
}

@media (max-width: 700px) {
  .auth-modal-overlay {
    padding: .5rem;
    align-items: start;
  }

  .auth-modal-window {
    width: min(520px, 100%);
    min-height: auto;
    margin: .5rem 0;
    grid-template-columns: 1fr;
    border-radius: 1.05rem;
  }

  .auth-modal-showcase {
    min-height: 185px;
    padding: 1.3rem 1rem .8rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }

  .auth-showcase-visual {
    width: 145px;
  }

  .auth-showcase-ring--one { inset: 8%; }
  .auth-showcase-ring--two { inset: 21%; }
  .auth-showcase-ring--three { inset: 34%; }

  .auth-showcase-gengar {
    width: 56%;
  }

  .auth-showcase-brand {
    padding-bottom: .35rem;
  }

  .auth-showcase-brand strong {
    font-size: 1.5rem;
  }

  .auth-showcase-brand p {
    display: none;
  }

  .auth-modal-content {
    padding: 1.5rem 1.15rem 1.35rem;
  }

  .auth-tabs {
    margin-bottom: 1.4rem;
  }

  .auth-modal-heading h2 {
    font-size: 2rem;
  }

  .auth-security-note {
    font-size: .5rem;
  }
}

@media (max-width: 450px) {
  .mobile-auth-actions {
    grid-template-columns: 1fr;
  }

  .card-details {
    min-height: 125px;
  }

  .card-auth-cta {
    min-height: 34px;
    padding: .5rem .55rem;
    font-size: .54rem;
  }

  .card-login-hover {
    display: none;
  }

  .auth-modal-window {
    margin: .15rem 0;
  }

  .auth-modal-showcase {
    min-height: 150px;
  }

  .auth-showcase-visual {
    width: 115px;
  }

  .auth-showcase-brand {
    margin-top: -.2rem;
  }

  .auth-showcase-brand strong {
    font-size: 1.3rem;
  }

  .auth-modal-content {
    padding: 1.25rem .9rem 1.1rem;
  }

  .auth-tabs {
    margin-bottom: 1.1rem;
  }

  .auth-modal-form {
    margin-top: 1.2rem;
    gap: .7rem;
  }

  .auth-control {
    min-height: 45px;
  }

  .auth-modal-close {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-modal-window::before,
  .auth-showcase-grid,
  .auth-showcase-glow,
  .auth-showcase-ring,
  .auth-showcase-gengar,
  .auth-showcase-dot {
    animation: none !important;
  }
}


/* =========================================================
   NEXUSTOREX — SELECTOR DE MONEDA PEN / USD
   ========================================================= */
.currency-switcher {
  position: relative;
  isolation: isolate;
  min-width: 154px;
  height: 42px;
  display: grid;
  grid-template-columns: 28px minmax(0,1fr) 18px;
  align-items: center;
  gap: .2rem;
  overflow: hidden;
  border: 1px solid rgba(203,76,255,.28);
  border-radius: .78rem;
  color: #f4eef8;
  background: linear-gradient(145deg, rgba(20,8,28,.94), rgba(7,3,12,.96));
  box-shadow: inset 0 1px rgba(255,255,255,.05), 0 10px 26px rgba(0,0,0,.18);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.currency-switcher::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -45%;
  bottom: -45%;
  left: -30%;
  width: 18%;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(228,126,255,.25), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}

.currency-switcher:hover {
  border-color: rgba(218,91,255,.52);
  background: linear-gradient(145deg, rgba(38,12,50,.96), rgba(9,4,16,.97));
  box-shadow: inset 0 1px rgba(255,255,255,.07), 0 12px 30px rgba(0,0,0,.22), 0 0 24px rgba(168,43,226,.08);
  transform: translateY(-2px);
}

.currency-switcher:hover::before {
  opacity: 1;
  animation: currencySelectorShine .7s ease both;
}

.currency-switcher.is-changing {
  border-color: rgba(230,121,255,.74);
  box-shadow: 0 0 0 3px rgba(180,52,233,.08), 0 0 28px rgba(194,54,247,.18);
  animation: currencySelectorPulse .48s ease;
}

.currency-switcher-icon,
.currency-switcher-chevron {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.currency-switcher-icon {
  display: grid;
  place-items: center;
  color: #d65cff;
  font-size: .92rem;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(214,92,255,.42);
  transition: transform .3s ease, color .3s ease;
}

.currency-switcher.is-changing .currency-switcher-icon {
  color: #f0adff;
  transform: rotate(180deg) scale(1.12);
}

.currency-switcher-chevron {
  color: #83798b;
  font-size: .82rem;
  transition: transform .22s ease, color .22s ease;
}

.currency-switcher:focus-within .currency-switcher-chevron {
  color: #d85cff;
  transform: translateY(2px);
}

.currency-switcher select {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  color: #f3edf7;
  background: transparent;
  font-family: Manrope, sans-serif;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .025em;
  cursor: pointer;
}

.currency-switcher select option {
  color: #fff;
  background: #100717;
}

.nav-auth-actions {
  gap: .55rem;
}

.currency-switcher--desktop {
  flex: 0 0 154px;
}

.currency-switcher--mobile {
  display: none;
  width: 100%;
  min-width: 0;
  margin: .55rem 0 .2rem;
}

/* Solo se animan los precios; no se tocan botones ni enlaces. */
.card-price {
  transition: opacity .18s ease, transform .18s ease, filter .18s ease, color .18s ease;
}

.currency-grid--changing .card-price {
  opacity: .08;
  filter: blur(4px);
  transform: translateY(-5px) scale(.96);
}

.currency-grid--changed .card-price {
  animation: currencyPriceEnter .46s cubic-bezier(.2,.8,.2,1) both;
}

@media (min-width: 1240px) {
  .navbar {
    grid-template-columns: minmax(360px,1fr) minmax(250px,330px) minmax(500px,1fr);
  }
}

@media (min-width: 901px) and (max-width: 1239px) {
  .navbar {
    grid-template-columns: minmax(330px,1fr) minmax(205px,255px) minmax(415px,1fr);
    padding-inline: 1rem;
    gap: .6rem;
  }

  .nav-cluster {
    gap: .75rem !important;
  }

  .nav-cluster > a:not(.nav-contact) {
    font-size: .69rem;
  }

  .navbar-brand .brand-wordmark {
    font-size: 1.25rem;
  }

  .navbar-brand .brand-outline {
    width: 40px;
    height: 39px;
  }

  .currency-switcher--desktop {
    min-width: 132px;
    flex-basis: 132px;
  }

  .currency-switcher select {
    font-size: .58rem;
  }

  .nav-auth-button {
    padding-inline: .55rem;
    font-size: .52rem;
  }
}

@media (max-width: 900px) {
  .currency-switcher--desktop {
    display: none;
  }

  .currency-switcher--mobile {
    display: grid;
  }

  .mobile-nav {
    padding-bottom: 1rem;
  }

  .currency-switcher--mobile select {
    font-size: .72rem;
  }
}

@media (max-width: 450px) {
  .currency-switcher--mobile {
    height: 44px;
  }

  .currency-switcher--mobile select {
    font-size: .68rem;
  }
}

@keyframes currencySelectorShine {
  from { left: -30%; }
  to { left: 118%; }
}

@keyframes currencySelectorPulse {
  0%,100% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-2px) scale(1.025); }
}

@keyframes currencyPriceEnter {
  0% { opacity: 0; transform: translateY(7px) scale(.94); filter: blur(4px); }
  65% { opacity: 1; transform: translateY(-1px) scale(1.025); filter: blur(0); }
  100% { opacity: 1; transform: none; filter: none; }
}

@media (prefers-reduced-motion: reduce) {
  .currency-switcher,
  .currency-switcher::before,
  .currency-switcher-icon,
  .currency-grid--changed .card-price {
    animation: none !important;
    transition: none !important;
  }
}


/* =========================================================
   NEXUSTOREX — REPARACIÓN MODAL AUTH / PROCESSING
   El bloque #auth-processing ya existe en index.html.
   Estas reglas evitan que forme parte del flujo normal.
   ========================================================= */

.auth-modal-window {
  max-height: calc(100svh - 2rem);
}

.auth-modal-content {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* Por defecto el proceso SIEMPRE está oculto y fuera del flujo */
.auth-processing {
  position: absolute;
  inset: 0;
  z-index: 25;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(152, 37, 218, .16), transparent 34%),
    rgba(6, 1, 9, .96);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.025);
  transition:
    opacity .28s ease,
    visibility .28s ease,
    transform .28s ease;
}

.auth-processing.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.auth-processing-bg {
  position: absolute;
  inset: -25%;
  opacity: .22;
  background-image:
    linear-gradient(rgba(211, 84, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 84, 255, .08) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(circle at center, #000 0 24%, transparent 68%);
  mask-image: radial-gradient(circle at center, #000 0 24%, transparent 68%);
  transform: perspective(650px) rotateX(62deg) translateY(28%);
  animation: repairedAuthGrid 8s linear infinite;
}

.auth-processing-box {
  position: relative;
  z-index: 2;
  width: min(330px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
  animation: repairedAuthEnter .4s cubic-bezier(.2,.8,.2,1) both;
}

.auth-processing-orbit {
  position: relative;
  width: 150px;
  height: 150px;
  margin-bottom: 1.2rem;
  display: grid;
  place-items: center;
}

.auth-processing-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(213, 79, 255, .24);
}

.auth-processing-ring--one {
  inset: 3%;
  border-top-color: #df60ff;
  animation: repairedAuthSpin 2.8s linear infinite;
}

.auth-processing-ring--two {
  inset: 18%;
  border-style: dashed;
  border-right-color: #a85cff;
  animation: repairedAuthSpinReverse 2s linear infinite;
}

.auth-processing-ring--three {
  inset: 32%;
  border-color: rgba(255,255,255,.12);
  border-bottom-color: #efb5ff;
  animation: repairedAuthSpin 1.35s linear infinite;
}

.auth-processing-gengar {
  position: relative;
  z-index: 5;
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(255,255,255,.12))
    drop-shadow(0 0 20px rgba(211, 75, 255, .5));
  animation: repairedAuthGengar 1.6s ease-in-out infinite alternate;
}

.auth-processing-spark {
  position: absolute;
  z-index: 6;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e265ff;
  box-shadow: 0 0 14px #e265ff;
  animation: repairedAuthSpark 1.5s ease-in-out infinite;
}

.auth-processing-spark--one {
  top: 8%;
  right: 20%;
}

.auth-processing-spark--two {
  bottom: 14%;
  left: 18%;
  animation-delay: -.75s;
}

.auth-processing-kicker {
  color: #cf5cff;
  font-size: .56rem;
  font-weight: 900;
  letter-spacing: .19em;
}

.auth-processing h3 {
  margin: .7rem 0 0;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.auth-processing p {
  min-height: 1.2em;
  margin: .65rem 0 0;
  color: #92899a;
  font-size: .69rem;
  line-height: 1.55;
}

.auth-processing-progress {
  width: min(280px, 86%);
  height: 5px;
  margin-top: 1.15rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
}

.auth-processing-progress span {
  position: relative;
  display: block;
  width: var(--auth-progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7100ff, #cb00ff, #efadff);
  box-shadow: 0 0 15px rgba(207, 64, 255, .7);
  transition: width .62s cubic-bezier(.2,.8,.2,1);
}

.auth-processing-progress span::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
  animation: repairedAuthProgress 1s linear infinite;
}

.auth-processing-steps {
  margin-top: .8rem;
  display: flex;
  gap: .42rem;
}

.auth-processing-steps i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #332d37;
  transition:
    background .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

.auth-processing-steps i.is-active {
  background: #db5aff;
  box-shadow: 0 0 11px rgba(219, 90, 255, .8);
  transform: scale(1.25);
}

.auth-processing.is-success .auth-processing-ring {
  border-color: rgba(104, 244, 180, .2);
  border-top-color: #65e7ae;
}

.auth-processing.is-success .auth-processing-kicker {
  color: #77e8b5;
}

.auth-processing.is-success .auth-processing-progress span {
  background: linear-gradient(90deg, #674dff, #b24fff, #69efb0);
}

/* Mientras procesa, el formulario queda detrás, pero NO cambia de tamaño */
.auth-modal-content.is-processing > .auth-tabs,
.auth-modal-content.is-processing > .auth-panel,
.auth-modal-content.is-processing > .auth-form-status {
  opacity: .18;
  filter: blur(6px);
  transform: scale(.985);
  pointer-events: none;
  transition:
    opacity .22s ease,
    filter .22s ease,
    transform .22s ease;
}

/* Mantener el modal centrado y correcto en computadoras */
@media (min-width: 701px) {
  .auth-modal-overlay {
    align-items: center;
  }

  .auth-modal-window {
    min-height: 570px;
  }
}

/* Laptop de poca altura */
@media (min-width: 701px) and (max-height: 720px) {
  .auth-modal-overlay {
    align-items: start;
  }

  .auth-modal-window {
    min-height: 540px;
    max-height: none;
    margin: .55rem auto 1rem;
  }

  .auth-modal-showcase {
    min-height: 540px;
  }

  .auth-modal-content {
    padding-top: 1.8rem;
    padding-bottom: 1.4rem;
  }
}

/* Teléfonos: se conserva scroll del overlay y el proceso cabe completo */
@media (max-width: 700px) {
  .auth-modal-window {
    max-height: none;
  }

  .auth-processing {
    border-radius: 0;
  }

  .auth-processing-orbit {
    width: 120px;
    height: 120px;
    margin-bottom: .9rem;
  }

  .auth-processing-gengar {
    width: 50px;
    height: 50px;
  }
}

@keyframes repairedAuthGrid {
  to { background-position: 38px 38px; }
}

@keyframes repairedAuthEnter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.96);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

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

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

@keyframes repairedAuthGengar {
  to {
    transform: translateY(-7px) scale(1.05);
    filter:
      drop-shadow(0 0 15px rgba(255,255,255,.16))
      drop-shadow(0 0 27px rgba(211, 75, 255, .7));
  }
}

@keyframes repairedAuthSpark {
  0%,100% {
    opacity: .3;
    transform: scale(.7);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes repairedAuthProgress {
  from { transform: translateX(-120%); }
  to { transform: translateX(310%); }
}

@media (prefers-reduced-motion: reduce) {
  .auth-processing-bg,
  .auth-processing-ring,
  .auth-processing-gengar,
  .auth-processing-spark,
  .auth-processing-progress span::after {
    animation: none !important;
  }
}


/* Etapa final del acceso: Cargando Dashboard */
.auth-processing.is-dashboard-loading .auth-processing-box {
  animation: dashboardAuthFinal .55s cubic-bezier(.2,.8,.2,1) both;
}
.auth-processing.is-dashboard-loading .auth-processing-orbit {
  animation: dashboardAuthOrbitBoost 1.05s ease-in-out infinite alternate;
}
.auth-processing.is-dashboard-loading .auth-processing-gengar {
  animation: dashboardAuthGengarBoost .8s ease-in-out infinite alternate;
}
.auth-processing.is-dashboard-loading .auth-processing-kicker {
  color: #efb2ff;
  text-shadow: 0 0 16px rgba(220,83,255,.34);
}
.auth-processing.is-dashboard-loading h3 {
  text-shadow: 0 0 28px rgba(202,62,255,.2);
}
@keyframes dashboardAuthFinal {
  from { opacity:.2; transform:scale(.96); filter:blur(5px); }
  to { opacity:1; transform:none; filter:none; }
}
@keyframes dashboardAuthOrbitBoost {
  to { transform:scale(1.08); filter:drop-shadow(0 0 20px rgba(210,70,255,.22)); }
}
@keyframes dashboardAuthGengarBoost {
  to { transform:translateY(-8px) scale(1.09); filter:drop-shadow(0 0 30px rgba(218,81,255,.8)); }
}

/* ===== VIDEO HERO + SESIÓN FIREBASE ===== */
.hero-stream-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;opacity:.42;filter:brightness(.6) saturate(1.08) contrast(1.08);transform:scale(1.035);transition:opacity .55s ease,transform 10s linear;pointer-events:none}.hero-section:hover .hero-stream-video{transform:scale(1.075)}.hero-space-overlay{z-index:1;background:linear-gradient(90deg,rgba(4,2,8,.76),rgba(7,4,12,.46) 52%,rgba(4,2,8,.7)),linear-gradient(180deg,rgba(3,1,7,.16),rgba(3,1,7,.78))!important}.hero-mosaic,.hero-light-pillar,.hero-noise,.hero-shell,.hero-bottom-fade{z-index:2}.session-role-pill{display:inline-flex;align-items:center;justify-content:center;min-height:38px;padding:0 12px;border:1px solid rgba(216,92,255,.25);border-radius:10px;color:#eacaf3;background:rgba(126,31,178,.09);font-size:.68rem;font-weight:900;white-space:nowrap}.session-role-pill.is-owner,.session-role-pill.is-admin{color:#f4c6ff;border-color:rgba(216,92,255,.45);box-shadow:0 0 20px rgba(216,92,255,.08)}@media(max-width:900px){.hero-stream-video{opacity:.34;filter:brightness(.52) saturate(1.02)}}@media(prefers-reduced-motion:reduce){.hero-stream-video{display:none!important}}


/* ===== AUTH FIREBASE: MENSAJES Y RECUPERACIÓN ===== */
.auth-form-status--success,
.auth-form-status--error,
.auth-form-status--warning {
  padding: .72rem .82rem;
  border-radius: .7rem;
  font-weight: 700;
  animation: authPanelEnter .25s ease both;
}
.auth-form-status--success {
  color: #aaf4cd;
  border: 1px solid rgba(83, 226, 153, .28);
  background: rgba(44, 146, 96, .12);
}
.auth-form-status--error {
  color: #ffb7c5;
  border: 1px solid rgba(255, 86, 120, .28);
  background: rgba(152, 28, 55, .14);
}
.auth-form-status--warning {
  color: #f2d7a6;
  border: 1px solid rgba(224, 173, 77, .27);
  background: rgba(137, 93, 19, .13);
}
.auth-recovery-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  margin: -.1rem 0 .15rem;
}
.auth-recovery-actions button {
  min-height: 36px;
  padding: .48rem .6rem;
  border: 1px solid rgba(188, 85, 235, .24);
  border-radius: .58rem;
  color: #a99eb0;
  background: rgba(18, 6, 24, .74);
  font: inherit;
  font-size: .58rem;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.auth-recovery-actions button:hover {
  color: #fff;
  border-color: rgba(218, 91, 255, .55);
  background: rgba(93, 25, 125, .28);
  transform: translateY(-1px);
}
.auth-recovery-actions button:disabled,
.auth-primary-button:disabled {
  opacity: .58;
  cursor: wait;
  transform: none !important;
}
@media (max-width: 450px) {
  .auth-recovery-actions { grid-template-columns: 1fr; }
}

/* ===== AUTH V4: AYUDA BAJO DEMANDA ===== */
.auth-help-toggle{
  min-height:34px;border:0;background:transparent;color:#a790b5;
  font:inherit;font-size:.62rem;font-weight:800;cursor:pointer;text-decoration:underline;
  text-underline-offset:3px;justify-self:center;
}
.auth-help-toggle:hover{color:#fff}
.auth-recovery-actions.is-hidden{display:none!important}
.auth-recovery-actions{margin-top:-.25rem}
.hero-stream-video{object-fit:cover!important;object-position:center!important;filter:saturate(1.08) contrast(1.05) brightness(.72)!important}

.card-generic-logo{position:absolute;inset:0;display:grid;place-items:center;align-content:center;gap:.5rem;background:radial-gradient(circle at 50% 42%,rgba(191,55,244,.22),transparent 34%),#09030e;color:#fff}
.card-generic-logo b{font-family:Sora,Manrope,sans-serif;font-size:3rem;letter-spacing:-.06em}
.card-generic-logo small{font-size:.58rem;letter-spacing:.18em;text-transform:uppercase;color:#a895b0;font-weight:900}

/* ===== V5 PRODUCCIÓN ===== */
.filters-wrapper{
  display:flex!important;
  flex-wrap:nowrap!important;
  gap:8px!important;
  overflow-x:auto;
  padding:4px 2px 10px;
  scrollbar-width:thin;
  scrollbar-color:rgba(176,72,218,.45) transparent;
  scroll-snap-type:x proximity;
}
.filter-btn{flex:0 0 auto;scroll-snap-align:start;white-space:nowrap}
.search-box input::placeholder{color:#8c8493}
.auth-security-note{display:none!important}
.seller-media{object-fit:cover!important}
@media(max-width:720px){
  .catalog-toolbar{display:grid!important;grid-template-columns:1fr!important}
  .result-count{justify-self:start}
}

/* V7 rendimiento móvil */
@media(max-width:720px){
  .site-header{backdrop-filter:blur(12px)!important}
  .service-card:hover,.platform-marquee:hover{transform:none!important}
}


/* ===== V8: CONTRASTE CONSISTENTE EN TODOS LOS NAVEGADORES ===== */
button,
input,
select,
textarea {
  color: inherit;
}
button {
  color: var(--color-text, #f8f7ff);
}
select,
option,
optgroup {
  color: #f8f7ff;
  background-color: #09050f;
}
input,
textarea {
  caret-color: #d85cff;
}
input::placeholder,
textarea::placeholder {
  color: #777080;
  opacity: 1;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px #09050f inset !important;
  box-shadow: 0 0 0 1000px #09050f inset !important;
  transition: background-color 9999s ease-out 0s;
}
input[type="file"] {
  color: #d8cfde;
}
input[type="file"]::file-selector-button {
  margin-right: 10px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(216,92,255,.28);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(115deg,#8e1ad4,#6114b9);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
input[type="file"]::file-selector-button:hover {
  filter: brightness(1.12);
}
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  color: #918797;
  -webkit-text-fill-color: #918797;
  opacity: .7;
}
