* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.main-container {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Background Styles */
.background-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 100%);
  z-index: 0;
}

.ambient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(34, 197, 94, 0.1) 100%);
  z-index: 1;
}

.radial-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(34, 197, 94, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 1) 100%);
  z-index: 2;
}

.particles-container {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.6);
  filter: blur(0.5px);
}

.particle.large {
  background: rgba(34, 197, 94, 0.2);
  filter: blur(2px);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem;
}

.nav-content {
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 1rem;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #22c55e;
}

.nav-icon {
  width: 1rem;
  height: 1rem;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
  color: #22c55e;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.menu-icon,
.close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.hidden {
  display: none;
}

.mobile-menu {
  position: fixed;
  left: 1rem;
  right: 1rem;
  top: 5rem;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 1rem;
  opacity: 0;
  transform: translateY(-1rem);
  transition: all 0.3s ease;
  pointer-events: none;
}

.mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  color: #d1d5db;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(34, 197, 94, 0.1);
}

/* Hero Section */
.hero-section {
  position: relative;
  z-index: 20;
  padding: 5rem 0 8rem;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 8rem 0;
  }
}

.hero-content {
  animation: fadeInUp 0.6s ease-out;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-dot {
  position: relative;
  display: flex;
  width: 0.5rem;
  height: 0.5rem;
}

.ping {
  position: absolute;
  display: inline-flex;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #22c55e;
  opacity: 0.75;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.dot {
  position: relative;
  display: inline-flex;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #16a34a;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background: #22c55e;
  color: #000;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.cta-button:hover {
  background: #16a34a;
}

.button-icon {
  width: 1rem;
  height: 1rem;
}

/* Features Section */
.features-section {
  position: relative;
  z-index: 20;
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  animation: fadeInUp 0.6s ease-out;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  backdrop-filter: blur(4px);
  background: rgba(17, 24, 39, 0.5);
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  border-color: rgba(34, 197, 94, 0.5);
}

.feature-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #22c55e;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: #9ca3af;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-10px) translateX(5px);
  }
  50% {
    transform: translateY(5px) translateX(-5px);
  }
  75% {
    transform: translateY(-5px) translateX(10px);
  }
}
