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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter,Arial,sans-serif;
  background:#06111E;
  color:white;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1280px;
  margin:auto;
}

.navbar{
  position:fixed;
  top:0;
  width:100%;
  z-index:100;
  background:rgba(6,17,30,0.9);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.nav-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:24px 0;
}

.logo h1{
  font-size:28px;
}

.logo span{
  color:#67e8f9;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:3px;
}

nav{
  display:flex;
  gap:32px;
}

nav a{
  color:#cbd5e1;
  text-decoration:none;
  transition:0.3s;
}

nav a:hover{
  color:white;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 28px;
  border-radius:18px;
  font-weight:600;
  cursor:pointer;
  text-decoration:none;
  transition:0.3s;
}

.btn-primary{
  background:#67e8f9;
  color:black;
}

.btn-primary:hover{
  background:#a5f3fc;
}

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

.btn-secondary:hover{
  background:rgba(255,255,255,0.05);
}

.hero{
  position:relative;
  padding:180px 0 120px;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  top:-200px;
  right:-200px;
  width:700px;
  height:700px;
  background:rgba(34,211,238,0.08);
  filter:blur(120px);
  border-radius:50%;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:80px;
  position:relative;
  z-index:2;
}

.badge{
  display:inline-block;
  border:1px solid rgba(103,232,249,0.2);
  background:rgba(103,232,249,0.05);
  color:#67e8f9;
  padding:10px 18px;
  border-radius:999px;
  margin-bottom:30px;
}

.hero h2{
  font-size:72px;
  line-height:1.05;
  max-width:800px;
}

.hero p{
  margin-top:32px;
  color:#cbd5e1;
  font-size:22px;
  max-width:700px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top:40px;
  flex-wrap:wrap;
}

.stats{
  display:flex;
  gap:50px;
  margin-top:60px;
}

.stats strong{
  display:block;
  font-size:42px;
}

.stats span{
  color:#94a3b8;
}

.glass-card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:36px;
  padding:32px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  backdrop-filter:blur(20px);
}

.mini-card{
  background:#0B1728;
  border-radius:28px;
  padding:28px;
  border:1px solid rgba(255,255,255,0.05);
}

.mini-card h3{
  margin-bottom:16px;
}

.mini-card p{
  font-size:15px;
  color:#94a3b8;
  margin-top:0;
}

.section{
  padding:120px 0;
}

.dark{
  background:#0B1728;
}

.center{
  text-align:center;
}

.section-tag{
  color:#67e8f9;
  text-transform:uppercase;
  letter-spacing:4px;
  font-size:12px;
}

.section h2{
  font-size:56px;
  margin-top:20px;
  line-height:1.1;
}

.center p{
  max-width:900px;
  margin:30px auto 0;
  font-size:22px;
  color:#94a3b8;
}

.cards-grid{
  margin-top:70px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:32px;
  padding:40px;
}

.card h3{
  font-size:32px;
  margin-bottom:20px;
}

.card p{
  color:#94a3b8;
  font-size:18px;
}

.missions-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:60px;
}

.mission-item{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:30px;
  font-size:20px;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}

.secondary-text{
  margin-top:30px;
  color:#94a3b8;
}

.cta-section{
  padding:120px 0;
}

.cta-box{
  background:linear-gradient(135deg,rgba(34,211,238,0.15),rgba(59,130,246,0.08));
  border:1px solid rgba(103,232,249,0.1);
  border-radius:48px;
  padding:80px;
  text-align:center;
}

.cta-box p{
  max-width:800px;
  margin:30px auto 0;
  color:#cbd5e1;
  font-size:22px;
}

footer{
  background:#050D17;
  border-top:1px solid rgba(255,255,255,0.05);
  padding:80px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
}

footer h3{
  font-size:32px;
}

footer span{
  color:#67e8f9;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:12px;
}

footer p{
  margin-top:20px;
  color:#94a3b8;
}

footer h4{
  margin-bottom:20px;
}

footer ul{
  list-style:none;
}

footer li{
  margin-bottom:12px;
  color:#94a3b8;
}

@media(max-width:1024px){

  .hero-grid,
  .about-grid,
  .footer-grid,
  .cards-grid,
  .missions-list{
    grid-template-columns:1fr;
  }

  .glass-card{
    grid-template-columns:1fr;
  }

  .hero h2{
    font-size:52px;
  }

  .section h2{
    font-size:42px;
  }

  nav{
    display:none;
  }
}

@media(max-width:768px){

  .hero{
    padding-top:150px;
  }

  .hero h2{
    font-size:42px;
  }

  .hero p,
  .center p,
  .cta-box p{
    font-size:18px;
  }

  .stats{
    flex-direction:column;
    gap:24px;
  }

  .cta-box{
    padding:50px 30px;
  }
}
