:root {
  color-scheme: dark;
}

body {
  background: #05060a;
  min-height: 100vh;
}

.bg-gradient {
  position: fixed;
  inset: -20% 0 0 0;
  background: radial-gradient(circle at 20% 20%, rgba(124, 92, 255, 0.35), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(93, 232, 255, 0.22), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(199, 181, 255, 0.18), transparent 50%);
  z-index: -2;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="140" height="140" viewBox="0 0 140 140"%3E%3Cfilter id="n" x="0" y="0" width="100%25" height="100%25"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="2" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="140" height="140" filter="url(%23n)" opacity="0.07"/%3E%3C/svg%3E');
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: 20px;
}

.glass-button {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: all 0.3s ease;
}

.glass-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(124, 92, 255, 0.35);
}

.neon-border {
  border: 1px solid rgba(124, 92, 255, 0.6);
  box-shadow: 0 0 24px rgba(124, 92, 255, 0.35);
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.glow-text {
  text-shadow: 0 0 18px rgba(124, 92, 255, 0.6);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
}

.grid-dots {
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.4;
}

.section-padding {
  padding: 5rem 0;
}

.scroll-snap {
  scroll-behavior: smooth;
}

.sidebar {
  position: sticky;
  top: 6rem;
}

.tag {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.4);
  font-size: 0.75rem;
}

.gradient-text {
  background: linear-gradient(120deg, #7C5CFF, #5DE8FF);
  -webkit-background-clip: text;
  color: transparent;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.pill {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.18);
  border: 1px solid rgba(37, 211, 102, 0.55);
  color: white;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  width: 1.2rem;
  height: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
}

.whatsapp-text {
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .whatsapp-fab {
    right: 1rem;
    bottom: 1rem;
  }

  .whatsapp-text {
    display: none;
  }
}
