*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

body{
  background:#050816;
  color:white;
  overflow-x:hidden;
}

.bg{
  position:fixed;
  inset:0;
  background:
  radial-gradient(circle at top left,#1d4ed8 0%,transparent 30%),
  radial-gradient(circle at bottom right,#7c3aed 0%,transparent 30%);
  opacity:.25;
  z-index:-1;
}

.navbar{
  width:100%;
  padding:25px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  backdrop-filter:blur(10px);
}

.logo{
  font-size:28px;
  font-weight:800;
}

.logo span{
  color:#60a5fa;
}

nav{
  display:flex;
  align-items:center;
  gap:20px;
}

nav a{
  color:white;
  text-decoration:none;
  opacity:.8;
}

.nav-btn{
  padding:12px 20px;
  border-radius:14px;
  background:#2563eb;
  opacity:1;
}

.hero{
  width:100%;
  min-height:90vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  padding:60px 8%;
  gap:40px;
}

.badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  margin-bottom:25px;
}

.hero h1{
  font-size:70px;
  line-height:1.1;
  margin-bottom:20px;
}

.hero h1 span{
  color:#60a5fa;
}

.hero p{
  color:#cbd5e1;
  line-height:1.8;
  max-width:600px;
}

.hero-buttons{
  margin-top:35px;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
  padding:16px 28px;
  border-radius:16px;
  text-decoration:none;
  font-weight:600;
}

.primary-btn{
  background:#2563eb;
  color:white;
}

.secondary-btn{
  border:1px solid rgba(255,255,255,.1);
  color:white;
}

.glass-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:30px;
  padding:25px;
  backdrop-filter:blur(20px);
}

.mini-top{
  display:flex;
  gap:10px;
  margin-bottom:20px;
}

.mini-top span{
  width:14px;
  height:14px;
  border-radius:50%;
  background:white;
}

.code{
  color:#93c5fd;
  line-height:1.8;
  white-space:pre-wrap;
}

.features,
.api-section{
  padding:100px 8%;
}

.features h2,
.api-section h2{
  font-size:42px;
  margin-bottom:40px;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.feature-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  padding:30px;
  border-radius:24px;
}

.feature-card h3{
  margin-bottom:15px;
}

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

.api-box{
  background:#020617;
  border-radius:24px;
  padding:30px;
  border:1px solid rgba(255,255,255,.08);
  overflow:auto;
}

pre{
  color:#93c5fd;
}

footer{
  padding:40px;
  text-align:center;
  color:#94a3b8;
}

.download-page{
  width:100%;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px;
}

.download-card{
  width:100%;
  max-width:750px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:32px;
  padding:30px;
  backdrop-filter:blur(20px);
}

.top-area{
  text-align:center;
  margin-bottom:30px;
}

.top-area h1{
  font-size:42px;
}

.top-area p{
  color:#cbd5e1;
  margin-top:10px;
}

.input-box{
  display:flex;
  gap:10px;
}

.input-box input{
  flex:1;
  padding:18px;
  border:none;
  outline:none;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  color:white;
}

.input-box button{
  padding:18px 28px;
  border:none;
  border-radius:18px;
  background:#2563eb;
  color:white;
  cursor:pointer;
  font-weight:600;
}

.result-card{
  margin-top:30px;
}

.result-card img{
  width:100%;
  border-radius:20px;
}

.result-info{
  margin-top:20px;
}

.result-info h2{
  margin-bottom:10px;
}

.download-buttons{
  display:flex;
  gap:10px;
  margin-top:20px;
}

.download-buttons a{
  flex:1;
  text-align:center;
  text-decoration:none;
  padding:16px;
  border-radius:16px;
  color:white;
  font-weight:600;
}

.nowm{
  background:#2563eb;
}

.wm{
  background:#7c3aed;
}

@media(max-width:768px){

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

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

  .input-box{
    flex-direction:column;
  }

  .download-buttons{
    flex-direction:column;
  }

}