:root{
  --bg:#050914;
  --panel:#0b1226;
  --panel2:#0e1833;
  --text:#e8f1ff;
  --muted:rgba(232,241,255,.68);
  --blue:#2db7ff;
  --cyan:#4df0c6;
  --danger:#ff6b81;
  --stroke:rgba(255,255,255,.10);
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 800px at 20% 10%, rgba(45,183,255,.18), transparent 55%),
              radial-gradient(900px 700px at 90% 25%, rgba(77,240,198,.12), transparent 60%),
              var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

.bg-grid{
  position:fixed; inset:0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 30% 10%, black 30%, transparent 70%);
  opacity:.35;
  pointer-events:none;
}

.glow{
  position:fixed; inset:-200px;
  background: radial-gradient(500px 350px at 35% 20%, rgba(45,183,255,.18), transparent 70%),
              radial-gradient(480px 360px at 70% 35%, rgba(77,240,198,.14), transparent 70%);
  filter: blur(20px);
  pointer-events:none;
}

a{color:inherit;text-decoration:none}

.nav{
  position:sticky; top:0; z-index:30;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
  background: rgba(5,9,20,.55);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--stroke);
}

.brand{display:flex; gap:12px; align-items:center}
.logo{
  width:42px;height:42px;border-radius:14px;
  background: linear-gradient(135deg, rgba(45,183,255,.30), rgba(77,240,198,.22));
  border:1px solid rgba(45,183,255,.35);
  display:grid;place-items:center;
  font-weight:900;
  box-shadow: 0 12px 30px rgba(45,183,255,.12);
}
.brandText .name{font-weight:900; letter-spacing:.2px}
.brandText .tag{font-size:12px; color:var(--muted); margin-top:2px}

.wrap{max-width:1100px; margin:0 auto; padding:18px}

.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  padding:26px 0 8px;
}
@media (max-width: 920px){
  .hero{grid-template-columns:1fr; padding-top:16px}
}

.badge{
  display:inline-flex;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(45,183,255,.10);
  border:1px solid rgba(45,183,255,.20);
  color: rgba(232,241,255,.86);
  font-size:12px;
  letter-spacing:.7px;
  text-transform:uppercase;
}

h1{
  margin:14px 0 8px;
  font-size:46px;
  line-height:1.05;
  letter-spacing:-.6px;
}
@media (max-width: 520px){ h1{font-size:36px} }

.neon{
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow: 0 0 25px rgba(45,183,255,.15);
}

.sub{color:var(--muted); font-size:16px; line-height:1.55; max-width:60ch}

.heroActions{display:flex; gap:10px; margin-top:16px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(45,183,255,.95), rgba(77,240,198,.85));
  color:#04101f;
  font-weight:900;
  border:0;
  cursor:pointer;
  box-shadow: 0 20px 60px rgba(45,183,255,.18);
  transition: transform .12s ease, filter .12s ease;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.02)}
.btn:active{transform: translateY(0px)}
.btn.ghost{
  background: rgba(255,255,255,.06);
  color:var(--text);
  border:1px solid var(--stroke);
  box-shadow:none;
}
.btn.wide{width:100%}

.stats{
  display:flex; gap:10px; margin-top:18px; flex-wrap:wrap
}
.stat{
  padding:12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--stroke);
  min-width: 180px;
}
.statNum{font-weight:900; letter-spacing:.6px}
.statLabel{font-size:12px; color:var(--muted); margin-top:4px}

.botCard{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid rgba(45,183,255,.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
  min-height: 330px;
}
.botHead{
  display:flex;
  justify-content:center;
  gap:20px;
  padding:26px 0 12px;
  border-bottom:1px solid var(--stroke);
  background: rgba(11,18,38,.70);
}
.eye{
  width:18px; height:18px; border-radius:999px;
  background: radial-gradient(circle at 30% 30%, #fff, rgba(45,183,255,.65));
  box-shadow: 0 0 18px rgba(45,183,255,.45);
}
.botBody{padding:18px}
.scan{
  height:8px; border-radius:999px;
  background: linear-gradient(90deg, transparent, rgba(45,183,255,.95), transparent);
  animation: scan 1.6s ease-in-out infinite;
  opacity:.85;
}
@keyframes scan{
  0%{transform: translateX(-20%); opacity:.3}
  50%{transform: translateX(20%); opacity:1}
  100%{transform: translateX(-20%); opacity:.3}
}
.lines{margin-top:18px; display:grid; gap:10px}
.line{
  height:12px; border-radius:10px;
  background: rgba(45,183,255,.10);
  border:1px solid rgba(45,183,255,.12);
}
.hint{
  margin-top:16px;
  font-size:12px;
  color: rgba(232,241,255,.72);
  letter-spacing:.5px;
  text-transform:uppercase;
}

.section{padding:22px 0}
.sectionTitle h2{margin:0 0 6px; font-size:26px}
.sectionTitle p{margin:0; color:var(--muted)}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:14px;
}
@media (max-width: 920px){ .cards{grid-template-columns:1fr} }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--stroke);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.card .title{
  font-weight:900;
  display:flex; align-items:center; justify-content:space-between;
}
.pill{
  font-size:12px; padding:6px 10px; border-radius:999px;
  background: rgba(45,183,255,.10);
  border:1px solid rgba(45,183,255,.18);
  color: rgba(232,241,255,.9);
}
.card ul{margin:12px 0 0; padding-left:18px; color:var(--muted); line-height:1.6}

.panel{
  background: linear-gradient(180deg, rgba(15,22,41,.85), rgba(11,18,38,.65));
  border: 1px solid rgba(45,183,255,.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
  margin-top:14px;
}

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

.field label{font-weight:800; font-size:13px}
.field input,.field select{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color: var(--text);
  outline:none;
}
.field input:focus,.field select:focus{
  border-color: rgba(45,183,255,.55);
  box-shadow: 0 0 0 4px rgba(45,183,255,.12);
}
.field small{display:block; margin-top:6px; color:var(--muted); font-size:12px}

.result{
  margin-top:6px;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  min-height: 56px;
}
.result.ok{border-color: rgba(77,240,198,.35); color: rgba(232,241,255,.92)}
.result.bad{border-color: rgba(255,107,129,.35); color: rgba(232,241,255,.92)}

.footer{
  padding:26px 0 40px;
  color: var(--muted);
  text-align:center;
}