:root{
  --bg:#0b0f17;
  --panel:#0f1624;
  --card:#121c2e;
  --text:#e7eefc;
  --muted:#9fb0d0;
  --line:rgba(255,255,255,.08);
  --primary:#6aa9ff;
  --primary2:#2f7dff;
  --radius:16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Arial,sans-serif;
  background:radial-gradient(1200px 800px at 20% 0%, rgba(106,169,255,.18), transparent 60%),
             radial-gradient(900px 600px at 80% 20%, rgba(47,125,255,.12), transparent 55%),
             var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.srOnly{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

.container{max-width:1100px; margin:0 auto; padding:28px 18px 40px}
.topbar{
  position:sticky; top:0; z-index:10;
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  padding:14px 18px;
  background:rgba(11,15,23,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.brand{display:flex; gap:10px; align-items:center}
.brandMark{
  width:34px;height:34px; border-radius:10px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(106,169,255,.95), rgba(47,125,255,.9));
  color:#071022; font-weight:800;
}
.brandText{font-weight:700; letter-spacing:.2px}

.nav{display:flex; gap:12px; align-items:center; flex-wrap:wrap}
.nav a{padding:8px 10px; border-radius:10px}
.nav a:hover{background:rgba(255,255,255,.06)}

.lang select{
  background:rgba(255,255,255,.06);
  color:var(--text);
  border:1px solid var(--line);
  border-radius:12px;
  padding:8px 10px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  font-weight:650;
}
.btnPrimary{
  background:linear-gradient(135deg, rgba(106,169,255,.95), rgba(47,125,255,.9));
  border-color:transparent;
  color:#071022;
}
.btnSoft{background:rgba(255,255,255,.06)}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0px)}

.hero{
  display:grid;
  grid-template-columns: 1.35fr .9fr;
  gap:18px;
  margin-top:18px;
}
.heroText{
  padding:18px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(15,22,36,.55);
}
.hero h1{margin:0 0 10px; font-size:42px; line-height:1.08}
.lead{margin:0 0 14px; color:var(--muted); font-size:16.5px; line-height:1.55}

.ctaRow{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 12px}
.metaRow{display:flex; gap:8px; flex-wrap:wrap}
.pill{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  padding:6px 10px;
  border-radius:999px;
  font-size:12.5px;
}

.heroCard{display:flex; flex-direction:column; gap:12px}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(18,28,46,.55);
  padding:14px;
}
.card h3{margin:0 0 8px; font-size:16.5px}
.card p{margin:0; color:var(--muted); line-height:1.55}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin:18px 0;
}

.how{
  margin-top:16px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(15,22,36,.45);
}
.how h2{margin:0 0 12px; font-size:22px}
.steps{margin:0; padding-left:18px; color:var(--muted)}
.steps li{margin:10px 0}
.steps strong{color:var(--text)}

.callout{
  margin-top:14px;
  padding:12px;
  border:1px dashed rgba(106,169,255,.35);
  background:rgba(106,169,255,.08);
  border-radius:var(--radius);
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
}
.callout p{margin:0; color:var(--muted)}
.footer{
  margin-top:22px;
  padding-top:16px;
  border-top:1px solid var(--line);
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footerBrand{font-weight:800}
.footerLinks{display:flex; gap:12px; flex-wrap:wrap}
.muted{color:var(--muted)}
.small{font-size:12.5px}

@media (max-width: 940px){
  .hero{grid-template-columns:1fr}
  .hero h1{font-size:34px}
  .grid3{grid-template-columns:1fr}
  .callout{flex-direction:column; align-items:flex-start}
}

/* Forms */
.input{
  width:100%;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
.input:focus{border-color:rgba(106,169,255,.55)}
