/* global guard – belt and braces */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

[x-cloak] {
  display: none;
}

#lc-carousel::-webkit-scrollbar {
  display: none;
}

#lc-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@keyframes reciprocity-spin {
  from {
    transform: rotate(0deg);
  }

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

.reciprocity-svg {
  opacity: 0.1;
  animation: reciprocity-spin 420s linear infinite;
  width: 80%;
  height: 80%;
  margin: 0 auto;
}

#quote-1, #quote-2, #quote-3 { min-height:2lh; }

/* Dark‑mode visual accessibility */
.dark .text-slate-600 { color:#94a3b8; }
.dark .text-slate-700 { color:#cbd5e1; }
.dark #community,
.dark #benefits,
.dark #benefits-immediate,
.dark #power-users { background-image:none !important; background-color:#1e293b; }

/* Hero video */
.hero-video-wrapper{
  background:url('/assets/hero-placeholder.jpg') center/cover no-repeat;
}