body {
  background-color: #050505;
  color: #e5e2e3;
  overflow-x: hidden;
}
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.magenta-glow-bg {
  background: radial-gradient(circle at center, rgba(255, 0, 199, 0.15) 0%, transparent 70%);
}
.purple-glow-bg {
  background: radial-gradient(circle at center, rgba(143, 0, 255, 0.12) 0%, transparent 70%);
}
.hero-gradient {
  background: linear-gradient(135deg, #ecb2ff 0%, #bd00ff 45%, #ffade2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-primary {
  background: linear-gradient(135deg, #ecb2ff 0%, #bd00ff 45%, #ffade2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn-primary-gradient {
  background: linear-gradient(135deg, #8F00FF 0%, #bd00ff 50%, #ff2fd6 100%);
}
.btn-primary-gradient:hover {
  box-shadow: 0 0 28px rgba(143, 0, 255, 0.45);
  filter: brightness(1.08);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}
.stat-card {
  background: linear-gradient(180deg, rgba(143, 0, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(236, 178, 255, 0.15);
}
.service-card {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(189, 0, 255, 0.35);
  box-shadow: 0 24px 60px rgba(143, 0, 255, 0.12);
}
.tool-logo {
  height: 28px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.82;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.service-card:hover .tool-logo {
  opacity: 1;
  transform: scale(1.05);
}
.trust-pill {
  background: rgba(143, 0, 255, 0.12);
  border: 1px solid rgba(236, 178, 255, 0.2);
}
.grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.nav-link-active {
  color: #ecb2ff;
  font-weight: 600;
  border-bottom: 2px solid #ecb2ff;
  padding-bottom: 0.25rem;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.8s ease forwards; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #353436; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #514255; }
