/* =============================================
   VANTA SCRIPTS — Premium Theme
   Immersive Nebula · Space Grotesk · Purple
   ============================================= */

/* ═══════════════════════════════════════════
   IMMERSIVE OVERLAYS
═══════════════════════════════════════════ */

/* Vignette — darkens the screen edges so content pops */
.vs-vignette {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    transparent 40%,
    rgba(3, 3, 10, 0.55) 75%,
    rgba(2, 2, 8, 0.85) 100%
  );
}

/* Film grain — static, no animation (animated grain triggers full repaints) */
.vs-grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */

html { scroll-behavior: smooth; }

.vs-hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
  position: relative;
  will-change: transform, opacity;
  transform-origin: top center;
}

/* Radial spotlight glow that sits behind the hero text */
.vs-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: min(900px, 120vw);
  height: min(600px, 80vw);
  background: radial-gradient(
    ellipse at center,
    rgba(109, 40, 217, 0.22) 0%,
    rgba(88, 28, 135, 0.12) 35%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: vs-glow-pulse 6s ease-in-out infinite alternate;
}

@keyframes vs-glow-pulse {
  0%   { opacity: 0.7; transform: translate(-50%, -60%) scale(1); }
  100% { opacity: 1;   transform: translate(-50%, -60%) scale(1.12); }
}

.vs-hero-inner {
  position: relative;
  z-index: 1;
}

.vs-hero-inner {
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Badge */
.vs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 10px;
  border-radius: 99px;
  border: 1px solid rgba(139,92,246,0.22);
  background: rgba(139,92,246,0.07);
  color: rgba(167,139,250,0.85);
  font-size: 0.71875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 2.25rem;
  animation: vs-fade-up 700ms cubic-bezier(0.16,1,0.3,1) both;
}

.vs-hero-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8b5cf6;
  box-shadow: 0 0 7px #8b5cf6;
  animation: vs-dot-pulse 2.2s ease-in-out infinite;
}

@keyframes vs-dot-pulse {
  0%, 100% { box-shadow: 0 0 4px #8b5cf6; transform: scale(1); }
  50%       { box-shadow: 0 0 14px #a78bfa; transform: scale(1.35); }
}

/* Title */
.vs-hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-size: clamp(3.25rem, 8.5vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.05em;
  margin-bottom: 1.75rem;
  color: #f4f0ff;
}

.vs-hero-line-plain {
  display: block;
}

/* The gradient word inside the title */
.vs-hero-gradient-word {
  background: linear-gradient(125deg, #c4b5fd 0%, #8b5cf6 40%, #6d28d9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: vs-text-sweep 5s linear infinite;
}

/* Subtitle */
.vs-hero-sub {
  font-size: clamp(0.9375rem, 2.2vw, 1.125rem);
  color: rgba(244,240,255,0.45);
  line-height: 1.75;
  max-width: 480px;
  margin: 0 auto 2.75rem;
  font-weight: 400;
}

/* CTAs */
.vs-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 3.75rem;
}

.vs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  background: #8b5cf6;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(139,92,246,0.45);
  box-shadow: 0 0 28px rgba(139,92,246,0.28), 0 4px 14px rgba(0,0,0,0.3);
  transition: all 200ms cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
  letter-spacing: -0.01em;
}

.vs-btn-primary:hover {
  background: #7c3aed;
  box-shadow: 0 0 44px rgba(139,92,246,0.5), 0 8px 24px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}

.vs-btn-primary svg {
  transition: transform 200ms cubic-bezier(0.16,1,0.3,1);
}
.vs-btn-primary:hover svg { transform: translateY(3px); }

.vs-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  background: transparent;
  color: rgba(244,240,255,0.5);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 200ms cubic-bezier(0.16,1,0.3,1);
  letter-spacing: -0.01em;
}

.vs-btn-ghost:hover {
  color: #f4f0ff;
  border-color: rgba(139,92,246,0.28);
  background: rgba(139,92,246,0.05);
}

/* Stats strip */
.vs-stats-strip {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.055);
  background: rgba(255,255,255,0.018);
  backdrop-filter: blur(16px);
}

.vs-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 1.5rem;
}

.vs-stat-num {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
}

.vs-stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,240,255,0.28);
}

.vs-stat-sep {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* Scroll hint */
.vs-hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: vs-fade-up 800ms 1.1s cubic-bezier(0.16,1,0.3,1) both;
}

.vs-scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(139,92,246,0.35);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.vs-scroll-wheel {
  width: 3px;
  height: 7px;
  background: #8b5cf6;
  border-radius: 99px;
  animation: vs-scroll-wheel 2.2s ease-in-out infinite;
}

@keyframes vs-scroll-wheel {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(10px); opacity: 0; }
  71%  { transform: translateY(0); opacity: 0; }
  100% { opacity: 1; }
}

@keyframes vs-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════
   SECTION DIVIDER
═══════════════════════════════════════════ */

.vs-section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(139,92,246,0.2) 30%, rgba(139,92,246,0.2) 70%, transparent 100%);
  margin: 0;
}

/* ═══════════════════════════════════════════
   FEATURE STRIP
═══════════════════════════════════════════ */

.vs-features {
  padding: 3.5rem 0 3rem;
}

.vs-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.055);
}

.vs-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 1.5rem 1.25rem;
  background: rgba(8, 5, 20, 0.82);
  backdrop-filter: blur(16px);
  transition: background 200ms var(--vs-ease);
}

.vs-feature-card:hover {
  background: rgba(14, 8, 32, 0.92);
}

.vs-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a78bfa;
}

.vs-feature-title {
  font-size: 0.875rem;
  font-weight: 650;
  color: #f4f0ff;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
  line-height: 1.3;
}

.vs-feature-desc {
  font-size: 0.78125rem;
  color: rgba(244,240,255,0.38);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════════ */


.vs-products-section {
  padding-top: 1rem;
  scroll-margin-top: 80px;
}

.vs-products-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-top: 1.5rem;
}

.vs-products-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(139,92,246,0.65);
  margin-bottom: 0.75rem;
}

.vs-products-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #f4f0ff;
  line-height: 1.05;
}

/* Responsive features grid */
@media (max-width: 900px) {
  .vs-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .vs-features-grid { grid-template-columns: 1fr; }
  .vs-hero-title { font-size: clamp(2.75rem, 10vw, 5rem); }
  .vs-stats-strip { flex-wrap: wrap; gap: 1rem; padding: 1rem; }
  .vs-stat-sep { display: none; }
  .vs-stat-item { padding: 0 0.75rem; }
}

/* ═══════════════════════════════════════════
   3D ORBITAL RING (brand name)
═══════════════════════════════════════════ */

.vs-brand-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.vs-orbit-scene {
  position: absolute;
  inset: -20px -24px;
  pointer-events: none;
  perspective: 400px;
  transform-style: preserve-3d;
}

/* Three rings at different 3D tilt angles */
.vs-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
  transform-style: preserve-3d;
}

.vs-orbit-ring-1 {
  border-image: none;
  background: transparent;
  box-shadow: inset 0 0 0 1.5px rgba(139,92,246,0.5);
  border-radius: 50%;
  transform: rotateX(75deg);
  animation: vs-orbit-spin 4s linear infinite;
}

.vs-orbit-ring-2 {
  box-shadow: inset 0 0 0 1.5px rgba(167,139,250,0.35);
  border-radius: 50%;
  transform: rotateX(75deg) rotateZ(60deg);
  animation: vs-orbit-spin 6s linear infinite reverse;
}

.vs-orbit-ring-3 {
  box-shadow: inset 0 0 0 1.5px rgba(109,40,217,0.4);
  border-radius: 50%;
  transform: rotateX(75deg) rotateZ(120deg);
  animation: vs-orbit-spin 5s linear infinite;
}

@keyframes vs-orbit-spin {
  from { transform: rotateX(75deg) rotateZ(0deg); }
  to   { transform: rotateX(75deg) rotateZ(360deg); }
}

.vs-orbit-ring-2 {
  animation-name: vs-orbit-spin-2;
}
@keyframes vs-orbit-spin-2 {
  from { transform: rotateX(75deg) rotateZ(60deg); }
  to   { transform: rotateX(75deg) rotateZ(420deg); }
}

.vs-orbit-ring-3 {
  animation-name: vs-orbit-spin-3;
}
@keyframes vs-orbit-spin-3 {
  from { transform: rotateX(75deg) rotateZ(120deg); }
  to   { transform: rotateX(75deg) rotateZ(480deg); }
}

/* Glowing dot that travels along each ring */
.vs-orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4b5fd;
  top: 50%;
  left: 50%;
  margin: -3px 0 0 -3px;
  box-shadow: 0 0 8px 3px rgba(196,181,253,0.8);
  transform-style: preserve-3d;
}

.vs-orbit-dot-1 {
  animation: vs-dot-travel-1 4s linear infinite;
}
.vs-orbit-dot-2 {
  animation: vs-dot-travel-2 6s linear infinite reverse;
  background: #a78bfa;
  box-shadow: 0 0 8px 3px rgba(167,139,250,0.7);
}
.vs-orbit-dot-3 {
  animation: vs-dot-travel-3 5s linear infinite;
  background: #818cf8;
  box-shadow: 0 0 8px 3px rgba(129,140,248,0.7);
}

/* Each dot follows its ring's plane — offset by the ring's ellipse radius */
@keyframes vs-dot-travel-1 {
  from { transform: rotateX(75deg) rotateZ(0deg) translateX(calc(50% + 14px)); }
  to   { transform: rotateX(75deg) rotateZ(360deg) translateX(calc(50% + 14px)); }
}
@keyframes vs-dot-travel-2 {
  from { transform: rotateX(75deg) rotateZ(60deg) translateX(calc(50% + 14px)); }
  to   { transform: rotateX(75deg) rotateZ(420deg) translateX(calc(50% + 14px)); }
}
@keyframes vs-dot-travel-3 {
  from { transform: rotateX(75deg) rotateZ(120deg) translateX(calc(50% + 14px)); }
  to   { transform: rotateX(75deg) rotateZ(480deg) translateX(calc(50% + 14px)); }
}

/* ── Design Tokens ── */
:root {
  --vs-bg:          #07070e;
  --vs-base:        #0a0a14;
  --vs-elevated:    #0f0f1e;
  --vs-surface:     rgba(255, 255, 255, 0.04);
  --vs-surface-2:   rgba(255, 255, 255, 0.07);
  --vs-border:      rgba(255, 255, 255, 0.07);
  --vs-border-hover:rgba(139, 92, 246, 0.35);

  --vs-purple:      #8b5cf6;
  --vs-purple-dim:  #6d28d9;
  --vs-purple-soft: #a78bfa;
  --vs-purple-glow: rgba(139, 92, 246, 0.18);

  --vs-text-1:      #f4f0ff;
  --vs-text-2:      rgba(244, 240, 255, 0.65);
  --vs-text-3:      rgba(244, 240, 255, 0.35);

  --vs-radius:      14px;
  --vs-radius-lg:   20px;

  --vs-ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --vs-ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --vs-duration:    220ms;
}

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

body {
  background-color: #05050c !important;
  color: var(--vs-text-1) !important;
  font-family: 'Space Grotesk', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */

/* Hide SellAuth's default header component wrapper margin */
header.component {
  margin-bottom: 0 !important;
  padding: 0 !important;
}

/* Thin floating navbar */
.vs-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 0 1rem;
}

.vs-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 56px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  background: rgba(5, 3, 14, 0.78);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(139,92,246,0.1);
  border-radius: 14px;
  margin-top: 10px;
  box-shadow:
    0 1px 0 rgba(139,92,246,0.08) inset,
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 8px 32px rgba(0,0,0,0.5);
}

/* ── Left: Brand ── */
.vs-navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.vs-nav-logo-wrap {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.vs-nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 1px rgba(139,92,246,0.3);
}

/* Reuse the spinning ring but scaled for nav */
.vs-nav-logo-wrap .vs-logo-ring {
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    #6d28d9 25%,
    #a78bfa 50%,
    #6d28d9 75%,
    transparent 100%
  );
  animation: vs-ring-spin 4s linear infinite;
  z-index: 0;
}
.vs-nav-logo-wrap .vs-logo-ring::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 8px;
  background: #0e0e1c;
}

@keyframes vs-ring-spin { to { transform: rotate(360deg); } }

/* Shop name in nav */
.vs-brand-name {
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 45%, #8b5cf6 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: vs-text-sweep 5s linear infinite !important;
  white-space: nowrap;
}

@keyframes vs-text-sweep {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Orbit scene scaled for navbar */
.vs-navbar-brand .vs-orbit-scene {
  inset: -10px -12px;
}

/* ── Center: Nav links ── */
.vs-navbar-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.vs-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(244,240,255,0.55);
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 180ms var(--vs-ease), background 180ms var(--vs-ease), border-color 180ms var(--vs-ease);
  white-space: nowrap;
}

.vs-nav-link:hover {
  color: var(--vs-text-1);
  background: rgba(255,255,255,0.05);
}

.vs-nav-link-active {
  color: var(--vs-purple-soft) !important;
  background: rgba(139,92,246,0.1) !important;
  border-color: rgba(139,92,246,0.2) !important;
}

/* ── Right: Actions ── */
.vs-navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Discord button */
.vs-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(88,101,242,0.15);
  border: 1px solid rgba(88,101,242,0.3);
  color: #9da8f0;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 180ms var(--vs-ease);
  white-space: nowrap;
}

.vs-discord-btn:hover {
  background: rgba(88,101,242,0.28);
  border-color: rgba(88,101,242,0.5);
  color: #c5cbf8;
  box-shadow: 0 0 16px rgba(88,101,242,0.25);
}

/* Icon buttons (cart, account) */
.vs-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--vs-border);
  color: rgba(244,240,255,0.5);
  background: transparent;
  text-decoration: none;
  transition: all 180ms var(--vs-ease);
}

.vs-icon-btn:hover {
  color: var(--vs-text-1);
  background: var(--vs-surface);
  border-color: rgba(139,92,246,0.25);
}

.vs-icon-btn-active {
  color: var(--vs-purple-soft) !important;
  background: rgba(139,92,246,0.1) !important;
  border-color: rgba(139,92,246,0.25) !important;
}

/* Cart badge */
.vs-cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  background: var(--vs-purple);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* Login button */
.vs-nav-login-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--vs-purple);
  border: 1px solid rgba(139,92,246,0.5);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 180ms var(--vs-ease);
  white-space: nowrap;
}

.vs-nav-login-btn:hover {
  background: #7c3aed;
  box-shadow: 0 0 16px rgba(139,92,246,0.35);
}

/* Currency selector */
.vs-currency-sel select {
  background: transparent !important;
  border: 1px solid var(--vs-border) !important;
  border-radius: 8px !important;
  color: rgba(244,240,255,0.5) !important;
  font-size: 0.75rem !important;
  height: 32px !important;
  padding: 0 6px !important;
  width: 72px !important;
}

/* Mobile hamburger */
.vs-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--vs-border);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.vs-mobile-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: rgba(244,240,255,0.6);
  border-radius: 99px;
  transition: all 220ms var(--vs-ease);
}

.vs-toggle-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.vs-toggle-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.vs-toggle-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile drawer */
.vs-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px 12px;
  max-width: 1280px;
  margin: 4px auto 0;
  background: rgba(7,7,14,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
}

.vs-mobile-menu-open {
  display: flex;
}

.vs-mobile-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(244,240,255,0.55);
  text-decoration: none;
  transition: all 180ms var(--vs-ease);
}

.vs-mobile-link:hover,
.vs-mobile-link-active {
  color: var(--vs-text-1);
  background: rgba(255,255,255,0.05);
}

.vs-mobile-discord {
  color: #9da8f0 !important;
  border-top: 1px solid var(--vs-border);
  margin-top: 4px;
  padding-top: 12px;
}

/* Logo image (used outside nav too) */
.vs-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 1px rgba(139,92,246,0.3), 0 8px 24px rgba(139,92,246,0.2);
}

.vs-logo-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.vs-logo-ring {
  position: absolute;
  inset: -3px;
  border-radius: 15px;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    #6d28d9 25%,
    #a78bfa 50%,
    #6d28d9 75%,
    transparent 100%
  );
  animation: vs-ring-spin 4s linear infinite;
  z-index: 0;
}
.vs-logo-ring::after {
  content: '';
  position: absolute;
  inset: 2.5px;
  border-radius: 13px;
  background: #0e0e1c;
}

/* Lightning sparks */
.vs-spark-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.vs-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c4b5fd;
  box-shadow: 0 0 6px 2px rgba(196,181,253,0.8);
  top: 50%;
  left: 50%;
  transform-origin: center;
  animation: vs-spark-orbit 3.2s linear infinite;
}
.vs-spark:nth-child(2) { animation-delay: -0.8s; }
.vs-spark:nth-child(3) { animation-delay: -1.6s; }
.vs-spark:nth-child(4) { animation-delay: -2.4s; }

@keyframes vs-spark-orbit {
  from { transform: translate(-50%,-50%) rotate(0deg) translateX(68px); }
  to   { transform: translate(-50%,-50%) rotate(360deg) translateX(68px); }
}

/* Responsive */
@media (max-width: 768px) {
  .vs-navbar-links { display: none; }
  .vs-discord-label { display: none; }
  .vs-discord-btn { padding: 6px 10px; }
  .vs-mobile-toggle { display: flex; }
  .vs-navbar-inner { padding: 0 0.75rem; gap: 8px; }
}

@media (max-width: 480px) {
  .vs-discord-btn { display: none; }
}

/* ═══════════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════════ */

.bg-card {
  background: var(--vs-elevated) !important;
}

a.block.h-full.bg-card {
  background: rgba(12, 10, 24, 0.75) !important;
  border: 1px solid rgba(139,92,246,0.1) !important;
  border-radius: var(--vs-radius) !important;
  overflow: hidden !important;
  backdrop-filter: blur(12px) !important;
  transition:
    transform var(--vs-duration) var(--vs-ease),
    border-color var(--vs-duration) var(--vs-ease),
    box-shadow var(--vs-duration) var(--vs-ease) !important;
  cursor: pointer !important;
}

a.block.h-full.bg-card:hover {
  transform: translateY(-4px) scale(1.006) !important;
  border-color: rgba(139,92,246,0.35) !important;
  box-shadow:
    0 0 0 1px rgba(139,92,246,0.18),
    0 0 40px rgba(139,92,246,0.15),
    0 20px 60px rgba(0,0,0,0.5) !important;
}

/* Card image zone */
a.block.h-full.bg-card > div > div:first-child {
  background: rgba(10, 10, 20, 0.5) !important;
  border-bottom: 1px solid var(--vs-border) !important;
}

/* Card content */
a.block.h-full.bg-card h3 {
  color: var(--vs-text-1) !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
  line-height: 1.3 !important;
}

a.block.h-full.bg-card .text-t-primary\/50 {
  color: var(--vs-text-3) !important;
  font-size: 0.75rem !important;
}

/* Price */
a.block.h-full.bg-card .text-accent-500 {
  color: var(--vs-purple-soft) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

/* Badges */
.badges .bg-accent-500,
.badges [style*="background-color"] {
  border-radius: 6px !important;
  font-size: 0.625rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  box-shadow: 0 0 12px rgba(139,92,246,0.3) !important;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */

.vs-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 500ms var(--vs-ease),
    transform 500ms var(--vs-ease);
}
.vs-reveal.in { opacity: 1; transform: none; }

.vs-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 450ms var(--vs-ease),
    transform 450ms var(--vs-ease);
}
.vs-stagger.in > *:nth-child(1)  { opacity:1; transform:none; transition-delay: 40ms; }
.vs-stagger.in > *:nth-child(2)  { opacity:1; transform:none; transition-delay: 80ms; }
.vs-stagger.in > *:nth-child(3)  { opacity:1; transform:none; transition-delay: 120ms; }
.vs-stagger.in > *:nth-child(4)  { opacity:1; transform:none; transition-delay: 160ms; }
.vs-stagger.in > *:nth-child(5)  { opacity:1; transform:none; transition-delay: 200ms; }
.vs-stagger.in > *:nth-child(6)  { opacity:1; transform:none; transition-delay: 240ms; }
.vs-stagger.in > *:nth-child(7)  { opacity:1; transform:none; transition-delay: 280ms; }
.vs-stagger.in > *:nth-child(8)  { opacity:1; transform:none; transition-delay: 320ms; }
.vs-stagger.in > *:nth-child(n+9){ opacity:1; transform:none; transition-delay: 360ms; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */

/* Primary CTA */
button[type="submit"],
a.bg-accent-500,
button.bg-accent-500 {
  background: var(--vs-purple) !important;
  border: 1px solid rgba(139,92,246,0.4) !important;
  border-radius: 10px !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  letter-spacing: -0.01em !important;
  box-shadow: 0 0 0 0 rgba(139,92,246,0) !important;
  transition: all var(--vs-duration) var(--vs-ease) !important;
  cursor: pointer !important;
}

button[type="submit"]:hover,
a.bg-accent-500:hover,
button.bg-accent-500:hover {
  background: #7c3aed !important;
  box-shadow: 0 0 20px rgba(139,92,246,0.35), 0 4px 16px rgba(0,0,0,0.3) !important;
  transform: translateY(-1px) !important;
}

button[type="submit"]:active,
a.bg-accent-500:active {
  transform: scale(0.98) !important;
}

/* ═══════════════════════════════════════════
   INPUTS
═══════════════════════════════════════════ */

input, textarea, select {
  background: var(--vs-surface) !important;
  border: 1px solid var(--vs-border) !important;
  border-radius: 10px !important;
  color: var(--vs-text-1) !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 0.875rem !important;
  transition: border-color var(--vs-duration) var(--vs-ease),
              box-shadow var(--vs-duration) var(--vs-ease) !important;
}

input:focus, textarea:focus, select:focus {
  border-color: rgba(139,92,246,0.5) !important;
  box-shadow: 0 0 0 3px rgba(139,92,246,0.1) !important;
  outline: none !important;
}

input::placeholder, textarea::placeholder {
  color: var(--vs-text-3) !important;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */

.vs-footer {
  margin-top: 5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: transparent;
}

.vs-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 2rem 1.75rem;
}

.vs-footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.vs-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vs-footer-brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.vs-footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  border: 1px solid rgba(139,92,246,0.25);
}

.vs-footer-name {
  font-size: 1rem;
  font-weight: 700;
  color: #f4f0ff;
  letter-spacing: -0.02em;
}

.vs-footer-tagline {
  font-size: 0.8125rem;
  color: rgba(244,240,255,0.35);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.vs-footer-socials {
  display: flex;
  gap: 8px;
}

.vs-footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(244,240,255,0.35);
  transition: color 180ms var(--vs-ease), border-color 180ms var(--vs-ease), background 180ms var(--vs-ease);
}

.vs-footer-social-icon:hover {
  color: #9da8f0;
  border-color: rgba(88,101,242,0.35);
  background: rgba(88,101,242,0.1);
}

.vs-footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vs-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vs-footer-col-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #f4f0ff;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.vs-footer-link {
  font-size: 0.8125rem;
  color: rgba(244,240,255,0.4);
  text-decoration: none;
  transition: color 160ms var(--vs-ease);
  width: fit-content;
}

.vs-footer-link:hover {
  color: rgba(139,92,246,0.85);
}

.vs-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.vs-footer-copy {
  font-size: 0.75rem;
  color: rgba(244,240,255,0.25);
}

.vs-footer-motto {
  font-size: 0.75rem;
  color: rgba(244,240,255,0.2);
}

@media (max-width: 768px) {
  .vs-footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .vs-footer-cols { grid-template-columns: repeat(2, 1fr); }
  .vs-footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 480px) {
  .vs-footer-cols { grid-template-columns: 1fr; }
  .vs-footer-inner { padding: 2.5rem 1.25rem 1.5rem; }
}

/* ═══════════════════════════════════════════
   PAGE HEADINGS
═══════════════════════════════════════════ */

h1, h2 {
  letter-spacing: -0.03em !important;
  font-weight: 700 !important;
}

h3 { letter-spacing: -0.015em !important; }

.component > h2,
.component > div > h2 {
  font-size: 1.75rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  color: var(--vs-text-1) !important;
}

/* ═══════════════════════════════════════════
   SECTION DIVIDERS
═══════════════════════════════════════════ */

.border-white\/5 { border-color: var(--vs-border) !important; }

/* ═══════════════════════════════════════════
   FEEDBACK / REVIEW CARDS
═══════════════════════════════════════════ */

.bg-card.border {
  background: var(--vs-elevated) !important;
  border-color: var(--vs-border) !important;
  border-radius: var(--vs-radius) !important;
}

/* ═══════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════ */

.component[data-component-id="announcement"] > div {
  background: rgba(109,40,217,0.12) !important;
  border-color: rgba(139,92,246,0.2) !important;
  border-radius: 10px !important;
  backdrop-filter: blur(12px) !important;
  font-size: 0.8125rem !important;
}

/* ═══════════════════════════════════════════
   MODALS
═══════════════════════════════════════════ */

[x-show="appCustomer.modalIsOpen"] > div > div,
[x-show="appTickets.modalIsOpen"] > div > div {
  background: rgba(10, 10, 20, 0.96) !important;
  backdrop-filter: blur(32px) !important;
  border: 1px solid var(--vs-border) !important;
  border-radius: var(--vs-radius-lg) !important;
  box-shadow:
    0 0 0 1px rgba(139,92,246,0.1),
    0 24px 80px rgba(0,0,0,0.6) !important;
}

/* ═══════════════════════════════════════════
   PRODUCT PAGE
═══════════════════════════════════════════ */

.component[data-component-id="product-page"] {
  animation: vs-fade-up 500ms var(--vs-ease) both;
}

@keyframes vs-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════ */

[class*="pagination"] a,
[class*="pagination"] button {
  background: var(--vs-surface) !important;
  border: 1px solid var(--vs-border) !important;
  border-radius: 8px !important;
  color: var(--vs-text-2) !important;
  transition: all var(--vs-duration) var(--vs-ease) !important;
}

[class*="pagination"] a:hover,
[class*="pagination"] button:hover {
  border-color: var(--vs-border-hover) !important;
  color: var(--vs-text-1) !important;
  background: rgba(139,92,246,0.08) !important;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */

.component[data-component-id="faq"] details,
.component[data-component-id="faq"] > div > div {
  border-color: var(--vs-border) !important;
  background: var(--vs-surface) !important;
  border-radius: 10px !important;
}

/* ═══════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════ */

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(139,92,246,0.25);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(139,92,246,0.5); }

/* ═══════════════════════════════════════════
   LIVE STATUS INDICATOR (hero)
═══════════════════════════════════════════ */

.vs-live-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid rgba(34,197,94,0.2);
  background: rgba(34,197,94,0.06);
  color: rgba(134,239,172,0.8);
  font-size: 0.71875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  text-decoration: none;
  transition: border-color 200ms var(--vs-ease), background 200ms var(--vs-ease);
}

.vs-live-status:hover {
  border-color: rgba(34,197,94,0.35);
  background: rgba(34,197,94,0.1);
  color: #86efac;
}

.vs-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  flex-shrink: 0;
  animation: vs-live-pulse 2s ease-in-out infinite;
}

@keyframes vs-live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  60%  { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.vs-live-arrow {
  opacity: 0.55;
  font-size: 0.65rem;
}

/* ═══════════════════════════════════════════
   STATUS PAGE
═══════════════════════════════════════════ */

/* Force green "online" dot on the SellAuth status component */
.component[data-component-id="status-page"] .bg-green-500,
.component[data-component-id="status-page"] [class*="bg-green"],
.component[data-component-id="status-page"] .status-dot {
  background: #22c55e !important;
  box-shadow: 0 0 10px rgba(34,197,94,0.55) !important;
  animation: vs-live-pulse 2s ease-in-out infinite !important;
}

/* Hide the default SellAuth status component title (we have our own) */
.vs-status-component .component[data-component-id="status-page"] > div > h2,
.vs-status-component .component[data-component-id="status-page"] > div > p:first-child {
  display: none !important;
}

.vs-status-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.vs-status-hero {
  text-align: center;
  padding: 3rem 0 2.5rem;
}

.vs-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 18px;
  border-radius: 99px;
  border: 1px solid rgba(34,197,94,0.25);
  background: rgba(34,197,94,0.08);
  color: #86efac;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
}

.vs-status-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #f4f0ff;
  line-height: 1.05;
  margin-bottom: 0.875rem;
}

.vs-status-sub {
  font-size: 0.9375rem;
  color: rgba(244,240,255,0.42);
  line-height: 1.65;
}

.vs-status-component {
  margin-bottom: 0.5rem;
}

/* Scripts list section */
.vs-status-scripts-header {
  margin-bottom: 1.25rem;
}

.vs-status-scripts-title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #f4f0ff;
  margin-top: 0.35rem;
}

.vs-status-product-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vs-status-product-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(139,92,246,0.1);
  background: rgba(10, 7, 22, 0.75);
  backdrop-filter: blur(12px);
  text-decoration: none;
  transition: border-color 200ms var(--vs-ease), background 200ms var(--vs-ease), transform 200ms var(--vs-ease);
}

.vs-status-product-card:hover {
  border-color: rgba(139,92,246,0.28);
  background: rgba(14, 9, 28, 0.9);
  transform: translateX(4px);
}

.vs-status-product-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.vs-status-product-img-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(139,92,246,0.15);
  background: rgba(139,92,246,0.08);
}

.vs-status-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vs-status-product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(139,92,246,0.5);
}

.vs-status-product-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #f4f0ff;
  letter-spacing: -0.015em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vs-status-product-desc {
  font-size: 0.75rem;
  color: rgba(244,240,255,0.35);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vs-status-product-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.vs-status-online-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  border-radius: 99px;
  border: 1px solid rgba(34,197,94,0.2);
  background: rgba(34,197,94,0.07);
  color: #86efac;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.vs-status-arrow {
  color: rgba(244,240,255,0.25);
  transition: color 200ms var(--vs-ease), transform 200ms var(--vs-ease);
}

.vs-status-product-card:hover .vs-status-arrow {
  color: rgba(139,92,246,0.7);
  transform: translateX(3px);
}

.vs-status-empty {
  padding: 2rem;
  text-align: center;
  color: rgba(244,240,255,0.3);
  font-size: 0.875rem;
}

/* ── Status page: component wrappers hidden, rows built by JS ── */
.vs-status-component { display: none !important; }

/* ═══════════════════════════════════════════
   TESTIMONIALS / REVIEWS
═══════════════════════════════════════════ */

.vs-testimonials {
  padding: 4rem 0;
}

.vs-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 2rem;
}

.vs-reviews-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.vs-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.vs-review-date-top {
  font-size: 0.6875rem;
  color: rgba(244,240,255,0.3);
  letter-spacing: 0.01em;
}

.vs-review-card {
  background: rgba(10, 7, 22, 0.8);
  border: 1px solid rgba(139,92,246,0.1);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: border-color 220ms var(--vs-ease), box-shadow 220ms var(--vs-ease), transform 220ms var(--vs-ease);
}

.vs-review-card:hover {
  border-color: rgba(139,92,246,0.25);
  box-shadow: 0 0 32px rgba(139,92,246,0.08), 0 12px 40px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

.vs-review-stars {
  color: #fbbf24;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.vs-review-text {
  font-size: 0.84375rem;
  color: rgba(244,240,255,0.62);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.vs-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vs-review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6d28d9, #a78bfa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  flex-shrink: 0;
}

.vs-review-name {
  font-size: 0.8125rem;
  font-weight: 650;
  color: #f4f0ff;
  letter-spacing: -0.01em;
}

.vs-review-date {
  font-size: 0.6875rem;
  color: rgba(244,240,255,0.3);
  margin-top: 1px;
}

.vs-reviews-cta {
  text-align: center;
}

@media (max-width: 1100px) {
  .vs-reviews-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .vs-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .vs-reviews-grid,
  .vs-reviews-grid-4 { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   HOME FAQ
═══════════════════════════════════════════ */

.vs-home-faq {
  padding: 4rem 0;
}

.vs-faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vs-faq-item {
  background: rgba(10, 7, 22, 0.75);
  border: 1px solid rgba(139,92,246,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 200ms var(--vs-ease);
}

.vs-faq-item[open] {
  border-color: rgba(139,92,246,0.22);
}

.vs-faq-item:hover {
  border-color: rgba(139,92,246,0.18);
}

.vs-faq-q {
  list-style: none;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #f4f0ff;
  letter-spacing: -0.015em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}

.vs-faq-q::-webkit-details-marker { display: none; }

.vs-faq-q::after {
  content: '+';
  font-size: 1.1rem;
  color: rgba(139,92,246,0.6);
  flex-shrink: 0;
  font-weight: 400;
  transition: transform 200ms var(--vs-ease);
}

.vs-faq-item[open] .vs-faq-q::after {
  content: '−';
}

.vs-faq-a {
  padding: 0 1.25rem 1rem;
  font-size: 0.84375rem;
  color: rgba(244,240,255,0.52);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 0.875rem;
}

/* ═══════════════════════════════════════════
   DISCORD CTA SECTION
═══════════════════════════════════════════ */

.vs-discord-cta {
  padding: 4rem 0;
}

.vs-discord-cta-inner {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(88,101,242,0.2);
  background: rgba(5, 3, 20, 0.9);
  overflow: hidden;
  text-align: center;
  padding: 3.5rem 2rem;
}

.vs-discord-cta-inner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(88,101,242,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.vs-discord-cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(88,101,242,0.15);
  border: 1px solid rgba(88,101,242,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9da8f0;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.vs-discord-cta-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #f4f0ff;
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.vs-discord-cta-sub {
  font-size: 0.9375rem;
  color: rgba(244,240,255,0.45);
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.vs-discord-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 10px;
  background: rgba(88,101,242,0.85);
  border: 1px solid rgba(88,101,242,0.5);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 0 30px rgba(88,101,242,0.3), 0 8px 24px rgba(0,0,0,0.3);
  transition: all 200ms var(--vs-ease);
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
}

.vs-discord-cta-btn:hover {
  background: rgba(88,101,242,1);
  box-shadow: 0 0 50px rgba(88,101,242,0.5), 0 8px 32px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}

.vs-discord-cta-members {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.75rem;
  color: rgba(244,240,255,0.3);
  position: relative;
  z-index: 1;
  margin-top: 0.75rem;
}

/* ═══════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}