* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #0a0a0f;
  color: #fff;
  overflow-x: hidden;
}

/* Animated Background */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(88, 101, 242, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(114, 137, 218, 0.15) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(88, 101, 242, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(88, 101, 242, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(88, 101, 242, 0.1);
  z-index: 1000;
}

.logo {
  font-size: 1.8em;
  font-weight: 800;
  background: linear-gradient(135deg, #5865f2, #7289da);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.nav-buttons {
  display: flex;
  gap: 15px;
}

.nav-btn {
  padding: 10px 25px;
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.3);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 0.95em;
}

.nav-btn:hover {
  background: rgba(88, 101, 242, 0.2);
  transform: translateY(-2px);
}

.nav-btn.primary {
  background: linear-gradient(135deg, #5865f2, #7289da);
  border: none;
}

.nav-btn.primary:hover {
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 40px 80px;
  z-index: 1;
}

.hero h1 {
  font-size: 6em;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #7289da 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 1.6em;
  color: #b9bbbe;
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
  max-width: 700px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #8e9297;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease 0.6s both;
  justify-content: center;
  align-items: center;
}

.cta-btn {
  padding: 18px 45px;
  font-size: 1.1em;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #5865f2, #7289da);
  color: #fff;
  box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(88, 101, 242, 0.5);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 2px solid rgba(88, 101, 242, 0.3);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(88, 101, 242, 0.6);
}

/* Stats Bar */
.stats-bar {
  display: flex;
  gap: 80px;
  padding: 40px;
  background: rgba(88, 101, 242, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(88, 101, 242, 0.15);
  animation: fadeInUp 0.8s ease 0.8s both;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3em;
  font-weight: 800;
  background: linear-gradient(135deg, #5865f2, #7289da);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95em;
  color: #8e9297;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Features Section */
.section {
  padding: 100px 60px;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 3.5em;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff, #7289da);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2em;
  color: #8e9297;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(88, 101, 242, 0.15);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(88, 101, 242, 0.1),
    rgba(114, 137, 218, 0.1)
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(88, 101, 242, 0.4);
  box-shadow: 0 20px 50px rgba(88, 101, 242, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #5865f2, #7289da);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.feature-icon img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

.feature-card h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: #8e9297;
  line-height: 1.8;
  font-size: 1.05em;
  position: relative;
  z-index: 1;
}

/* Why Choose Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
  max-width: 1400px;
  margin: 0 auto;
}

.why-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(88, 101, 242, 0.15);
  border-radius: 20px;
  padding: 45px;
  transition: all 0.4s;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(88, 101, 242, 0.2);
}

.why-number {
  font-size: 2.5em;
  font-weight: 800;
  background: linear-gradient(135deg, #5865f2, #7289da);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 1.7em;
  margin-bottom: 15px;
}

.why-card p {
  color: #8e9297;
  line-height: 1.8;
  font-size: 1.05em;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 120px 60px;
  background: linear-gradient(
    135deg,
    rgba(88, 101, 242, 0.1),
    rgba(114, 137, 218, 0.05)
  );
  border-top: 1px solid rgba(88, 101, 242, 0.2);
  border-bottom: 1px solid rgba(88, 101, 242, 0.2);
}

.cta-section h2 {
  font-size: 3.5em;
  margin-bottom: 25px;
  font-weight: 800;
}

.cta-section p {
  font-size: 1.3em;
  color: #8e9297;
  margin-bottom: 50px;
}

/* Footer */
footer {
  padding: 80px 60px 40px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(88, 101, 242, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 50px;
}

.footer-section h4 {
  font-size: 1.3em;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #5865f2, #7289da);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #8e9297;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.05em;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(88, 101, 242, 0.1);
  color: #8e9297;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 15px 25px;
  }

  .logo {
    font-size: 1.4em;
  }

  .nav-buttons {
    gap: 8px;
  }

  .nav-btn {
    padding: 8px 15px;
    font-size: 0.85em;
  }

  .hero h1 {
    font-size: 3em;
  }

  .hero-subtitle {
    font-size: 1.2em;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .stats-bar {
    flex-direction: column;
    gap: 30px;
  }

  .section {
    padding: 60px 25px;
  }

  .section-title {
    font-size: 2.2em;
  }

  .features-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}
