:root{
  --bg0:#070B14;
  --bg1:#0B1220;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --line:rgba(255,255,255,.10);
  --txt:#EAF2FF;
  --muted:rgba(234,242,255,.72);
  --muted2:rgba(234,242,255,.55);
  --g1:#6D28D9;
  --g2:#22C55E;
  --g3:#06B6D4;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 22px;
  --radius2: 28px;
  --max: 1180px;
}

*{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;
  color:var(--txt);
  background: radial-gradient(1200px 600px at 10% 0%, rgba(109,40,217,.35), transparent 60%),
              radial-gradient(1000px 700px at 90% 10%, rgba(6,182,212,.28), transparent 55%),
              radial-gradient(900px 700px at 65% 95%, rgba(34,197,94,.20), transparent 60%),
              linear-gradient(180deg, var(--bg0), var(--bg1) 55%, #060A12);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.grid{display:grid; gap:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--txt);
  font-weight:700;
  letter-spacing:.2px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.09); border-color:rgba(255,255,255,.16)}
.btn.primary{
  border:0;
  background: linear-gradient(135deg, var(--g1), var(--g2), var(--g3));
  color:#06101A;
}
.btn.primary:hover{filter:brightness(1.03)}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  font-weight:650;
  font-size:13px;
}
.pill .dot{width:9px;height:9px;border-radius:50%; background: linear-gradient(135deg, var(--g1), var(--g2), var(--g3)); box-shadow:0 0 20px rgba(34,197,94,.35)}
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(16px);
  background: rgba(7,11,20,.52);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:12px}
.brand img{width:34px; height:34px}
.brand .name{font-weight:900; letter-spacing:-.4px}
.brand .tag{font-size:12px; color:var(--muted2); font-weight:650}

.navlinks{display:flex; gap:16px; align-items:center}
.navlinks a{
  font-size:14px;
  color:var(--muted);
  font-weight:650;
  padding:9px 10px;
  border-radius:999px;
  transition: background .15s ease, color .15s ease;
}
.navlinks a:hover{background:rgba(255,255,255,.06); color:var(--txt)}
.navcta{display:flex; gap:10px; align-items:center}

.mobile-toggle{
  display:none;
  width:44px; height:44px;
  align-items:center; justify-content:center;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}

.hero{
  padding:64px 0 22px;
}
.hero-wrap{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
.hero-card{
  border:1px solid rgba(255,255,255,.10);
  background: radial-gradient(700px 280px at 10% 20%, rgba(109,40,217,.28), transparent 55%),
              radial-gradient(700px 280px at 90% 40%, rgba(6,182,212,.22), transparent 55%),
              rgba(255,255,255,.04);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding:26px;
  overflow:hidden;
  position:relative;
}
.hero h1{
  margin:14px 0 10px;
  font-size:52px;
  line-height:1.02;
  letter-spacing:-1.4px;
}
.hero p{margin:0 0 18px; color:var(--muted); font-size:17px; line-height:1.55; max-width:58ch}
.hero .cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:18px}
.hero .mini{
  margin-top:18px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.kpis{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:18px;
}
.kpi{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius: 18px;
  padding:14px;
}
.kpi b{display:block; font-size:18px; letter-spacing:-.3px}
.kpi span{color:var(--muted2); font-size:13px; font-weight:650}

.hero-side{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding:22px;
  position:relative;
  overflow:hidden;
}
.hero-side:before{
  content:"";
  position:absolute;
  inset:-40px;
  background: conic-gradient(from 200deg, rgba(109,40,217,.22), rgba(34,197,94,.18), rgba(6,182,212,.22), rgba(109,40,217,.22));
  filter: blur(30px);
  opacity:.8;
}
.hero-side > *{position:relative; z-index:1}
.hero-side h3{margin:0 0 10px; font-size:16px; color:rgba(234,242,255,.88); letter-spacing:-.2px}
.llm-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.llm{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(11,18,32,.55);
  border-radius: 16px;
  padding:12px;
  display:flex;
  align-items:center;
  gap:12px;
}
.badge{
  width:34px;height:34px;border-radius:14px;
  background: linear-gradient(135deg, var(--g1), var(--g2), var(--g3));
  box-shadow: 0 0 22px rgba(6,182,212,.20);
}
.llm .t{font-weight:800; letter-spacing:-.2px}
.llm .s{font-size:12px; color:var(--muted2); font-weight:650; margin-top:2px}

section{padding:44px 0}
.section-title{
  display:flex; align-items:flex-end; justify-content:space-between; gap:12px;
  margin-bottom:16px;
}
.section-title h2{margin:0; font-size:28px; letter-spacing:-.6px}
.section-title p{margin:0; color:var(--muted); max-width:60ch}
.cards{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:18px;
  overflow:hidden;
  position:relative;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.card:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.055)}
.card h3{margin:0 0 8px; font-size:16px; letter-spacing:-.2px}
.card p{margin:0; color:var(--muted); font-size:14px; line-height:1.55}
.icon{
  width:42px;height:42px;border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(109,40,217,.25), rgba(34,197,94,.16), rgba(6,182,212,.20));
  display:flex; align-items:center; justify-content:center;
  margin-bottom:10px;
}
.icon svg{width:22px;height:22px; opacity:.9}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.panel{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius2);
  padding:22px;
}
.panel h3{margin:0 0 10px; font-size:18px; letter-spacing:-.4px}
.panel p{margin:0 0 10px; color:var(--muted); line-height:1.6}
.list{margin:0; padding:0; list-style:none; display:grid; gap:10px}
.list li{
  display:flex; gap:10px; align-items:flex-start;
  color:var(--muted);
  font-weight:650;
}
.check{
  width:18px; height:18px; border-radius:6px;
  background: linear-gradient(135deg, var(--g1), var(--g2), var(--g3));
  flex:none;
  margin-top:2px;
}
hr.sep{border:0; border-top:1px solid rgba(255,255,255,.08); margin:18px 0}
.cta-band{
  border:1px solid rgba(255,255,255,.10);
  background: radial-gradient(900px 260px at 20% 50%, rgba(109,40,217,.28), transparent 55%),
              radial-gradient(900px 260px at 80% 50%, rgba(6,182,212,.22), transparent 55%),
              rgba(255,255,255,.04);
  border-radius: var(--radius2);
  padding:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.cta-band h3{margin:0; font-size:18px; letter-spacing:-.4px}
.cta-band p{margin:4px 0 0; color:var(--muted); max-width:68ch}
footer{
  padding:30px 0 46px;
  border-top:1px solid rgba(255,255,255,.06);
  background: rgba(7,11,20,.30);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap:18px;
}
.small{color:var(--muted2); font-size:13px; line-height:1.6}
.flinks{display:grid; gap:8px}
.flinks a{color:var(--muted); font-weight:650; font-size:14px}
.flinks a:hover{color:var(--txt)}
.copyright{
  margin-top:18px;
  color:var(--muted2);
  font-size:12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
}

.pagehead{
  padding:42px 0 10px;
}
.breadcrumb{color:var(--muted2); font-size:13px; font-weight:650}
.pagehead h1{margin:10px 0 10px; font-size:40px; letter-spacing:-1px}
.pagehead p{margin:0; color:var(--muted); max-width:70ch; line-height:1.6}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
}
.table th, .table td{
  padding:14px 14px;
  border-bottom:1px solid rgba(255,255,255,.08);
  text-align:left;
  color:var(--muted);
  font-weight:650;
  font-size:14px;
}
.table th{color:rgba(234,242,255,.85); font-weight:800}
.table tr:last-child td{border-bottom:0}

.form{
  display:grid;
  gap:12px;
}
.inp, textarea{
  width:100%;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:var(--txt);
  outline:none;
  font-weight:650;
}
textarea{min-height:140px; resize:vertical}
.note{color:var(--muted2); font-size:13px; line-height:1.5}

.toast{
  position:fixed;
  bottom:16px;
  left:50%;
  transform:translateX(-50%);
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,11,20,.78);
  color:rgba(234,242,255,.92);
  font-weight:700;
  font-size:13px;
  display:none;
  z-index:999;
  backdrop-filter: blur(14px);
}

@media (max-width: 980px){
  .hero-wrap{grid-template-columns: 1fr}
  .cards{grid-template-columns: 1fr 1fr}
  .footer-grid{grid-template-columns: 1fr 1fr}
  .navlinks{display:none}
  .mobile-toggle{display:inline-flex}
  .nav.open .navlinks{
    display:grid;
    position:absolute;
    top:66px;
    left:18px;
    right:18px;
    padding:12px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.10);
    background: rgba(7,11,20,.86);
    backdrop-filter: blur(16px);
    gap:6px;
  }
  .nav.open .navlinks a{padding:12px 12px}
}
@media (max-width: 620px){
  .cards{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr}
  .hero h1{font-size:40px}
}
