:root{
  --bg:#0b1220;
  --card:#0f1b33;
  --muted:#9fb0d0;
  --text:#eef3ff;
  --brand:#47b3ff;
  --brand2:#7c5cff;
  --border: rgba(255,255,255,.10);
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1100px;
  --ok:#31d0aa;
  --warn:#ffd166;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1000px 700px at 20% 0%, rgba(71,179,255,.18), transparent 50%),
              radial-gradient(900px 700px at 85% 10%, rgba(124,92,255,.16), transparent 55%),
              linear-gradient(180deg, #070b14, #0b1220 30%, #070b14);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.72);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.logo{
  width:38px; height:38px; border-radius:12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 25px rgba(71,179,255,.25);
  display:grid; place-items:center;
  font-weight:800;
}
.brand span{
  font-weight:750;
  letter-spacing:.2px;
}
nav ul{
  list-style:none; padding:0; margin:0;
  display:flex; gap:10px; flex-wrap:wrap;
}
nav a{
  text-decoration:none;
  padding:8px 12px;
  border:1px solid transparent;
  border-radius:12px;
  color:var(--muted);
}
nav a:hover, nav a[aria-current="page"]{
  color:var(--text);
  border-color:var(--border);
  background: rgba(255,255,255,.04);
}
.hamburger{
  display:none;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
}
@media (max-width: 820px){
  .hamburger{display:block}
  nav{display:none; width:100%}
  nav.open{display:block}
  nav ul{flex-direction:column; gap:6px; padding:10px 0}
  nav a{display:block}
}

.hero{
  padding:46px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
}
.card{
  background: rgba(15,27,51,.75);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
}
.hero .card{padding:26px}
.kicker{
  color:var(--muted);
  font-weight:650;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.82rem;
}
h1{
  margin:.35rem 0 .65rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height:1.1;
}
h2{margin: 0 0 .8rem; font-size:1.55rem}
h3{margin: 0 0 .35rem; font-size:1.2rem}
p{margin:.2rem 0 1rem; color:rgba(238,243,255,.92)}
.muted{color:var(--muted)}
.badge-row{
  display:flex; gap:10px; flex-wrap:wrap;
  margin:12px 0 18px;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:rgba(238,243,255,.92);
  font-size:.92rem;
}
.badge b{color:var(--text)}
.cta-row{display:flex; gap:10px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  text-decoration:none;
  color:var(--text);
  font-weight:650;
}
.btn.primary{
  border-color: rgba(71,179,255,.55);
  background: linear-gradient(135deg, rgba(71,179,255,.24), rgba(124,92,255,.18));
}
.btn:hover{transform: translateY(-1px)}
.small{font-size:.95rem}

.side{
  padding:22px;
  display:flex; flex-direction:column; gap:12px;
}
.side .note{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  padding:14px;
}
.note strong{color:var(--text)}
.note .dot{
  width:10px; height:10px; border-radius:999px; display:inline-block;
  margin-right:8px;
  background: var(--ok);
  box-shadow: 0 0 0 6px rgba(49,208,170,.12);
}
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
  margin: 14px 0 34px;
}
.col-6{grid-column: span 6}
.col-4{grid-column: span 4}
.col-8{grid-column: span 8}
.col-12{grid-column: span 12}
@media (max-width: 900px){
  .col-6,.col-4,.col-8{grid-column: span 12}
}
.tile{
  padding:18px;
}
.tile p{margin:0; color:var(--muted)}
.icon{
  width:36px; height:36px;
  border-radius:12px;
  display:grid; place-items:center;
  background: rgba(71,179,255,.12);
  border:1px solid rgba(71,179,255,.22);
  margin-bottom:10px;
}
hr.sep{
  border:none; height:1px;
  background: var(--border);
  margin: 16px 0;
}
.section-title{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  margin-top:10px;
}
.section-title p{margin:0}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--border);
}
.table th, .table td{
  text-align:left;
  padding:12px 12px;
  border-bottom:1px solid var(--border);
  vertical-align:top;
}
.table th{
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:750;
}
.table tr:last-child td{border-bottom:none}
.pill{
  display:inline-flex;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-size:.86rem;
}

form{
  display:grid;
  gap:10px;
}
label{font-weight:650}
input, textarea, select{
  width:100%;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  outline:none;
}
textarea{min-height:140px; resize:vertical}
input:focus, textarea:focus, select:focus{
  border-color: rgba(71,179,255,.55);
  box-shadow: 0 0 0 4px rgba(71,179,255,.12);
}
.help{font-size:.92rem; color:var(--muted)}
.callout{
  border-left:4px solid rgba(255,209,102,.9);
  padding:12px 14px;
  background: rgba(255,209,102,.08);
  border-radius:14px;
  border:1px solid rgba(255,209,102,.25);
  color: rgba(238,243,255,.95);
}
.footer{
  border-top:1px solid var(--border);
  padding:22px 0;
  color:var(--muted);
  font-size:.95rem;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}