:root{
  --bg:#070B14;
  --panel:#0B1220;
  --panel2:#0E1830;
  --text:#E8EEFF;
  --muted:#A8B3D6;
  --line:rgba(255,255,255,.10);
  --shadow: 0 20px 70px rgba(0,0,0,.55);
  --radius:18px;

  --accent1:#7C3AED;
  --accent2:#22D3EE;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  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; }
.glow{
  position:absolute; width:620px; height:620px; filter:blur(80px);
  opacity:.35; border-radius:999px;
}
.g1{ left:-140px; top:-160px; background: radial-gradient(circle at 30% 30%, var(--accent1), transparent 55%); }
.g2{ right:-180px; bottom:-200px; background: radial-gradient(circle at 30% 30%, var(--accent2), transparent 55%); }
.noise{
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity:.12;
}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,11,20,.62);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800;
}
.logo{
  width:34px; height:34px; border-radius:12px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow: 0 12px 30px rgba(124,58,237,.35);
}
.brandText{ font-size:16px; letter-spacing:.3px; }
.badge{
  font-size:11px; font-weight:700;
  padding:5px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,.03);
}

.links{
  display:flex; align-items:center; gap:16px;
}
.links a{
  font-size:14px;
  color:var(--muted);
}
.links a:hover{ color:var(--text); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-weight:700;
  font-size:14px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background:rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}
.btn.primary{
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color:#06101F;
}
.btn.primary:hover{ filter: brightness(1.05); }
.btn.ghost{ background:rgba(255,255,255,.03); }
.arrow{ font-weight:900; }

.menuBtn{
  display:none;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.menuBtn span{
  display:block; height:2px; width:18px;
  background:var(--text);
  margin:5px auto;
  opacity:.85;
}

.hero{
  padding:54px 0 26px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
}
.eyebrow{
  color:var(--muted);
  font-weight:700;
  margin:0 0 10px;
  letter-spacing:.2px;
}
h1{
  font-size: clamp(34px, 4vw, 56px);
  line-height:1.05;
  margin:0 0 14px;
}
.grad{
  background: linear-gradient(135deg, var(--accent2), var(--accent1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.sub{
  color:var(--muted);
  font-size:16px;
  margin:0 0 18px;
  max-width:56ch;
}
.ctaRow{ display:flex; gap:12px; flex-wrap:wrap; margin: 16px 0 12px; }
.trustRow{ display:flex; gap:14px; flex-wrap:wrap; margin-top:14px; }
.trustItem{
  display:flex; align-items:center; gap:10px;
  color:var(--muted);
  font-size:13px;
  border:1px solid var(--line);
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
}
.dot{ width:8px; height:8px; border-radius:99px; background:var(--accent2); box-shadow: 0 0 18px rgba(34,211,238,.5); }

.heroCardWrap{ display:flex; flex-direction:column; gap:12px; }
.heroCard{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}
.cardTop{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
  margin-bottom:10px;
}
.cardTitle{ font-weight:800; letter-spacing:.2px; }
.cardSub{ color:var(--muted); font-size:12px; margin-top:2px; }
.pill{
  font-size:12px; font-weight:800;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(34,211,238,.12);
  border:1px solid rgba(34,211,238,.25);
  color: #BFF7FF;
}
.callStream{
  display:flex; flex-direction:column; gap:10px;
  padding: 10px 0 8px;
}
.bubble{
  max-width: 92%;
  border-radius: 16px;
  padding:10px 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.bubble .meta{
  font-size:11px;
  color:var(--muted);
  margin-bottom:6px;
  font-weight:700;
}
.bubble.user{ margin-left:auto; background: rgba(124,58,237,.10); border-color: rgba(124,58,237,.22); }
.bubble.bot{ margin-right:auto; background: rgba(34,211,238,.08); border-color: rgba(34,211,238,.18); }

.cardBottom{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:10px;
}
.stat{
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px;
  background: rgba(0,0,0,.18);
}
.statK{ color:var(--muted); font-size:11px; font-weight:800; letter-spacing:.2px; }
.statV{ font-weight:800; margin-top:4px; font-size:13px; }

.miniRow{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.miniCard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding:12px;
}
.miniK{ color:var(--muted); font-size:12px; font-weight:800; }
.miniV{ font-size:18px; font-weight:900; margin-top:4px; }

.strip{
  padding: 18px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.stripInner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
}
.stripText{ margin:0; color:var(--muted); font-weight:800; }
.logos{ display:flex; gap:14px; flex-wrap:wrap; color:var(--muted); font-weight:800; font-size:13px; }
.logos span{ opacity:.9; }

.section{ padding: 56px 0; }
.section.alt{ background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.sectionHead{
  max-width: 70ch;
  margin-bottom: 18px;
}
.sectionHead h2{ margin:0 0 8px; font-size: clamp(24px, 2.5vw, 34px); }
.sectionHead p{ margin:0; color:var(--muted); }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.feature{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.ic{ font-size:22px; }
.feature h3{ margin:10px 0 6px; }
.feature p{ margin:0 0 12px; color:var(--muted); }
.feature ul{ margin:0; padding-left: 18px; color:var(--muted); }
.feature li{ margin: 6px 0; }

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top: 12px;
}
.step{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
  display:flex; gap:12px;
}
.stepN{
  width:34px; height:34px;
  border-radius:12px;
  display:grid; place-items:center;
  font-weight:900;
  background: linear-gradient(135deg, rgba(124,58,237,.25), rgba(34,211,238,.18));
  border:1px solid var(--line);
}
.step h3{ margin:0 0 6px; }
.step p{ margin:0; color:var(--muted); }

.callout{
  margin-top: 16px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  background: linear-gradient(135deg, rgba(124,58,237,.10), rgba(34,211,238,.08));
}
.calloutLeft{ max-width: 65ch; }
.calloutLeft h3{ margin:0 0 6px; }
.calloutLeft p{ margin:0; color:var(--muted); }
.calloutRight{
  display:flex; gap:10px; flex-wrap:wrap;
}
.metric{
  border:1px solid var(--line);
  border-radius: 16px;
  padding:12px;
  min-width: 150px;
  background: rgba(0,0,0,.16);
}
.mK{ color:var(--muted); font-weight:800; font-size:12px; }
.mV{ font-weight:900; font-size:18px; margin-top:4px; }

.grid2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
  margin-top: 12px;
}
.panel{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
}
.panel h3{ margin:0 0 10px; }
.chips{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 10px; }
.chip{
  font-size:12px; font-weight:800;
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
}

.muted{ color:var(--muted); }

.codeBox{
  margin-top:14px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  background: rgba(0,0,0,.22);
}
.codeTop{
  display:flex; justify-content:space-between; align-items:center;
  padding:10px 12px;
  border-bottom:1px solid var(--line);
  color: var(--muted);
  font-weight:800;
  font-size:12px;
}
.copyBtn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight:800;
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
}
.copyBtn:hover{ background: rgba(255,255,255,.06); }
pre{ margin:0; padding:12px; overflow:auto; }
code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size:12px; color:#DCE6FF; }

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top: 12px;
}
.priceCard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
  position:relative;
}
.priceCard.highlight{
  background: linear-gradient(180deg, rgba(124,58,237,.14), rgba(34,211,238,.08));
  border-color: rgba(255,255,255,.18);
  transform: translateY(-4px);
}
.ribbon{
  position:absolute; top:14px; right:14px;
  font-size:11px; font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid var(--line);
  color: var(--text);
}
.priceTop h3{ margin:0; }
.priceTop p{ margin:6px 0 0; }
.price{ margin:14px 0 8px; display:flex; align-items:baseline; gap:6px; }
.amt{ font-size:30px; font-weight:950; }
.per{ color:var(--muted); font-weight:800; }
.plist{ margin:0 0 14px; padding-left: 18px; color:var(--muted); }
.plist li{ margin: 7px 0; }

.w100{ width:100%; }

.fine{
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.demo{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.demoLeft h2{ margin:0 0 8px; }
.demoLeft p{ margin:0 0 12px; color:var(--muted); }
.bullets{ display:grid; gap:8px; }
.b{ color: var(--text); opacity:.92; font-weight:800; }

.form{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
  background: rgba(0,0,0,.18);
}
label{ display:block; font-weight:800; font-size:12px; color:var(--muted); margin-bottom:10px; }
input, textarea{
  width:100%;
  margin-top:6px;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{ border-color: rgba(34,211,238,.35); box-shadow: 0 0 0 4px rgba(34,211,238,.10); }
.row2{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; }

.faq{
  display:grid;
  gap:10px;
  max-width: 900px;
}
details{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:12px 14px;
}
summary{
  cursor:pointer;
  font-weight:900;
}
details p{ margin:10px 0 0; color:var(--muted); }

.footer{
  padding: 30px 0 20px;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.16);
}
.footerInner{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  padding-bottom: 12px;
}
.footerBrand{ margin-bottom:8px; }
.footLinks{ display:flex; gap:14px; flex-wrap:wrap; color:var(--muted); font-weight:800; }
.footLinks a:hover{ color:var(--text); }
.tiny{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  font-size:12px;
}

/* Responsive */
@media (max-width: 980px){
  .heroGrid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .cardBottom{ grid-template-columns: 1fr; }
  .miniRow{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .demo{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .menuBtn{ display:inline-grid; place-items:center; }
  .links{
    position:absolute;
    top:64px; left:0; right:0;
    display:none;
    flex-direction:column;
    gap:12px;
    padding:14px 20px 18px;
    background: rgba(7,11,20,.92);
    border-bottom:1px solid var(--line);
  }
  .links.open{ display:flex; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .row2{ grid-template-columns: 1fr; }
}
