:root{
  color-scheme: dark;
  --bg:#070A12;
  --bg2:#0B1024;
  --text:#EAF0FF;
  --muted:#A9B4D1;
  --border:rgba(255,255,255,.10);
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.04);
  --shadow:0 18px 55px rgba(0,0,0,.45);
  --brand:#7C5CFF;
  --brand2:#18C8FF;
  --ok:#4CE6A6;
  --warn:#FFC24A;
  --danger:#FF5C7A;
  --radius:16px;
  --radius2:22px;
  --container:1120px;
  --font:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
[hidden]{display:none!important}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 25% -10%, rgba(124,92,255,.28), transparent 60%),
    radial-gradient(900px 600px at 85% 0%, rgba(24,200,255,.18), transparent 55%),
    radial-gradient(1100px 750px at 50% 110%, rgba(124,92,255,.12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.96}
img{max-width:100%;height:auto;display:block}

.container{
  width:min(var(--container), calc(100% - 44px));
  margin:0 auto;
}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left:18px;
  top:14px;
  width:auto;
  height:auto;
  padding:10px 12px;
  border-radius:10px;
  background:rgba(0,0,0,.65);
  border:1px solid var(--border);
  z-index:1000;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(14px);
  background:rgba(7,10,18,.62);
  border-bottom:1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:160px;
}
.brandMark{
  width:30px;
  height:30px;
  border-radius:10px;
  box-shadow:0 12px 26px rgba(124,92,255,.24);
}
.brandText{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brandName{font-weight:750;letter-spacing:.2px}
.brandTag{font-size:12px;color:var(--muted)}

.navLinks{
  display:flex;
  align-items:center;
  gap:18px;
}
.navLinks a{
  font-size:14px;
  color:var(--muted);
}
.navLinks a[aria-current="page"]{color:var(--text)}
.navLinks a:hover{color:var(--text);opacity:1}

.navRight{
  display:flex;
  align-items:center;
  gap:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-weight:650;
  font-size:14px;
  white-space:nowrap;
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{background:rgba(255,255,255,.06)}
.btn:active{transform:translateY(1px)}
.btn.primary{
  background:linear-gradient(135deg, rgba(124,92,255,.95), rgba(24,200,255,.85));
  border-color:rgba(255,255,255,.15);
  box-shadow:0 16px 40px rgba(124,92,255,.22);
}
.btn.primary:hover{background:linear-gradient(135deg, rgba(124,92,255,1), rgba(24,200,255,.95))}
.btn.ghost{background:transparent}
.btn.small{padding:8px 12px;font-size:13px}

.burger{
  display:none;
  align-items:center;
  justify-content:center;
  width:42px;
  height:40px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
}
.burger svg{width:18px;height:18px}

.mobileMenu{
  display:none;
  padding:12px 0 18px 0;
}
.mobileMenu a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:14px;
}
.mobileMenu a:hover{color:var(--text)}
.mobileMenu .ctaRow{
  display:flex;
  gap:10px;
  padding-top:14px;
  border-top:1px solid var(--border);
}
.mobileMenu.open{display:block}

.hero{
  padding:64px 0 30px 0;
}
.heroGrid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:26px;
  align-items:center;
}
.badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:13px;
}
.badgeDot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
}

h1{
  margin:14px 0 10px 0;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.7px;
}
.subhead{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width:56ch;
}
.heroCtas{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}
.heroNote{
  margin-top:14px;
  color:var(--muted);
  font-size:13px;
}

.heroCard{
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  padding:18px;
}
.heroCard h3{
  margin:0 0 10px 0;
  font-size:14px;
  color:var(--muted);
  font-weight:700;
}
.heroCard ul{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.kpi{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.18);
}
.kpi b{font-size:14px}
.kpi span{display:block;color:var(--muted);font-size:13px;line-height:1.45}

.section{
  padding:56px 0;
}
.sectionHeader{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:18px;
}
.sectionHeader h2{
  margin:0;
  font-size:28px;
  letter-spacing:-.3px;
}
.sectionHeader p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
  max-width:60ch;
}

.grid2{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}

.card{
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  border-radius:var(--radius);
  padding:16px;
}
.card.soft{background:rgba(255,255,255,.03)}
.card h3{margin:0 0 8px 0;font-size:16px;letter-spacing:-.2px}
.card p{margin:0;color:var(--muted);font-size:14px;line-height:1.6}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  color:var(--muted);
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.16);
}
.chip i{
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
}

.flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.step{
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
}
.stepNum{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:10px;
  background:rgba(124,92,255,.18);
  border:1px solid rgba(124,92,255,.25);
  color:var(--text);
  font-weight:800;
  font-size:13px;
}
.step h3{margin:10px 0 6px 0;font-size:15px}
.step p{margin:0;color:var(--muted);font-size:13.5px;line-height:1.6}

.shots{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.shot{
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background:rgba(0,0,0,.22);
}
.shot img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  background:rgba(0,0,0,.22);
}
.shotBody{
  padding:14px;
  display:grid;
  gap:8px;
}
.shotBody h3{
  margin:0;
  font-size:15px;
}
.shotBody p{
  margin:0;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.65;
}
.shot .ph{
  aspect-ratio:16/10;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  gap:10px;
  padding:14px;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(124,92,255,.22), transparent 55%),
    radial-gradient(680px 520px at 90% 18%, rgba(24,200,255,.16), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.phTitle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--muted);
  font-size:12px;
}
.phBars{
  display:grid;
  gap:8px;
}
.bar{
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
}
.bar.fill{background:linear-gradient(135deg, rgba(124,92,255,.65), rgba(24,200,255,.45))}

.demoGrid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.mediaCard{
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.04);
}
.mediaThumb{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  display:block;
  background:rgba(0,0,0,.22);
}
.mediaInfo{
  padding:14px;
}
.mediaInfo h3{
  margin:0 0 8px 0;
  font-size:15px;
}
.mediaInfo p{
  margin:0;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.65;
}

.faq{
  display:grid;
  gap:10px;
}
.qa{
  border:1px solid var(--border);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  overflow:hidden;
}
.qa summary{
  cursor:pointer;
  padding:14px 14px;
  list-style:none;
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-weight:700;
  font-size:14px;
}
.qa summary::-webkit-details-marker{display:none}
.qa summary span{color:var(--muted);font-weight:650}
.qa .ans{
  padding:0 14px 14px 14px;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}

.pricingGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:16px;
}
.plan{
  border-radius:22px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  padding:18px;
  position:relative;
  overflow:hidden;
}
.plan.featured{
  background:linear-gradient(180deg, rgba(124,92,255,.14), rgba(255,255,255,.03));
  border-color:rgba(124,92,255,.34);
  box-shadow:0 22px 70px rgba(124,92,255,.16);
}
.planTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.planName{font-weight:850;letter-spacing:-.2px}
.planPrice{
  display:flex;
  align-items:flex-end;
  gap:10px;
  margin-top:10px;
  font-size:36px;
  letter-spacing:-.8px;
  font-weight:900;
}
.planUnit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:70px;
  min-height:48px;
  padding:8px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:var(--text);
  font-size:22px;
  line-height:1;
  font-weight:850;
  letter-spacing:-.3px;
}
.planList{
  margin:14px 0 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.planList li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.tick{
  width:18px;
  height:18px;
  flex:0 0 auto;
  margin-top:2px;
  color:var(--ok);
}

.tableWrap{
  border:1px solid var(--border);
  border-radius:18px;
  overflow:auto;
  background:rgba(255,255,255,.03);
}
table{
  width:100%;
  border-collapse:collapse;
  min-width:760px;
}
th,td{
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
  font-size:14px;
}
th{color:var(--muted);font-weight:800}
td{color:var(--text)}
td.muted{color:var(--muted)}
.ok{color:var(--ok);font-weight:900}
.no{color:rgba(255,255,255,.35);font-weight:900}

.legal{
  max-width:78ch;
}
.legal h2{margin:0 0 10px 0}
.legal h3{margin:22px 0 8px 0;font-size:16px}
.legal p,.legal li{
  color:var(--muted);
  line-height:1.75;
  font-size:14px;
}
.legal ul{margin:8px 0 0 18px}
.legal .callout{
  margin:18px 0;
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(124,92,255,.26);
  background:rgba(124,92,255,.10);
}

.footer{
  border-top:1px solid var(--border);
  margin-top:46px;
  padding:28px 0 34px 0;
  background:rgba(0,0,0,.18);
}
.footerGrid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:16px;
}
.footer p{margin:10px 0 0 0;color:var(--muted);font-size:13.5px;line-height:1.65}
.footer h4{margin:0 0 10px 0;font-size:14px}
.footer a{display:block;color:var(--muted);font-size:13.5px;padding:6px 0}
.footer a:hover{color:var(--text)}
.fineprint{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  align-items:center;
  justify-content:space-between;
  color:var(--muted);
  font-size:12.5px;
}

.pageHeader{
  padding:42px 0 16px 0;
}
.pageHeader h1{font-size:34px}

.notice{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:14px;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}

@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr;gap:18px}
  h1{font-size:38px}
  .grid3{grid-template-columns:1fr 1fr}
  .shots{grid-template-columns:1fr}
  .demoGrid{grid-template-columns:1fr}
  .flow{grid-template-columns:1fr 1fr}
  .pricingGrid{grid-template-columns:1fr}
  .footerGrid{grid-template-columns:1fr 1fr}
}
@media (max-width: 760px){
  .navLinks{display:none}
  .burger{display:inline-flex}
  .navRight .btn.small{display:none}
  .grid2{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .flow{grid-template-columns:1fr}
  h1{font-size:34px}
  .container{width:min(var(--container), calc(100% - 34px))}
}
