*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#ffffff;
  color:#111;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

/* HERO */

.hero{
  width:100%;
  min-height:100vh;
  padding:80px 80px 50px;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  width:700px;
  height:700px;
  border-radius:50%;
  background:linear-gradient(135deg,#d9f7ff,#d7fff0);
  right:-200px;
  top:-150px;
}

.hero-wrapper{
  max-width:1400px;
  margin:auto;
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

.hero-left{
  flex:1;
  max-width:620px;
}

.hero-left h1{
  font-size:74px;
  line-height:1.05;
  margin-bottom:30px;
  font-weight:700;
  letter-spacing:-3px;
}

.hero-left p{
  color:#666;
  line-height:1.9;
  font-size:18px;
  margin-bottom:45px;
  max-width:520px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  height:58px;
  padding:0 35px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
  font-weight:600;
  transition:0.3s ease;
}

.btn-primary{
  background:#2f80ff;
  color:#fff;
  box-shadow:0 10px 25px rgba(47,128,255,0.25);
}

.btn-secondary{
  background:#e5e7f4;
  color:#111;
}

.btn:hover{
  transform:translateY(-4px);
}

/* RIGHT */

.hero-right{
  flex:1;
  display:flex;
  justify-content:center;
}

.glass-box{
  width:100%;
  max-width:420px;
  display:flex;
  flex-direction:column;
  gap:25px;
}

.stats-box{
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.5);
  border-radius:30px;
  padding:35px;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.stats-box h4{
  color:#777;
  font-size:15px;
  margin-bottom:15px;
  font-weight:500;
}

.stats-box h2{
  font-size:46px;
  margin-bottom:15px;
}

.status{
  display:flex;
  align-items:center;
  gap:10px;
  color:#666;
  font-size:14px;
}

.dot{
  width:10px;
  height:10px;
  background:#16c784;
  border-radius:50%;
}

/* TICKER */

.ticker-wrapper{
  width:100%;
  background:#050505;
  padding:6px 0;
}

/* FEATURES */

.features{
  padding:100px 80px;
}

.features-top{
  text-align:center;
  margin-bottom:70px;
}

.features-top h2{
  font-size:54px;
  margin-bottom:20px;
  letter-spacing:-2px;
}

.features-top p{
  color:#777;
  font-size:18px;
}

.features-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.feature-card{
  background:#fff;
  border:1px solid #ededed;
  border-radius:28px;
  padding:20px 15px;
  color:#111;
  transition:0.35s ease;
}

.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(0,0,0,0.07);
}

.feature-icon{
  width:65px;
  height:65px;
  background:#0f1117;
  color:#fff;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:28px;
}

.feature-card h3{
  font-size:32px;
  margin-bottom:18px;
}

.feature-card p{
  color:#666;
  line-height:1.8;
  font-size:16px;
}

/* FOOTER */

.footer{
  background:#050505;
  color:#fff;
  padding:90px 25px 50px;
  text-align:center;
}

.footer-logo{
  font-size:48px;
  font-weight:800;
  margin-bottom:40px;
}

.footer-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:40px;
  margin-bottom:50px;
}

.footer-links a{
  color:#bbb;
  transition:0.3s;
}

.footer-links a:hover{
  color:#fff;
}

.footer-bottom{
  color:#777;
  font-size:14px;
}

/* RESPONSIVE */

@media(max-width:1100px){

  .hero-wrapper{
    flex-direction:column;
    text-align:center;
  }

  .hero-left{
    max-width:100%;
  }

  .hero-left p{
    max-width:100%;
  }

  .hero-buttons{
    justify-content:center;
  }

  .features-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .hero{
    padding:60px 25px 40px;
  }

  .hero-left h1{
    font-size:50px;
    line-height:1.15;
  }

  .hero-left p{
    font-size:16px;
  }

  .features{
    padding:70px 25px;
  }

  .features-top h2{
    font-size:40px;
  }

  .features-grid{
    grid-template-columns:1fr;
  }

  .footer-logo{
    font-size:38px;
  }

}

@media(max-width:480px){

  .hero-left h1{
    font-size:42px;
  }

  .btn{
    width:100%;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .feature-card h3{
    font-size:28px;
  }

}