:root{
  --bg0:#070912;
  --bg1:#0b1022;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:#eef2ff;
  --muted:rgba(238,242,255,.72);
  --border:rgba(255,255,255,.12);
  --shadow:0 18px 55px rgba(0,0,0,.35);
  --accent:#6aa6ff;
  --accent2:#7cf0c8;
  --accent3:#ffb86b;
  --danger:#ff6b6b;
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(106,166,255,.22), transparent 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(124,240,200,.16), transparent 55%),
    radial-gradient(700px 420px at 50% 100%, rgba(255,184,107,.10), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
}

a{color:inherit}
.wrap{max-width:1120px;margin:0 auto;padding:22px 18px 56px}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:18px; top:18px; width:auto; height:auto; padding:10px 12px;
  background:#111735; border:1px solid var(--border); border-radius:12px;
}

.topbar{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.logo{
  width:38px; height:38px; border-radius:14px;
  background:linear-gradient(135deg, var(--accent2), var(--accent));
  box-shadow: 0 10px 30px rgba(106,166,255,.18);
}
.brandText{display:flex; flex-direction:column; line-height:1.1}
.brandName{font-weight:900; letter-spacing:.2px}
.brandSub{font-size:12px; color:rgba(238,242,255,.62)}

.nav{display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.nav a{
  font-size:14px;
  color:rgba(238,242,255,.78);
  text-decoration:none;
}
.nav a:hover{color:rgba(238,242,255,.95); text-decoration:underline}
.navCta{
  padding:10px 12px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  font-weight:800;
  text-decoration:none;
}
.navCta:hover{transform:translateY(-1px); text-decoration:none}

.burger{
  display:none;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  border-radius:14px;
  padding:10px 12px;
  cursor:pointer;
}
.burger span{
  display:block; width:22px; height:2px; background:rgba(238,242,255,.8);
  margin:4px 0; border-radius:2px;
}
.mobileNav{
  display:none;
  margin-top:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  border-radius:18px;
  padding:10px;
}
.mobileNav a{
  display:block;
  padding:10px 10px;
  border-radius:14px;
  text-decoration:none;
  color:rgba(238,242,255,.86);
}
.mobileNav a:hover{background:rgba(255,255,255,.06)}
.mobileNav .navCta{margin-top:6px; text-align:center}

@media(max-width:920px){
  .nav{display:none}
  .burger{display:block}
  .mobileNav.show{display:block}
}

.hero{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  margin-top:20px;
  align-items:start;
}
@media(max-width:920px){ .hero{grid-template-columns:1fr} }

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(238,242,255,.86);
  font-weight:700;
  font-size:13px;
}
.pillDot{
  width:10px;height:10px;border-radius:999px;
  background:linear-gradient(135deg,var(--accent3),var(--accent));
  box-shadow:0 0 0 4px rgba(255,184,107,.12);
}

h1{
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.5px;
}
@media(max-width:520px){ h1{font-size:34px} }

.lead{
  margin:0 0 16px;
  color:var(--muted);
  font-size:16.5px;
  line-height:1.65;
}

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

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
}
.btn:hover{transform:translateY(-1px); text-decoration:none}
.btn.primary{
  border:none;
  background:linear-gradient(135deg, var(--accent) 0%, #8b7bff 45%, var(--accent3) 130%);
}
.btn.ghost{
  background:rgba(255,255,255,.04);
}
.btn.small{padding:10px 12px; border-radius:14px; font-weight:800}
.btn.full{width:100%}

.trustRow{display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:16px}
@media(max-width:720px){ .trustRow{grid-template-columns:1fr} }
.trustCard{
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  border-radius:18px;
  padding:12px 12px;
}
.trustTop{display:flex; gap:10px; align-items:center}
.trustIcon{
  width:12px;height:12px;border-radius:999px;
  background:linear-gradient(135deg,var(--accent2),var(--accent));
}
.trustTitle{font-weight:900}
.trustSub{margin-top:4px; font-size:12px; color:rgba(238,242,255,.70)}

.mini{margin-top:12px; font-size:12px; color:rgba(238,242,255,.62)}
code.inline{
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  padding:2px 7px;
  border-radius:10px;
}

.device{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.deviceTop{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.dots span{
  display:inline-block;
  width:8px;height:8px;border-radius:999px;margin-right:6px;
  background:rgba(238,242,255,.32);
}
.deviceTitle{font-weight:900; color:rgba(238,242,255,.86)}
.deviceBody{padding:14px}

.kv{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  border-radius:18px;
  padding:12px;
}
.kvRow{display:flex; justify-content:space-between; gap:10px; margin:6px 0}
.kvKey{color:rgba(238,242,255,.65); font-size:13px}
.kvVal{font-weight:800}
.kvVal.url{font-weight:700; color:rgba(238,242,255,.9); word-break:break-word}

.cards2{display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:12px}
@media(max-width:520px){ .cards2{grid-template-columns:1fr} }
.tiny{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  border-radius:16px;
  padding:10px;
}
.tinyTitle{font-weight:900}
.tinyText{margin-top:4px; font-size:12px; color:rgba(238,242,255,.72)}

.hint{
  margin-top:12px;
  padding:10px 12px;
  border-radius:16px;
  border:1px dashed rgba(124,240,200,.45);
  background:rgba(124,240,200,.08);
  color:rgba(238,242,255,.85);
  font-size:13px;
}

.ctaMini{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:12px; flex-wrap:wrap}
.fine{font-size:12px; color:rgba(238,242,255,.62)}

.socialProof{margin-top:12px; display:grid; gap:10px}
.quote{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  border-radius:18px;
  padding:12px;
}
.quoteMark{font-size:26px; font-weight:900; color:rgba(255,184,107,.85); line-height:1}
.quoteText{margin-top:6px; color:rgba(238,242,255,.86); line-height:1.5}
.quoteBy{margin-top:8px; font-size:12px; color:rgba(238,242,255,.62)}
.proofBadges{display:flex; gap:8px; flex-wrap:wrap}
.badge2{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  font-size:12px;
  color:rgba(238,242,255,.74);
}

.section{margin-top:34px}
.sectionHead{margin-bottom:12px}
h2{margin:0 0 6px; font-size:28px; letter-spacing:-.2px}
.muted{color:var(--muted)}

.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:12px}
@media(max-width:920px){ .steps{grid-template-columns:1fr} }
.step{
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  border-radius:22px;
  padding:14px;
  box-shadow: 0 16px 45px rgba(0,0,0,.22);
}
.stepNum{
  width:38px;height:38px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  font-weight:900;
  background:linear-gradient(135deg, rgba(106,166,255,.35), rgba(124,240,200,.18));
  border:1px solid rgba(255,255,255,.14);
}
.stepBody{margin-top:10px}
.stepTitle{font-weight:900}
.stepText{margin-top:6px; color:rgba(238,242,255,.70); line-height:1.55}

.featureGrid{display:grid; grid-template-columns:repeat(3,1fr); gap:12px}
@media(max-width:920px){ .featureGrid{grid-template-columns:1fr} }
.feature{
  display:flex; gap:12px; align-items:flex-start;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  border-radius:22px;
  padding:14px;
}
.fIcon{
  width:14px;height:14px;border-radius:999px;margin-top:6px;
  background:linear-gradient(135deg,var(--accent2),var(--accent));
  box-shadow:0 0 0 6px rgba(106,166,255,.10);
}
.fTitle{font-weight:900}
.fText{margin-top:6px; color:rgba(238,242,255,.70); line-height:1.55}

.pricing{display:grid; grid-template-columns:repeat(3,1fr); gap:12px}
@media(max-width:920px){ .pricing{grid-template-columns:1fr} }
.priceCard{
  position:relative;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  border-radius:22px;
  padding:16px;
  box-shadow: 0 18px 55px rgba(0,0,0,.26);
}
.priceTop{display:flex; align-items:baseline; justify-content:space-between; gap:10px}
.priceName{font-weight:950; font-size:18px}
.priceTag{font-size:12px; color:rgba(238,242,255,.62)}
.priceValue{margin-top:10px; font-size:32px; font-weight:950; letter-spacing:-.4px}
.per{font-size:14px; color:rgba(238,242,255,.62); font-weight:800}
.priceList{margin:12px 0 0; padding-left:18px; color:rgba(238,242,255,.78)}
.priceList li{margin:7px 0}
.priceCard.highlight{
  background:linear-gradient(180deg, rgba(106,166,255,.12), rgba(255,255,255,.05));
  border-color: rgba(106,166,255,.35);
}
.priceRibbon{
  position:absolute; top:14px; right:14px;
  font-size:12px; font-weight:950;
  padding:8px 10px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(255,184,107,.55), rgba(106,166,255,.35));
  border:1px solid rgba(255,255,255,.16);
}

.faq{
  display:grid;
  gap:10px;
}
details{
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  border-radius:18px;
  padding:10px 12px;
}
summary{
  cursor:pointer;
  font-weight:900;
  color:rgba(238,242,255,.88);
  list-style:none;
}
summary::-webkit-details-marker{display:none}
.faqBody{
  margin-top:10px;
  color:rgba(238,242,255,.72);
  line-height:1.6;
}

.waitlist{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:12px;
}
@media(max-width:920px){ .waitlist{grid-template-columns:1fr} }

.card{
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  border-radius:22px;
  padding:16px;
  box-shadow: 0 18px 55px rgba(0,0,0,.22);
}
.card.side{background:rgba(255,255,255,.045)}

.row{display:grid; grid-template-columns:1fr 1fr; gap:10px}
@media(max-width:520px){ .row{grid-template-columns:1fr} }

label{
  display:block;
  margin:10px 0 6px;
  font-size:13px;
  color:rgba(238,242,255,.72);
}
input,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.22);
  color:var(--text);
  outline:none;
}
textarea{min-height:96px; resize:vertical}

.consent{display:flex; align-items:center; gap:10px; margin-top:12px}
.consent input{width:auto}

.cta{display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-top:12px}

.toast{
  margin-top:12px;
  padding:10px 12px;
  border-radius:16px;
  border:1px dashed rgba(124,240,200,.45);
  background:rgba(124,240,200,.10);
  color:rgba(238,242,255,.90);
  display:none;
}
.error{border-color: rgba(255,107,107,.65) !important;}

.panelTitle{font-weight:950; margin:0 0 10px}
.sideList{margin:10px 0 0; padding-left:18px; color:rgba(238,242,255,.78)}
.sideList li{margin:7px 0}
.divider{height:1px; background:rgba(255,255,255,.10); margin:12px 0}

.legalGrid{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media(max-width:920px){ .legalGrid{grid-template-columns:1fr} }

.footer{
  margin-top:34px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:rgba(238,242,255,.60);
  font-size:13px;
}
