/* home.css */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(91, 155, 255, 0.1) 0, transparent 50%),
              radial-gradient(ellipse at 80% 80%, rgba(124, 77, 255, 0.06) 0, transparent 40%),
              #0a0a0f;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 16px;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff, #8888a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  color: #8888a0;
  margin-bottom: 30px;
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-logo {
  width: 220px;
  margin-bottom: 24px;
  animation: float 5s ease-in-out infinite;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 155, 255, 0.2), transparent 70%);
  filter: blur(100px);
  animation: pulse 8s infinite alternate;
  pointer-events: none;
}

.glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  right: -100px;
  top: 20%;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.15), transparent 70%);
  filter: blur(80px);
  animation: pulse 6s infinite alternate-reverse;
  pointer-events: none;
}

@keyframes pulse {
  from { transform: scale(1); opacity: 0.5; }
  to { transform: scale(1.2); opacity: 0.8; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Services cards */
.home-services {
  padding: 80px 40px 90px;
  text-align: center;
}

.home-services h2 {
  font-size: 2.2rem;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fff, #8888a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-services .subtitle {
  color: #8888a0;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.home-services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.home-services .card {
  display: block;
  background: rgba(20, 22, 32, 0.8);
  padding: 28px 24px;
  border-radius: 14px;
  border: 1px solid rgba(78, 140, 255, 0.08);
  transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.home-services .card:hover {
  border-color: rgba(91, 155, 255, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(91, 155, 255, 0.12);
}

.home-services .card .card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.home-services .card h3 {
  color: #5b9bff;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.home-services .card p {
  color: #8888a0;
  font-size: 0.9rem;
}

/* Why choose us */
.why-us {
  padding: 60px 40px 80px;
  text-align: center;
  background: radial-gradient(ellipse at bottom, rgba(124, 77, 255, 0.05), transparent 50%);
}

.why-us h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #fff, #8888a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-us .stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.why-us .stat {
  text-align: center;
}

.why-us .stat .number {
  font-size: 2.4rem;
  font-weight: 700;
  color: #5b9bff;
  display: block;
}

.why-us .stat .label {
  color: #8888a0;
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Discord CTA section */
.discord-cta {
  padding: 60px 40px;
  text-align: center;
}

.discord-cta .discord-box {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(88, 101, 242, 0.08);
  border: 1px solid rgba(88, 101, 242, 0.2);
  border-radius: 18px;
  padding: 40px 30px;
}

.discord-cta h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.discord-cta p {
  color: #8888a0;
  margin-bottom: 24px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .home-services {
    padding: 50px 20px 60px;
  }
  .why-us .stats {
    gap: 30px;
  }
}
