* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background: #0a0a0a;
  color: #fff;
}

::selection {
  background: #4ade80;
  color: #000;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: #262626;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #404040;
}

.glass-nav {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(74, 222, 128, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(74, 222, 128, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.5);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: -20;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
  opacity: 0;
}

.delay-200 {
  animation-delay: 0.2s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-600 {
  animation-delay: 0.6s;
}
.delay-800 {
  animation-delay: 0.8s;
}
.delay-1000 {
  animation-delay: 1s;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.cta-btn {
  animation: pulse-green 2.5s ease-in-out infinite;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(74, 222, 128, 0.5);
}

.feature-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
  border-color: rgba(74, 222, 128, 0.2);
  box-shadow: 0 0 30px -5px rgba(74, 222, 128, 0.1);
  transform: translateY(-4px);
}

.feature-card:hover .feature-icon {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

.feature-icon {
  transition: all 0.3s ease;
}

.marquee-track {
  display: flex;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.stat-number {
  background: linear-gradient(to bottom, #ffffff, #737373);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.dot-pattern {
  background-image: radial-gradient(
    rgba(74, 222, 128, 0.08) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
}

.logo-text {
  letter-spacing: -0.05em;
}

.orbit-ring {
  border: 1px dashed rgba(74, 222, 128, 0.15);
  animation: spin-slow 30s linear infinite;
}

.orbit-ring-reverse {
  border: 1px dashed rgba(74, 222, 128, 0.1);
  animation: spin-slow 25s linear infinite reverse;
}

.toast {
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}
