:root{
  --bg:#06101f;
  --bg2:#08182c;
  --panel:#ffffff;
  --panel2:#f5f8ff;
  --text:#f5f8ff;
  --dark:#101b2d;
  --muted:#8da2bd;
  --muted-dark:#657894;
  --line:#1d3552;
  --blue:#3478ff;
  --blue2:#5966ff;
  --purple:#8a55ff;
  --green:#18dca3;
  --red:#ff667d;
  --yellow:#ffbf45;
  --shadow:0 30px 80px rgba(0,0,0,.25);
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:
    radial-gradient(circle at 75% 10%,rgba(65,100,255,.12),transparent 30%),
    radial-gradient(circle at 20% 35%,rgba(100,60,255,.07),transparent 25%),
    var(--bg);
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
}

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

.landing{
  overflow:hidden;
}

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

.lnav{
  height:86px;
  display:flex;
  align-items:center;
  gap:10px;
}

.logo{
  margin-right:auto;
  font-size:25px;
  font-weight:950;
  letter-spacing:-1.2px;
}

.logo span{
  color:#25dfb1;
}

.navlink{
  padding:10px 15px;
  border:1px solid #203b5b;
  border-radius:11px;
  background:rgba(13,29,49,.72);
  color:#e9f1fc;
  font-weight:650;
}

.navlink:hover{
  border-color:#42678f;
  background:#112944;
}

.navprimary{
  background:linear-gradient(135deg,var(--blue),var(--purple));
  border:0;
  box-shadow:0 10px 30px rgba(72,93,255,.25);
}

.hero{
  padding:80px 0 95px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1.02fr;
  align-items:center;
  gap:60px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 15px;
  border-radius:999px;
  background:#eef4ff;
  color:#326ee7;
  font-weight:800;
  font-size:14px;
}

.eyebrow:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 4px rgba(24,220,163,.12);
}

.hero h1{
  margin:25px 0 20px;
  max-width:760px;
  font-size:66px;
  line-height:.98;
  letter-spacing:-3.5px;
}

.gradient{
  background:linear-gradient(100deg,#277bff 0%,#5965ff 45%,#9554ff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero-desc{
  max-width:650px;
  color:#91a7c2;
  font-size:19px;
  line-height:1.65;
}

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

.btn-primary,
.btn-secondary{
  padding:15px 21px;
  border-radius:13px;
  font-weight:850;
  font-size:16px;
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,#327cff,#7b50ff);
  box-shadow:0 14px 35px rgba(67,91,255,.27);
}

.btn-secondary{
  color:#17243a;
  background:#fff;
}

.hero-points{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-top:20px;
  color:#7f95b0;
  font-size:13px;
  font-weight:700;
}

.hero-points span:before{
  content:"✓";
  color:#31dfa9;
  margin-right:7px;
}

.hero-visual{
  position:relative;
}

.hero-image{
  width:100%;
  display:block;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:
    0 40px 100px rgba(0,0,0,.45),
    0 0 80px rgba(62,91,255,.14);
}

.visual-glow{
  position:absolute;
  width:240px;
  height:240px;
  right:-80px;
  bottom:-80px;
  background:rgba(102,72,255,.22);
  filter:blur(70px);
  pointer-events:none;
  z-index:-1;
}

.section{
  padding:105px 0;
}

.section-light{
  background:#f5f8ff;
  color:#142238;
}

.section-head{
  max-width:760px;
  margin-bottom:45px;
}

.section-head.center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.section-kicker{
  display:inline-block;
  color:#3b75e8;
  font-size:14px;
  font-weight:900;
  margin-bottom:12px;
}

.section h2{
  margin:0 0 17px;
  font-size:48px;
  line-height:1.03;
  letter-spacing:-2.2px;
}

.section-head p{
  margin:0;
  color:#7488a2;
  font-size:18px;
  line-height:1.65;
}

.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.feature{
  background:#fff;
  border:1px solid #e3eaf4;
  border-radius:22px;
  padding:30px;
  min-height:290px;
  box-shadow:0 12px 35px rgba(31,55,90,.07);
}

.feature-icon{
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:15px;
  background:#edf3ff;
  color:#3478ff;
  font-size:23px;
  font-weight:900;
  margin-bottom:28px;
}

.feature h3{
  color:#16243a;
  margin:0 0 12px;
  font-size:21px;
}

.feature p{
  color:#687c98;
  line-height:1.65;
  margin:0;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:22px;
}

.badge{
  border-radius:999px;
  padding:6px 10px;
  font-size:11px;
  font-weight:850;
}

.badge.red{
  color:#e44961;
  background:#fff0f3;
}

.badge.yellow{
  color:#a46a00;
  background:#fff5dc;
}

.badge.blue{
  color:#4d6380;
  background:#edf2f8;
}

.intelligence{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  align-items:center;
  gap:70px;
}

.intelligence-copy h2{
  font-size:50px;
}

.checklist{
  list-style:none;
  padding:0;
  margin:28px 0 0;
}

.checklist li{
  margin:15px 0;
  color:#dbe7f5;
  font-weight:750;
}

.checklist li:before{
  content:"✓";
  color:#3180ff;
  font-size:19px;
  margin-right:12px;
}

.intelligence-image{
  width:100%;
  border-radius:26px;
  display:block;
  box-shadow:var(--shadow);
  border:1px solid #dfe7f3;
}

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.step{
  position:relative;
  padding:30px;
  border-radius:22px;
  background:#0d1b2e;
  border:1px solid #1d3552;
}

.step-number{
  color:#6f80ff;
  font-size:14px;
  font-weight:950;
}

.step h3{
  font-size:22px;
  margin:25px 0 10px;
}

.step p{
  color:#8da2bd;
  line-height:1.65;
}

.seo{
  max-width:950px;
  margin:auto;
}

.seo h2{
  text-align:center;
}

.seo p{
  color:#7287a2;
  line-height:1.8;
  font-size:17px;
}

.faq{
  max-width:900px;
  margin:auto;
}

.faq details{
  background:#fff;
  color:#17253a;
  border:1px solid #e0e7f2;
  border-radius:15px;
  padding:20px 22px;
  margin:11px 0;
}

.faq summary{
  cursor:pointer;
  font-weight:850;
}

.faq p{
  color:#6b7f99;
  line-height:1.65;
  margin-bottom:0;
}

.final-cta{
  padding:100px 0;
  text-align:center;
}

.cta-box{
  position:relative;
  overflow:hidden;
  padding:70px 30px;
  border-radius:30px;
  background:
    radial-gradient(circle at 20% 20%,rgba(60,132,255,.35),transparent 35%),
    radial-gradient(circle at 80% 80%,rgba(142,76,255,.35),transparent 35%),
    #0e1e34;
  border:1px solid #244366;
}

.cta-box h2{
  margin:0 0 15px;
  font-size:48px;
  letter-spacing:-2px;
}

.cta-box p{
  color:#9bb0ca;
  max-width:650px;
  margin:0 auto 28px;
  line-height:1.6;
}

.footer{
  padding:30px 0 45px;
  color:#71869f;
  font-size:13px;
  border-top:1px solid #172d47;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
}

@media(max-width:950px){
  .hero-grid,
  .intelligence{
    grid-template-columns:1fr;
  }

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

  .features,
  .steps{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:650px){
  .container{
    width:min(100% - 26px,1250px);
  }

  .lnav{
    height:auto;
    padding:16px 0;
  }

  .navlink{
    display:none;
  }

  .navprimary{
    display:block;
  }

  .hero{
    padding:50px 0 65px;
  }

  .hero h1{
    font-size:43px;
    letter-spacing:-2px;
  }

  .hero-desc{
    font-size:16px;
  }

  .section{
    padding:70px 0;
  }

  .section h2,
  .intelligence-copy h2{
    font-size:37px;
  }

  .features,
  .steps{
    grid-template-columns:1fr;
  }

  .footer-inner{
    flex-direction:column;
  }
}
