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

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

.gradient-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.15), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 234, 255, 0.15), transparent 50%),
              radial-gradient(circle at 40% 20%, rgba(255, 0, 128, 0.1), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 6% 80px;
  text-align: center;
}

.hero-content {
  max-width: 1000px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 234, 255, 0.1);
  border: 1px solid rgba(0, 234, 255, 0.3);
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 25px;
  color: #00eaff;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #fff, #00eaff, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.cta-btn {
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.cta-primary {
  background: linear-gradient(135deg, #00eaff, #0099ff);
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 234, 255, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 234, 255, 0.5);
}

.cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #00eaff;
}

.cta-secondary:hover {
  background: rgba(0, 234, 255, 0.1);
  transform: translateY(-3px);
}

.features-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
}

.stat-box h3 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #00eaff, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.stat-box p {
  color: #888;
  font-size: 0.95rem;
}

/* ======== Features Section ======== */
.features {
  padding: 100px 6%;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #8a2be2;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #888;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 35px;
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 234, 255, 0.3);
  box-shadow: 0 20px 50px rgba(0, 234, 255, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  color: #aaa;
  line-height: 1.7;
}

/* ======== Showcase Section ======== */
.showcase {
  padding: 100px 6%;
  background: rgba(255, 255, 255, 0.02);
}

.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.3;
}

.showcase-text > p {
  font-size: 1.1rem;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 40px;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.showcase-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.showcase-item span {
  font-size: 2rem;
  flex-shrink: 0;
}

.showcase-item strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
}

.showcase-visual {
  height: 500px;
  background: linear-gradient(135deg, rgba(0, 234, 255, 0.1), rgba(138, 43, 226, 0.1));
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-visual::before {
  content: '< CODE />';
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00eaff, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* ======== CTA Section ======== */
.cta-section {
  padding: 100px 6%;
  text-align: center;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-section > p {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ======== Footer ======== */
footer {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 6% 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-section p {
  color: #888;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-section a {
  display: block;
  color: #888;
  text-decoration: none;
  margin-bottom: 12px;
  transition: 0.3s;
}

.footer-section a:hover {
  color: #00eaff;
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-icon:hover {
  background: linear-gradient(135deg, #00eaff, #8a2be2);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
}

/* ======== RESPONSIVE DESIGN ======== */
@media (max-width: 968px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .subtitle {
    font-size: 1.05rem;
  }

  .features-stats {
    gap: 30px;
  }

  .stat-box h3 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .showcase-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showcase-text h2 {
    font-size: 2rem;
  }

  .showcase-visual {
    height: 350px;
  }

  .showcase-visual::before {
    font-size: 2.5rem;
  }

  .cta-section h2 {
    font-size: 2.2rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 5% 60px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }

  .features-stats {
    gap: 25px;
  }

  .stat-box h3 {
    font-size: 1.8rem;
  }

  .stat-box p {
    font-size: 0.85rem;
  }

  .features {
    padding: 60px 5%;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 25px;
  }

  .showcase {
    padding: 60px 5%;
  }

  .showcase-text h2 {
    font-size: 1.7rem;
  }

  .showcase-text > p {
    font-size: 1rem;
  }

  .showcase-visual {
    height: 250px;
  }

  .showcase-visual::before {
    font-size: 2rem;
  }

  .cta-section {
    padding: 60px 5%;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section > p {
    font-size: 1rem;
  }

  footer {
    padding: 40px 5% 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .showcase-text h2 {
    font-size: 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }
}
