:root{
  --bg:#070A12;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.08);
  --text:rgba(255,255,255,.88);
  --muted:rgba(255,255,255,.62);
  --stroke:rgba(255,255,255,.12);
  --shadow: 0 20px 60px rgba(0,0,0,.55);
  --r:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{width:min(1120px, calc(100% - 40px)); margin:0 auto}

.bg{position:fixed; inset:0; z-index:-2; overflow:hidden}
.noise{
  position:absolute; inset:-20%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  opacity:.16;
  transform:translateZ(0);
}
.blob{
  position:absolute; width:560px; height:560px;
  filter: blur(50px);
  opacity:.55;
  border-radius:50%;
  mix-blend-mode:screen;
}
.blob-1{left:-160px; top:-140px; background: radial-gradient(circle at 30% 30%, #7C3AED, transparent 60%), radial-gradient(circle at 70% 70%, #22D3EE, transparent 60%)}
.blob-2{right:-180px; bottom:-180px; background: radial-gradient(circle at 30% 30%, #10B981, transparent 60%), radial-gradient(circle at 70% 70%, #F59E0B, transparent 60%)}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(7,10,18,.72), rgba(7,10,18,.32));
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.logo{
  width:34px; height:34px; display:grid; place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(124,58,237,.9), rgba(34,211,238,.9));
  box-shadow: 0 10px 30px rgba(124,58,237,.25);
  font-weight:800;
}
.name{letter-spacing:.22em; font-weight:800; font-size:13px; opacity:.9}
.menu{display:flex; gap:18px; opacity:.86}
.menu a{padding:10px 10px; border-radius:12px}
.menu a:hover{background:rgba(255,255,255,.06)}
.actions{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.05);
  color:var(--text);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  will-change: transform;
  font-weight:700;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.07); border-color:rgba(255,255,255,.18)}
.btn:active{transform: translateY(0px) scale(.99)}
.btn.primary{
  border-color: rgba(34,211,238,.35);
  background: linear-gradient(135deg, rgba(124,58,237,.9), rgba(34,211,238,.9));
}
.btn.ghost{background:rgba(255,255,255,.04)}

.burger{display:none; background:transparent; border:none; padding:10px; cursor:pointer}
.burger span{display:block; width:22px; height:2px; margin:5px 0; background:rgba(255,255,255,.75); border-radius:99px}

.mobile{
  display:none;
  padding:10px 0 18px;
  border-top:1px solid rgba(255,255,255,.06);
}
.mobile a{display:block; padding:12px 0; opacity:.88}
.mobile .btn{width:100%; margin-top:10px}

.hero{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:34px;
  padding:42px 0 24px;
  align-items:center;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  width:fit-content;
  color:var(--muted);
}
.dot{width:9px; height:9px; border-radius:50%; background:#22D3EE; box-shadow:0 0 0 6px rgba(34,211,238,.12)}
h1{font-size:48px; line-height:1.05; margin:16px 0 12px}
.grad{
  background: linear-gradient(135deg, #A78BFA, #22D3EE, #34D399);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{font-size:16px; color:var(--muted); max-width:560px}
.cta{display:flex; gap:12px; margin:18px 0 10px; flex-wrap:wrap}

.trust{
  display:flex; gap:12px; margin-top:18px; flex-wrap:wrap
}
.trust-item{
  padding:12px 14px;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}
.trust-num{font-weight:800}
.trust-text{font-size:12px; color:var(--muted)}

.phone{
  position:relative;
  border-radius:28px;
  padding:18px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.phone:before{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(34,211,238,.18), rgba(16,185,129,.18));
  filter: blur(18px);
  z-index:-1;
}
.phone-top{display:flex; gap:8px; justify-content:center; margin-bottom:10px; opacity:.8}
.cam{width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.28)}
.spk{width:52px; height:10px; border-radius:999px; background:rgba(255,255,255,.18)}
.screen{
  border-radius:22px;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.08);
  padding:16px;
}
.screen-header{display:flex; justify-content:space-between; align-items:center; margin-bottom:12px}
.chip{
  font-size:12px; letter-spacing:.12em;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.72);
}
.spark{
  width:10px; height:10px; border-radius:50%;
  background:#34D399; box-shadow:0 0 0 6px rgba(52,211,153,.12)
}
.bubble{
  border-radius:18px;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  margin:10px 0;
  color:rgba(255,255,255,.86);
  font-size:14px;
}
.bubble.user{margin-left:auto; max-width:92%; background: rgba(124,58,237,.14)}
.bubble.bot ul{margin:8px 0 0 16px; padding:0}
.why{margin-top:10px; color:rgba(255,255,255,.66); font-size:12px}
.cards{display:flex; gap:10px; margin-top:12px; flex-wrap:wrap}
.mini-card{
  flex:1;
  min-width:120px;
  padding:10px 10px;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  font-size:12px;
  color:rgba(255,255,255,.70);
}

.floating{
  display:flex; gap:10px; justify-content:center;
  margin-top:12px;
}
.float-card{
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  font-size:12px;
  color:rgba(255,255,255,.72);
  animation: float 4.2s ease-in-out infinite;
}
.float-card:nth-child(2){animation-delay: .7s}
.float-card:nth-child(3){animation-delay: 1.4s}
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

.section{padding:56px 0 0}
.section-head h2{margin:0 0 8px; font-size:28px}
.section-head p{margin:0; color:var(--muted)}

.grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  padding:18px 16px;
  border-radius:18px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 16px 50px rgba(0,0,0,.35);
}
.card h3{margin:0 0 6px}
.card p{margin:0; color:var(--muted); font-size:14px; line-height:1.5}

.steps{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:18px}
.step{
  display:flex; gap:12px;
  padding:18px 16px;
  border-radius:18px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}
.step-num{
  width:36px; height:36px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(34,211,238,.14);
  border:1px solid rgba(34,211,238,.22);
  font-weight:800;
}
.step p{margin:6px 0 0; color:var(--muted); font-size:14px}

.early{
  margin-top:14px;
  border-radius:22px;
  padding:20px;
  background: linear-gradient(135deg, rgba(124,58,237,.18), rgba(34,211,238,.12));
  border:1px solid rgba(255,255,255,.10);
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.form{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
input{
  width:min(320px, 78vw);
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
input:focus{border-color: rgba(34,211,238,.34)}
.toast{
  width:100%;
  color:rgba(255,255,255,.78);
  font-size:13px;
  margin-top:8px;
  min-height:18px;
}

.faq details{
  margin-top:10px;
  padding:14px 14px;
  border-radius:18px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}
.faq summary{cursor:pointer; font-weight:800}
.faq p{color:var(--muted); margin:10px 0 0}

.contact{
  margin:24px 0 40px;
  padding:22px 18px;
  border-radius:22px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.contact .mini{color:rgba(255,255,255,.55); margin-top:10px}

.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.show{
  opacity:1;
  transform: translateY(0px);
}

@media (max-width: 980px){
  .hero{grid-template-columns: 1fr; padding-top:28px}
  h1{font-size:40px}
  .grid{grid-template-columns: 1fr 1fr}
  .steps{grid-template-columns: 1fr}
  .menu,.actions{display:none}
  .burger{display:block}
  .mobile.open{display:block}
}
@media (max-width: 520px){
  .grid{grid-template-columns: 1fr}
  h1{font-size:34px}
}