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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#f5f7ff;
  color:#111;
  overflow-x:hidden;
}

.background-blur{
  position:fixed;
  border-radius:50%;
  filter:blur(120px);
  z-index:-1;
}

.blur1{
  width:400px;
  height:400px;
  background:#dbe8ff;
  top:-100px;
  left:-100px;
}

.blur2{
  width:350px;
  height:350px;
  background:#ffe6f2;
  right:-100px;
  bottom:-100px;
}

.navbar{
  width:100%;
  padding:24px 70px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  left:0;
  backdrop-filter:blur(14px);
  background:rgba(255,255,255,0.65);
  border-bottom:1px solid rgba(255,255,255,0.5);
  z-index:100;
}

.logo{
  font-size:28px;
  font-weight:900;
  letter-spacing:-1px;
}

nav a{
  text-decoration:none;
  color:#333;
  margin-left:28px;
  font-weight:500;
  transition:0.3s;
}

nav a:hover{
  opacity:0.6;
}

.telegram-link{
  padding:12px 20px;
  background:black;
  color:white !important;
  border-radius:14px;
}

.hero{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:120px 20px 60px;
}

.hero-box{
  max-width:900px;
  text-align:center;
}

.badge{
  display:inline-block;
  padding:10px 18px;
  background:white;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.hero h1{
  font-size:92px;
  margin-top:25px;
  line-height:1;
  letter-spacing:-4px;
}

.hero p{
  margin-top:28px;
  font-size:24px;
  line-height:1.7;
  color:#555;
}

.hero-buttons{
  margin-top:45px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.main-btn,
.second-btn{
  padding:18px 34px;
  border-radius:18px;
  text-decoration:none;
  font-size:18px;
  font-weight:600;
  transition:0.3s;
}

.main-btn{
  background:black;
  color:white;
}

.second-btn{
  background:white;
  color:black;
  box-shadow:0 8px 24px rgba(0,0,0,0.05);
}

.main-btn:hover,
.second-btn:hover{
  transform:translateY(-4px);
}

.features{
  width:100%;
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
  padding:40px 20px 120px;
}

.feature-card{
  width:320px;
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(12px);
  border-radius:28px;
  padding:40px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
}

.feature-card:hover{
  transform:translateY(-8px);
}

.icon{
  font-size:40px;
  margin-bottom:20px;
}

.feature-card h3{
  font-size:28px;
  margin-bottom:16px;
}

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

.about{
  max-width:900px;
  margin:auto;
  text-align:center;
  padding:40px 20px 120px;
}

.about h2{
  font-size:58px;
  line-height:1.2;
  letter-spacing:-2px;
}

.about p{
  margin-top:30px;
  font-size:22px;
  color:#666;
  line-height:1.8;
}

footer{
  text-align:center;
  padding:50px 20px;
  color:#777;
}

@media(max-width:768px){

  .navbar{
    padding:20px;
  }

  nav{
    display:none;
  }

  .hero h1{
    font-size:58px;
  }

  .hero p{
    font-size:18px;
  }

  .about h2{
    font-size:38px;
  }

}
