* { font-family: 'Inter', sans-serif; }
h1, h2, h3, .font-display { font-family: 'Space Grotesk', 'Inter', sans-serif; }
html { scroll-behavior: smooth; }
body {
  background: #05060f;
  color: #e5e7eb;
  overflow-x: hidden;
}
section[id] { scroll-margin-top: 96px; }
#neural-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.gradient-text {
  background: linear-gradient(135deg, #a78bfa 0%, #60a5fa 50%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.glass {
  background: rgba(10, 12, 25, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
}
.card-hover {
  transition: all .4s cubic-bezier(.2,.8,.2,1);
}
.card-hover:hover {
  transform: translateY(-6px);
  border-color: rgba(167,139,250,0.5);
  box-shadow: 0 20px 60px -20px rgba(139,92,246,0.4);
}
.btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(139,92,246,0.7);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #a78bfa, #60a5fa);
  opacity: 0;
  transition: opacity .3s;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.nav-link {
  position: relative;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a78bfa, #60a5fa);
  transition: width .3s;
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: #a78bfa; }

.pulse-dot {
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #05060f; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #8b5cf6, #3b82f6);
  border-radius: 4px;
}

.price-card {
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(59,130,246,0.1));
  border: 2px solid rgba(139,92,246,0.3);
  transition: all .3s ease;
}
.price-card:hover {
  border-color: rgba(167,139,250,0.6);
  transform: translateY(-4px);
}
.price-card.popular {
  border-color: rgba(167,139,250,0.8);
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(59,130,246,0.15));
}

select, textarea { color-scheme: dark; }
select option { background: #0a0c19; color: #e5e7eb; }
select:invalid { color: #6b7280; }

.skip-link {
  position: absolute;
  top: -52px;
  left: 8px;
  z-index: 100;
  background: #8b5cf6;
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
  font-size: 14px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  color: #9ca3af;
}
.consent input {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  flex: none;
  accent-color: #8b5cf6;
  cursor: pointer;
}
.consent a { color: #a78bfa; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #a78bfa;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up { transition: none; opacity: 1 !important; transform: none !important; }
  .pulse-dot::after { animation: none; }
  .card-hover, .price-card, .btn-primary, .nav-link, .nav-link::after, .skip-link { transition: none; }
}
