:root{
  --bg:#0b1020;
  --bg2:#0f1733;
  --card:#111a3a;
  --text:#e9ecff;
  --muted:rgba(233,236,255,.76);
  --line:rgba(233,236,255,.12);
  --accent:#6aa7ff;
  --accent-2:#3f7dff;
}

*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,var(--bg),#070a14);
  color:var(--text);
}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1120px;margin:0 auto;padding:0 16px}

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(11,16,32,.78);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
  min-width:0;
}
.brand img{
  width:42px;
  height:42px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid var(--line);
}
.brand .name{
  font-weight:900;
  letter-spacing:.2px;
  color:var(--text);
  font-size:16px;
  line-height:1.1;
}
.brand .tagline{
  color:var(--muted);
  font-size:12.5px;
  font-weight:600;
  margin-top:2px;
  line-height:1.25;
}

.menu{display:flex;gap:14px;align-items:center}
.menu a{
  color:var(--text);
  font-weight:700;
  opacity:.9;
  font-size:14px;
}
.menu a:hover{opacity:1}

.dropdown{position:relative}
.dropdown .panel{
  display:none;
  position:absolute;
  top:28px;
  right:0;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  min-width:220px;
  padding:10px;
  box-shadow:0 12px 24px rgba(0,0,0,.35);
}
.dropdown:hover .panel{display:block}
.dropdown .panel a{
  display:block;
  padding:10px;
  border-radius:10px;
}
.dropdown .panel a:hover{
  background:rgba(255,255,255,.06);
  text-decoration:none;
}

.hero{padding:54px 0 18px}
.heroGrid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:26px;
  align-items:center;
}
.heroCopy{max-width:640px}
.hero .lead{
  max-width:620px;
  margin-bottom:0;
}
.heroImgWrap{
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  box-shadow:0 16px 40px rgba(0,0,0,.28);
}
.heroImg{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
}

h1{
  font-size:48px;
  line-height:1.04;
  margin:0 0 14px;
  letter-spacing:-.02em;
}
h2{
  font-size:30px;
  line-height:1.15;
  margin:0 0 12px;
  letter-spacing:-.01em;
}
h3{margin:0 0 8px}
.lead{
  font-size:18px;
  color:var(--muted);
  line-height:1.6;
  margin:0 0 14px;
}
.sectionIntro{
  max-width:760px;
  margin:0 auto;
}

.section{padding:42px 0}
.sectionTight{padding-top:14px}
.section.alt{
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.01));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.grid4{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}

.card{
  background:rgba(17,26,58,.7);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
}
.card p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
}
.muted{color:var(--muted)}

.miniCard{
  min-height:100%;
}
.miniCard h3{
  margin:0 0 8px;
  font-size:18px;
}
.miniCard p{
  font-size:15px;
}

.actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.centeredActions{
  justify-content:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:800;
  cursor:pointer;
  user-select:none;
  transition:.2s ease;
}
.btn.primary{
  background:linear-gradient(180deg,var(--accent),var(--accent-2));
  color:#06102a;
  border-color:rgba(0,0,0,.15);
}
.btn.ghost{
  background:transparent;
  color:var(--text);
}
.btn:hover{
  text-decoration:none;
  filter:brightness(1.05);
  transform:translateY(-1px);
}

.sep{
  border:0;
  border-top:1px solid var(--line);
  margin:18px 0;
}
.list{margin:10px 0 0 18px;color:var(--muted)}
.price{
  font-size:28px;
  font-weight:900;
  margin:8px 0 10px;
}
.price span{
  font-size:14px;
  font-weight:700;
  color:var(--muted);
  margin-left:4px;
}

.lbl{display:block;margin:10px 0 6px;font-weight:800}
.inp{
  width:100%;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
}
.inp:focus{border-color:rgba(106,167,255,.65)}

.footer{
  padding:22px 0;
  color:var(--muted);
  border-top:1px solid var(--line);
  margin-top:10px;
}
.footerBrand{
  font-weight:900;
  color:var(--text);
  margin-bottom:6px;
}
.footerLegal{
  font-size:13px;
  color:var(--muted);
  margin-bottom:10px;
}

.sectionHead{
  max-width:820px;
  margin:0 auto 22px;
  text-align:center;
}

.eyebrow{
  display:inline-block;
  margin-bottom:10px;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--accent);
  font-size:12px;
  font-weight:900;
  letter-spacing:.5px;
  text-transform:uppercase;
}

.pricingGrid{align-items:stretch}
.priceCard{
  display:flex;
  flex-direction:column;
  height:100%;
}
.priceCard .actions{
  margin-top:auto;
  padding-top:14px;
}

.planTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:12px;
  font-weight:800;
}

.tag.accent{
  background:rgba(106,167,255,.12);
  color:var(--accent);
  border-color:rgba(106,167,255,.28);
}

.featured{
  border-color:rgba(106,167,255,.35);
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.cleanList{
  list-style:none;
  margin:10px 0 0 0;
  padding:0;
}
.cleanList li{
  padding:8px 0;
  border-bottom:1px solid var(--line);
  color:var(--muted);
}
.cleanList li:last-child{border-bottom:0}

.pricingNote{
  margin-top:18px;
  text-align:center;
  color:var(--muted);
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
}

.ctaBlock{
  text-align:center;
  padding:30px;
}

@media (max-width: 900px){
  .nav{
    align-items:flex-start;
    flex-direction:column;
  }

  .heroGrid{grid-template-columns:1fr}
  .grid4{grid-template-columns:1fr 1fr}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  h1{font-size:38px}
  h2{font-size:28px}
  .heroImg{height:260px}
}

@media (max-width: 640px){
  .grid4{grid-template-columns:1fr}
  .hero{padding-top:36px}
  .section{padding:34px 0}
  .btn{
    width:100%;
  }
  .actions{
    flex-direction:column;
  }
}