:root{
  --bg:#0b1220;
  --panel:#111a2e;
  --text:#e7eefc;
  --muted:#a9b7d3;
  --line:rgba(255,255,255,.10);
  --accent:#6aa6ff;
  --accent2:#22c55e;
  --warn:#f59e0b;
  --max:1100px;
  --radius:14px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(106,166,255,.22), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(34,197,94,.12), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  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;
}
.brand{display:flex; gap:10px; align-items:center; font-weight:700; letter-spacing:.2px}
.logo{
  width:34px;height:34px;border-radius:10px;
  background: linear-gradient(135deg, var(--accent), rgba(255,255,255,.2));
  box-shadow: 0 10px 30px rgba(106,166,255,.18);
}
.menu{display:flex; gap:18px; align-items:center}
.menu a{color:var(--muted); font-size:14px}
.menu a:hover{color:var(--text)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:600; font-size:14px;
}
.btn:hover{background:rgba(255,255,255,.10)}
.btn-primary{
  border-color: rgba(106,166,255,.45);
  background: linear-gradient(135deg, rgba(106,166,255,.22), rgba(255,255,255,.06));
}
.btn-primary:hover{background: linear-gradient(135deg, rgba(106,166,255,.30), rgba(255,255,255,.08))}
.hero{padding:54px 0 28px}
.hero-grid{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:22px;
  align-items:stretch;
}
.card{
  background:rgba(17,26,46,.72);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.kicker{color:var(--muted); font-size:13px; letter-spacing:.35px; text-transform:uppercase}
h1{margin:10px 0 12px; font-size:42px; line-height:1.12}
.lead{color:var(--muted); font-size:16px; max-width:62ch}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.pill{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}
.callouts{display:grid; gap:10px}
.callout{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  padding:12px 12px;
  border-radius:12px;
}
.callout b{display:block; margin-bottom:2px}
.callout small{color:var(--muted)}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.grid2{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
.section{padding:18px 0 44px}
h2{margin:0 0 10px; font-size:24px}
h3{margin:0 0 8px; font-size:16px}
ul{margin:8px 0 0 18px; color:var(--muted)}
.footer{
  padding:26px 0; border-top:1px solid var(--line);
  color:var(--muted); font-size:13px;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:13px;
}
hr.sep{border:none; border-top:1px solid var(--line); margin:18px 0}
.table{
  width:100%; border-collapse:collapse; overflow:hidden;
  border-radius:12px; border:1px solid var(--line);
}
.table th,.table td{
  padding:12px 12px; border-bottom:1px solid var(--line); text-align:left;
}
.table th{color:var(--muted); font-weight:600; font-size:13px; background:rgba(255,255,255,.03)}
.table tr:last-child td{border-bottom:none}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
}
textarea{min-height:120px; resize:vertical}
.note{color:var(--muted); font-size:13px}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  h1{font-size:34px}
  .menu{display:none}
}
