*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#0f172a;
  color:white;
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 80px;
  background:#020617;
  position:sticky;
  top:0;
}

.logo span{
  font-size:22px;
  font-weight:bold;
}

nav ul{
  display:flex;
  gap:30px;
  list-style:none;
}

nav ul li{
  cursor:pointer;
  opacity:0.8;
}

.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:80px;
  gap:50px;
}

.hero-text h1{
  font-size:48px;
  margin-bottom:20px;
}

.hero-text p{
  font-size:18px;
  margin-bottom:30px;
  opacity:0.8;
}

.hero-text button{
  padding:15px 35px;
  background:#3b82f6;
  color:white;
  border:none;
  border-radius:30px;
  font-size:16px;
}

.hero img{
  width:45%;
  border-radius:20px;
}

.features{
  padding:100px 80px;
  text-align:center;
}

.features h2{
  font-size:36px;
  margin-bottom:60px;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.card{
  background:#020617;
  padding:40px;
  border-radius:20px;
}

.card img{
  width:50px;
  margin-bottom:20px;
}

.card h3{
  margin-bottom:10px;
}

.community{
  display:flex;
  align-items:center;
  padding:100px 80px;
  gap:60px;
}

.community-text h2{
  font-size:40px;
  margin-bottom:20px;
}

.community-text p{
  font-size:18px;
  margin-bottom:30px;
}

.community-text button{
  padding:14px 30px;
  background:#22c55e;
  border:none;
  border-radius:25px;
  color:white;
}

.community img{
  width:45%;
  border-radius:20px;
}

.stats{
  display:flex;
  justify-content:space-around;
  padding:80px;
  background:#020617;
}

.stats h3{
  font-size:36px;
}

footer{
  text-align:center;
  padding:30px;
  opacity:0.6;
}
