:root{
  --bg:#0b1220;
  --panel:#111a2e;
  --panel-2:#0f1830;
  --text:#e7eefc;
  --muted:#b5c3e6;
  --line:rgba(255,255,255,.12);
  --accent:#7dd3fc;
  --accent2:#a78bfa;
  --good:#34d399;
  --warn:#fb7185;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
  --radius:18px;
  --max: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%}
body{
  margin:0;
  font-family:var(--font);
  background:
    radial-gradient(1200px 800px at 15% -10%, rgba(125,211,252,.22), transparent 55%),
    radial-gradient(900px 650px at 100% 0%, rgba(167,139,250,.18), transparent 55%),
    radial-gradient(900px 650px at 70% 110%, rgba(52,211,153,.12), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.72);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.logo{
  width:38px; height:38px;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(125,211,252,.95), rgba(167,139,250,.85));
  box-shadow: 0 10px 30px rgba(125,211,252,.18);
}
.brand strong{font-size:14px; letter-spacing:.3px}
.brand span{display:block; color:var(--muted); font-size:12px; margin-top:2px}
.menu{display:flex; align-items:center; gap:18px; flex-wrap:wrap}
.menu a{
  text-decoration:none;
  color:var(--muted);
  font-size:13px;
  padding:8px 10px;
  border-radius:12px;
}
.menu a:hover{background: rgba(255,255,255,.06); color:var(--text)}
.cta{
  display:flex; gap:10px; align-items:center; flex-wrap:wrap;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:14px;
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.btn:hover{background: rgba(255,255,255,.08)}
.btn.primary{
  border-color: rgba(125,211,252,.35);
  background: linear-gradient(135deg, rgba(125,211,252,.18), rgba(167,139,250,.14));
}
.btn.good{
  border-color: rgba(52,211,153,.35);
  background: linear-gradient(135deg, rgba(52,211,153,.16), rgba(125,211,252,.10));
}
.hero{padding:64px 0 28px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:stretch;
}
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr; }
}
.card{
  background: rgba(17,26,46,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-left{padding:30px}
.kicker{
  display:inline-flex; align-items:center; gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(125,211,252,.22);
  color:var(--muted);
  background: rgba(125,211,252,.06);
  font-size:12px;
}
.h1{
  font-size:42px;
  line-height:1.1;
  margin:14px 0 10px;
  letter-spacing:-.7px;
}
@media (max-width: 520px){
  .h1{font-size:34px}
}
.sub{
  color:var(--muted);
  font-size:15px;
  margin:0 0 18px;
  max-width: 60ch;
}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 22px}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-size:12px;
}
.section{padding:30px 0}
.section h2{
  font-size:22px;
  letter-spacing:-.2px;
  margin:0 0 14px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 920px){
  .grid-3{grid-template-columns:1fr}
}
.feature{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.feature h3{margin:0 0 8px; font-size:16px}
.feature p{margin:0; color:var(--muted); font-size:13px}
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 920px){ .split{grid-template-columns:1fr} }
.list{
  margin:0; padding-left:18px; color:var(--muted); font-size:13px;
}
.form-card{padding:22px}
label{display:block; font-size:12px; color:var(--muted); margin:10px 0 6px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,18,32,.55);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(125,211,252,.5);
  box-shadow: 0 0 0 4px rgba(125,211,252,.08);
}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 620px){ .row{grid-template-columns:1fr} }
.check{
  display:flex; align-items:flex-start; gap:10px;
  margin-top:12px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}
.check input{width:18px; height:18px; margin-top:2px}
.small{font-size:12px; color:var(--muted)}
.small a{color:var(--accent); text-decoration:none}
.small a:hover{text-decoration:underline}
.hr{height:1px; background: var(--line); margin:18px 0}
.footer{
  padding:26px 0 36px;
  border-top:1px solid var(--line);
  margin-top:40px;
}
.footgrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:14px;
}
@media (max-width: 920px){ .footgrid{grid-template-columns:1fr} }
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(52,211,153,.25);
  background: rgba(52,211,153,.08);
  color:var(--muted);
  font-size:12px;
}
.notice{
  font-size:12px;
  color:var(--muted);
  margin-top:12px;
}
.toast{
  display:none;
  margin-top:12px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(52,211,153,.35);
  background: rgba(52,211,153,.08);
  color:var(--text);
  font-size:13px;
}
.toast.show{display:block}
