*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#020617;
  color:white;
  overflow-x:hidden;
}

html{
  scroll-behavior:smooth;
}

.bg-blur{
  position:fixed;
  border-radius:50%;
  filter:blur(120px);
  z-index:-1;
}

.blur1{
  width:400px;
  height:400px;
  background:#7c3aed;
  top:-100px;
  left:-100px;
  opacity:.35;
}

.blur2{
  width:500px;
  height:500px;
  background:#9333ea;
  bottom:-200px;
  right:-100px;
  opacity:.25;
}

.navbar{
  position:fixed;
  top:20px;
  left:50%;
  transform:translateX(-50%);
  width:92%;
  padding:18px 35px;
  backdrop-filter:blur(20px);
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:1000;
}

.nav-left{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  width:45px;
}

.nav-left span{
  font-size:22px;
  font-weight:700;
}

.nav-links{
  display:flex;
  gap:30px;
}

.nav-links a{
  color:white;
  text-decoration:none;
  transition:.3s;
  font-weight:500;
}

.nav-links a:hover{
  color:#c084fc;
  transform:translateY(-2px);
}

.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:120px 20px;
}

.floating-logo{
  animation:float 5s infinite ease-in-out;
  margin-bottom:30px;
}

.floating-logo img{
  width:140px;
  filter:drop-shadow(0 0 40px #9333ea);
}

@keyframes float{
  0%{transform:translateY(0px);}
  50%{transform:translateY(-20px);}
  100%{transform:translateY(0px);}
}

.hero h1{
  font-size:72px;
  max-width:1000px;
  line-height:1.1;
  font-weight:800;
  margin-bottom:25px;
}

.hero-sub{
  max-width:850px;
  font-size:20px;
  color:#cbd5e1;
  line-height:1.8;
}

.hero-small{
  margin-top:25px;
  color:#a78bfa;
  font-size:16px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:40px;
  flex-wrap:wrap;
  justify-content:center;
}

.btn{
  padding:16px 32px;
  border-radius:14px;
  text-decoration:none;
  transition:.4s;
  font-weight:600;
}

.primary{
  background:linear-gradient(135deg,#7c3aed,#9333ea);
  color:white;
  box-shadow:0 0 30px rgba(147,51,234,.4);
}

.secondary{
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.05);
  backdrop-filter:blur(10px);
  color:white;
}

.btn:hover{
  transform:translateY(-5px) scale(1.03);
}

section{
  padding:120px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:48px;
  margin-bottom:20px;
}

.section-title p{
  color:#cbd5e1;
  max-width:850px;
  margin:auto;
  line-height:1.8;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.glass-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  padding:35px;
  border-radius:25px;
  backdrop-filter:blur(20px);
  transition:.4s;
  box-shadow:0 10px 40px rgba(0,0,0,.25);
}

.glass-card:hover{
  transform:translateY(-10px);
  border-color:#9333ea;
  box-shadow:0 0 40px rgba(147,51,234,.3);
}

.glass-card h3{
  margin-bottom:15px;
  font-size:24px;
}

.glass-card p{
  color:#cbd5e1;
  line-height:1.8;
}

.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-left img{
  width:100%;
  max-width:400px;
  animation:float 5s infinite ease-in-out;
}

.about-right h2{
  font-size:52px;
  margin-bottom:25px;
}

.about-right p{
  color:#cbd5e1;
  line-height:1.9;
  margin-bottom:20px;
}

.stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.stat-card{
  text-align:center;
  background:rgba(255,255,255,.04);
  border-radius:25px;
  padding:50px 20px;
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.08);
}

.stat-card h1{
  font-size:60px;
  background:linear-gradient(135deg,#c084fc,#7c3aed);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.stat-card p{
  margin-top:12px;
  color:#cbd5e1;
}

.cta{
  margin:100px 8%;
  border-radius:35px;
  text-align:center;
  background:linear-gradient(135deg,rgba(124,58,237,.2),rgba(147,51,234,.08));
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(25px);
}

.cta h2{
  font-size:58px;
  margin-bottom:20px;
}

.cta p{
  max-width:800px;
  margin:auto;
  line-height:1.9;
  color:#cbd5e1;
}

footer{
  padding:60px 20px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.08);
}

footer h3{
  font-size:28px;
  margin-bottom:10px;
}

footer p{
  color:#94a3b8;
  margin-top:10px;
}

@media(max-width:900px){

  .hero h1{
    font-size:48px;
  }

  .about{
    grid-template-columns:1fr;
    text-align:center;
  }

  .navbar{
    flex-direction:column;
    gap:20px;
  }

  .nav-links{
    flex-wrap:wrap;
    justify-content:center;
  }

  .cta h2{
    font-size:42px;
  }

}