*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#06111c;
  color:#f4f8fb;
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    radial-gradient(circle at top left, #00e6a822, transparent 35%),
    radial-gradient(circle at bottom right, #f4c95d18, transparent 35%);
  z-index:-1;
}

.navbar{
  max-width:1500px;
  margin:32px auto 0;
  padding:0 32px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:26px;
  font-weight:900;
}

.nav-btn,
.primary-btn,
.secondary-btn{
  text-decoration:none;
  border-radius:999px;
  font-weight:800;
  transition:.25s;
}

.nav-btn,
.secondary-btn{
  color:#f4f8fb;
  border:1px solid #24465a;
  padding:14px 24px;
}

.nav-btn:hover,
.secondary-btn:hover{
  background:#112638;
}

.primary-btn{
  background:#f4c95d;
  color:#07111c;
  padding:16px 28px;
  display:inline-block;
}

.primary-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 35px #f4c95d33;
}

.hero,
.about-project,
.about-me,
.cta-section{
  max-width:1500px;
  margin:32px auto;
  padding:64px;
  border:1px solid #1d4350;
  border-radius:18px;
  background:linear-gradient(135deg,#0b1a26 0%,#07111c 65%);
  box-shadow:0 20px 80px #00000030;
}

.hero{
  min-height:620px;
  display:grid;
  grid-template-columns:1.25fr .9fr;
  align-items:center;
  gap:64px;
}

.badge,
.section-header span{
  display:inline-block;
  color:#62ffd1;
  background:#0e302f;
  border:1px solid #245c4e;
  border-radius:999px;
  padding:9px 16px;
  font-size:13px;
  font-weight:900;
  letter-spacing:2px;
  margin-bottom:26px;
}

.hero h1{
  font-size:76px;
  line-height:.95;
  letter-spacing:-3px;
  margin-bottom:28px;
}

.hero p,
.section-header p,
.cta-section p,
.feature-card p{
  color:#bdd0dc;
  font-size:18px;
  line-height:1.8;
  max-width:850px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  margin-top:36px;
}

.hero-right{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.stat-card{
  min-height:210px;
  border:1px solid #27495a;
  border-radius:14px;
  background:linear-gradient(180deg,#211b13,#08131d);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.stat-card span{
  color:#c4d4df;
  font-size:12px;
  font-weight:900;
  letter-spacing:3px;
  margin-bottom:18px;
}

.stat-card h2{
  font-size:56px;
  font-weight:900;
}

.section-header h2,
.cta-section h2{
  font-size:46px;
  line-height:1.08;
  letter-spacing:-1.5px;
  margin-bottom:18px;
}

.features{
  max-width:1500px;
  margin:32px auto;
  padding:0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.feature-card{
  padding:36px;
  border:1px solid #1d4350;
  border-radius:18px;
  background:#0b1a26;
}

.feature-card h3{
  font-size:26px;
  margin-bottom:14px;
}

.cta-section{
  text-align:center;
  padding:90px 64px;
}

.cta-section h2{
  font-size:64px;
  max-width:800px;
  margin:0 auto 20px;
}

.cta-section p{
  margin:0 auto;
}

.big-btn{
  margin-top:34px;
}

.footer{
  max-width:1500px;
  margin:40px auto 0;
  padding:32px;
  color:#8fa5b4;
  border-top:1px solid #1d4350;
  text-align:center;
  font-size:14px;
  line-height:1.8;
}

@media(max-width:1000px){
  .hero{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:56px;
  }

  .hero-right{
    grid-template-columns:1fr;
  }

  .features{
    grid-template-columns:1fr;
    padding:0 24px;
  }

  .hero,
  .about-project,
  .about-me,
  .cta-section{
    margin:24px;
    padding:36px 24px;
  }

  .navbar{
    padding:0 24px;
  }

  .cta-section h2{
    font-size:44px;
  }
}