:root{
  --bg:#0b0f19;
  --card:#11172a;
  --muted:#8ea0c5;
  --text:#e9eefc;
  --accent:#6ee7ff;
  --accent2:#a78bfa;
  --border:rgba(255,255,255,.10);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max:1100px;
}
*{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";
  color:var(--text);
  background: radial-gradient(1200px 800px at 10% -10%, rgba(110,231,255,.15), transparent 60%),
              radial-gradient(900px 700px at 100% 0%, rgba(167,139,250,.18), transparent 55%),
              linear-gradient(180deg, #070a12 0%, var(--bg) 40%, #070a12 100%);
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

/* Header */
.header{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(7,10,18,.65);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; gap:10px; align-items:center}
.logo{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, rgba(110,231,255,.9), rgba(167,139,250,.9));
  box-shadow: var(--shadow);
  position:relative;
}
.logo:after{
  content:"";
  position:absolute; inset:9px;
  border-radius:10px;
  background: rgba(7,10,18,.75);
  border:1px solid rgba(255,255,255,.12);
}
.brand h1{font-size:14px; margin:0; letter-spacing:.3px}
.brand p{margin:0; font-size:12px; color:var(--muted)}

.menu{display:flex; gap:18px; align-items:center}
.menu a{font-size:13px; color:rgba(233,238,252,.9); opacity:.9}
.menu a:hover{opacity:1}
.menu a.active{color:var(--accent)}

.burger{display:none; border:1px solid var(--border); background:rgba(17,23,42,.6); color:var(--text);
  padding:10px 12px; border-radius:14px;
}

.mobile{
  display:none;
  border-top:1px solid var(--border);
  padding:10px 0 16px;
}
.mobile a{display:block; padding:10px 0; color:rgba(233,238,252,.92)}
.mobile a.active{color:var(--accent)}

/* Hero */
.hero{padding:54px 0 18px}
.hero-grid{display:grid; grid-template-columns: 1.3fr .7fr; gap:26px; align-items:stretch}
.kicker{display:inline-flex; gap:10px; align-items:center; font-size:12px; color:var(--muted);
  padding:8px 12px; border:1px solid var(--border); background:rgba(17,23,42,.45); border-radius:999px;
}
.dot{width:8px; height:8px; border-radius:50%; background:var(--accent)}
.h1{font-size:42px; line-height:1.08; margin:16px 0 12px; letter-spacing:-.6px}
.lead{font-size:16px; color:rgba(233,238,252,.85); line-height:1.6; margin:0 0 18px}
.cta-row{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px; border-radius:16px;
  border:1px solid var(--border);
  background:rgba(17,23,42,.55);
  box-shadow: var(--shadow);
  font-size:13px; font-weight:600;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(110,231,255,.95), rgba(167,139,250,.95));
  color:#070a12;
  border-color: rgba(255,255,255,.20);
}
.btn:hover{transform: translateY(-1px)}

.hero-card{
  border:1px solid var(--border);
  background: rgba(17,23,42,.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}
.hero-card h3{margin:0 0 8px; font-size:13px}
.pills{display:flex; flex-wrap:wrap; gap:8px}
.pill{font-size:12px; color:rgba(233,238,252,.86); padding:7px 10px; border:1px solid var(--border);
  background:rgba(7,10,18,.5); border-radius:999px;
}

/* Sections */
.section{padding:28px 0}
.section-title{display:flex; align-items:end; justify-content:space-between; gap:18px; margin:0 0 14px}
.section-title h2{margin:0; font-size:18px; letter-spacing:-.2px}
.section-title p{margin:0; color:var(--muted); font-size:13px}

.grid-3{display:grid; grid-template-columns:repeat(3, 1fr); gap:14px}
.grid-2{display:grid; grid-template-columns:repeat(2, 1fr); gap:14px}
.card{
  border:1px solid var(--border);
  background: rgba(17,23,42,.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}
.card h3{margin:0 0 6px; font-size:14px}
.card p{margin:0; color:rgba(233,238,252,.82); font-size:13px; line-height:1.55}
.card ul{margin:10px 0 0; padding-left:18px; color:rgba(233,238,252,.82); font-size:13px}
.card li{margin:6px 0}

.badge{display:inline-flex; align-items:center; gap:8px; padding:7px 10px; border-radius:999px;
  border:1px solid var(--border); background:rgba(7,10,18,.5); color:var(--muted); font-size:12px;
}

/* Tables */
.table{
  width:100%; border-collapse:separate; border-spacing:0;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(17,23,42,.55);
  box-shadow: var(--shadow);
}
.table th, .table td{padding:12px 12px; font-size:13px; border-bottom:1px solid var(--border)}
.table th{color:rgba(233,238,252,.92); text-align:left; background:rgba(7,10,18,.55)}
.table td{color:rgba(233,238,252,.82)}
.table tr:last-child td{border-bottom:none}

/* Footer */
.footer{padding:22px 0 36px; border-top:1px solid var(--border); margin-top:26px; color:var(--muted)}
.footer-grid{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap}
.small{font-size:12px; line-height:1.5}

/* Forms */
.form{display:grid; gap:10px}
.input{width:100%; padding:12px 12px; border-radius:14px; border:1px solid var(--border);
  background:rgba(7,10,18,.55); color:var(--text); font-size:13px;
}
textarea.input{min-height:120px; resize:vertical}

/* Page header */
.pagehead{padding:34px 0 10px}
.pagehead h1{margin:0 0 8px; font-size:28px; letter-spacing:-.4px}
.pagehead p{margin:0; color:rgba(233,238,252,.82); line-height:1.6}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr;}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .menu{display:none}
  .burger{display:inline-flex}
  .mobile.show{display:block}
  .h1{font-size:34px}
}
