*{
  box-sizing:border-box
}

html{
  scroll-behavior:smooth
}

body{
  margin:0;
  background:#07111f;
  color:#f1f7ff;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

a{
  color:inherit;
  text-decoration:none
}

.container{
  width:min(1120px,calc(100% - 34px));
  margin:auto
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(7,17,31,.88);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.07)
}

.nav{
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.6px
}

.logo-icon{
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:
    linear-gradient(135deg,#4f8cff,#7558ff);
  box-shadow:0 8px 25px rgba(79,140,255,.25)
}

nav{
  display:flex;
  gap:20px;
  color:#b5c6d8;
  font-size:14px
}

.hero{
  position:relative;
  overflow:hidden;
  padding:100px 0 90px
}

.hero-glow{
  position:absolute;
  width:700px;
  height:700px;
  border-radius:50%;
  top:-350px;
  left:-200px;
  background:rgba(79,140,255,.20);
  filter:blur(90px)
}

.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.3fr .7fr;
  align-items:center;
  gap:60px
}

.eyebrow{
  display:inline-block;
  font-size:11px;
  font-weight:850;
  letter-spacing:1.5px;
  color:#78a5ff
}

.hero h1{
  margin:14px 0 18px;
  font-size:clamp(42px,7vw,74px);
  line-height:1.02;
  letter-spacing:-2px;
  max-width:760px
}

.hero p{
  max-width:650px;
  margin:0;
  color:#aabed2;
  line-height:1.75;
  font-size:17px
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:11px;
  margin-top:30px
}

.btn{
  padding:13px 18px;
  border-radius:12px;
  font-weight:750;
  font-size:14px
}

.btn.primary{
  background:
    linear-gradient(135deg,#4f8cff,#7558ff)
}

.btn.secondary{
  border:1px solid #29425e;
  background:#0d1b2c
}

.visual-card{
  background:
    linear-gradient(
      145deg,
      rgba(18,37,60,.95),
      rgba(9,22,37,.96)
    );
  border:1px solid #243d58;
  border-radius:22px;
  padding:18px;
  box-shadow:0 30px 80px rgba(0,0,0,.35)
}

.visual-head{
  display:flex;
  gap:6px;
  padding-bottom:15px;
  border-bottom:1px solid #24374b
}

.visual-head span{
  width:8px;
  height:8px;
  background:#55728d;
  border-radius:50%
}

.visual-content{
  display:grid;
  gap:10px;
  padding-top:15px
}

.metric{
  padding:15px;
  border-radius:13px;
  background:#091725;
  border:1px solid #1d3449
}

.metric span{
  display:block;
  color:#829bb2;
  font-size:11px
}

.metric strong{
  display:block;
  margin-top:6px;
  color:#6ee7ba
}

.section{
  padding:85px 0;
  border-top:1px solid rgba(255,255,255,.05)
}

.section.alt{
  background:#091522
}

.section h2{
  margin:10px 0 18px;
  font-size:clamp(29px,4vw,44px)
}

.section-text{
  max-width:820px;
  color:#a7bbcf;
  line-height:1.85
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:35px
}

.feature{
  padding:22px;
  border-radius:16px;
  border:1px solid #21384e;
  background:#0d1a2b
}

.feature strong{
  display:block;
  margin-bottom:7px
}

.feature span{
  color:#8fa6bd;
  font-size:13px;
  line-height:1.6
}

.contact-card{
  padding-top:10px;
  padding-bottom:10px
}

footer{
  border-top:1px solid #1a3044;
  padding:25px 0;
  color:#8198ae;
  font-size:12px
}

@media(max-width:800px){

  nav{
    display:none
  }

  .hero{
    padding:75px 0 65px
  }

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

  .feature-grid{
    grid-template-columns:1fr
  }

  .section{
    padding:65px 0
  }
}
