:root{
  --bg0:#0b1020;
  --bg1:#0e162b;

  --text:#e9eefc;
  --muted:rgba(233,238,252,0.72);
  --muted2:rgba(233,238,252,0.55);

  --panel:rgba(255,255,255,0.06);
  --panel2:rgba(255,255,255,0.04);
  --border:rgba(255,255,255,0.09);

  --blue:#4aa3ff;
  --blue2:#2a7bff;
  --mint:#5effd6;

  --shadow: 0 22px 70px rgba(0,0,0,0.45);
  --radius:18px;
  --radius2:24px;
  --ring: 0 0 0 3px rgba(74,163,255,0.25);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  overflow-x:hidden;

  background:
    radial-gradient(1200px 700px at 20% 10%, #12214a 0%, transparent 60%),
    radial-gradient(900px 600px at 80% 20%, #0f2a3f 0%, transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{ color:inherit; text-decoration:none; }
.wrap{ width:min(1120px, 92vw); margin:0 auto; }

/* Background */
.bg{ position:fixed; inset:0; pointer-events:none; z-index:-1; }
.glow{
  position:absolute;
  width:520px; height:520px;
  filter: blur(70px);
  opacity:0.42;
}
.g1{ left:-140px; top:-120px; background:#3b7bff; }
.g2{ right:-140px; top:140px; background:#3ad5ff; opacity:0.28; }
.g3{ left:35%; bottom:-220px; background:#7a55ff; opacity:0.22; }

.gridNoise{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size:64px 64px;
  opacity:0.06;
  mask-image: radial-gradient(circle at 50% 10%, black 0%, transparent 70%);
}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(6,10,20,0.58);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.topbarInner{
  height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:780;
  letter-spacing:0.2px;
}
.brandDot{
  width:14px;
  height:14px;
  border-radius:6px;
  background: linear-gradient(135deg, var(--blue), #7a55ff);
  box-shadow: 0 8px 20px rgba(74,163,255,0.28);
}
.brandText{ font-size:16px; }

.brand.mini .brandText{ font-size:14px; }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  color:var(--muted);
  font-size:14px;
}
.nav a{
  padding:8px 10px;
  border-radius:12px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.nav a:hover{
  background: rgba(255,255,255,0.06);
  color:var(--text);
  transform: translateY(-1px);
}

.topActions{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Buttons */
.iconBtn{
  width:40px;
  height:40px;
  border-radius:14px;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  color:var(--text);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}
.iconBtn:hover{
  background: rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color:var(--text);
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, border 160ms ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.09);
  border:1px solid rgba(255,255,255,0.16);
}
.btn:focus{ outline:none; box-shadow: var(--ring); }

.btn.primary{
  background: linear-gradient(135deg, var(--blue2), var(--blue));
  border:1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 46px rgba(42,123,255,0.26);
}
.btn.primary:hover{
  box-shadow: 0 22px 60px rgba(42,123,255,0.34);
}

.btn.ghost{
  background: rgba(255,255,255,0.03);
}

.btn.small{ padding:10px 14px; border-radius:12px; }
.btn.full{ width:100%; }

.mobileMenuBtn{ display:none; }

/* Mobile Menu */
.mobileMenu{
  display:none;
  border-bottom:1px solid rgba(255,255,255,0.06);
  background: rgba(6,10,20,0.70);
  backdrop-filter: blur(14px);
}
.mobileMenu.open{ display:block; }

.mobileMenuInner{
  padding:14px 0 18px;
  display:grid;
  gap:10px;
}

.mLink{
  padding:12px 14px;
  border-radius:14px;
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.07);
  color:var(--muted);
  transition: background 160ms ease, transform 160ms ease, color 160ms ease;
}
.mLink:hover{
  background: rgba(255,255,255,0.07);
  color:var(--text);
  transform: translateY(-1px);
}

/* Hero */
.hero{ padding:72px 0 28px; }

.heroInner{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:28px;
  align-items:center;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.10);
  color:var(--muted);
  font-size:13px;
}
.pillDot{
  width:10px;
  height:10px;
  border-radius:4px;
  background: rgba(80,255,140,0.85);
  box-shadow: 0 10px 18px rgba(80,255,140,0.14);
}

.heroTitle{
  margin:18px 0 10px;
  font-size:52px;
  line-height:1.05;
  letter-spacing:-0.6px;
}
.heroTitleSub{
  display:block;
  margin-top:10px;
  font-size:18px;
  color:var(--muted);
  font-weight:650;
}

.heroDesc{
  margin:14px 0 20px;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
  max-width:60ch;
}
.inlineStrong{
  color: var(--text);
  font-weight:800;
}

.heroCtas{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.heroStats{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.stat{
  padding:12px 14px;
  border-radius:16px;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.09);
  min-width: 170px;
}
.statTop{ font-weight:800; }
.statBot{ margin-top:4px; color:var(--muted2); font-size:13px; }

/* Screenshot Preview */
.shotCard{
  border-radius: var(--radius2);
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.10);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
  transform: translateY(-2px);
  transition: transform 200ms ease;
}
.shotCard:hover{ transform: translateY(-8px); }

.shotCard::before{
  content:"";
  position:absolute;
  inset:-80px;
  background: radial-gradient(circle at 50% 10%, rgba(74,163,255,0.25) 0%, transparent 60%);
  filter: blur(20px);
  opacity:0.9;
  pointer-events:none;
}

.shotBadge{
  position:absolute;
  top:14px;
  left:14px;
  z-index:2;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  color: rgba(15,28,30,0.95);
  background: rgba(94,255,214,0.92);
  box-shadow: 0 18px 40px rgba(0,0,0,0.30);
}

.shotImg{
  width:100%;
  height:auto;
  display:block;
  position:relative;
  z-index:1;
  user-select:none;
}

/* Sections */
.section{ padding:72px 0; }
.section.alt{
  background: rgba(255,255,255,0.02);
  border-top:1px solid rgba(255,255,255,0.05);
  border-bottom:1px solid rgba(255,255,255,0.05);
}

.sectionHead{ margin-bottom:22px; }
.sectionHead h2{
  margin:0 0 8px;
  font-size:30px;
  letter-spacing:-0.2px;
}
.sectionHead p{
  margin:0;
  color:var(--muted);
  max-width:70ch;
  line-height:1.6;
}
.sectionHead .sectionNote{
  margin-top:10px;
  color:var(--text);
  font-weight:600;
}

/* Cards */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
.card{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.09);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}
.card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.13);
}
.card h3{ margin:0 0 8px; font-size:16px; }
.card p{ margin:0; color:var(--muted); line-height:1.6; font-size:14px; }

.cardActions{ margin-top:12px; display:flex; gap:10px; flex-wrap:wrap; }

/* Timeline */
.timeline{
  display:grid;
  gap:14px;
  margin-top:10px;
}
.milestone{
  display:grid;
  grid-template-columns: 34px 1fr;
  gap:12px;
}
.msLeft{
  position:relative;
  display:flex;
  justify-content:center;
}
.msDot{
  width:12px;
  height:12px;
  border-radius:6px;
  background: linear-gradient(135deg, var(--blue), #7a55ff);
  box-shadow: 0 10px 26px rgba(74,163,255,0.25);
  margin-top:14px;
}
.msLine{
  position:absolute;
  top:28px;
  bottom:-10px;
  width:2px;
  background: rgba(255,255,255,0.08);
}
.msCard{
  padding:18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.09);
}
.msTitleRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}
.msCard h3{ margin:0; font-size:16px; }
.msTag{
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  color:var(--muted);
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.07);
}
.msCard ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
}

/* FAQ */
.faq{ display:grid; gap:10px; }
.faqItem{
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.09);
  overflow:hidden;
}
.faqItem summary{
  list-style:none;
  cursor:pointer;
  padding:16px 18px;
  font-weight:800;
}
.faqItem summary::-webkit-details-marker{ display:none; }
.faqBody{
  padding:0 18px 16px;
  color:var(--muted);
  line-height:1.7;
  font-size:14px;
}

/* CTA */
.ctaCard{
  border-radius: var(--radius2);
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.11);
  box-shadow: var(--shadow);
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.ctaCard h2{ margin:0 0 6px; font-size:24px; }
.ctaCard p{ margin:0; color:var(--muted); line-height:1.6; }
.ctaBtns{ display:flex; gap:10px; flex-wrap:wrap; }

/* Footer */
.footer{
  padding:28px 0 26px;
  color:var(--muted2);
}
.footerInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border-top:1px solid rgba(255,255,255,0.06);
  padding-top:18px;
}
.footText{ margin-top:8px; font-size:13px; color:var(--muted2); }
.footRight a{
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
}
.footRight a:hover{ background: rgba(255,255,255,0.06); }

.legal{
  margin-top:14px;
  font-size:12px;
  color: rgba(233,238,252,0.45);
}

/* Anim */
.reveal{ animation: popIn 420ms ease both; }
@keyframes popIn{
  from{ transform: translateY(10px); opacity:0; }
  to{ transform: translateY(0); opacity:1; }
}

/* Responsive */
@media (max-width: 980px){
  .heroInner{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .ctaCard{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 760px){
  .nav{ display:none; }
  .mobileMenuBtn{ display:grid; }
  .heroTitle{ font-size:42px; }
  .stat{ min-width: 160px; }
}
