*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#050505;
  color:white;
  overflow-x:hidden;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.bg-glow{
  position:fixed;
  width:700px;
  height:700px;
  background:radial-gradient(circle, rgba(96,76,255,0.35) 0%, rgba(0,0,0,0) 70%);
  top:-200px;
  right:-100px;
  z-index:-1;
}

.header{
  position:sticky;
  top:0;
  padding:25px 0;
  backdrop-filter:blur(20px);
  background:rgba(0,0,0,0.45);
  z-index:100;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo-text{
  font-size:24px;
  font-weight:800;
  letter-spacing:5px;
}

nav{
  display:flex;
  gap:30px;
}

nav a{
  color:white;
  text-decoration:none;
  opacity:0.8;
  transition:0.3s;
}

nav a:hover{
  opacity:1;
}

.btn{
  background:linear-gradient(135deg,#7b2dff,#00bfff);
  color:white;
  padding:14px 28px;
  border-radius:16px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-3px);
}

.hero{
  padding:100px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.mini-title{
  color:#7b2dff;
  margin-bottom:20px;
  letter-spacing:3px;
}

.hero h1{
  font-size:72px;
  line-height:1.05;
  margin-bottom:30px;
}

.hero h1 span{
  background:linear-gradient(135deg,#7b2dff,#00bfff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-text{
  font-size:20px;
  line-height:1.8;
  opacity:0.8;
  max-width:650px;
}

.hero-points{
  margin-top:35px;
}

.point{
  margin-bottom:14px;
  font-size:18px;
  opacity:0.85;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:45px;
}

.outline-btn{
  border:1px solid rgba(255,255,255,0.15);
  padding:14px 28px;
  border-radius:16px;
  color:white;
  text-decoration:none;
}

.glass-box{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:32px;
  padding:40px;
  backdrop-filter:blur(10px);
  box-shadow:0 0 60px rgba(123,45,255,0.2);
}

.chat{
  padding:16px 18px;
  border-radius:18px;
  margin-bottom:18px;
  width:fit-content;
  max-width:85%;
  line-height:1.5;
}

.chat-left{
  background:#161616;
}

.chat-right{
  margin-left:auto;
  background:linear-gradient(135deg,#7b2dff,#00bfff);
}

.features,
.creation,
.styles{
  padding:100px 0;
}

.features h2,
.creation h2,
.styles h2,
.partner h2{
  font-size:48px;
  margin-bottom:50px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  padding:35px;
  border-radius:26px;
  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);
  border-color:rgba(123,45,255,0.4);
}

.card h3{
  font-size:26px;
  margin-bottom:20px;
}

.card p{
  opacity:0.75;
  line-height:1.8;
}

.inside-list{
  margin-top:25px;
  line-height:2;
  opacity:0.85;
}

.creation-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.creation-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:28px;
  padding:40px;
}

.creation-number{
  width:70px;
  height:70px;
  border-radius:50%;
  background:linear-gradient(135deg,#7b2dff,#00bfff);
  display:flex;
  justify-content:center;
  align-items:center;
  font-weight:700;
  margin-bottom:25px;
}

.creation-card h3{
  font-size:30px;
  margin-bottom:20px;
}

.creation-card p{
  opacity:0.75;
  line-height:1.8;
  margin-bottom:20px;
}

.creation-card ul{
  padding-left:18px;
  line-height:2;
  opacity:0.85;
}

.partner{
  padding:100px 0;
}

.partner-box{
  background:linear-gradient(
    135deg,
    rgba(123,45,255,0.18),
    rgba(0,191,255,0.12)
  );

  border-radius:36px;
  padding:70px;

  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

.partner-text{
  margin-top:20px;
  opacity:0.8;
  line-height:1.9;
  max-width:700px;
}

.footer{
  padding:80px 0;
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-grid{
  display:flex;
  justify-content:space-between;
  gap:40px;
}

.footer-title{
  font-size:26px;
  font-weight:800;
  letter-spacing:4px;
}

.footer p{
  margin-top:20px;
  opacity:0.65;
  line-height:1.8;
  max-width:360px;
}

.footer h4{
  margin-bottom:20px;
}

.footer a{
  display:block;
  margin-bottom:15px;
  color:white;
  text-decoration:none;
  opacity:0.8;
}

@media(max-width:1000px){

  nav{
    display:none;
  }

  .hero-grid,
  .creation-grid,
  .footer-grid,
  .partner-box{
    grid-template-columns:1fr;
    flex-direction:column;
  }

  .cards{
    grid-template-columns:1fr 1fr;
  }

  .hero h1{
    font-size:52px;
  }

}

@media(max-width:700px){

  .cards{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:40px;
  }

  .features h2,
  .creation h2,
  .styles h2,
  .partner h2{
    font-size:34px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .partner-box{
    padding:40px 25px;
  }

}