:root{
  --bg:#0b0f17;
  --card:#121a2a;
  --text:#eaf0ff;
  --muted:#a9b6d6;
  --brand:#66a3ff;
  --brand2:#7cf2c8;
  --border:rgba(255,255,255,.10);
  --shadow: 0 16px 60px rgba(0,0,0,.45);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Arial;
  background:
    radial-gradient(1200px 600px at 10% 10%, rgba(102,163,255,.22), transparent 60%),
    radial-gradient(900px 520px at 90% 20%, rgba(124,242,200,.16), transparent 55%),
    var(--bg);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
.wrap{max-width:1120px; margin:0 auto; padding:28px 18px 70px}
header{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:14px 16px; border:1px solid var(--border); border-radius:16px;
  background:rgba(18,26,42,.75); backdrop-filter: blur(10px); box-shadow: var(--shadow);
  position:sticky; top:14px; z-index:20;
}
.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:40px; height:40px; border-radius:12px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 30px rgba(102,163,255,.22);
}
.brand h1{font-size:16px; margin:0; letter-spacing:.2px}
.brand small{display:block; color:var(--muted); font-size:12px; margin-top:2px}
.actions{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:10px 12px; border-radius:12px; border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text); font-weight:700; font-size:13px;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(102,163,255,.95), rgba(124,242,200,.85));
  border:0; color:#07101e;
}
.lang{
  display:inline-flex; border:1px solid var(--border); border-radius:12px; overflow:hidden;
  background:rgba(255,255,255,.03);
}
.lang button{
  border:0; background:transparent; color:var(--muted);
  padding:10px 12px; font-weight:900; font-size:12px; cursor:pointer;
}
.lang button.active{color:#07101e; background: linear-gradient(135deg, var(--brand), var(--brand2));}

.hero{
  margin-top:22px; padding:34px 18px;
  border-radius:22px; border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(18,26,42,.65), rgba(18,26,42,.35));
  box-shadow: var(--shadow);
}
.grid2{display:grid; grid-template-columns: 1.15fr .85fr; gap:18px; align-items:center}
.kicker{color:var(--brand2); font-weight:900; letter-spacing:.12em; text-transform:uppercase; font-size:12px}
h2{margin:10px 0 10px; font-size:38px; line-height:1.12}
.lead{color:var(--muted); font-size:16px; line-height:1.65; margin:0 0 18px}
.pillrow{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.pill{
  border:1px solid var(--border); background:rgba(255,255,255,.03);
  padding:8px 10px; border-radius:999px; color:var(--muted); font-size:12px; font-weight:800;
}
.card{
  border:1px solid var(--border); border-radius:18px; padding:16px;
  background:rgba(18,26,42,.55);
}
.card h3{margin:0 0 10px; font-size:18px}
.card h4{margin:0 0 8px; font-size:15px}
.card p{margin:0; color:var(--muted); line-height:1.65; font-size:13px}
.section{margin-top:22px}
.sectionTitle{display:flex; align-items:flex-end; justify-content:space-between; gap:10px; flex-wrap:wrap}
.sectionTitle h3{margin:0; font-size:20px}
.sectionTitle .muted{color:var(--muted); font-size:13px}
.cards3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:12px}
.twocol{display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-top:12px}
ul{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.7}
.cta{
  margin-top:18px; padding:18px;
  border:1px solid var(--border); border-radius:18px;
  background: linear-gradient(135deg, rgba(102,163,255,.18), rgba(124,242,200,.12));
  display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
}
.cta strong{font-size:15px}
.muted{color:var(--muted)}
.lottieBox{
  border:1px solid var(--border);
  background:rgba(11,15,23,.35);
  border-radius:18px;
  padding:10px;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:240px;
}
footer{margin-top:28px; color:rgba(233,240,255,.55); font-size:12px; text-align:center}
hr.sep{border:0; height:1px; background:var(--border); margin:18px 0}

@media (max-width: 900px){
  header{position:static}
  .grid2{grid-template-columns:1fr}
  .cards3{grid-template-columns:1fr}
  .twocol{grid-template-columns:1fr}
  h2{font-size:32px}
  .lottieBox{min-height:200px}
}